@import "fonts.css";
@import "theme.css";
:root {
    --white: #ffffff;
    --black: #000000;
    --dark-blue: #274F73;
    --light-blue: #549DDE;
    --soft-grey: #808080;
    --light-grey: #E9EDF6;
    --dark-grey: #464646;
}
* {
    box-sizing: border-box;
    transition: background-color 0.7s ease,
    color 0.7s ease;
}
a, a:hover {
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
ul {
    padding: 0;
    margin: 0;
}
li{
    list-style-type: none;
}
p {
    margin: 0;
}
button{
    padding: 0;
}
.inherit-styles * {
    font-family: inherit!important;
    font-size: inherit!important;
    font-weight: inherit!important;
    line-height: inherit!important;
    text-align: inherit!important;
    /* color: inherit!important; */
    background: none !important;
    background-color: unset !important;
}
input:focus,textarea:focus, select:focus {
    box-shadow: none;
    outline: none;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background: #ecf0f1;
}

.section-content{
    margin: 0 auto;
    width: 100%;
}
.wrapper {
    max-width: 1512px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
}
.main-padding{
    padding-left: 80px;
    padding-right: 80px;
}
/*HEADER*/
header#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001; 
}

.wrapper {
    padding-top: 120px; 
}

@media only screen and (max-width: 600px) {
    .wrapper {
        padding-top: 120px;
    }
}


.header-search input[type=text] {
    width: 224px;
    border: 1px solid #D9D9D9;
    border-radius: 50px;
    font-size: 14px;
    background-color: white;
    padding: 8px 16px;
    color: var(--soft-grey);
}
header{
    width: 100%;
}
.header-list{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}
.header-logo{
    display: flex;
    justify-content: flex-start;
    /* margin-left: 8%; */
    width: 162px;
    height: 77px;
}
.header-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-menu-config-list{
    width: calc(100% - 134px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    /* margin-left: 18%; */
    gap: 27px;
}
.header-menu{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.header-config{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}
nav{
    display: flex;
    align-items: center;
}
.nav-menu{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.nav-menu-item a{
    display: flex;
    align-items: center;
    width: 100%;
    font-family: montserratarm-regular;
    font-size: 15px;
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    text-transform: uppercase;
    padding-left: 15px;
    padding-right: 15px;
}
.nav-menu-item a:hover{
    background: var(--dark-blue);
}
.header-search{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-search button{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translatey(-50%);
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 15px;
    height: 15px;
}
.header-search button img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-theme-switcher{
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-theme-switcher button{
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 25px;
    height: 25px;
}
.header-theme-switcher button img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*FOOTER*/
footer{
    width: 100%;
    padding: 39px 0  39px 0;
    background: var(--dark-blue);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-menu{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 86px;
}
.footer-menu-categories{
    max-width: 530px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
}
.footer-menu-categories-columns{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 89px;
}
.footer-menu-categories-columns > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
}
.footer-menu-categories-columns > ul > li{
    width: calc(50% - 5px);
}
.footer-menu-categories-item a{
    font-family: montserratarm-regular;
    font-size: 14px;
    font-weight: 400;
    line-height: 27.82px;
    text-align: left;
    color: var(--white);
}
.footer-contact{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 27px;
}
.footer-menu-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 36px;
}
.footer-menu-title > a, .footer-menu-title > span{
    font-family: montserratarm-regular;
    font-size: 15px;
    font-weight: 700;
    line-height: 18.29px;
    text-align: left;
    color: var(--white);
}
.footer-menu-list-cup, .footer-menu-list-foot{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-contact-cup{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 13px;
}
.footer-contact-cup p{
    font-family: montserratarm-regular;
    font-size: 15px;
    font-weight: 600;
    line-height: 18.28px;
    text-align: right;
    color: var(--white);
}
.footer-contact-social{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 26px;
}
.footer-contact-social li a{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-contact-social li a svg{
    width: 100%;
    height: 100%;
    object-fit: contain;
    fill: var(--white);
}
/*BANNER*/
.slider{
    width: 100%;
    display: flex;
    align-items: center;
}
.banner-slider{
    width: 100%;
    height: 674px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.swiper-banner{
    position: relative;
}
.single-product-slide-item{
    width: 100%;
    height: 674px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-product-slide-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-banner{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.swiper-banner .swiper-pagination-bullet{
    background: #D9D9D9;
    opacity: 0.5;
}
.swiper-banner .swiper-pagination-bullet-active {
    background: #D9D9D9;
    opacity: 1;
}
.swiper-banner .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{
    bottom: 132px;
}
.banner-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    width: 100%;
    max-width: 862px;
    gap: 36px;
    top: 186px;
    left: 80px;
    z-index: 10;
}
.banner-info h1{
    font-family: sos;
    font-size: 66px;
    font-style: italic;
    font-weight: 700;
    line-height: 85.39px;
    text-align: left;
    color: var(--white);
}
.banner-info a{
    padding: 6px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 51px;
    font-family: montserratarm-regular;
    font-size: 32px;
    font-weight: 600;
    line-height: 39.24px;
    text-align: center;
    color: var(--dark-blue);
    text-transform: uppercase;
}
.banner-social{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 10;
}
.banner-social-list{
    display: flex;
    flex-direction: column;
    gap: 13px;
    overflow-x: hidden;
}
.banner-social-list li{
    height: 53px;
    width: 177px;
    background-color: var(--light-blue);
    border-radius: 20px 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 13px;
    position: relative;
    right: -124px;
    transition: 0.5s;
    cursor: pointer;
}

.banner-social-list li:hover{
    right: 0;
}

.banner-social-list li span{
    font-family: montserratarm-regular;
    font-size: 20.34px;
    font-weight: 700;
    line-height: 24.8px;
    text-align: left;
    color: var(--white);
}
.banner-social-list li a{
    width: 100%;
    height: 100%;
    gap: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.banner-social-list li a img{
    width: 31px;
    height: 31px;
    object-fit: contain;
}
/*CATEGORIES*/
.categories{
    position: relative;
    margin-top: -92px;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}
.categories-list{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 17px;
}
.categories-list-item{
    width: calc(100% / 5 - 17px);
    height: 201px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.categories-list-item a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    padding: 40px 11px;
}
.categories-list-img{
    width: 46px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.categories-list-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.categories-list-item a p{
    font-family: montserratarm-regular;
    font-size: 20.96px;
    font-weight: 500;
    line-height: 25.55px;
    text-align: center;
    text-transform: uppercase;
}
.abilities{
    width: 100%;
    height: 570px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 29px;
}
.abilities-content{
    width: calc(100% - 343px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 2px 0px #00000040;
    border-radius: 25px;
    background-image: url("../images/abilities/background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 105px 94px;
}
.abilities-list{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 31px;
    align-items: center;
    justify-content: center;
}
.abilities-list-item{
    width: calc(100% / 2 - 31px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 58px 33px;
    gap: 41px;
    box-shadow: 2px 2px 2px 0px #00000040;
    background-color: var(--white);
    border-radius: 20px;
}
.abilities-list-item-img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
.abilities-list-item-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.abilities-list-item-title{
    width: calc(100% - 110px);
    font-family: montserratarm-bold;
    font-size: 20px;
    font-weight: 700;
    line-height: 24.38px;
    text-align: left;
    color: var(--dark-grey);
}
.sidebar-ads{
    width: 323px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 43px;
}
.sidebar-ads-img{
    width: 100%;
    border-radius: 20px;
    box-shadow: 2px 2px 2px 0 #00000040;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-ads-img img{
    width: 100%;
    border-radius: 20px;
}
.news{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 90px;
}
.news-content{
    width: calc(100% - 343px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.news-content-title{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 46px;
    margin-bottom: 39px;
}
.news-content-title h1{
    font-family: montserratarm-regular;
    font-size: 68px;
    font-weight: 700;
    line-height: 83.33px;
    text-align: left;
    color: var(--dark-blue);
    text-transform: uppercase;
}
.news-list{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 35px;
}
.news-list-items{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.more-news-btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.more-news-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 32px;
    border-radius: 33px;
    background-color: var(--dark-blue);
    color: var(--white);
    box-shadow: 1px 1px 2px 0px #00000040;
    font-family: montserratarm-regular;
    font-size: 26px;
    font-weight: 400;
    line-height: 32.1px;
    text-align: center;
    text-transform: uppercase;
}
.news-list-item a{
    position: relative;
    display: flex;
    flex-direction: row;
    max-width: 437px;
    max-height: 114px;
    height: 100%;
    width: 100%;
    gap: 13px;
    border-radius: 20px;
    background: #FCFCFC;
    box-shadow: 1px 1px 2px 0px #00000040;
}
.news-list-item-img {
    width: 114px;
    height: 114px;
    border-radius: 20px;
}
.news-list-item-img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.news-list-item-info{
    width: calc(100% - 115px);
    padding: 10px 30px 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}
.news-list-item-info-title{
    font-family: montserratarm-regular;
    font-size: 15px;
    font-weight: 700;
    line-height: 18.29px;
    text-align: left;
    color: var(--dark-grey);
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.news-list-item-info p{
    font-family: montserratarm-regular;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.63px;
    text-align: left;
    color: var(--soft-grey);
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.target-link{
    position: absolute;
    bottom: 8px;
    right: 12px;
    border-radius: 50%;
    border: 1px solid var(--dark-blue);
    background-color: var(--dark-blue);
    width: 34px;
    height: 34px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.target-link span{
    width: 19px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.target-link span svg{
    fill: white;
}
.target-link:hover{
    background-color: var(--white);
}
.target-link:hover span svg{
    fill: var(--dark-blue);
}
.page-banner{
    position: relative;
    width: 100%;
    min-height: 390px;
    padding: 90px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-size: cover;
    background-position: top center;
}
.page-banner h1{
    color: var(--white);
    font-family: montserratarm-bold;
    font-size: 70px;
    font-weight: 700;
    line-height: 85.33px;
    text-transform: uppercase;
}
/*ABOUT*/

.about{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 28px 134px 28px;
}
.about-logo{
    width: 827px;
    height: 261px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}
.about-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about-description{
    width: 100%;
    max-width: 1055px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    margin-bottom: 68px;
}
.about-description-text{
    font-family: montserratarm-regular;
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: center;
    color: var(--black);
}
.about-description-title{
    font-family: montserratarm-regular;
    font-size: 20px;
    font-weight: 800;
    line-height: 46.4px;
    text-align: center;
    color: var(--dark-blue);
    text-transform: uppercase;
}
.about-social{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    margin-bottom: 85px;
}
.about-social-item{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 11px;
    background-color: #F3F3F3;
    border-radius: 20px;
}
.about-social-item a{
    box-shadow: -2px 1px 1px 0px #00000066;
    background-color: var(--light-blue);
    border-radius: 20px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-social-item a svg{
    fill: var(--white);
}
.about-social-item a:hover{
    background-color: var(--dark-blue);
}
.about-contact{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
}
.about-contact h2{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: montserratarm-bold;
    font-size: 36px;
    font-weight: 600;
    line-height: 43.88px;
    text-transform: uppercase;
    color: var(--dark-blue);
}
.about-contact-form{
    width: 100%;
    max-width: 478px;
    padding: 28px 20px;
    border-radius: 20px;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-contact-form form{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}
.about-contact-form form input{
    outline: none;
    width: 100%;
    border: none;
    background-color: var(--white);
    border-radius: 30px;
    height: 55px;
    padding: 19px 23px;
    font-family: montserratarm-regular;
    font-size: 15px;
    font-weight: 400;
    line-height: 18.29px;
    text-align: left;
    color: #767676;
}
.about-contact-form form input::placeholder{
    font-family: montserratarm-regular;
    font-size: 15px;
    font-weight: 400;
    line-height: 18.29px;
    text-align: left;
    color: #767676;
}
.about-contact-form form input[type='submit']{
    background-color: var(--dark-blue);
    font-family: montserratarm-regular;
    font-size: 15px;
    font-weight: 400;
    line-height: 18.29px;
    text-align: center;
    color: var(--white);
    cursor: pointer;
}
.about-contact-form form input[type='submit']:hover{
    background: var(--light-blue);
    color: var(--white);
}
.sidebar-ads-news{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.sidebar-ads-news-item a{
    display: flex;
    flex-direction: row;
    width: 100%;
    max-height: 114px;
    height: 100%;
    gap: 9px;
    border-radius: 20px;
    background: #FCFCFC;
    box-shadow: 1px 1px 2px 0px #00000040;
}
.sidebar-news-list-item-img{
    width: 114px;
    height: 114px;
    border-radius: 20px;
}
.sidebar-news-list-item-img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.sidebar-news-list-item-info{
    max-width: 198px;
    padding: 10px 9px 10px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}
.sidebar-news-list-item-info-title{
    width: 100%;
    font-family: montserratarm-regular;
    font-size: 14px;
    font-weight: 700;
    line-height: 17.07px;
    text-align: left;
    color: var(--dark-grey);

    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.sidebar-news-list-item-info p{
    width: 100%;
    font-family: montserratarm-regular;
    font-size: 11px;
    font-weight: 400;
    line-height: 13.41px;
    text-align: left;
    color: var(--soft-grey);
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

/*NEWS*/
.news-section{
    margin-top: 75px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 90px;
}
.news-section-title{
    width: 64%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.news-section-title h1{
    font-family: montserratarm-bold;
    font-size: 30px;
    font-weight: 700;
    text-align: left;
    color: var(--dark-blue);
}
.news-section-inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 137px;
    align-items: flex-start;
    justify-content: space-between;
}
.news-section-content{
    width: calc(100% - 460px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
}
.news-section-content-img{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
.news-section-content-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}
.news-section-content-description{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: montserratarm-regular;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.5px;
    text-align: left;
    color: var(--black);
}
.news-section-content-gallery{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
    gap: 18px;
}
.news-section-content-gallery-item{
    width: 209px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
.news-section-content-gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}
.news-section-items{
    width: calc(100% - 460px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.news-section-item {
    width: 100%;
}
.news-section-item a{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    max-height: 232px;
    height: 100%;
    gap: 23px;
    border-radius: 25px;
    background: #FCFCFC;
    box-shadow: 1px 1px 2px 0 #00000040;
}
.news-section-item-img{
    width: 232px;
    height: 232px;
    border-radius: 25px;
}
.news-section-item-img img{
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}
.news-section-item-info{
    width: 100%;
    max-width: calc(100% - 255px);
    height: auto;
    padding: 12px 20px 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.news-section-item-info-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.news-section-item-info-title{
    font-family: montserratarm-regular;
    color: var(--dark-grey);
    font-size: 18.81px;
    font-weight: 700;
    line-height: 22.93px;
    text-align: left;
}
.news-section-item-info-inner p{
    font-family: montserratarm-regular;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.31px;
    text-align: left;
    color: var(--soft-grey);
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.news-section-item-target-link{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-section-item-target-link p{
    font-family: montserratarm-regular;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.5px;
    text-align: left;
    color: #AAAAAA;
}
.news-section-item-target-link-img{
    border-radius: 50%;
    border: 1px solid var(--dark-blue);
    background-color: var(--dark-blue);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.news-section-item-target-link-img span{
    width: 23px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-section-item-target-link-img span img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-section-item-target-link-img span svg{
    fill: white;
}
.news-section-item-target-link-img:hover{
    background-color: var(--white);
}
.news-section-item-target-link-img:hover span svg{
    fill: var(--dark-blue);
}
/*COMPANIES*/
/* .companies{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 74px;
}
.companies-content{
    width: 100%;
    max-width: 538px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
} */
.category-details-item{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
summary {
    position: relative;
    color: #414870;
    cursor: pointer;
    width: 100%;
    border-bottom: 2px solid #F3F3F3;
    text-align: left;
    font-family: montserratarm-regular;
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
}

summary:before {
    width: 18px;
    height: 9px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: '';
    background: url("../images/icons/down.png");
    background-size: contain;
    background-repeat: no-repeat;
}

/*summary:after {*/
/*    top: 50%;*/
/*    right: 0;*/
/*    transform: translateY(-50%);*/
/*    background: url("../images/icons/up.png");*/
/*    width: 18px;*/
/*    height: 9px;*/
/*    background-size: contain;*/
/*    background-repeat: no-repeat;*/
/*}*/
.category-details-item > summary {
    list-style: none;
}
.category-details-item > summary::-webkit-details-marker {
    display: none;
}
.companies-panel {
    background-color: white;
}
.companies-panel ul{
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.companies-panel ul li{
    list-style-type: disc;
    cursor: pointer;
}
.companies-panel ul li a{
    font-family: montserratarm-regular;
    font-size: 22px;
    font-weight: 500;
    line-height: 52.08px;
    text-align: left;
    color: var(--dark-grey);
}
.companies-ads{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 90px;
}
.companies-ads-img{
    width: 100%;
    max-width: 1353px;
    height: 100%;
    max-height: 542px;
    border-radius: 20px;
}
.companies-ads-img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: contain;
}
.pagination-block{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}
.pagination-block .pagination{
    display: flex;
    gap: 10px;
    font-size: 24px;
    font-weight: 400;
    line-height: 38.24px;
}
.pagination-block .pagination .page-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}
.pagination-block .pagination .page-item > a,
.pagination-block .pagination .page-item > span{
    color: var(--dark-blue);
    font-family: montserratarm-regular;
}
.pagination-block .pagination .page-item.disabled > span {
    opacity: 0.5;
}
.pagination-block .pagination .page-item.active {
    border-radius: 50%;
    background: var(--dark-blue);
}
.pagination-block .pagination .page-item.active span {
    color: var(--white);
}
.pagination-block .pagination .page-item:first-child > a,
.pagination-block .pagination .page-item:last-child > a {
    font-size: 34px;
}
 /*COMPANY*/

.company-banner{
    width: 100%;
    min-height: 390px;
    padding: 90px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-size: cover;
    background-position: top center;
}
.company-padding{
    padding-left: 194px;
    padding-right: 194px;
}
.company{
    margin-top: -110px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.company-page-hat{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 46px;
}
.company-page-hat-leftbar{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 22px;
}
.company-page-hat-logo{
    width: 233px;
    height: 233px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.company-page-hat-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.company-page-hat-title{
    display: flex;
    max-width: 361px;
    width: 100%;
    justify-content: flex-start;
}
.company-page-hat-title p{
    font-family: montserratarm-regular;
    font-size: 30px;
    font-weight: 500;
    line-height: 36.57px;
    text-align: left;
    color: #264F73;
}
.company-page-social-line{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 43px;
}
.company-page-social-list{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.company-page-social-list li{
    width: 56.72px;
    height: 57.47px;
    border-radius: 20px;
    background: #F3F3F3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.company-page-social-list li span{
    padding: 7px 9px;
    border-radius: 15px;
    background: var(--light-blue);
    box-shadow: -2px 1px 1px 0 #00000066;
    display: flex;
    align-items: center;
    justify-content: center;
}
.company-page-social-list li span a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}
.company-page-social-list li span img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.company-page-social-list li span a svg path{
    fill: var(--white);
}
.company-page-social-list li:hover span{
    background-color: var(--dark-blue);
}
.company-description{
    width: 90%;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 46px;
    font-family: montserratarm-regular;
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: justify;
    color: var(--black);
}
.company-gallery{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 90px;
}
.gallery-item{
    width: 255px;
    height: 256px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    box-shadow: 2px 2px 2px 0px #00000040;
}
.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
}
.gallery-item iframe{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
}
#zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(54 52 52 / 76%);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
#zoom-modal img {
    max-width: 613px;
    width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

#close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
#prev-btn,
#next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

#prev-btn {
    left: 29%;
}

#next-btn {
    right: 30%;
}
#zoomed-img{
    width: 613px;
    height: 616px;
}
#mobileMenu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}
#mobileMenu .fa-times{
    color: var(--white);
}
#mobileMenu[data-status='closed'] .fa-times{
    display: none;
}
#mobileMenu[data-status='closed'] .fa-bars{
    display: block;
}
#mobileMenu[data-status='opened'] .fa-bars{
    display: block;
}
#mobileMenu[data-status='opened'] .fa-times{
    display:none ;
}
.mobile-menu {
    display: none;
}
/*===RESPONSIVE===*/
@media only screen and (max-width: 1366px) {
    .categories-list-item a p {
        font-size: 15px;
    }
    .news-list-item a {
        max-width: 420px;
    }
}
@media only screen and (max-width: 1280px) {
    .abilities-list-item {
        gap: 20px;
    }
    .abilities-list-item-title {
        font-size: 15px;
    }
    .news-list-item a {
        max-width: 375px;
    }
}
@media only screen and (max-width: 1024px) {
    .header-menu {
        display: none;
    }
    .news-list-item a {
        max-width: 100%;
    }
    .abilities {
        height: auto;
    }
    .abilities-list-item {
        width: 100%;
    }
    .abilities-content {
        padding: 30px;
    }
    .news-content-title h1 {
        font-size: 40px;
    }
    .categories-list {
        justify-content: center;
    }
    .categories-list-item {
        width: calc(100% / 4 - 15px);
    }
    #mobileMenu {
        display: block;
    }
    .mobile-menu {
        display: block;
        position: fixed;
        z-index: 999;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: #274f73a6;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.7s;
    }
    .mobile-menu.active {
        top: 0;
    }
    .mobile-menu > .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    .mobile-menu > .nav-menu > .nav-menu-item a{
        color: white;
        font-size: 2em;
        margin-bottom: 10px;
    }
    .news-section-items {
        width: 100%;
    }
    .news-section-inner {
        gap: 20px;
    }
    .sidebar-news-list-item-info {
        max-width: calc(100% - 115px);
    }
}
@media only screen and (max-width: 768px) {
    .abilities {
        flex-direction: column;
    }
    .abilities-content {
        width: 100%;
    }
    .sidebar-ads {
        width: 100%;
        height: auto;

    }
    .news {
        flex-direction: column;
    }
    .news-content {
        width: 100%;
    }
    footer {
        flex-direction: column;
    }
    .footer-menu-categories-columns > ul > li {
        width: 100%;
    }
    .footer-contact {
        align-self: flex-end;
    }
    .categories-list-item {
        width: calc(100% / 2 - 15px);
    }
    .news-section-inner {
        flex-direction: column;
    }
    .news-section-content {
        width: 100%;
    }
    .news-section-content-gallery {
        justify-content: center;
    }
    .page-banner {
        min-height: 300px;
    }
    .page-banner h1 {
        font-size: 30px;
    }
    .news-section-title h1 {
        font-size: 30px;
    }
    .companies {
        flex-direction: column;
    }
    .company-padding {
        padding-left: 30px;
        padding-right: 30px;
    }
    .company-gallery {
        justify-content: center;
    }
    .about-logo {
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .header-list {
        flex-direction: column;
    }
    .banner-slider {
        height: 300px;
    }
    .categories {
        margin-top: 20px;
    }
    .banner-info {
        max-width: 100%;
        top: 50%;
        left: 30px;
        z-index: 10;
        transform: translateY(-50%);
    }
    .header-menu-config-list {
        width: 100%;
    }
    .categories-list-item {
        width: calc(100% - 15px);
    }
    .main-padding {
        padding-left: 20px;
        padding-right: 20px;
    }
    .mobile-menu > .nav-menu > .nav-menu-item a {
        color: white;
        font-size: 1em;
        margin-bottom: 0;
    }
    .news-section-item a {
        width: 100%;
        max-height: unset;
        flex-direction: column;
    }
    .news-section-item-img {
        width: 100%;
    }
    .news-section-item-info {
        max-width: 100%;
        padding: 20px;
    }
    .company-page-hat-leftbar {
        flex-direction: column;
    }
    .swiper-banner {
        height: 100%;
    }
    .single-product-slide-item {
        height: auto;
    }
    .banner-info {
        display: none;
    }
    .page-banner {
        padding: 20px;
    }
    .page-banner h1 {
        font-size: 1.3em;
    }
    .company-page-hat {
        flex-direction: column;
    }
    .company-page-hat-leftbar {
        align-items: center;
    }
    .company-page-social-line {
        width: 100%;
        justify-content: center;
    }
    .companies-panel ul {
        gap: 20px;
    }
    .companies-panel ul li a {
        line-height: 25px;
    }
}