ul {
    padding: 0;
    list-style: none;
}
body{
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--black-color);
    font-family: var(--font-family);
    font-weight: 400;
}
body.gray-body {
    background: #F5F6F6;
}
p{
    margin: 0;
}
.tox-notifications-container {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}
h1, h2 {
    font-size: var(--h2-size);
    text-transform: uppercase;
    line-height: 120%;

}
header > div {
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
    align-items: center;
    margin: 0 40px;
    gap: 0;
}

.logo a {
    display: flex;
    width: 240px;
    height: 44px;
    gap: 13px;
    align-items: center;
}
.logo a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-list {
    flex-wrap: wrap;
}
.items-list-empty {
    text-align: center;
}

.items-list-empty span {
    display: block;
    margin: 32px 0;
    font-size: var(--title-size);
    color: var(--gray-color);
}

.logo {
    display: flex;
    gap: 26px;
    align-items: center;
    margin-right: 0;
}

.search .text-input {
    display: none;
}

.search .button {
    background: url(../images/search.svg) center center no-repeat;
    width: 13px;
    height: 13px;
    color: transparent;
    border: none;
}

header .profile a img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.profile {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.search {
    padding-right: 6px;
    border-right: 1px solid var(--second-gray-color);
    display: flex;
    align-items: center;
}

main {
    width: 1170px;
    margin: 0 auto;
    min-height: 75vh;
}

.news-item {
    width: 374px !important;
    height: auto !important;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #EBF1FF;
    display: flex !important;
    flex-direction: column;
    min-height: 458px;
}

.news-list {
    display: flex;
    gap: 24px;
    justify-content: start;
    flex-wrap: wrap;
}

.news-item a.image {
    height: 248px;
}
.news-info {
    padding: 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}
.news-item .title{
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news-item li span{
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news-item .date{
    
}
.item-info * {
    list-style: none;
    padding: 0;
    color: #000;
    font-weight: 500;
}


.projects-list, .events-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project-item, .events-item {
    width: 100%;
    overflow: hidden;
    display: flex !important;
    gap: 12px;
}

* {box-sizing: border-box;}

.project-info, .events-info {
    padding: 20px;
    border: 2px solid var(--blue15-color);
    border-radius: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partners-list {
    width: 100%;
}

.partners-item {
    border: 1px solid var(--blue15-color);
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    width: 169px;
}

.partners-item a.image {
    width: 88px;
    height: 88px;
    margin: 0 auto;
}

.partners-item a.title {
    font-size: 14px;
}

a.partners-category {
    color: var(--gray-color);
    font-size: 12px;
    font-weight: bold;
}
footer {
    margin-top: 130px;
    margin-bottom: 0;
}

.footer {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 40px;
}

.footer .logo {
    display: block;
    margin-right: 120px;
    width: 44px;
    overflow: hidden;
    border-radius: 8px;
}

span.copyright {
    font-size: 10px;
    color: var(--blach-color);
    display: block;
}

.footer .widget {
    margin: 0;
    margin-left: 157px;
}

footer .widget-title h3 {
    font-size: var(--title-size);
    font-weight: 600;
}

footer .widget-body ul li {
    list-style: none;
    margin-bottom: 11px;
}

footer .widget-body ul {
    padding: 0;
    display: block;
}

footer .widget-body ul li a {
    color: var(--black-color);
}

ul.socials {
    display: flex !important;
    gap: 20px;
}
.item-info ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-info b {
    padding-right: 3px;
    display: block;
    font-weight: 400;
    color: #8A97B1;
    margin-bottom: 4px;
}
.tarifs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tarif-item {
    max-width: 370px;
    flex: 1;
    padding: 40px 48px;
    border-radius: 30px;
    overflow: hidden;
    color: #fff;
    position: relative;
    padding-bottom: 114px;
    font-family: var(--os-family);
    background: var(--blue15-color);
    border: 1px solid var(--blue15-color);
}

.tarif-item h4 {
    font-size: var(--h2-size);
    text-transform: uppercase;
    margin: 0 0 32px;
}

.tarif-item li {
    background: url(../images/li_accept_black.svg) left center no-repeat;
    padding-left: 23px;
    margin-bottom: 24px;
    font-size: var(--title-size);
    color: var(--black-color);
    font-weight: 600;
}

.tarif-item.purple {
    color: #A30DFF;
}

.tarif-item.green h4 {
    color: #00CC83;
}

.tarif-item.orange h4{
    color: #FCC492;
}

.tarif-price {
    font-size: 35px;
    margin-top: 32px;
    color: var(--black-color);
}

.tarif-buttons {
    position: absolute;
    height: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
}

.tarif-buttons > * {
    background: transparent;
    width: 100%;
    display: block;
    line-height: 60px;
    text-align: center;
    font-size: var(--title-size);
    font-weight: 700;
    color: var(--blue-color);
}
.sites-list-container {
    margin: 120px auto;
    width: 770px;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 40px 48px;
}

.sites-list-container h2 {
    margin: 0 0 40px;
}

.sites-item {
    display: flex;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--blue15-color);
    align-items: center;
}

.sites-item a:first-child {
    color: var(--black-color);
    font-size: 16px;
    background: url(../images/www.svg) left center no-repeat;
    padding-left: 52px;
    height: 35px;
    line-height: 35px;
}
header {
    border-bottom: 1px solid var(--blue15-color);
    margin-bottom: 40px;
}

.project-item a.image, .events-item a.image {
    height: 240px;
}
.org-info h1 {
    text-transform: capitalize;
}
.item-info a.status, .item-info .category {
    border: 1px solid var(--blue15-color);
    padding: 8px 16px;
    border-radius: 10px;
}
a.notification-btn {
    width: 30px;
    height: 30px;
    display: inline-block;
    background: url(../images/notify.svg) center center no-repeat;
    cursor: pointer;
}
.notifications-popup-list {
    position: absolute;
    background: #fff;
    width: 800px;
    border-radius: 16px;
    overflow: hidden;
    top: 50px;
    z-index: 99999;
    right: 0;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.1);
}
.tiles span.ignore {
    display: block;
    text-align: right;
    margin-bottom: 10px;
    color: var(--red-color);
}
.notifications-popup-list h4 {
    margin: 30px;
    font-size: var(--title-size);
}

.notification-item {
    padding: 20px 30px;
    position: relative;
}

.notification-buttons {display: flex;gap: 20px;}

.notification-body {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
}

.notification-body a {
    color: var(--blue-color);
}

.notification-footer span {
    color: var(--second-gray-color);
}

.notification-footer .model {
    position: relative;
}

.notification-footer .model:before {
    content: ".";
    font-size: 50px;
    line-height: 0;
    position: relative;
    top: -3px;
}

.notification-footer {
    margin-bottom: 16px;
}

.notification-item:after {
    content: "";
    display: block;
    height: 1px;
    background: var(--blue15-color);
    bottom: 0px;
    position: absolute;
    left: 20px;
    right: 20px;
}

a.button.reject-button {
    background: none;
    color: var(--black-color);
    border: 2px solid var(--blue15-color);
}

a.show-all {
    display: block;
    text-align: center;
    padding: 30px;
    color: var(--black-color);
    font-weight: 600;
}

.notification-item.status-ACCEPT:after, .notification-item.status-IGNORE:after {
    display: none;
}

.notification-item.status-ACCEPT, .notification-item.status-IGNORE {
    background: var(--blue15-color);
    border-radius: 8px;
    margin-top: -1px;
}
.notification-item.read-status-0:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: var(--blue-color);
    border-radius: 50%;
    position: absolute;
    right: 40px;
    top: calc(50% - 10px);
}
.tarif-item.active-tarif {
    background: var(--blue-color);
}

.tarif-item.active-tarif li {
    color: #fff;
}

.active-tarif .tarif-buttons {
    background: transparent;
}

.active-tarif .tarif-buttons > div {
    color: #fff;
}

.active-tarif .tarif-price {
    color: #fff;
}
.active-tarif.tarif-item li {
    background: url(../images/li_accept.svg) left center no-repeat;
}
.active-tarif h4 {
    color: #fff;
}
div#tarifs {
    padding: 0;
    border: none;
}
.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-interaction{
    display: flex;
    gap: 100px;
}
.header-interaction .header-title{
    display: none;
}
.header-contacts a.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding-right: 20px;
    border-right: 1px solid var(--blue15-color);
}

.header-contacts .socials {
    display: flex;
    gap: 18px;
    align-items: center;
    min-width: 120px;
}

.header-contacts .socials a {
    display: flex;
    align-items: center;
}
.mainSlider h1, .mainSlider h2{
    text-transform: none;
}
.mobile-menu-icon{
    display: none;
}
.item-info {
    margin-top: 20px;
}
.projects-list.slider-container-widget {}

.project-item-image {
    width: 400px;
}

.project-item-image .image {
    border-radius: 12px;
    overflow: hidden;
}

.project-item-image .button {
    width: 100%;
    margin-top: 12px;
    height: 48px;
    border-radius: 8px;
    max-height: none;
}

.project-item-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.project-org {
    font-family: Montserrat;
    line-height: 19.2px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 700;
    
}
.project-org span{
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.project-status {
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.project-status.END {
    background: #A9FF3A;
}
.project-status.WORK {
    background: #FFD43A;
}
.project-item-body a.title{
    margin-bottom: 12px;
}
.project-item-body .preview{
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.tags {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}
.events-info .tags {
    gap: 20px;
}

.events-info .tags > div {
    display: flex;
    align-items: center;
    gap: 4px;
}
.border-field-content.contacts {
    background: #407BF9;
    border: none;
    color: #fff;
}

.border-field-content.rekv {
    background: #000;
    color: #fff;
    border: none;
}
.footer > a, .footer > span {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}
span.logo-icon {
    flex: 0 0 44px;
    height: 44px;
    overflow: hidden;
}

.logo a span {
    font-size: 13px;
    font-weight: bold;
    color: #000;
    border-radius: 8px;
    overflow: hidden;
    display: inline-block;
    max-height: 50px;
    overflow: hidden;
}
.slick-slide .news-item {
    height: 100%;
}
.footer .logo a {
    width: 100%;
}
.partners-list.partners_container_class {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.about-us{
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 60px;
}
.about-us .org-photo{
    flex:  0 0 220px;
    border-radius: ;
    overflow: hidden;
}
.about-us .content-item {
    flex:  1 1 auto;
}
