@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

@font-face {
  font-family: 'AlbertSans-Bold';
  src: url("../fonts/AlbertSans-Bold.ttf");
  font-weight: 900;
}

@font-face {
  font-family: 'AlbertSans-Regular';
  src: url("../fonts/AlbertSans-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: 'AlbertSans-Light';
  src: url("../fonts/AlbertSans-Light.ttf");
  font-weight: 300;
}

.footer {
            background-color: #D8D0CA;
            padding: 40px 20px 30px;
            font-family: 'Albert Sans', sans-serif;
        }

        .main_footer_wrapper {
            max-width: 1440px;
            margin: 0 auto;
        }

/* Top Wrapper - Grid Layout */
.footer_top_wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 30px;
    margin-bottom: 40px;
}

/* Header Section */
.footer_header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_logo {
    
}

.footer_logo h2 {
    white-space: nowrap;
    margin-bottom: 20px;
}

.footer_logo p {
    color:#000 !important;
    font-size: 15px;
}

.footer_contact_buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact_button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    border: 1px solid #000;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact_button:hover {
    background-color: #000;
    color: #fff;
    transform: translateX(5px);
}

.contact_button i {
    font-size: 14px;
}

/* Address Section */
.footer_address {
    display: flex;
    flex-direction: column;
}

.footer_address p {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    color: #000 !important;
}

.footer_address a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 12px;
}

.footer_address a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Navigation Section */
.footer_nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.footer_nav_column h3 {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer_nav_column ul {
    list-style: none;
}

.footer_nav_column ul li {
    margin-bottom: 8px;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    transition: all 0.3s ease;
}


.footer_nav_column ul li a {
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer_nav_column ul li a:hover {
    transform: translateX(5px);
    opacity: 0.7;
}

/* Accordion (Hidden on Desktop) */
.accordion_toggle {
    display: none;
}

/* Social & Bottom Section */
.footer_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer_social span {
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

.social_links {
    display: flex;
    gap: 15px;
}

.social_links a {
    color: #000;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social_links a:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

.footer_promo {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;
}

.footer_promo i {
    font-size: 16px;
}

/* Legal Links */
.footer_legal {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer_legal p {
    font-size: 12px;
    color: #000 !important;
}

.footer_legal a {
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer_legal a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .footer_top_wrapper {
        grid-template-columns: 1fr;
    }

    .footer_header {
        align-items: center;
        text-align: center;
    }

    .footer_address {
        align-items: center;
    }

    .footer_nav {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer_nav_column {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .footer_nav_column h3 {
        cursor: pointer;
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
    }

    .footer_nav_column h3::after {
        content: '+';
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .footer_nav_column h3.active::after {
        content: '−';
    }

    .footer_nav_column ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
    }

    .footer_nav_column ul.active {
        max-height: 500px;
        padding: 10px 0 20px;
    }

    .footer_nav_column ul li {
        margin-bottom: 12px;
    }

    .footer_bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer_social {
        flex-direction: column;
    }

    .footer_legal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
/*.footer {
    background-color: #237ACA;
}

.main_footer_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 1410px;
    margin: 0 auto;
}

.footer_content-top {
    display: flex;
    flex-direction: row;
    max-width: 1450px;
    justify-content: space-between;
    margin: 20px 0;
}

.footer_content-top_text-social {
    display: flex;
    flex-direction: row;
    max-width: 800px;
    width: 100%;
    justify-content: space-between;
}

.footer_content-top_text-social a:hover {
    text-decoration: underline;
}

.footer .contentStyle,
.footer .contentStyle a,
.footer .contentStyle p{
    color: #f1f1f1 !important;
}
.footer_content-top_text-info{
    max-width: 550px;
    margin-right: 20px;
}

.top_text-social{
    display: flex;
    flex-direction: column;
}

.footer h5{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer a,
.footer p{
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.top_text-social span{
    font-size: 20px;
    font-weight: 500;
}


.footer_content-botom {
    display: flex;
    justify-content: space-between;
    max-width: 1700px;
    margin-bottom: 50px;
}

@media screen and (max-width: 1162px){
    .footer_content-top{
        flex-direction: column-reverse;
        margin: 20px auto 0;
    }
    .footer_content-botom{
        margin-top: 50px;
        justify-content: space-around;
    }
    .footer_content-top_text-info h5{
        text-align: center;
        margin: 30px 0 20px;
    }

}

@media screen and (max-width: 600px){
    .footer_content-top_text-social{
        flex-direction: column;
        text-align: center;
    }
    .top_text-social {
        margin-top: 20px;
    }
    .footer a{
        line-height: 1.5;
        margin-bottom: 5px;
    }

    .footer h5{
        margin-bottom: 10px;
    }
    .footer_content-top_text-info {
        margin-right: unset;
    }
}

*/

/*///// old footer*/

/*
.footer_columns_wrapper {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 30px;
}

.footer_columns_item {
 !*   max-width: 170px;*!
    !*margin: 20px 35px 0 0;*!
}

.footer_logo_item img {
    width: 140px;
    height: auto;
}
.footer_columns_text{
    !*width: 84%;
    display: flex;
    flex-direction: column;
    margin-left: 40px;*!
    margin: 0 40px 0 20px ;
}
.footer_columns_item5{
    margin: 0 auto;
}
.footer_columns_text1{
    display: flex;
    line-height: 35px;
    justify-content: space-between;
    !*flex-wrap: wrap;*!
}
.footer_columns_text2{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 40px;
}
.footer_columns_item_info1{
    display: flex;
    flex-direction: column;
    min-width: 200px;
}
.footer_columns_item_info2{
    display: flex;
   !* flex-wrap: wrap;*!
}
!*.footer_item_main_header {
    padding-bottom: 20px!important;
}*!

.footer_columns_text1 {
    display: flex;
    flex-direction: column;
}

.footer_item_size_menu{
    max-width: 680px;
    min-width: 250px;
    padding-right: 50px;
}

.footer_item_header {
    color: #ffffff;
    font-weight: bold;
    padding-bottom: 5px;
    margin-right: 10px;
    font-size: 24px;
    font-weight: 500;
}

.footer_item_header a {
    text-decoration: none;
}

.footer_item_header a:hover {
    text-decoration: underline;
}

.footer_item_text_link_col footer_item_pad_bot footer_item_text_flex {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer_item_text_link div img {
    margin-right: 10px;
}

.footer_item_text_link a {
    text-decoration: none;
}

.footer_item_text_link a:hover {
    text-decoration: underline;
}

.footer_item_text_link_fb {
    margin-top: 5px;
}

.footer_item_text_link_fb a img {
    transition: .5s;
}

.footer_item_text_link_fb a img:hover {
    transform: translateY(-3px);
}

.footer_item_header_none {
    color: #ffffff;
}



.footer {
    color: #f1f1f1;
    background-color: #6D8D68;
}

!*.footer__wrapper {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}*!
.footer__wrapper .contentStyle{
    margin: 20px auto;
}


.footer_item_white_text{
    color: #f1f1f1 !important;
    font-size: 16px;
    font-weight: 300;
}

.footer_columns_item_info5 {
    display: flex;
    justify-content: space-between;
}

.footer_contacts a:hover{
    text-decoration: underline;
}

.footer_item_text_link.footer_item_text_link_col.footer_item_text_flex {
    display: flex;
    flex-direction: column;
    align-items: inherit;
}

.footer_item_pad_bot{
    margin-bottom: 18px;
    line-height: 1.5;
}

.footer_contacts{
    margin: 30px;
}

.footer_contacts-payment{
    margin-top: 20px;
    display: flex;
}

.footer_contacts-payment_item{
    width: 55px;
    height: 55px;
    margin-right: 30px;
    display: flex;
    align-items: center;
}
!*.footer_columns_item_size{
    width: 250px;
}*!
.footer_contacts ul{
    display: flex;
    justify-content: space-between;
}
.footer_columns_item_menu_wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 55px;
}
.footer_contacts ul h5{
    font-family: Roboto,sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 16px;
    text-transform: capitalize;
    color: #273349;
    margin-bottom: 15px;
}


.footer_contacts a{
    text-decoration: none;
    color: #273349;
    font-size: 14px;
}

.footer__bottom {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.footer__bottom_item_box {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer__bottom a {
    margin: 0 5px 0 40px;
}

.footer__bottom div{
    margin: 10px;
    display: flex;
    justify-content: center;
}

.footer_contacts ul li {
    margin-right: 30px;
}

.footer_contacts ul h5 a{
    font-family: Roboto,sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 16px;
    text-transform: capitalize;
    color: white;
    margin-bottom: 15px;
}

.footer__bottom img {
    width: 34px;
    height: 34px;
}

.footer__bottom .more_mastercard_width img {
    width: 54px;
}
!*
@media screen and (max-width: 1070px){
    .footer_columns_wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer_columns_item1 {
        grid-column: 1/2;
        grid-row: 2/3;
        margin-left: 10%;
    }
}
@media screen and (max-width: 780px){
    .footer__bottom a{
        margin: 15px;
    }

    .footer__bottom{
        text-align: center;
        flex-direction: column-reverse;
    }

    .footer__bottom p{
        margin-top: 22px;
    }

}

@media screen and (max-width: 768px){
    .footer__wrapper {
        justify-content: center;
    }

}

@media screen and (max-width: 780px){
    .footer_contacts {
        display: flex;
        justify-content: center;
    }
    .footer_contacts ul{
        text-align: center;
        flex-direction: column;
    }
    .footer_contacts ul li{
        margin-bottom: 20px;
    }

    .footer_contacts-payment_item {
        margin-left: 30px;
        margin-right: 0;
    }

}
@media screen and (max-width: 650px) {
    .footer_columns_wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .footer_columns_item4 {
        margin-left: 10%;
    }
}
@media screen and (max-width: 600px){
    .footer__wrapper {
        padding: 15px 0;
    }
    .footer__links {
        margin-bottom: 15px;
    }
    .content {
        box-sizing: border-box;
    }
    .product-card__footer {
        margin-bottom: 30px;
    }
    .contact-footer .contentStyle table tr td {
        display: block;
        width: 100% !important;
    }

    .contact-footer .contentStyle table tr td br {
        display: none;
    }
    .footer__links {
        flex-direction: column;
        align-items: center;
    }
    .footer__link {
        margin-left: 0;
        margin-bottom: 15px;
    }
    .main_img_text h5{
        font-size: 35px;
    }
}

@media screen and (max-width: 500px){
    .footer_media {
        flex-direction: column;
    }
    .footer_media-logo{
        margin-bottom: 35px;
    }
    .main_img_text h5 {
        font-size: 30px;
        line-height: 140%;

    }
}
@media screen and (max-width: 400px){
    .footer_columns_wrapper {
        grid-template-columns: 1fr;
    }

    .footer_logo_item, .footer_columns_item2, .footer_columns_item3, .footer_columns_item5 {
        margin-left: 10%;
    }
    .footer_media-links {
        margin-top: 20px;
    }
    .main_img_text h5 {
        font-size: 30px;
    }

    .img_info_news {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.75%, #000000 82.05%);
    }

    .img_info_news-wrapper .item-info-title,
    .img_info_news-wrapper .item-info-teaser {
        margin-bottom: 20px;
    }
}*!

!*!*-------------------*!
@media screen and (max-width: 1329px){

}
@media screen and (max-width: 989px){
    .footer_columns_text2{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}
@media screen and (max-width: 780px){
    .footer_columns_item{
        margin: 15px 15px 0 0 ;
    }
}
@media screen and (max-width: 845px){
    .footer_columns_wrapper,
    .footer_columns_text1{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer_columns_text{
        margin-top: 20px;
    }
    .footer_logo_item{
        display: flex;
        justify-content: center;
    }
}
@media screen and (max-width: 483px){
    .footer_item_header{
        margin: 15px 0;
    }
}
!*---------------------------------*!*!
@media screen and (max-width: 1305px){
    .footer_columns_item_menu_2{
        display: none;
    }
    .footer_columns_item_info2{
        flex-wrap: wrap;
    }
    .footer_columns_item_menu_wrapper{
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 800px){
    .footer_columns_wrapper{
        flex-direction: column;
    }
}

@media screen and (max-width: 550px){
    .footer_columns_item_menu_wrapper{
        flex-direction: column;
    }

}*/


/* .footer {
    background-color: #6D8D68;
}

.main_footer_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer_content-top {
    display: flex;
    flex-direction: row;
    max-width: 1450px;
    justify-content: space-between;
    margin: 20px 0;
}

.footer_content-top_text-social {
    display: flex;
    flex-direction: row;
    max-width: 800px;
    width: 100%;
    justify-content: space-between;
}

.footer .contentStyle,
.footer .contentStyle a,
.footer .contentStyle p{
    color: #f1f1f1 !important;
}
.footer_content-top_text-info{
    max-width: 550px;
    margin-right: 20px;
}

.top_text-social{
    display: flex;
    flex-direction: column;
}

.footer h5{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer a,
.footer p{
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.top_text-social span{
    font-size: 20px;
    font-weight: 500;
}


.footer_content-botom {
    display: flex;
    justify-content: space-between;
    max-width: 1700px;
    margin-bottom: 50px;
}

@media screen and (max-width: 1162px){
    .footer_content-top{
        flex-direction: column-reverse;
        margin: 20px auto 0;
    }
    .footer_content-botom{
        margin-top: 50px;
        justify-content: space-around;
    }
    .footer_content-top_text-info h5{
        text-align: center;
        margin: 30px 0 20px;
    }

}

@media screen and (max-width: 600px){
    .footer_content-top_text-social{
        flex-direction: column;
        text-align: center;
    }
    .top_text-social {
        margin-top: 20px;
    }
    .footer a{
        line-height: 1.5;
        margin-bottom: 5px;
    }

    .footer h5{
        margin-bottom: 10px;
    }
    .footer_content-top_text-info {
        margin-right: unset;
    }
} */

/*///// old footer*/

/*
.footer_columns_wrapper {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 30px;
}

.footer_columns_item {
 !*   max-width: 170px;*!
    !*margin: 20px 35px 0 0;*!
}

.footer_logo_item img {
    width: 140px;
    height: auto;
}
.footer_columns_text{
    !*width: 84%;
    display: flex;
    flex-direction: column;
    margin-left: 40px;*!
    margin: 0 40px 0 20px ;
}
.footer_columns_item5{
    margin: 0 auto;
}
.footer_columns_text1{
    display: flex;
    line-height: 35px;
    justify-content: space-between;
    !*flex-wrap: wrap;*!
}
.footer_columns_text2{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 40px;
}
.footer_columns_item_info1{
    display: flex;
    flex-direction: column;
    min-width: 200px;
}
.footer_columns_item_info2{
    display: flex;
   !* flex-wrap: wrap;*!
}
!*.footer_item_main_header {
    padding-bottom: 20px!important;
}*!

.footer_columns_text1 {
    display: flex;
    flex-direction: column;
}

.footer_item_size_menu{
    max-width: 680px;
    min-width: 250px;
    padding-right: 50px;
}

.footer_item_header {
    color: #ffffff;
    font-weight: bold;
    padding-bottom: 5px;
    margin-right: 10px;
    font-size: 24px;
    font-weight: 500;
}

.footer_item_header a {
    text-decoration: none;
}

.footer_item_header a:hover {
    text-decoration: underline;
}

.footer_item_text_link_col footer_item_pad_bot footer_item_text_flex {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer_item_text_link div img {
    margin-right: 10px;
}

.footer_item_text_link a {
    text-decoration: none;
}

.footer_item_text_link a:hover {
    text-decoration: underline;
}

.footer_item_text_link_fb {
    margin-top: 5px;
}

.footer_item_text_link_fb a img {
    transition: .5s;
}

.footer_item_text_link_fb a img:hover {
    transform: translateY(-3px);
}

.footer_item_header_none {
    color: #ffffff;
}



.footer {
    color: #f1f1f1;
    background-color: #6D8D68;
}

!*.footer__wrapper {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}*!
.footer__wrapper .contentStyle{
    margin: 20px auto;
}


.footer_item_white_text{
    color: #f1f1f1 !important;
    font-size: 16px;
    font-weight: 300;
}

.footer_columns_item_info5 {
    display: flex;
    justify-content: space-between;
}

.footer_contacts a:hover{
    text-decoration: underline;
}

.footer_item_text_link.footer_item_text_link_col.footer_item_text_flex {
    display: flex;
    flex-direction: column;
    align-items: inherit;
}

.footer_item_pad_bot{
    margin-bottom: 18px;
    line-height: 1.5;
}

.footer_contacts{
    margin: 30px;
}

.footer_contacts-payment{
    margin-top: 20px;
    display: flex;
}

.footer_contacts-payment_item{
    width: 55px;
    height: 55px;
    margin-right: 30px;
    display: flex;
    align-items: center;
}
!*.footer_columns_item_size{
    width: 250px;
}*!
.footer_contacts ul{
    display: flex;
    justify-content: space-between;
}
.footer_columns_item_menu_wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 55px;
}
.footer_contacts ul h5{
    font-family: Roboto,sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 16px;
    text-transform: capitalize;
    color: #273349;
    margin-bottom: 15px;
}


.footer_contacts a{
    text-decoration: none;
    color: #273349;
    font-size: 14px;
}

.footer__bottom {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.footer__bottom_item_box {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer__bottom a {
    margin: 0 5px 0 40px;
}

.footer__bottom div{
    margin: 10px;
    display: flex;
    justify-content: center;
}

.footer_contacts ul li {
    margin-right: 30px;
}

.footer_contacts ul h5 a{
    font-family: Roboto,sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 16px;
    text-transform: capitalize;
    color: white;
    margin-bottom: 15px;
}

.footer__bottom img {
    width: 34px;
    height: 34px;
}

.footer__bottom .more_mastercard_width img {
    width: 54px;
}
!*
@media screen and (max-width: 1070px){
    .footer_columns_wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer_columns_item1 {
        grid-column: 1/2;
        grid-row: 2/3;
        margin-left: 10%;
    }
}
@media screen and (max-width: 780px){
    .footer__bottom a{
        margin: 15px;
    }

    .footer__bottom{
        text-align: center;
        flex-direction: column-reverse;
    }

    .footer__bottom p{
        margin-top: 22px;
    }

}

@media screen and (max-width: 768px){
    .footer__wrapper {
        justify-content: center;
    }

}

@media screen and (max-width: 780px){
    .footer_contacts {
        display: flex;
        justify-content: center;
    }
    .footer_contacts ul{
        text-align: center;
        flex-direction: column;
    }
    .footer_contacts ul li{
        margin-bottom: 20px;
    }

    .footer_contacts-payment_item {
        margin-left: 30px;
        margin-right: 0;
    }

}
@media screen and (max-width: 650px) {
    .footer_columns_wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .footer_columns_item4 {
        margin-left: 10%;
    }
}
@media screen and (max-width: 600px){
    .footer__wrapper {
        padding: 15px 0;
    }
    .footer__links {
        margin-bottom: 15px;
    }
    .content {
        box-sizing: border-box;
    }
    .product-card__footer {
        margin-bottom: 30px;
    }
    .contact-footer .contentStyle table tr td {
        display: block;
        width: 100% !important;
    }

    .contact-footer .contentStyle table tr td br {
        display: none;
    }
    .footer__links {
        flex-direction: column;
        align-items: center;
    }
    .footer__link {
        margin-left: 0;
        margin-bottom: 15px;
    }
    .main_img_text h5{
        font-size: 35px;
    }
}

@media screen and (max-width: 500px){
    .footer_media {
        flex-direction: column;
    }
    .footer_media-logo{
        margin-bottom: 35px;
    }
    .main_img_text h5 {
        font-size: 30px;
        line-height: 140%;

    }
}
@media screen and (max-width: 400px){
    .footer_columns_wrapper {
        grid-template-columns: 1fr;
    }

    .footer_logo_item, .footer_columns_item2, .footer_columns_item3, .footer_columns_item5 {
        margin-left: 10%;
    }
    .footer_media-links {
        margin-top: 20px;
    }
    .main_img_text h5 {
        font-size: 30px;
    }

    .img_info_news {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.75%, #000000 82.05%);
    }

    .img_info_news-wrapper .item-info-title,
    .img_info_news-wrapper .item-info-teaser {
        margin-bottom: 20px;
    }
}*!

!*!*-------------------*!
@media screen and (max-width: 1329px){

}
@media screen and (max-width: 989px){
    .footer_columns_text2{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}
@media screen and (max-width: 780px){
    .footer_columns_item{
        margin: 15px 15px 0 0 ;
    }
}
@media screen and (max-width: 845px){
    .footer_columns_wrapper,
    .footer_columns_text1{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer_columns_text{
        margin-top: 20px;
    }
    .footer_logo_item{
        display: flex;
        justify-content: center;
    }
}
@media screen and (max-width: 483px){
    .footer_item_header{
        margin: 15px 0;
    }
}
!*---------------------------------*!*!
@media screen and (max-width: 1305px){
    .footer_columns_item_menu_2{
        display: none;
    }
    .footer_columns_item_info2{
        flex-wrap: wrap;
    }
    .footer_columns_item_menu_wrapper{
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 800px){
    .footer_columns_wrapper{
        flex-direction: column;
    }
}

@media screen and (max-width: 550px){
    .footer_columns_item_menu_wrapper{
        flex-direction: column;
    }

}*/
