@keyframes scrollAnimation {
  0% {
    transform: translateY(10px);
  }
  
  100% {
    transform: translateY(-10px);
  }
}

@keyframes slideInAnimation {
  0% {
    left: -100%;
    opacity: 0;
  }

  100% {
    left: 0;
    opacity: 1;
  }
}

/* accordion */
.accordion-head {
    cursor: pointer;   
}
.accordion-body {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


/* title */
.title {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 74px;
    line-height: 75px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}
.subtitle {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #EEEEEE;   
}

.button {
    background: #fff;
    border: 1px solid var(--main-color);
    outline: none;
    transition: 0.4s all;
}
.button:hover {
    background: var(--main-color); 
}

/* max-width */
.mw-870 {
    max-width: 870px !important; 
}

/* section title */
.section-title {
    position: relative;
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 50px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    
    color: #151515;   
}
.section-title:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -23px;
    width: 48px;
    height: 2px;
    background: #151515;
}
.section-title.left {
    text-align: left;   
}
.section-title.left:before {
    left: 0;
    transform: unset; 
}
.section-title.white {
    color: #fff; 
}
.section-title.white:before {
    background: #fff;   
}
.section-title.mini {
    margin-top: 6px;
    font-size: 30px;
    line-height: 28px;   
}
.section-title.mini:before {
    bottom: -10px;   
}
@media screen and (max-width: 1300px) {
    .big-header-lang{display:none;}
    .section-title {
        font-size: 42px;
        line-height: 42px;
    }
    .section-title:before {
        bottom: -18px;   
    }
        .lang_block label.active span {
        color: #151515;
    }
    .lang_block {
    position: absolute; 
    left: 20px;
    top: 20px;}
    .big-header{display:none !important;}
    .header_menu{display:flex !important;}
}
@media screen and (max-width: 992px) {

    .section-title {
        font-size: 40px;
        line-height: 40px;
    }
    .section-title:before {
        bottom: -16px;   
    }
    .section-title.mini {
        margin-top: 6px;
        font-size: 24px;
        line-height: 20px;
    }
    .section-title:before {
        width: 30px;   
    }
}
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 34px;
        line-height: 34px;
    }
    .section-title:before {
        bottom: -14px;   
    }
}
@media screen and (max-width: 576px) {
    .section-title {
        font-size: 28px;
        line-height: 28px;
    }
    .section-title:before {
        bottom: -12px;   
    }
}

/* header */
.active .big-header span{color:#000 !important;}
.big-header{display:flex;flex-direction:row !important;gap:15px;}
.big-header span{color:#fff !important;}
.active .big-header .pk-accordion-body{background: #fff !important;padding: 10px !important;}
.active .big-header .pk-accordion-body a{color: #000 !important;}
.pk-accordion-body a{color:#fff;}
.big-header span:before{background:#fff !important;}
.active .big-header span:before{background:#000 !important;}
.header_menu{display:none;}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 34px 0 29px;
    background: none;
    transition: 0.7s all;
}
.header.active {
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(132, 132, 132, 0.15);
    padding: 10px 0;
}
.header.small .header_logo img {
    max-width: 85px;   
}
.header_wrapper { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.header_menu {
   /*  flex: 1; */
}
.header_menu-inner {
    position: relative;
    max-width: 105px;
    
    display: flex;
    align-items: center;
    column-gap: 14px;
    
    cursor: pointer;  
}
.header_menu-inner svg rect {
  transition: all 0.3s ease-in-out;
}
.header_menu-inner:hover svg rect:nth-child(2) {
    width: 20px;
    transform: rotate(-45deg) translate(-10px, 30px);
}
.header_menu-inner:hover svg rect:nth-child(4) {
    width: 20px;
    transform: rotate(45deg) translate(20px, 0px);
}
.header_menu-inner:hover svg rect:nth-child(3) {
    opacity: 0;
}
.header_menu-inner:hover svg rect:nth-child(4) {
  animation: spinAnimation 2s linear infinite;
}
.header_menu-inner:hover svg rect:nth-child(2) {
  animation: spinAnimation 2s linear infinite;
}



.header_burger svg {
    width: 42px;
    height: 42px;
}
.header_menu-inner span {
    display: block;
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #fff;
    
    transition: 0.4s all;
}
.header.active .header_menu-inner span {
    color: #151515;   
}
.header .header_menu-inner:hover span {
    transition: 0.4s all;
    color: var(--main-color); 
}
.header .header_menu-inner svg circle {
    stroke: #fff;    
}
.header.active .header_menu-inner svg circle {
    stroke: #151515;    
}
.header .header_menu-inner svg rect {
    fill: #fff;  
}
.header.active .header_menu-inner svg rect {
    fill: #151515;  
}
.header .header_menu-inner:hover svg circle {
    transition: 0.4s all;
    stroke: var(--main-color);  
}
.header .header_menu-inner svg circle {
    transition: 0.4s all;
}
.header .header_menu-inner:hover svg rect {
    transition: 0.4s all;
    fill: var(--main-color);  
}
.header .header_menu-inner svg rect {
    transition: 0.4s all; 
}
.header_logo {
    flex: 1;
    text-align: center;
}
.header_logo img {
    max-width: 150px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: 0.8s all;
}
.header_tel {
    /* flex: 1; */
}
.header_tel-inner {
    max-width: 178px;
    margin: 0 0 0 auto;
    
    display: flex;      
    align-items: center;
    justify-content: end;
    column-gap: 11px;
}
.header_tel a {
    display: block;
   /*  margin-top: 6px; */
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    color: #fff;
    
    transition: 0.4s all;
}
.header.active .header_tel-inner a {
    color: #151515;   
}
.header .header_tel-inner svg path {
    fill: #fff;
}
.header.active .header_tel-inner svg path {
    fill: #151515;
}
.header .header_tel-inner:hover a {
    color: var(--main-color);
    text-decoration: none;  
}
.header .header_tel-inner:hover svg path {
    transition: 0.4s all;
    fill: var(--main-color);
}
.header .header_tel-inner svg path {
    transition: 0.4s all;
}
.header_social {
    display: none;   
}
.header_social img {
    width: 26px;
    height: 26px;
}
@media screen and (max-width: 1300px) {
    .header {
        padding: 20px 0 20px;   
    }
    .header_logo img {
        max-width: 100px;
    }
}
@media screen and (max-width: 1200px) {
    .header {
        padding: 10px 0 10px;
    }
    .header_logo img {
        max-width: 80px;
    }
    .header_tel-inner a {
        font-size: 18px;
        line-height: 18px;
    }
    .header_tel-inner svg {
        width: 20px;
        height: 20px;
    }
    .header_menu-inner {
        column-gap: 10px;
    }
    .header_burger svg {
        width: 40px;
        height: 40px;
    }
    .header_tel-inner {
        max-width: 166px;
    }
}
@media screen and (max-width: 992px) {
    .pk-burger-lang{display:none;}
    .header_logo img {
        max-width: 75px;
    }
    .header_burger svg {
        width: 36px;
        height: 36px;
    }
    .header_menu-inner span {
        display: block;
        margin-top: 5px;
        font-size: 15px;
        line-height: 15px;
    }
    .header_tel-inner a {
        margin-top: 5px;
        font-size: 17px;
        line-height: 16px;
    }
    .header_tel-inner svg {
        width: 18px;
        height: 18px;
    }
    .header_menu-inner {
        max-width: 96px;
    }
    .header_tel-inner {
        max-width: 156px;
    }
}
@media screen and (max-width: 768px) {
    .header_tel-inner {
        column-gap: 6px;
        font-size: 16px;
    }
    .header_menu-inner {
        column-gap: 6px;
    }
    .header_logo img {
        max-width: 70px;
    }
    .header_burger svg {
        width: 34px;
        height: 34px;
    }
    .header_menu-inner span {
        display: block;
        margin-top: 4px;
        font-size: 14px;
        line-height: 14px;
    }
    .header_tel-inner a {
        margin-top: 4px;
        font-size: 16px;
        line-height: 16px;
    }
    .header_menu-inner {
        max-width: 90px;
    }
    .header_tel-inner {
        max-width: 146px;
    }
}
@media screen and (max-width: 576px) {
    .header_social {
        display: flex;   
        align-items: center;
        column-gap: 6px;
    }
    .header_tel {
        display: none;   
    }
    .header_logo {
        flex: none;
        text-align: unset;
    }
    .header_menu {
        margin-top: 5px;
        flex: none;
    }
}

/* burger menu */
.burger_menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 420px;
    height: 100vh;
    z-index: 200;
    transition: 0.6s all;
    
    display: grid;
    grid-template: auto / 108px 1fr;
}
.burger_menu.active {
    left: 0;   
}
.burger_menu-list {
    position: relative;
    padding: 0 52px;
    
    display: flex;
    align-items: center;
    
    background: linear-gradient(158.64deg, #FFFFFF -3.3%, #EDEDED 126.16%);
    box-shadow: 0px 4px 30px rgba(112, 112, 112, 0.25);  
}
.burger_menu-list-block {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}
.burger_menu-item span {
    position: relative;

    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    color: #151515;
    
    transition: 0.4s all;
}
.pk-accordion{position: relative;}
.mob{display:none;}
.pk{display:none;}
.burger-menu__accordion {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.burger-menu__accordion a {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-transform: lowercase;
    color: #151515;
    transition: 0.4s all;   
}
.burger-menu__accordion a:first-letter {
    text-transform: uppercase;   
}
.burger_menu-item {
  position: relative;
  left: -100%;
  animation: slideInAnimation 0.5s forwards;
}
.burger_menu-item.active span:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: #000;
}
.burger_menu-item:hover {
    text-decoration: none;
}
.burger_menu-item span:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #000;
    
    transition: 0.4s all;
}
.burger_menu-item:hover span:before {
    width: 100%;   
}
.burger_menu-close {
    padding-top: 52px;
    background: #DBB800;
    transition: 0.6s all;
    border: 1px solid var(--main-color);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.burger_menu-close span {
    display: block;
    transform: rotate(-90deg) translate(-38px, 2px);
    
    /* ff */
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    
    transition: 0.6s all;
}
@media screen and (max-width: 576px) {
    .burger_menu {
        width: 100%;
        grid-template: auto / 80px 1fr;
    }
    .burger_menu-list {
        padding: 0 30px;
        
    }
    .burger_menu-list-block {
        row-gap: 24px;   
    }
    .burger_menu-item span {
        font-size: 16px;
    }
}

/* страница контактов */
.contacts {
    min-height: calc(100vh - 323px);   
}
.contacts_wrapper {
    margin-top: 86px;
    
    display: grid;
    grid-template: auto / 1fr 380px;
    column-gap: 25px;
}
.contacts_map iframe {
    border: none !important;
    outline: none !important;
}
.contacts_content {
    display: grid;
    grid-template: auto / 1fr;
    row-gap: 10px;
}
.contacts_block {
    padding: 15px;
    border: 1px solid #E4E4E4;
    
    display: grid;
    align-items: center;
    grid-template: auto / 32px 1fr;
    column-gap: 34px;
}
.contacts_block-info {
    position: relative;   
}
.contacts_block-info:before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    width: 1px;
    height: 100%;
    background: #E8E8E8;
}
.contacts_block-title {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #868686;
}
.contacts_block-value {
    display: block;
    margin-top: 9px;
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #151515;
    
    transition: 0.6s all;
}
.contacts_block-value:nth-last-child(1) {
    margin-top: 2px;   
}
a.contacts_block-value:hover {
    text-decoration: none;
    color: var(--main-color);
}
@media screen and (max-width: 1200px) {
    .contacts_wrapper {
        margin-top: 80px;
        display: grid;
        grid-template: auto / 1fr 300px;
        column-gap: 20px;
    }   
}
@media screen and (max-width: 992px) {
    .contacts_block-title {
        font-size: 15px;
    }
    .contacts_block-value {
        font-size: 15px;
        line-height: 16px;   
    }
    .contacts_wrapper {
        margin-top: 60px;
        grid-template: auto / 1fr 280px;
    }
}
@media screen and (max-width: 768px) {
    .contacts {
        min-height: calc(100vh - 261px);
    }
    .contacts_wrapper {
        margin-top: 50px;
        grid-template: auto / 1fr;
        row-gap: 30px;
    }
    .contacts_block {
        padding: 10px;
    }
}

/* lAYOUT */
.layout {
    position: relative;
}
.layout__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    height: 100%;
    -webkit-filter: brightness(50%);
            filter: brightness(50%); 
}
.layout__wrapper {    
    max-height: 100vh;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: center;
    align-items: center;
    position: relative;
}
.layout__link {    
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    cursor: pointer;
}
.layout__link a {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 20px;
}
.layout__link a:hover {
    text-decoration: none;
}
.layout__link a:hover span {
    transition: 0.4s all;
    color: var(--main-color);
}
.layout__link span {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    color: #DCDCDC;
    
    animation: scrollAnimation 2s ease-in-out infinite alternate;
}
.layout__title {
    max-width: 550px;
    margin: 0 auto;
}
.layout__subtitle {
    max-width: 502px;
    margin: 24px auto 0;
}


/* layout port */

.layout__port{
    margin-top:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    column-gap:20px;
}

.layout__port .layout__port--text{
    margin-top:0px;   
    max-width:450px;
    width:100%;
}


.video__link{
    position:relative;
    display:block;
}

.video__img{
    display:block;
    max-width:500px;
    width:100%;
    height:100%;
}

.play_btn{   
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);    
}


@media screen and (max-width: 1300px) {
    .layout__title {
        max-width: 450px;
    }
    .title {
        font-size: 64px;
        line-height: 60px;   
    }
    .mw-870 {
        max-width: 700px !important;
    }
    .layout__subtitle {
        max-width: 456px;
        margin: 20px auto 0;
    }
    
    /* layout port */
}
@media screen and (max-width: 1200px) {
    .title {
        font-size: 46px;
        line-height: 50px;
    }
    .subtitle {
        font-size: 20px;
        line-height: 22px;
    }
    .mw-870 {
        max-width: 528px !important;
    }
    .layout__title {
        max-width: 314px;
    }
    .layout__subtitle {
        max-width: 434px;
        margin: 10px auto 0;
    }
    .layout__link a {
        row-gap: 10px;   
    }
}
@media screen and (max-width: 992px) {
    .layout__title {
        max-width: 278px;
    }
    .layout__subtitle {
        max-width: 358px;
    }
    .title {
        font-size: 40px;
        line-height: 40px;
    }
    .subtitle {
        font-size: 16px;
        line-height: 18px;
    }
    .mw-870 {
        max-width: 468px !important;
    }
    
    .layout__port .layout__port--text{          
        max-width:380px;      
    }
    
    .video__img{
        max-width:380px;
    }
}
@media screen and (max-width: 768px) {
    .title {
        font-size: 36px;
        line-height: 38px;
    }
    
    .layout__port .layout__port--text{     
        max-width:361px;
    }
    
    .video__img{
        width:300px;
    }
}
@media screen and (max-width: 576px) {
    .layout__wrapper {
        height: 50vh;   
    }
    .title {
        font-size: 28px;
        line-height: 28px;
    }
    .subtitle {
        font-size: 14px;
        line-height: 18px;
    }
    .layout__link svg {
        height: 30px;
    }
    .layout__link span {
        font-size: 16px;
        line-height: 18px;
    }
    .mw-870 {
        max-width: 322px !important;
    }
    
    .layout__port{
        flex-direction:column;
        row-gap:10px;
    }
}

/* структура */
.service__content {
    display: flex;
    flex-direction: column;
    row-gap: 100px;
}
.service__card {
    display: grid;
    grid-template: auto / 582px 1fr;
    align-items: center;
    column-gap: 69px;
}
.service__card.switch {
   grid-template: auto / 1fr 582px;    
}
.service__img img {
    width: 100%;
    height: 596px;
    object-fit: cover;
}
.service__text {
    margin-top: 60px;
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    color: #666666;
}
@media screen and (max-width: 1300px) {
    .service__card {
        grid-template: auto / 520px 1fr;
        column-gap: 80px;
    }
    .service__img img {
        width: 100%;
        height: 540px;
    }
    .service__card.switch {
        grid-template: auto / 1fr 520px;    
    }
}
@media screen and (max-width: 1200px) {
    .service__content {
        row-gap: 80px;
    }
    .service__card {
        grid-template: auto / 400px 1fr;
        column-gap: 60px;
    }
    .service__card.switch {
        grid-template: auto / 1fr 400px;    
    }
    .service__text {
        margin-top: 50px;
        font-size: 18px;
        line-height: 24px;
    }
    .service__img img {
        height: 460px;
    }
}
@media screen and (max-width: 992px) {
    .service__content {
        row-gap: 60px;
    }
    .service__card {
        grid-template: auto / 320px 1fr;
        column-gap: 40px;
    }
    .service__card.switch {
        grid-template: auto / 1fr 320px;    
    }
    .service__text {
        margin-top: 40px;
        font-size: 15px;
        line-height: 20px;
    }
    .service__img img {
        height: 360px;
    }
}
@media screen and (max-width: 768px) {
    .service__card {
        grid-template: auto / 1fr;
        row-gap: 40px;
    }
    .service__card.switch {
        grid-template: auto / 1fr;    
    }
    .service__img {
        order: 1;   
    }
    .service__text {
        margin-top: 30px;
        font-size: 14px;
        line-height: 18px;
    }
    .service__img img {
        height: 260px;
    }
}
@media screen and (max-width: 576px) {
    .service__img img {
        height: 220px;
    }
    .service__card {
        row-gap: 30px;
    }
}

/* method */
.method_text {
    margin-top: 66px;
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    color: #666666;
}
.method_content {
    max-width: 1400px;
    margin: 52px auto 0;
}
.method_card {
    height: 385px;
    position: relative;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 29px;
    cursor: pointer;
}


.method_card-img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%); 
}
.method_card-title {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;   
}
.method_card-hide {
    margin-top: 8px;   
}


.method_card-text {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #F1F1F1;   
}

.port__terminal--card{
    height: 600px;
}

.terminal__card--hide{
    max-width:600px;
}

.terminal__card--text{
    font-size: 20px;
    line-height: 24px;
}

.terminal__card--button{
    max-width:200px;
}

.method_card-button {
    margin: 18px auto 0;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    height: 45px;
    border-radius: 300px;
    
    padding: 0 20px;
    background: none;
    border: 1px solid #fff;
    outline: none !important;
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    transition: 0.4s all;
}
.method_card-button:hover {
    background: #fff;
    color: #151515;
}
.method_card-hide {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-out, opacity 0.6s ease-out;
}
.method_card:hover .method_card-hide {
  max-height: 385px;
  opacity: 1;
}
@media screen and (max-width: 1300px) {
    .method_card {
        height: 360px;
    }
    .method_text {
        margin-top: 60px;
        font-size: 20px;
        line-height: 26px;
    }
    .method_content {
        margin: 40px auto 0;
    }
}
@media screen and (max-width: 1200px) {
    .method_card {
        height: 300px;
    }
    .method_card-title {
        font-size: 20px;
        line-height: 22px;
    }
    .method_card-text {
        font-size: 14px;
        line-height: 16px;
    }
    .method_card-button {
        margin: 14px auto 0;
        height: 40px;
        font-size: 14px;
        line-height: 14px;
    }
    .method_content {
        margin: 30px auto 0;
    }
    .method_text {
        margin-top: 50px;
        font-size: 18px;
        line-height: 24px;
    }
}
@media screen and (max-width: 992px) {
    .method_card {
        height: 280px;
    }   
}
@media screen and (max-width: 768px) {
    .method_text {
        margin-top: 40px;
        font-size: 16px;
        line-height: 20px;
    }
    .method_card {
        height: 260px;
        padding: 10px 14px;
    }
    .method_card-button {
        margin: 10px auto 0;
        height: 35px;
        font-size: 13px;
        line-height: 13px;
    }
    .method_content {
        margin: 20px auto 0;
    }
    
    .terminal__card--text{
        font-size: 12px;
        line-height: 16px;
    }

    .terminal__card--title{
        font-size: 14px;
        line-height: 16px;
    }
}
@media screen and (max-width: 576px) {
    .method_text {
        margin-top: 30px;
        font-size: 14px;
        line-height: 16px;
    }
    .method_card {
        height: 240px;
    }
}

/* страница трейдинг */
.country_text {
    margin-top: 66px;
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    color: #666666;
}
.country_map {
    margin-top: 54px;   
}
.country_map svg {
    width: 100%;
    height: auto;
}
.country_buttons {
    margin-top: 30px;
    
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 20px;
}
.country_buttons button {
    width: 30px;
    height: 30px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-color);
    outline: none !important;
    background: #fff;
    font-size: 22px;
    line-height: 22px;
    padding-bottom: 4px;
}
@media screen and (max-width: 1300px) {
    .country_text {
        margin-top: 60px;
        font-size: 20px;
        line-height: 26px;
    }
}
@media screen and (max-width: 1200px) {
    .country_map {
        margin-top: 50px;
    }
    .country_text {
        margin-top: 50px;
        font-size: 18px;
        line-height: 24px;
    }
}
@media screen and (max-width: 1200px) {
    .country_map {
        margin-top: 40px;
    }
}
@media screen and (max-width: 768px) {
    .country_map {
        margin-top: 30px;
    }
    .country_buttons {
        margin-top: 20px;
    }
    .country_text {
        margin-top: 40px;
        font-size: 16px;
        line-height: 20px;
    }
}
@media screen and (max-width: 576px) {
    .country_map {
        margin-top: 20px;
    }
    .country_text {
        margin-top: 30px;
        font-size: 14px;
        line-height: 16px;
    }   
}

/* страница о компании */
.about_content {
    max-width: 1400px;
    margin: 52px auto 0;
}
.about_card {
    width: 100%;
    height: 360px;
    object-fit: cover;
    cursor: pointer;
}
.about_text {
    margin-top: 66px;
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    color: #666666;
}
@media screen and (max-width: 1300px) {
    .about_text {
        margin-top: 60px;
        font-size: 20px;
        line-height: 26px;
    }
    .about_card {
        height: 300px;
    }
    .about_content {
        margin: 40px auto 0;
    }
}
@media screen and (max-width: 1200px) {
    .about_text {
        margin-top: 50px;
        font-size: 18px;
        line-height: 24px;
    }
    .about_card {
        height: 260px;
    }
    .about_content {
        margin: 30px auto 0;
    }
}
@media screen and (max-width: 768px) {
    .about_text {
        margin-top: 40px;
        font-size: 16px;
        line-height: 20px;
    }
    .about_card {
        height: 240px;
    }
    .about_content {
        margin: 20px auto 0;
    }
}
@media screen and (max-width: 576px) {
    .about_text {
        margin-top: 30px;
        font-size: 14px;
        line-height: 16px;
    }
    .about_card {
        height: 200px;
    }
}

/* indicators */
.indicators {
    margin-top: 100px;
    padding: 0;
    position: relative;
    height: 593px;
    
    display: flex;
    align-items: center;
}
.indicators_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%);
}
.indicators_content {
    margin-top: 80px;   
}
.indicators_card {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}
.indicators_value {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 44px;
    line-height: 58px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.indicators_value span {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-transform: lowercase;
    color: #FFFFFF; 
}
.indicators_title {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #FFFFFF;
}
@media screen and (max-width: 1300px) {
    .indicators_title, .indicators_value{
        text-align: center;   
    }   
}
@media screen and (max-width: 1200px) {
    .indicators {
        margin-top: 80px;
        height: 540px;   
    }
}
@media screen and (max-width: 992px) {
    .indicators {
        margin-top: 60px;
        height: 500px;   
    }
}
@media screen and (max-width: 768px) {
    .indicators_content {
        margin-top: 60px;
    }
    .indicators {
        margin-top: 50px;
        height: 440px;
    }
}
@media screen and (max-width: 576px) {
    .indicators {
        margin-top: 40px;
        height: 400px;   
    }
    .indicators_content {
        margin-top: 50px;
    }
    .indicators_card {
        row-gap: 10px;   
    }
}

/* company */
.company_content {
    margin-top: 74px;
    
    display: grid;
    grid-template: 180px / repeat(auto-fit, minmax(345px, 1fr));
    gap: 30px;
}
.company_card {
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    
    display: grid;
    grid-template: auto / 180px 1fr;
    align-items: center;
    column-gap: 23px;
}
.company_card-block {
    padding: 10px 10px 10px 0;   
}
.company_card-img {
    width: 100%;
    height: 100%;
    background: #F2F2F2;
    
    display: flex;
    align-items: center;
    justify-content: center;
}
.company_card-img img {
    padding: 16px;
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.company_card-title {
    position: relative;
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    color: #151515;
}
.company_card-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 32px;
    height: 2px;
    background: #151515;
}
.company_card-text {
    margin-top: 23px;
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #666666;
}
@media screen and (max-width: 1200px) {
    .company_content {
        margin-top: 60px;
        grid-template: 160px / repeat(auto-fit, minmax(360px, 1fr));
        grid-auto-rows: 160px;
        gap: 20px;
    }
}
@media screen and (max-width: 576px) {
    .company_content {
        margin-top: 40px;
        grid-template: 110px / 1fr;
        grid-auto-rows: 110px;
        gap: 10px;
    }
    .company_card {
        grid-template: auto / 120px 1fr;
        column-gap: 14px;
    }
    .company_card-img img {
        padding: 10px;
        max-width: 100px;
        max-height: 100px;
    }
    .company_card-title {
        font-size: 13px;
        line-height: 20px;
    }
    .company_card-title:before {
        bottom: -4px;
    }
    .company_card-text {
        margin-top: 14px;
        font-size: 14px;
        line-height: 18px;
    }
}

/* footer */
.footer {
    margin-top: 100px;
    padding: 48px 0 15px;
    background: #EDEDED;
}
.footer_wrapper {
    display: flex;
    column-gap: 100px;
}
.footer_logo img {
    width: 157px;
    max-height: 122px;
    height: auto;
    object-fit: contain;
}
.footer_content {
    width: 100%;
    
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}
.footer_block-title {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #151515;   
}
.footer_block-content.grid {
    display: grid;
    grid-template: auto / repeat(2, auto);
    column-gap: 40px;
    row-gap: 10px;
}
.footer_block-content {
    margin-top: 21px;
    
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.footer_block-item {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #444444;
    
    transition: 0.4s all;
}
a.footer_block-item:hover {
    color: var(--main-color);
    text-decoration: none;
}
.footer_block-contacts {
    max-width: 248px;
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #444444;
}
.footer_block-tel {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #151515;
    transition: 0.4s all;
}
.footer_block-mail {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #444444;
    transition: 0.4s all;
}
.footer_block-tel:hover, .footer_block-mail:hover {
    color: var(--main-color);
    text-decoration: none;
}
.footer_under {
    position: relative;
    margin-top: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_under:before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E4E4E4;
}
.footer_abc span {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #7B7B7B;
}
.footer_abc a {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    color: #7B7B7B;   
}
.footer_social {
    display: flex;
    align-items: center;
    column-gap: 9px;
}
.footer_social-item:hover {
    text-decoration: none;
}
@media screen and (max-width: 1300px) {
    .footer {
        margin-top: 80px;
    }
    .footer_wrapper {
        column-gap: 80px;
    }
}
@media screen and (max-width: 1200px) {
    .footer {
        margin-top: 60px;
    }
    .footer_block.nav {
        display: none;   
    }
    .footer_content {
        justify-content: end;
        column-gap: 60px;
    }
    .footer_logo img {
        width: 130px;
    }
    .footer_social-item img {
        width: 26px;
        height: 26px;
    }
}
@media screen and (max-width: 992px) {
    .footer {
        margin-top: 50px;
    }
    .footer_block.str {
        display: none;   
    }
}
@media screen and (max-width: 768px) {
    .footer {
        margin-top: 40px;
        padding: 30px 0 15px;
    }
    .footer_wrapper {
        column-gap: 60px;
    }
    .footer_content {
        justify-content: end;
        column-gap: 40px;
    }
}
@media screen and (max-width: 690px) {
    .footer_wrapper {
        column-gap: 40px;
    }
    .footer_content {
        justify-content: unset;
        gap: 30px;
    }
    .footer_under {
        flex-direction: column;
        row-gap: 10px;
        align-items: start;   
    }
    .footer_social {
        order: -1;
    }
    .footer_block-contacts {
        max-width: 146px;
        font-size: 13px;
        line-height: 14px;
    }
    .footer_block-content {
        margin-top: 12px;
        row-gap: 8px;
    }
    .footer_block-item {
        font-size: 13px;
        line-height: 14px;
    }
    .footer_block-tel {
        font-size: 16px;
        line-height: 20px;
    }
    .footer_block-mail {
        font-size: 16px;
        line-height: 13px;
    }
}
@media screen and (max-width: 576px) {
    .footer_block.prod {
        display: none;   
    }
    .footer_logo img {
        width: 100px;
    }
    .footer_under:before {
        content: none;
    }
    .footer_social {
        align-self: end;
    }
    .footer_under {
        margin-top: 20px;
    }
    .footer_block-contacts {
        max-width: unset;
    }
}

/* product */
.products_wrapper {
    display: grid;
    grid-template: auto / 280px 1fr;
    column-gap: 36px;
}
.products_category {
    align-self: start;
    border: 1px solid #E5E5E5;   
}
.products_category-head {
    height: 62px;
    padding: 0 26px;
    
    display: flex;
    align-items: center;
    column-gap: 14px;
    
    border-bottom: 1px solid #E5E5E5;
}
.products_category-head span {
    display: block;
    margin-top: 5px;
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #151515;
}
.products_category-content {
    display: flex;
    flex-direction: column;
}
.products_category-item {
    padding: 0 9px 0 26px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    border-bottom: 1px solid #E5E5E5;
    
    transition: 0.5s all;
}
.products_category-item:hover {
    background: var(--main-color);
    text-decoration: none;
}
.products_category-item span {
    margin-top: 5px;
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #151515;
    transition: 0.2s all;
}
.products_category-item:hover span {
    color: #fff;
    text-decoration: none;
}
.products_category-item svg path {
    transition: 0.2s all; 
}
.products_category-item:hover svg path {
    stroke: #fff;
}
.products_category-item:nth-last-child(1) {
    border-bottom: unset;   
}
.products_category-item.active {
    background: var(--main-color);  
}
.products_category-item.active span {
    color: #fff;
}
.products_category-item.active svg path {
    stroke: #fff;
}

.products_block {
    margin-top: 54px;
    
    display: grid;
    grid-template: auto / repeat(auto-fit, minmax(220px, 1fr));
    column-gap: 22px;
    row-gap: 25px;
}
.products_block.count {
    grid-template: auto / repeat(3, minmax(220px, 378px));   
}
.products_card {
    background: #FFFFFF;
    border: 1px solid #EFEFEF;   
}
.products_card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products_card-title {
    position: relative;
    margin: 0 20px;
    margin-top: 22px;
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    color: #151515;
}
.products_card-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 40px;
    height: 2px;
    background: #DBB800
}
.products_card-link {
    padding: 0 20px 20px 20px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    column-gap: 10px;
    
    cursor: pointer;
}
.products_card-link span, .more_product {
    margin-top: 4px;
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #DBB800;   
}
.products_card-link svg {
    transform: translateX(0);
    transition: 0.3s all;
}
.products_card-link:hover svg {
    transform: translateX(20px); 
}
@media screen and (max-width: 1200px) {
    .products_block {
        margin-top: 40px;
        gap: 20px;
    }
}
@media screen and (max-width: 992px) {
    .products_wrapper {
        display: grid;
        grid-template: auto / 240px 1fr;
        column-gap: 30px;
    }
    .products_category-head {
        height: 62px;
        padding: 0 20px;
    }
    .products_category-item {
        padding: 0 9px 0 20px;
        height: 50px;
    }
    .products_block {
        margin-top: 30px;
        grid-template: auto / repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }
    .products_card-title {
        margin: 0 10px;
        margin-top: 14px;
        font-size: 16px;
        line-height: 18px;
    }
    .products_card-title:before {
        bottom: -6px;
        width: 30px;
    }
    .products_card-link {
        padding: 0 10px 10px 10px;
        margin-top: 20px;
        column-gap: 10px;
    }
}
@media screen and (max-width: 768px) {
    .products_wrapper {
        display: grid;
        grid-template: auto / 1fr;
        row-gap: 30px;
    }
}
@media screen and (max-width: 576px) {
    .products_card-img img {
        max-height: 200px;   
    }
    .products_card-title {
        font-size: 14px;
        line-height: 16px;
    }
    .products_card-link span {
        font-size: 13px;
        line-height: 17px;
    }
    .products_block {
        grid-template: auto / repeat(auto-fit, minmax(170px, 1fr));
    }
    .products_block.count {
        grid-template: auto / repeat(1, minmax(170px, 340px));
        justify-content: center;
    }
    
    .prod_content {
    grid-template-columns:1fr;
}
}

/* prod */
.prod_content {
    margin-top: 70px;
    display: grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    column-gap: 54px;
}
.prod_cards {
    align-self: start;
    max-width: 100%;
    width: 100%;
}
.prod_card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
}
.prod_card img {
    width: 100%;
    max-height: 315px;
    height: 100%;
    object-fit: cover;
}
.prod_card-title {
    padding: 33px 23px 91px 23px;
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    color: #151515;
}
.prod_card-link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.prod_link {
    position: relative;   
}
.prod_link span {
    position: absolute;
    display: block;
    left: 50%;
    transform: translate(-50%);
    bottom: 89px;
    
    color: #FFF;
    text-align: center;
    font-family: Hypatia Sans Pro;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    text-decoration-line: underline;
    text-transform: uppercase;   
}
@media screen and (max-width: 1200px) {
    .prod_content {
        margin-top: 60px;
        column-gap: 30px;
    }
    .prod_card img {
        max-height: 280px;
    }
}
@media screen and (max-width: 992px) {
    .prod_content {
        margin-top: 50px;
    }
    .prod_content {
        grid-template: auto / 1fr 134px;
        column-gap: 20px;
    }
    .prod_card-title {
        padding: 20px 14px 40px 14px;
        font-size: 16px;
        line-height: 20px;
    }
    .prod_link img {
        width: 100%;
        height: 300px;
    }
}
@media screen and (max-width: 768px) {
    .prod_content {
        margin-top: 40px;
    }
    .prod_card img {
        max-height: 200px;
    }
    .prod_card-title {
        padding: 18px 12px 18px 12px;
        font-size: 13px;
        line-height: 16px;
        display: flex;
        justify-content: center;
    }
    .prod_link img {
        width: 100%;
        height: 260px;
    }
    .prod_content {
        grid-template-columns:1fr;
        gap: 20px;
    }
}

/* modal */
.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 200;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 420px;
    height: auto;
    z-index: 500;
}
.modal-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.75);
}
.modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.modal-close svg {
    width: 34px;
    height: 34px;
}
.prod_form.modal-content {
    padding: 40px;
}
@media screen and (max-width: 576px) {
    .modal-content {
        width: 90%;   
    }
    .prod_form.modal-content {
        padding: 20px;
    }
    .modal-close {
        right: 6px;
        top: 6px;
    }
    .modal-close svg {
        width: 30px;
        height: 30px;
    }
}

.prod_form {
    padding: 84px 43px 75px; 
    background: #FFFFFF;
    border-radius: 5px;
    align-self: start;
}
.prod_form-title {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #151515;
}
.prod_form-decsr {
    margin-top: 18px;
    
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
}
.button_whatsapp {
    display: flex;
    align-items: center;
    column-gap: 8px;
    
    margin-top: 7px;
    width: 100%;
    height: 50px;
    background: #4CC85B;
    border-radius: 4px;
    border: 1px solid #4CC85B;
}
.button_whatsapp:hover {
    color: #4CC85B; 
}
.prodForm {
    margin-top: 36px;   
}
.prodForm-data {
    display: flex;
    flex-direction: column;
    row-gap: 17px;
}
.prodForm-data input {
    display: flex;
    align-items: center;
    
    width: 100%;
    padding: 10px 18px;
    height: 50px;
    background: #F8F8F8;
    border-radius: 4px;
    border: none !important;
    outline: none !important;   
}
.prodForm-data input::placeholder {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;   
}
.prodForm-data input {
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #151515;   
}
.prodForm__button {
    margin-top: 36px;
    height: 50px;
    width: 100%;
    outline: none !important;
}
@media screen and (max-width: 1200px) {
    .prod_form {
        padding: 60px 30px 50px;
    }
}
@media screen and (max-width: 992px) {
    .prod_form {
        padding: 40px 20px 40px;
    }
    .prod_form-title {
        font-size: 20px;
        line-height: 20px;
    }
    .prod_form-decsr {
        margin-top: 14px;
        font-size: 14px;
        line-height: 18px;
    }
    .prodForm {
        margin-top: 20px;
    }
    .prodForm-data {
        row-gap: 12px;
    }
    .prodForm__button {
        margin-top: 20px;
        height: 40px;
    }
}
@media screen and (max-width: 576px) {
    .prod_form {
        padding: 20px;
    }
}

/* Preloader */
.preloader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.preloader video {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}


/* lang */
.burger_lang input {
    display: none;
}
.lang_block {
    /* position: absolute; */
    left: 20px;
    top: 20px;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 10000;
}
.lang_block label {
    cursor: pointer;   
}
.lang_block label.active span {
    color: #18bf2e;
}

.lang_block label span {
    display: block;
    position: relative;
    
    color: #B5B5B5;
    leading-trim: both;
    text-edge: cap;
    font-family: 'Hypatia Sans Pro';
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.42px;
}
.lang_block .lang_stick {
    padding: 0 4px;
    
    color: #B5B5B5;
    leading-trim: both;
    text-edge: cap;
    font-family: 'Hypatia Sans Pro';
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.42px;
}
.lang_block label span:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0%;
    height: 1px;
    background: #B5B5B5;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.lang_block label:hover span:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: #B5B5B5;
}
.lang_block label.active span:before {
    content: none;
}
@media screen and (max-width: 576px) {
    .lang_block label span {
        font-size: 18px;
        line-height: 20px;
    }
    .lang_block .lang_stick {
        font-size: 18px;
        line-height: 20px;
    }
}

@media screen and (max-width: 992px) {
    .prod_link span {
        bottom: 126px;
        font-size: 16px;
        line-height: 20px;
    }   
}
@media screen and (max-width: 768px) {
    .prod_link span {
        bottom: 60px;
    }   
}

.product_category{border: none;}
.product_name{margin-bottom: 20px;}
.product_content{margin-top: 40px;}
.product_card-title{
    position: relative;
    margin: 0;
    margin-top: 10px;
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    color: #151515;
}
.product_card-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 40px;
    height: 2px;
    background: #DBB800;
}
.product_text{
    margin-top: 25px;
    font-family: 'Hypatia Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    /* text-align: center; */
    color: #666666;    
}
.bread_crumbs{
    margin: 20px 0;
    color: #666666;
}
.bread_crumbs a {
    color: #666666;
}
.bread_crumbs span{
    color: #18bf2e;
}











