* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

html {
    /* scroll-behavior: smooth; */
}

body {
    font-family: 'Poppins', sans-serif;
    color: #323232;
}
.container {
    width: 100%;
    height: 100%;
    max-width: 1192px;
    margin: 0 auto;
}
.flex {
    display: flex;
}
.center-y {
    align-items: center;
}
.justify-between {
    justify-content: space-between;
}
.no-style {
    list-style: none;
}

/* */
a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #383838;
}
.btn {
    display: inline-flex;
    padding: 12px 32px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 8px;
}
.btn .icon {
    width: 10px;
    height: 10px;
    background-size: 10px;
    margin-left: 10px;
}
.btn.btn_black {
    background: #242424;
    box-shadow: 0px 4px 15px 0px #24242426;
    color: white;
}
.btn.btn_gray {
    background: #323232;
    padding: 12px 32px;
    color: white !important;
    display: inline-flex !important;
}
a.btn.btn_gray .icon {
    background-image: url('../img/icons/icon_arrow_right.svg');
}
.btn.btn_bordered {
    color: #990b23;
    border: 1px solid #990b23;
}
.btn.btn_submit {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: #990B23;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

/* HEADER */
.header {
    height: 80px;
    box-shadow: 0px 2px 4px 0px #00000014;
}
.header nav .nav-list {
    list-style: none;
    display: flex;
}

/* FIRST */

.first_right {
    width: 45%;
}
.fr_img {
    width: 250px;
    height: 274px;
    background: linear-gradient(270deg, #3e463e, #c2c4c2, #393b39);
    animation: gradientAnimation 8s ease-in-out infinite;
    border-radius: 22px;
    padding: 12px 10px 0 10px;
    margin-left: 32px;
    margin-bottom: 32px;
    background-size: 150% 150%;
    background-repeat: no-repeat;
    background-position: 50%;

   
}

@keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
}

@media(max-width: 1024px) {
    .fr_img {
        width: 100% !important;
        margin-left: 0;
    }
}

.fr_row_1 .fr_img {
    width: 100%;
}
.fr_img:first-child {
    margin-left: 0;
}
.fr_img .img_holder {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}

/* SECTION */
.section {
    padding: 140px 120px;
}

@media screen and (max-width: 1024px) {
    .section {
        padding: 60px 20px;
    }
}

.section.section_top_0 {
    padding-top: 0;
}
.section.section_gray {
    background: #F1F1F159;
}
.section h2 {
    display: inline-flex;
    text-align: center;
}
.section_title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 42px;
}
.section_title h2 {
    font-weight: 600;
    font-size: 32px;
}

@media(max-width: 1024px) {
    .section_title {
        margin-bottom: 22px;
    }

    .section_title h2 {
        font-size: 22px;
    }
}
.items {
    display: flex;
    justify-content: space-between;
}
.items.items_4 .item {
    width: calc(25% - 32px);
}
.items.items_4 .item_title {
    font-size: 16px;
    margin-bottom: 10px;
}
.items.items_4 .item_text p {
    font-size: 12px;
}
.item {
    width: calc(33.33% - 32px);
    border-radius: 18px;
    border: none;
    padding: 1px;
}

@media screen and (max-width: 1024px) {
    .items {
        display: grid !important;
        grid-template-columns: 2fr !important;
        gap: 20px;
    }
    .items .item {
        width: 100% !important;
    }
}

.item_data {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
}
.item_icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #990B23;
    margin-bottom: 28px;
}
.item_title {
    text-align: center;
    font-weight: 500;
    font-size: 22px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.item_text {
    margin-top: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #606060;
}
.item_text p {
    font-size: 16px;
    font-weight: 400;
    color: #606060;
}
.border_g {
    background: linear-gradient(303.98deg, #F5F5F5 12.79%, #990B23 113.5%);
}

/* ICONS */
.icon {
    width: 32px;
    height: 32px;
    display: block;
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: 50%;
}
.icon.icon_56 {
    width: 56px;
    height: 56px;
    background-size: 56px;
}
.item_icon.item_icon_nobg {
    background: none;
    margin-bottom: 10px;
}
.icon.icon_re {
    background-image: url('../img/icons/icon_re.svg');
}
.icon.icon_voice {
    background-image: url('../img/icons/icon_voice.svg');
    background-size: 18px;
}
.icon.icon_stats {
    background-image: url('../img/icons/icon_stats.svg');
    background-size: 24px;
}
.icon.icon_energy {
    background-image: url('../img/icons/icon_energy.svg');
}
.icon.icon_transport {
    background-image: url('../img/icons/icon_transport.svg');
}
.icon.icon_travel {
    background-image: url('../img/icons/icon_travel.svg');
}
.icon.icon_sales {
    background-image: url('../img/icons/icon_sales.svg');
}
.icon.icon_arrow_right {
    background-image: url('../img/icons/icon_arrow_right.svg');
}
.section_fire {
    position: relative;
}

.custom_fire_sign:after {
    width: 27px;
    height: 27px;
    background: url('../img/icons/icon_fire.svg') 0 no-repeat;
    display: block;
    position: absolute;
    top: -10px !important;
    right: 0 !important;
}

.section_fire:after {
    content: '';
    display: block;
    width: 27px;
    height: 27px;
    background: url('../img/icons/icon_fire.svg') 0 no-repeat;
    position: absolute;
    top: -10px;
    right: -23px;
}

.bottom_fire.section_fire:after {
    content: '';
    display: block;
    width: 27px;
    height: 27px;
    background: url('../img/icons/icon_fire.svg') 0 no-repeat;
    position: absolute;
    top: 30px;
    right: -23px;
}

/* CALENDAR */
.calendar-container {
    height: 544px;
    background: white;
    border-radius: 18px;
    box-shadow: 0px 0px 35px 0px #00000026;
}

/* CONSULT */
.consult {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.consult_img_holder {
    width: 478px;
    height: 390px;
    position: relative;
}
.consult_img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}
.consult_badge {
    width: 160px;
    height: 183px;
    background: white;
    position: absolute;
    bottom: -60px;
    right: -10px;
    box-shadow: 0px 6px 20px 0px #0000001F;
    border-radius: 14px;
}
.consult_info {
    width: calc(100% - 579px);
}
.consult_info h3 {
    font-size: 38px;
    font-weight: 700;
    color: #292929;
    display: block;
    margin-bottom: 25px;
}
.consult_text {
    padding: 10px 0 40px 0;
}
.consult_text p {
    color: #868686;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .consult {
        flex-direction: column;
    }

    .consult_img_holder {
        width: 100%;
        margin-bottom: 20px;
    }
    .consult_info h3 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .consult_text p {
        font-size: 16px;
        line-height: 22px;
    }

    .consult_img {
        display: block;
        border-radius: 12px;
    }

    .consult_badge {
        display: none;
    }

    .consult_info {
        width: 100%;
    }
}


/* BREADCRUMBS */
.breadcrumbs {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.breadcrumbs li:not(.current):after {
    content: '>';
    padding: 0 5px 0 3px;
    color: rgba(0, 0, 0, .35);
}
.breadcrumbs a {
    color: rgba(0, 0, 0, .35);
}

/* PAGE */
h2.border_bottom {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}
h2.border_bottom:after {
    content: '';
    display: block;
    width: 55px;
    height: 2px;
    background: #990B23;
    position: absolute;
    left: 0;
    bottom: -10px;
}
.page_title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 0 16px 0;
}
.page_cols {
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}
.page_col_left {
    width: 75%;
}
.page {
    padding: 76px 0;
}
.page .calendar-container {
    margin: 44px 0;
}

/* EVENTS */
.events {
    margin: 30px 0;
}

@media screen and (max-width: 1024px) {
    .events {
        margin: 10px 0;
    }
}

.events.events_projects .event {
    border-radius: 18px;
    margin-bottom: 24px;
    padding: 0;
}
.events.events_projects .event:hover {
    box-shadow: 4px 4px 35px 0px #00000026;
}
.event {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 0;
    border: 2px solid #ECECEC;
}
.event_img_holder {
    width: 510px;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    background: #f1f1f1;
}
.event_img_holder .event_img {
    width: 100%;
    height: 100%;
}
.event_info {
    width: calc(100% - 542px);
    display: flex;
    flex-direction: column;
}
.event_date {
    padding: 6px 14px;
    background: #990B23;
    color: white;
    border-radius: 8px;
    margin-bottom: 22px;
    display: inline-flex;
}
.events.events_projects .event_title {
    margin-bottom: 20px;
}
.event_title {
    display: block;
    font-size: 22px;
    font-weight: 600;
}
.event_text {

}
.event_text p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #8a8a8a;
}
 .read_more {
    margin-top: 30px;
    display: block;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #323232;
}
.read_more .icon {
    width: 10px;
    height: 10px;
    background: url('../img/icons/icon_arrow_right_black.svg') 0 no-repeat;
    background-size: 10px;
    display: block;
    margin-left: 10px;
}

/* BLOG */
.blog_posts {
    margin: 30px 0;
}
.post {
    display: flex;
    flex-direction: column;
    padding: 32px 0;
}
.post:first-child {
    padding-top: 0;
}
.post_img_holder {
    width: 100%;
    height: 418px;
    border-radius: 14px;
    overflow: hidden;
}
.post_img {
    width: 100%;
    height: 100%;
    background-size: cover;
}
.post_meta {
    display: flex;
    align-items: center;
    padding: 20px 0;
}
.post_date {
    color: #990B23;
}
.post_meta ul {
    list-style: none;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.post_meta ul li {
    padding-right: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #909090;
}
.post_meta ul li a {
    color: #909090;
    font-size: 16px;
    font-weight: 500;
}
.post_title {
    font-weight: 600;
    font-size: 22px;
    line-height: 28.8px;
    color: #363636;
}
.post_text {
    margin: 15px 0;
}
.post_text p {
    font-size: 16px;
    font-weight: 500;
    color: #8a8a8a;
}

/* PERSONS */
.persons {
    margin: 30px 0;
}
.person {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 0;
    border-bottom: 1px solid #f6f6f6;
}
.person_img_holder {
    width: 204px;
    height: 182px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f1f1;
}
.person_img_holder .person_img {
    width: 100%;
    height: 100%;
}
.person_info {
    width: calc(100% - 241px);
}
.person_title {
    font-size: 20px;
    font-weight: 600;
}
.person_info .position {
    font-size: 14px;
    font-weight: 400;
    color: #4d4d4d;
    margin: 5px 0 5px 0;
}
.person_text {
    margin-bottom: 10px;
}
.person_text p {
    font-size: 12px;
    color: #4d4d4d;
    line-height: 18px;
}
.person_info .exp {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}
.person .btn {
    font-size: 14px;
    padding: 12px 32px;
    background: #323232;
    align-items: center;
    justify-content: center;
}

/* PAGENAV */
.pagenav {
    margin: 10px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagenav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagenav li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}
.pagenav li.active {
    padding: 10px;
}
.pagenav li a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: #b1b1b1;
    padding: 10px 0 10px 10px;
}
.pagenav li.active {
    background: #e8e8e8;
    color: #161616;
}

main + .section_feedback {
    margin-top: 90px;
}

.custom-shadow {
    box-shadow: 0px 0px 12px 0px #00000012;
}

.custom-shadow-large {
    box-shadow: 0px 0px 35px 0px #00000015;
}

.display-block {
    display: block !important;
}

.display-none {
  display: none !important;
}

.reviews {
  .swiper-button-prev, .swiper-button-next {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #990B23;
    font-size: 20px;

    &::after {
        content: "";
    }
  }
}

.swiper-button-prev, 
.swiper-months-button-prev, 
.swiper-button-next, 
.swiper-months-button-next {
    &::after {
        content: "";
    }
}


.events {
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .swiper-button-prev, .swiper-button-next {
    width: 100%;
    height: 20px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #990B23;
    font-size: 20px;
  }
}


.months {
  .swiper-months-button-prev, .swiper-months-button-next {
    background: #323232;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #990B23;
    font-size: 20px;
  }

  .swiper-slide  {


    padding-left: 25px;

    .active.month-cell {
      background: #990B23;
      color: #fff;
    }
  }
}

@media screen and (max-width: 1024px) {
  .months {
    .swiper-slide{
      width: auto !important;

        &:first-child {
            padding-left: 0;
        }
    }
  }
    
}

.visible {
    display: block !important;
}

.visible-menu {
    right: 0 !important;
}

.nav-menu {
    transition: all 0.3s ease-in-out;
}

.member-about {
    p {
        font-size: 16px;
        line-height: 24px;
        color: #323232;
        margin: 14px 0;

        strong {
            font-weight: 600;
            font-size: 20px;
            color: #000000;
            display: block;
        }
    }

    ul {
        li {
            margin: 10px 0;

            strong {
                font-weight: 600;
                font-size: 16px;
                color: #000000;
                display: block;
            }
        }
    }
}

.scrolling-container {
    display: flex;
    overflow-x: scroll;
    white-space: nowrap;
    height: 40px;
    scrollbar-width: thin; 
    scrollbar-color: transparent transparent;
}

.scrolling-container li {
    display: block;
    height: auto;
    min-width: 100px;
}

.scrolling-container li img {
    width: 100%;
    display: block;
}

.scrolling-container::-webkit-scrollbar-thumb, 
.scrolling-container::-webkit-scrollbar-track  {
    background-color: #ffffff !important;
}

.iti--inline-dropdown {
    width: 100%;
}

.eventDay {
    background: #f1f1f1;
    border: 1px solid #990B23;
}

.event-link {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    padding-top: 24px;
    font-size: 10px;
    padding-left: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.highlighted-text {
    display: inline-block;
    position: relative;
    padding: 0 5px 0 5px;
}

.highlighted-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: #990b23;
    z-index: -1;
}

button:hover, a:hover {
    opacity: 0.8;
    transition: 0.3s;
}