/*=====RESET============================================================================*/
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;
    overflow-y: scroll;
}
*{
    transition: all linear 0.1s 0s;
}
textarea {
    resize: none;
}

body.gray-body {
    background: #F5F6F6;
}
a{
    text-decoration: none;
    color: var(--main-blue-color);
}
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;
}

/*=====HEADER============================================================================*/

.landing header > div {
    width: 1170px;
}
header > div {
    display: flex;
    padding: 30px 0;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    /* gap: 92px; */
}
header .header-iteraction{
    display: flex;
    gap: 24px;
}
.search .text-input:focus-visible {
    outline: none;
}
.logo > a {

    display: block;
    width: 181px;
    height: 31px;
    background-size: contain !important;
}
.logo > a svg{
    width: 183px;
    height: 31px;
}
.top-logo{
    display: none;
}
.search-mobile-btn{
    
    display: none !important;
    cursor: pointer;
    display: flex;
    
}
.search .text-input {
    width: 441px;
    height: 42px;
    background: #fff;
    border: none;
    padding:0 35px 0 20px;
    border-radius: 8px;
}
.search .text-input, .search .text-input::placeholder{
    color: var(--second-gray-color);
}

.search button {
    width: 36px;
    height: 36px;
    color: transparent;
    border: none;
    position: absolute;
    right: 3px;
    top: 3px;
    padding: 0;
    background-color: rgba(0,0,0,0);
}
.logo {
    display: flex;
    gap: 26px;
    align-items: center;
    margin-right: 0;
}

header .profile-btn > a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(203, 214, 236, 1);
    background-color: var(--main-blue-color);
}

.profile {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.search {
    align-items: center;
    position: relative;
    border: 2px solid var(--blue15-color);
    border-radius: 8px;
}

.landing .search{
    border: none;
}
header {
    /* border-bottom: 1px solid var(--blue15-color); */
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
}
.landing header a.button {
    background: #fff;
    color: var(--black-color);
}
a.notification-btn {
    width: 32px;
    height: 32px;
    display: inline-block;
    background: url(../images/notify.svg) center center no-repeat;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}
a.notification-btn.active{
    background-color: var(--light-blue-color);
}
.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);
    max-height: 600px;
    overflow-y: auto;
}
.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 {
    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);
}
.profile-menu {
    position: absolute;
    background: #fff;
    top: 40px;
    right: 0;
    border-radius: 8px;
    overflow: hidden;
    height: 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.profile-menu a {
    padding: 10px 50px;
    display: block;
    color: rgba(105, 116, 140, 1);
    text-align: center;
    font-weight: 500;
    line-height: 16px;
}
.profile-btn:hover .profile-menu {
    height: auto;
}
header .profile-btn > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*=====NEWS============================================================================*/
.news-item-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    height: 284px;
}
.news-item-content > div:last-child{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-item-flex{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}
.news-item-flex a.image{
    width: 28px;
    height: 28px !important;
    min-width: 28px;
    min-height: 28px;

    border-radius: 50%;
}
.news-item-flex span{
    font-size: 12px;
    font-weight: 400;
    line-height: 14.4px;
    color: var(--second-gray-color);
}
.news-item-flex .author{
    display: flex;
    gap: 8px;
    align-items: center;
}
.news-item-flex .news-text{
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 30px;
}
.news-item-flex .news-text.news-title{
    -webkit-line-clamp: 4;
    max-height: none;

}
.news-partners{
    align-items: end;
}
.news-partners-stack {
    position: relative;
    width: 48px;
    height: 28px;
}
.news-partners-stack a{
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid white;
}
.news-partners-stack a:nth-child(2){
    right: 10px;
}
.news-partners-stack a:nth-child(3){
    right: 20px;
}
/*====================================================*/
.content-list {
    flex-wrap: wrap;
}
.items-list-empty {
    text-align: center;
    border: 2px solid var(--blue15-color);
    padding: 61px 276px;
    border-radius: 30px;
}

.items-list-empty span {
    display: block;
    margin: 24px 0;
    font-size: 18px;
    color: var(--gray-color);
}

main {
    width: 1170px;
    margin: 100px auto;
    position: relative;
}

.news-item {
    width: 370px;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid var(--blue15-color);
    height: 100%;
    position: relative;
}
.swiper .news-item{
    width: 370px;
    height: 532px;
}
.news-list {
    display: flex;
    gap: 30px;
    justify-content: start;
    flex-wrap: wrap;
}

.news-item a.image {
    height: 248px;
    margin-bottom: 0;
}

.item-info * {
    list-style: none;
    padding: 0;
    color: rgba(138, 151, 177, 1);
}

.news-info {
    padding: 24px;
}
.projects-list, .events-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project-item, .events-item {
    width: 570px !important;
    max-width: 570px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--blue15-color);
    position: relative;
}
.project-item .title,
.events-item .title{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 72px;
}
* {box-sizing: border-box;}

.project-info, .events-info {
    height: 190px !important;
    padding: 12px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.project-info .item-info li,
.events-info .item-info li{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.partners-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    /* min-height: 335px; */
}

.partners-item {
    border: 1px solid var(--blue15-color);
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    width: 169px !important;
    min-height: 261px !important;
    display: flex !important;
    justify-content: space-between;
    flex-direction: column;
    /* align-items: center; */
}

.partners-item a.image {
    width: 88px;
    height: 88px;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
    border-radius: 50%;
}

.partners-item a.title {
    font-size: 14px;
}

a.partners-category {
    color: var(--gray-color);
    font-size: 12px;
    font-weight: bold;
}
.footer {
    /* width: 1170px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid var(--blue15-color);
    padding: 0;
}
.footer-top{
    width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    padding: 80px 0;
}
.footer .logo {
    display: flex;
    flex-direction: column;
    align-items: start;
    min-width: 480px;
    /* margin-right: 300px; */
    font-size: 13px;
    color: var(--new-third-gray-color);
    line-height: 140%;
}
.footer .logo div:last-child{
    max-width: 200px;
}

span.copyright {
    font-size: 14px;
    margin-top: 20px;
    color: var(--blach-color);
    display: block;
    width: 150px;
    margin-bottom: 32px;
}

.footer .widget {
    margin: 0;
}
.footer .widget h3{
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
}

.footer .widget-body ul li {
    list-style: none;
    margin-bottom: 4px;
    padding: 0;
    
}
.footer .widget-body li a{
    color: var(--new-third-gray-color) !important;
    font-size: 14px;
    line-height: 120%;
}
.footer .widget-body ul {
    padding: 0;
    display: block;
}
.footer .social{
    display: flex;
    justify-content: start;
    margin-top: 12px;
    gap: 4px;
}
.footer-bottom{
    padding: 24px 0;
    border-top: 1px solid var(--blue15-color);

}
.footer-bottom > div{
    width: 1170px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom > div div:last-child{
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-bottom, .footer-bottom a{
    font-size: 13px;
    color: var(--new-third-gray-color);
}
.footer-bottom .docs{
    display: flex;
    gap: 20px;
}
.item-info ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-info b {
    padding-right: 3px;
}
.tarifs{
    margin-bottom: 80px;
}
.tarifs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.tarifs-title{

    font-size: var(--h2-size);
    font-weight: 600;
    line-height: 32.5px;
    margin-bottom: 40px;
}
.tarif-item {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 24px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    /* padding-bottom: 114px; */
    font-family: var(--font-family);
    background: #FFF;
    border: 2px solid #CBD6EC;
    /* transition: all 0.2s; */
}
.tarif-item:hover{
    border: 2px solid #407BF9
}
.tarif-item h4 {
    text-transform: uppercase;
    margin: 0;
    /* margin-bottom: 30px; */
    color: #293550;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;

}
.tarif-item h6{
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
    margin: 0;
}
.tarifs-price{
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid #CBD6EC;
}

.tarif-price {
    color: #293550;
    /* margin-bottom: 30px; */
    font-size: 12px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: left;
    min-width: 159px;
}
.tarif-price .blue{
    color: #407BF9;
    font-size: 32px;
    font-weight: 700;
    line-height: 30.8px;
}
.tarifs-discount{
    max-width: 123.67px;
    max-height: 44px;
    line-height: 14px;    
    padding: 8px 12px 8px 12px;
    border-radius: 4px;
    background: #EBF1FF;
    position: relative;

}
.tarifs-discount::before{
    content: "";
    position: absolute;
    top: 15px;
    left: -5px;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background: #EBF1FF;


}
.tarif-item .tarif-options{
    flex: 1 1 auto;
}
.tarif-item li {

    margin-bottom: 16px;
    font-size: 18px;
    line-height: 25px;
    color: var(--black-color);
    font-weight: 400;
}
.tarif-item table{
    width: 100%;
}
.tarif-item tr{

}
.tarif-item th{
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: #8A97B1;
    text-align: left;
    padding-bottom: 4px;
    
}
.tarif-item td{
    font-weight: 700;
    line-height: 19.6px;
    color: #293550;
    padding: 0;
    text-align: right;
    border: none;
}

.tarif-buttons {
    
    display: flex;
    justify-content: center;
    margin-top: 24px;

}
.tarif-buttons .button{
    line-height: 24.4px;
    text-align: center;
    background: transparent;
    font-size: 16px;
    font-weight: 400;
    color: white;
    padding: 12.5px 0;
    width: 100%;
    background: #407BF9;
    
    border-radius: 4px;
}
.tarifs-warning{
    max-width: 625px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    margin-top: 40px;
}
.tarifs-warning span{
    color: var(--main-blue-color);

}
.services-list{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.services-item{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    padding: 0px 0 24px 0;
    color: #293550 !important;
    align-items: center;
}
.services-item:not(:last-child){
    border-bottom: 1px solid #EBF1FF;

}
.services-info{
    max-width: 626px;
    padding: 5px 0 10px 0;

}
.services-item h4{
    margin: 0;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;

}
.services-text{
line-height: 16.8px;
color:  #818181;

}
.services-buy{
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
}
.services-item .services-price{
font-size: 24px;
line-height: 33.6px;
}
.services-item .services-button{
    background: #293550;
    padding: 11px 104px;
    padding: 20px 60px 20px 60px;
    border-radius: 4px ;

}
.services-item a.services-button{
line-height: 19.6px;
color: #FFFFFF;

}
.tarifs-submit{
    padding: 11.5px 71px !important;
}

.sites-list-container {
    padding: 0;
}

.sites-list-container h2 {
    margin: 0 0 40px;
}
.sites-list{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.sites-item {
    display: flex;
    justify-content: space-between;
    padding: 24px 24px 8px;
    border: 1px solid var(--blue15-color);
    flex-direction: column;
    border-radius: 8px;
    flex: 0 0 49%;
    position: relative;
}

.sites-item a {
    color: #000;
    font-size: 18px;
    width: max-content;
}
.sites-item .sites-info{
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.sites-item .sites-info .before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 49px;
    height: 49px;
}
.sites-item .sites-info h4{
    margin: 0;
    margin-bottom: 14px;
    font-size: 20px;
    margin: 0;
    display: flex;
    align-items: start;
    gap: 5px;
    width: 360px;
}
.sites-item .sites-action{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 8px;
    border-top: 1px solid var(--blue15-color);
}
.sites-item .action-button{
    /* flex:0 0 50%; */
    display: flex;
    /* align-items: center; */
    position: relative;
    border: none;
    align-items: center;
    gap: 4px;
    padding: 8px;
}
.sites-item .action-button *{
    font-size: 18px;
    color: #000;
}
.sites-settings-menu {
    position: absolute;
    background: #fff;
    top: 40px;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    height: 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    width: 260px;
    padding: 0px 15px;
}

.sites-settings-menu a {
    
}
.sites-item .button-settings:hover .sites-settings-menu {
    height: auto;
    padding: 10px 15px;
}
.sites-info h4 .rename {
    padding: 0;
}
.sites-item .sites-settings-item{
    display: flex;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 140% !important;
    color: #000 !important;
    padding: 8px;
    align-items: center;
    gap: 10px;
    background: none;
}
.sites-item .item-edit svg path{stroke: #8A97B1;}
.sites-item .item-delete{
    background: url(../images/sites-delete.svg) left center no-repeat;

}
.sites-list-empty{
    display: flex;
    justify-content: center;
}
.sites-list-empty .items-list-empty{
    padding: 61px 0;
    width: 770px;

}



/*============================================================================================*/
/* .sites-list-container {
    padding: 0;
}

.sites-list-container h2 {
    margin: 0 0 40px;
}
.sites-list{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.sites-item {
    flex: 0 0 382px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid var(--blue15-color);
    align-items: start;
    border: 1px solid #ECEBEF;
    border-radius: 12px;
}

.sites-item a:first-child {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 600;
}

.sites-item .sites-action{
    width: 100%;
    border-top: 1px solid #ECEBEF;
    margin-top: 20px;
    padding-top: 16px;
    display: flex;
    align-items: center;
}
.sites-item .action-button{
    flex:0 0 50%;
    padding: 8px 23px;
    display: flex;
    align-items: center;
    position: relative;
}
.sites-item .action-button span{
    font-size: 16px;
    line-height: 22.4px;
    color: var(--main-gray-color);
    margin-left: 8px;


}
.sites-settings-menu {
    position: absolute;
    background: #fff;
    top: 40px;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    height: 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    width: 260px;
    padding: 0 20px;
}

.sites-settings-menu a {
    
}
.sites-item .button-settings:hover .sites-settings-menu {
    height: auto;
}
.sites-item .sites-settings-item{
    display: block;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 22.4px !important;
    color:var(--new-third-gray-color) !important;
    padding: 11.5px 10px 11.5px 26px;
}
.sites-item .item-edit{
    background: url(../images/sites-edit.svg) left center no-repeat;

}
.sites-item .item-power{
    background: url(../images/sites-power.svg) left center no-repeat;

}
.sites-item .item-favicon{
    background: url(../images/sites-favicon.svg) left center no-repeat;

}
.sites-item .item-delete{
    background: url(../images/sites-delete.svg) left center no-repeat;

} */

/*============================================================================================*/




.project-item a.image, .events-item a.image {
    height: 237px;
}
.org-info h1 {
    text-transform: capitalize;
    display: block;
}
a.org-orl {
    font-size: 18px;
    color: var(--blue-color);
    display: block;
    margin-top: 5px;
    font-weight: 500;
    text-transform: lowercase;
}
.item-info a.status, .item-info .category, .event-info a {
    border: 1px solid var(--blue15-color);
    padding: 8px 16px;
    border-radius: 4px;
}


.tarif-item.active-tarif {
    /* background: var(--blue-color); */
    /* padding: 40px 57px; */

}

.tarif-item.active-tarif li {
    /* color: #fff; */
}

.active-tarif .tarif-buttons {
    background: transparent;
}

.active-tarif .tarif-buttons > div {
    padding: 9.5px 20px 9.5px 63px;
    background: url(../images/check-mark_blue.svg) 20px center no-repeat;
    color: var(--main-blue-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 22.4px;
}

.active-tarif .tarif-price {
    /* color: #fff; */
}

.active-tarif h4 {
    color:#293550;
}
div#tarifs {
    padding: 0;
    border: none;
}
.top {
    height: 100vh;
    margin-top: -171px;
    background: url(/images/landing.jpg) center center no-repeat;
    background-size: cover;
    color: #fff;
}

.top-content {
    width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.top-content h1 {
    width: 535px;
    font-size: 56px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.top-content ul {
    width: 535px;
    margin: 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.top-content ul li {
    padding: 4px 12px;
    border: 1px solid #fff;
    border-radius: 4px;
    width: max-content;
    font-weight: 100;
}

.top-content .button {
    margin-top: 52px;
    color: var(--black-color);
    font-weight: 400;
}
body.landing .menu a {
    color: #fff;
}

body.landing .logo > a {
    /* background: url(../images/logo.svg) left center no-repeat; */
}


.img-objects {
    position: absolute;
    /* width: 100vw; */
    left: 0;
    right: 0;
    top: 0;
    bottom: 2px;
    z-index: 0;
    overflow: hidden;
    display: none;
}

.img-objects img {
    position: absolute;
    transition: all linear 0.2s 0s;
}

.landing header {
    border: none;
}

img.img-o9 {
    width: 213px;
}
a.edit-site {
    background: url(../images/edit-gray.svg) right center no-repeat;
    color: #69748C;
    padding-right: 25px;
}
.sites-list {
    border-radius: 5px;
}
.widget .slider-container-widget {
    /* padding-bottom: 100px; */
    /*width: calc(1170px + ((100vw - 1170px) / 2));*/
}

.widget .org-item {
    background: rgba(249, 249, 249, 1);
    border-radius: 12px;
    padding: 20px 28px 30px 20px;
    flex: 0 0 270px !important;
    width: 270px !important;
    height: 270px !important;
}
.widget .org-item .org-content{
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
}
.widget .org-item .org-info{
    width: 100%;
    flex: 1 1 auto;
}
.widget .org-item .image {
    width: 49px;
    height: 49px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.widget .org-item .image img, .widget .org-item svg {
    /* object-fit: contain; */
    width: 100%;
    height: 100%;
}

.widget .org-item .org-title {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;

}
.widget .org-item .org-site {
    display: inline-block;
    font-size: 16px;
    color: #586173;
    padding: 4px 12px;
    border-radius: 10px;
    border: 1px solid var(--second-gray-color);
    
}
a.org-button-sites {
    padding: 11px 20px;
    border: 1px solid var(--blue15-color);
    border-radius: 8px;
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    display: inline-block;
    text-align: center;
}

body.landing footer .logo > a svg {
    display: block;
}
.h1-buttons a.edit-button {
    background-position: right center;
    padding-right: 20px;
    border: none;
}
.tabs-item#social {
    margin-bottom: 200px;
}
.border-field-content .field textarea {
    border: none;
    outline: none;
}

.partners-container {
    min-height: 400px;
}
.profile-menu {
    position: absolute;
    background: #fff;
    top: 40px;
    right: 0;
    border-radius: 8px;
    overflow: hidden;
    height: 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}
.tarif-prices {
    display: flex;
    margin-bottom: 39px;
    gap: 8px;
    justify-content: space-between;
}

.tarif-prices a {
    background: var(--blue15-color);
    align-items: center;
    display: flex;
    flex: 1;
    height: 41px;
    justify-content: center;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.tarif-prices a.active {
    background: var(--main-blue-color);
    color: #fff;
}

.tarif-summ {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pay-types {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pay-types > a {
    border: 1px solid var(--blue15-color);
    height: 40px;
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
}

.pay-type span.radio-span {
    width: 16px;
    height: 16px;
    display: block;
    border: 1px solid #CBD6EC;
    border-radius: 50%;
}

a.pay-type.active {
    background: var(--blue15-color);
}

a.pay-type.active span:after {
    content: "";
    background: #407BF9;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 2px;
}

.tarif-summ > div {font-weight: 700;font-size: 25px;text-transform: uppercase;}

.info-container, .message-container{
    display: none;
}
.info-container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 32px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 56px;
    border-bottom: 1px solid var(--blue15-color);
}

.info-container, .message-container {padding-top: 56px;}

.info-container-header > .back {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #586173;
}

.info-container-content .button {
    margin-top: 28px;
    width: 100%;
    padding: 20px 0;
}

.info-container-header a {
    cursor: pointer;
}
.info-container-content p {
    margin-bottom: 10px;
    font-weight: 500;
    color: #000;
}
.rekv-container ul {
    color: #6F7A92;
    font-size: 18px;
    line-height: 140%;
}
.tarif-summ > div label {
    font-size: 16px;
    color: #8A97B1;
    display: block;
    text-transform: none;
    font-weight: 400;
    margin-bottom: 4px;
}
.pays-container p {
    font-size: 16px;
    margin-bottom: 15px;
}

.pays-container ul {
    padding-left: 15px;
    color: #6F7A92;
    font-size: 16px;
    margin-top: 5px;
}
.tarif-data form {
    display: flex;
    gap: 12px;
}

.tarif-data form > input {
    flex: 1;
    height: 48px;
    border-radius: 4px;
}
.tarif-itog > div {
    flex: 1;
    font-size: 20px;
}

.tarif-itog {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 10px 16px;
    border: 1px solid var(--blue15-color);
    border-radius: 4px;
}

.tarif-itog > div:last-child {
    margin-left: 20px;
    border-left: 1px solid var(--blue15-color);
    padding-left: 20px;
}
.tarif-data .privacy-policy {
    margin-top: 20px;
    color: #8A97B1;
}
.tarif-economy {
    margin-top: 4px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    height: 18px;
}
.notification-item.read-status-0 {
    background: var(--blue15-color);
}
.sites-item .item-edit:hover svg path {
    stroke: #000;
}
.vk-auth-container {
    display: flex;
    margin-bottom: 24px;
    align-items: center;
}

.vk-auth-container > .field, .tg-auth-container form .field {
    flex: 0 0 200px;
    margin-right: 68px;
    margin-bottom: 0;
}
.vk-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vk-profile-container {
    flex: 1;
}

.vk-profile > div {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tg-add-container {
    gap: 12px;
    align-items: center;
}

.tg-add-container .input {
    width: 320px;
}

.vk-profile > div img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.vk-profile > div > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vk-profile > div > div span:not(.date) {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.vk-profile span.date {
    color: #8A97B1;
    font-size: 13px;
}
#social .field label span b {
    display: block;
    font-weight: 400;
    color: #8A97B1;
    font-size: 13px;
}

.tg-auth-container form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.tg-add-container {
    flex: 1;
    display: flex;
}

.tg-add-container.tac > input {
    flex: 1;
}

.tg-add-container.tac {
    gap: 12px;
}
.video-instruction {
    height: 550px;
}

.video-instruction video {
    height: 550px;
}
.start-container {
    width: 456px;
}

.start-container h2 {
    margin: 0;
}

.start-container h2 svg {
    width: 141px;
}
.start-container h3 {
    font-size: 25px;
    margin: 32px 0 20px;
    font-weight: 700;
}

.start-container h4 {
    color: var(--forth-gray-color);
    font-weight: 400;
    font-size: 16px;
}

.start-container h5 {
    font-weight: 500;
    font-size: 16px;
    margin: 0 0 12px;
}

.start-container ul li {
    color: var(--gray-color);
    margin-bottom: 5px;
    list-style-type: disc;
    line-height: 140%;
}

.start-container ul {
    list-style: circle;
    padding-left: 25px;
}

.start-footer {
    margin-top: 20px;
    color: var(--forth-gray-color);
}
.gpt-open-link{
    cursor: pointer;
}
@media (min-width:768px) {
    body.landing header .logo > a svg path {
        fill: #fff;
    }
}
/*=====ABOUT-US============================================================================*/
.about-us .content-top{
    flex-direction: column;
    gap: 60px;
}
.about-us .content-top > div{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.about-us .stats{
    gap: 12px;
    align-items: center;
}
.about-us .stats > div{
    height: 204px;
    flex: 1 1 33%;
    padding: 40px;
    border: 1px solid #EBF1FF;
    border-radius: 20px;
    
}
.about-us .stats > div:first-child{
    background-color: var(--main-blue-color);    
}
.about-us .stats h3{
    font-size: 80px;
    font-weight: 400;
    line-height: 88px;
    color: black;
    margin: 0;
}
.about-us .stats p{
    color: #586173;
}
.about-us .stats p span{
    font-weight: 700;
}
.about-us .stats > div:first-child{
    background-color: var(--main-blue-color);    
}
.about-us .stats > div:first-child p, .about-us .stats > div:first-child h3{
    color: white;
} 
.item-header-body .categories{
    display: flex;
    gap: 8px;
    align-items: center;
}
.project-create .added-form-field {
    width: 779px;
}
a.domain-avialable-1 span {
    color: var(--main-blue-color) !important;
    font-weight: 500;
}