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

html[lang="ru-RU"], html[lang="ru-RU"] input, html[lang="ru-RU"] textarea,
html[lang="en-US"], html[lang="en-US"] input, html[lang="en-US"] textarea{
    font-family: 'Montserrat-Medium';
}
html[lang="hy-HY"], html[lang="hy-HY"] input, html[lang="hy-HY"] textarea {
    font-family: 'Montserratarm-Medium';
}
html[lang="hy-HY"] h1, html[lang="hy-HY"] h2, html[lang="hy-HY"] h3,
html[lang="hy-HY"] h4, html[lang="hy-HY"] h5, html[lang="hy-HY"] strong,
html[lang="hy-HY"] h6, html[lang="hy-HY"] .bold_text, html[lang="hy-HY"] b{
    font-family: 'Montserratarm-Bold';
}
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="ru-RU"] .bold_text,
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, html[lang="en-US"] .bold_text,
html[lang="en-US"] strong, .html[lang="en-US"] b,
html[lang="ru-RU"] strong, html[lang="ru-RU"] b{
    font-family: 'Montserrat-Bold';
    font-weight: 400;
}
html[lang="hy-HY"] .medium_text{
    font-family: 'Montserratarm-Medium';
}
html[lang="ru-RU"] .medium_text, html[lang="en-US"] .medium_text{
    font-family: 'Montserrat-Medium';
}
html[lang="hy-HY"] .semiBold_text{
    font-family: 'Montserratarm-SemiBold';
}
html[lang="ru-RU"] .semiBold_text, html[lang="en-US"] .semiBold_text{
    font-family: 'Montserrat-SemiBold';
}
html[lang="hy-HY"] .regular_text{
    font-family: 'Montserratarm-Regular';
}
html[lang="ru-RU"] .regular_text, html[lang="en-US"] .regular_text{
    font-family: 'Montserrat-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;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: var(--black);
}
img, video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
:root {
    --black: #282828;
    --greyFont: rgba(40, 40, 40, 0.53);
    --blueBold: #25375B;
    --gold: #C9B07A;
    --grayBack: #ECECEA;
    --grayBackOpacity: #FBFBFB;
    --white: #FFF;
}
:root {
    --twelve: 12px;
    --forteen: 14px;
    --sixteen: 16px;
    --eighteen: 18px;
    --twenty: 20px;
    --fontTwentyTwo: 22px;
    --twofour: 24px;
    --thirty: 30px;
    --titleFont: 40px;
}
.wrapper {
    max-width: 1460px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}
.sto_ {
    width: 100%;
}
.full_wrapper {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}
.big_wrapper{
    width: 100%;
}
.d_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body{
    color: var(--black);
}
ul, ol{
    padding-left: 20px;
}

/* header */
header{
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 42px 0 30px 0;
    z-index: 20;
    background: transparent;
    transition: background-color 0.3s ease;
}
header.scrolled {
    padding: 30px 0;
    background-color: var(--white);
}
.header_block{
    gap: 20px;
}
.logo_{
    max-width: 120px;
}
.logo_ img{
    object-fit: contain;
}
.nav_bar, .f_nav_bar{
    gap: 36px;
}
.nav_alink{
    font-size: var(--sixteen);
}
.nav_alink:hover{
    color: var(--gold);
}
.burger_svg{
    display: none;
}
.head_last_blck{
    gap: 20px;
}
.phone_num{
    gap: 10px;
}
.phone_icon{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    justify-content: center;
    background-color: var(--gold);
}
.phone_icon img{
    max-width: 14px;
    object-fit: contain;
}
.phone_sp{
    font-size: var(--sixteen);
}
.phone_num:hover{
    text-decoration: underline;
}
.leave_req_btn{
    font-size: var(--sixteen);
    min-width: fit-content;
    margin-left: 15px;
    padding: 10px 10px 10px 20px;
    border-radius: 90px;
    cursor: pointer;
    gap: 10px;
    color: var(--white);
    background-color: var(--gold);
}
.leave_req_btn:hover{
    color: var(--brandBlue);
    background-color: var(--gold);
}
.goto_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    justify-content: center;
    background-color: var(--black);
}
.dropdown_rel{
    position: relative;
}
.chosen_lang{
    padding: 11px 13px;
    border-radius: 90px;
    justify-content: center;
    font-size: var(--forteen);
    cursor: pointer;
    gap: 10px;
    color: var(--white);
    background-color: var(--black);
}
.chosen_lang:hover{
    background-color: var(--gold);
    color: var(--white);
}
.dropdown_{
    display: none;
    position: absolute;
    top: 50px;
    right: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 70px;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    padding: 2px;
    z-index: 9;
    overflow: hidden;
}
.dropdown_active{
    display: flex;
}
.choose_lang{
    text-align: center;
    padding: 8px;
    font-size: var(--forteen);
    cursor: pointer;
}
.choose_lang:hover, .choose_lang_active{
    background-color: var(--grayBack);
}
.choose_lang:first-child{
    border-radius: 10px 10px 0 0;
}
.choose_lang:last-child{
    border-radius: 0 0 10px 10px;
}
/* end header */

/* home */
main {
    padding-top: 130px;
}
.home_general{
    margin-top: -130px;
    gap: 20px;
    padding: 130px 0 50px 0;
}
.gold_img{
    max-width: 50%;
}
.gold_img img{
    mix-blend-mode: multiply;
}
.general_inf_blck{
    max-width: 454px;
    flex-direction: column;
    align-items: start;
    gap: 30px;
}
.general_title{
    font-size: var(--titleFont);
    text-transform: uppercase;
}
.chosen_course_blck{
    flex-direction: column;
    align-items: start;
    gap: 14px;
}
.description_{
    font-size: var(--sixteen);
    color: var(--greyFont);
}
.general_inf_blck .leave_req_btn{
    padding: 20px;
    margin: 0;
}
.products_section{
    justify-content: center;
    margin: 80px 0;
    gap: 70px;
}
.products_infs{
    flex-direction: column;
    align-items: start;
    gap: 36px;
    max-width: 570px;
}
.second_title{
    text-transform: uppercase;
    font-size: var(--thirty);
}
.four_blcks{
    max-width: 620px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.four_piece{
    border: 1px solid rgba(201, 176, 122, 0.40);
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    position: relative;
}
.four_blcks > .four_piece:nth-child(odd) {
    border-right: none;
}
.four_blcks > .four_piece:nth-child(-n+2) {
    border-bottom: none;
}
.first_piece, .second_piece{
    border-top: none;
}
.first_piece, .third_piece{
    border-left: none;
}
.second_piece, .fourth_piece{
    border-right: none;
}
.third_piece, .fourth_piece{
    border-bottom: none;
}
.round_imgs{
    position: relative;
    z-index: 1;
    width: 140px;
    border-radius: 50%;
    background-color: var(--grayBack);
    aspect-ratio: 1/1;
    justify-content: center;
}
.about_icons{
    max-width: 80px;
}
.about_icons img{
    object-fit: contain;
}
.imgs_title{
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 140px;
    font-size: var(--sixteen);
    text-transform: uppercase;
}
.background_second{
    position: absolute;
    bottom: -40px;
    left: -40px;
}
.background_third{
    position: absolute;
    top: -40px;
    right: -40px;
}
.background_fourth{
    position: absolute;
    top: -40px;
    left: -40px;
}
.course_block{
    flex-direction: column;
    gap: 60px;
    margin: 80px 0;
    padding: 80px 0;
}
.grey_back{
    background-color: var(--grayBack);
}
.grey_opacity_back{
    background-color: var(--grayBackOpacity);
}
.title_descrip_blck{
    gap: 20px;
    align-items: end;
}
.title_subtil{
    max-width: 572px;
    flex-direction: column;
    align-items: start;
    gap: 18px;
}
.subtitle_sp{
    padding: 12px 20px;
    color: var(--white);
    border-radius: 90px;
    font-size: var(--twelve);
    background-color: var(--gold);
}
.title_descrip_blck .description_{
    max-width: 572px;
}
.choose_tab_blcks{
    gap: 5px;
    justify-content: start;
    padding-bottom: 10px;
    overflow: auto;
}
.choose_metal{
    width: 170px;
    /* height: 170px; */
    aspect-ratio: 1/1;
    border-radius: 23px;
    border: 8px solid transparent;
    background-color: #F4F4F4;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    justify-content: center;
}
.choose_metal:hover, .choose_metal_active{
    background-color: #CAAD70;
}
.choose_metal:hover .metals_sp, .choose_metal:hover .metals_name,
.choose_metal_active .metals_sp, .choose_metal_active .metals_name{
    color: var(--white);
}
.metals_sp{
    font-size: 50px;
    text-transform: uppercase;
}
.metals_name{
    font-size: var(--twelve);
}
.chosen_course_blck{
    display: none;
}
.chosen_course_blck_active{
    display: flex;
}
.choose_tab_blcks::-webkit-scrollbar-thumb {
    background-color: var(--gold);
    border-radius: 10px;
    cursor: pointer;
    background-clip: padding-box;
    transition: all 300ms ease-out;
}
.choose_tab_blcks::-webkit-scrollbar {
    height: 2px;
    width: 2px;
}
.choose_tab_blcks::-webkit-scrollbar-track {
    background-color: rgba(200, 200, 200, 0.5);
}
.info_windows_blcks{
    border-radius: 20px;
    overflow: hidden;
    align-items: stretch;
    margin: 80px 0 128px 0;
    display: grid;
    background-color: var(--grayBack);
    grid-template-columns: repeat(3, 1fr);
}
.about_infs_blck{
    padding: 30px;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    cursor: pointer;
    background-color: var(--grayBack);
    border: 1px solid transparent;
}
.infs_title{
    font-size: var(--twenty);
    text-transform: uppercase;
    margin-bottom: auto;
}
.inf_mini_descrip{
    font-size: var(--twelve);
    color: var(--greyFont);
}
.about_infs_blck:hover{
    border-color: rgba(40, 40, 40, 0.20);
}
.about_infs_blck:first-child{
    border-radius: 20px 0 0 20px;
}
.about_infs_blck:last-child{
    border-radius: 0 20px 20px 0;
}
/* end home */

/* footer */
.footer_block{
    flex-direction: column;
    padding: 35px 0;
    gap: 20px;
}
.underline_{
    border-bottom: 1px solid rgba(40, 40, 40, 0.10);
}
.f_last_blck{
    gap: 20px;
}
.rights_reserved{
    gap: 5px;
}
.site_dev{
    gap: 6px;
    font-size: var(--sixteen);
}
.site_dev:hover{
    color: var(--gold);
}
.site_dev:hover svg path{
    fill: var(--gold);
}
/* end footer */

/* popup */
.gray_back{
    background: rgb(61 61 54 / 40%);
    display: none;
    position: fixed;
    width: 100%;
    z-index: 32;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
}
.gray_back_header{
    z-index: 30 !important;
}
.gray_back_active {
    display: block;
}
.parent_pop, .wpcf7-form {
    position: relative;
    display: flex;
    justify-content: center;
}
.popup_block{
    z-index: 33;
    position: fixed;
    display: none;
    max-width: 446px;
    width: 90%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    top: 5%;
}
.popup_block_active{
    display: flex;
}
.popups_form_blck{
    flex-direction: column;
    background-color: var(--white);
    padding: 20px;
    gap: 12px;
    border-radius: 20px;
}
.wpcf7-form-control-wrap{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.close_popup{
    z-index: 1;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    justify-content: center;
    background-color: var(--gold);
}
.close_popup:hover svg path{
    stroke: red;
}
.title_close{
    gap: 20px;
}
.popup_title{
    font-size: var(--thirty);
    color: var(--black);
}
.inps_{
    padding: 16px 12px;
    border-radius: 12px;
    border: 1px solid rgba(27, 54, 83, 0.20);
    font-size: 16px;
}
.inps_:focus{
    border-color: var(--gold);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
textarea{
    resize: none;
}
.send_btn{
    padding: 20px;
    border-radius: 90px;
    background-color: var(--gold);
    color: var(--white);
    font-size: var(--sixteen);
    justify-content: center;
    cursor: pointer;
}
.send_btn:hover{
    background-color: var(--gold);
}
.inps_error{
    border-color: red;
}
/* end popup */

/* about us */
.aboutus_section{
    flex-direction: column;
    gap: 45px;
}
.navigation_blck{
    justify-content: start;
    gap: 18px;
    flex-wrap: wrap;
}
.prev_page, .n_slash{
    font-size: var(--sixteen);
    color: var(--greyFont);
}
.prev_page:hover{
    text-decoration: underline;
}
.this_page{
    font-size: var(--sixteen);
    color: var(--black);
}
.about_title_descrip{
    align-items: start;
    gap: 20px;
}
.about_title_descrip .description_{
    max-width: 630px;
}
.aboutus_section .info_windows_blcks, .services_section .info_windows_blcks{
    margin: 60px 0 20px 0 !important;
}
.aboutus_history{
    margin: 70px 0 100px 0;
    flex-direction: column;
    gap: 75px;
}
.aboutus_history .info_windows_blcks{
    margin: 0 !important;
}
.may_winds > .about_infs_blck {
    border: 1px solid rgba(40, 40, 40, 0.20);
}
.may_winds > .about_infs_blck:nth-child(3n) {
    border-right: none; 
}
.may_winds > .about_infs_blck:nth-child(-n+3) {
    border-top: none;
    border-bottom: none;
    border-right: none;
}
.may_winds > .about_infs_blck:nth-child(3n+1) {
    border-left: none;
    border-right: none;
}
.may_winds > .about_infs_blck:nth-last-child(-n+3) {
    border-bottom: none; 
}
.may_winds > .about_infs_blck:nth-child(5){
    border-right: none;
}
.may_winds > .about_infs_blck{
    border-radius: 0 !important;
}
/* end about us */

/* services */
.services_section{
    margin-bottom: 80px;
    flex-direction: column;
    align-items: start;
    gap: 45px;
}
.metals_block{
    justify-content: start;
    overflow: auto;
    padding-bottom: 10px;
}
.metals_block img{
    min-width: 900px;
}
.metals_block::-webkit-scrollbar-thumb {
    background-color: var(--gold);
    border-radius: 10px;
    cursor: pointer;
    background-clip: padding-box;
    transition: all 300ms ease-out;
}
.metals_block::-webkit-scrollbar {
    height: 2px;
    width: 2px;
}
.metals_block::-webkit-scrollbar-track {
    background-color: rgba(200, 200, 200, 0.5);
}
/* end services */

/* contact us */
.contactus_section{
    align-items: start;
    flex-direction: column;
    gap: 45px;
}
.conts_nums{
    justify-content: start;
    gap: 70px;
    flex-wrap: wrap;
}
.conts_nums .phone_sp{
    font-size: var(--thirty);
}
.conts_nums .phone_num{
    gap: 20px;
}
.map_contact{
    height: 455px;
    border-radius: 40px;
    overflow: hidden;
}
/* end contact us */