.hero_section{
    background-color: #EFEEEE;
}
.hero_section .hero_box{
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.hero_section .absolute_image{
    position: absolute;
    left: 0px;
    top: 55px;
    z-index: 1;
    max-width: calc(50% + 55px);
}
.hero_section .content{
    padding: 55px 0px;
    position: relative;
    z-index: 2;
    width: calc(50% - 110px);
}
.hero_section .content .numbers{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    margin-bottom: 67px;
    text-align: left;
}
.hero_section .content .numbers p{
    font-size: 16px;
    color: #000;
    margin-bottom: 0px;
}
.hero_section .content .numbers p.number{
    font-size: 46px;
    color: #000;
    font-weight: 600;
}
.hero_section .content .numbers p.number span{
    color: #4FE06F;
}
.hero_section .content h1{
    color: #000;
}
.hero_section .content .buttons{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 57px;
    margin-top: 64px;
}

.tabs_section .content_box{
    margin-bottom: 50px;
}
.tabs_section .content_box p span{
    color: #50B27D;
}
.tabs_section .content_box>*:last-child{
    margin-bottom: 0px;
}
.tabs_section .tabs_box{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.tabs_section.three_cols_style .tabs_box{
    grid-template-columns: repeat(3, 1fr);
}
.tabs_section .tabs_box .single_item{
    position: relative;
    padding: 38px 27px;
    width: calc(100% - 27px - 27px);
    height: calc(250px - 38px - 38px);
}
.tabs_section .tabs_box .single_item .absolute_image{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}
.tabs_section .tabs_box .single_item h3,
.tabs_section .tabs_box .single_item .h3{
    position: relative;
    z-index: 3;
    font-weight: 600;
}
.tabs_section .tabs_box .single_item::after{
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 40px;
    height: 40px;
    background-color: #50B27D;
    background-image: url('content/plus.svg');
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
    transition-duration: 0.4s;
}
.tabs_section .tabs_box .single_item:hover::after{
    background-color: #01160E;
}
.tabs_section .tabs_box .single_item:nth-child(6n-1),
.tabs_section .tabs_box .single_item:nth-child(6n){
    grid-column: span 2;
}
.tabs_section.second_style{
    background-color: #EDEDED;
    background-image: url('content/tabs.jpg');
    padding-top: 80px;
    padding-bottom: 54px;
}
.tabs_section.second_style .tabs_box .single_item{
    padding: 16px 29px;
    width: calc(100% - 29px - 29px);
    height: calc(250px - 16px - 16px);
    display: flex;
    align-items: flex-end;
}
.tabs_section.second_style .tabs_box .single_item h3,
.tabs_section.second_style .tabs_box .single_item .h3{
    margin-bottom: 0px;
    color: #FFF;
}
.tabs_section.second_style .tabs_box .single_item::after{
    left: auto;
    right: 0px;
}
/*.tabs_section.second_style .tabs_box .single_item::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}*/

.text_image_section.with_background{
    background-color: #EFEEEE;
    background-image: url('content/dots_in_section.png');
    padding: 96px 0px;
}
.text_image_section.black_background{
    background-color: #BABABA;
    background-image: url('content/balck_dots_in_section.png');
    padding: 96px 0px;
}
.text_image_section .cols_box{
    display: flex;
    align-items: center;
    gap: 47px;
}
.text_image_section .cols_box.reverse{
    flex-direction: row-reverse;
}
.text_image_section .cols_box .left{
    width: 100%;
}
.text_image_section .cols_box .left img{
    max-width: 100%;
}
.text_image_section .cols_box .right{
    width: 100%;
    padding: 48px 0px;
}
.text_image_section .cols_box .right .buttons{
    display: flex;
    align-items: center;
    gap: 37px;
    margin-top: 48px;
}
.text_image_section .cols_box .right h3{
    margin-bottom: 48px;
}

.banner_section{
    padding: 150px 0px;
    background-size: cover;
    background-position: center;
}
.banner_section .content{
    padding: 0px 96px;
}
.banner_section .content>*{
    color: #FFF;
    margin-bottom: 48px;
}
.banner_section .button{
    display: flex;
    justify-content: center;
}

.slider_news_section .wrapper{
    position: relative;
}
.slider_news_section .title_box{
    margin-bottom: 62px;
}
.slider_news_section .tns-carousel{
    display: flex;
}
.slider_news_section .single_item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
}
.slider_news_section .single_item .image{
    margin-bottom: 15px;
}
.slider_news_section .single_item .image img{
    width: 100%;
    max-width: 367px;
    height: auto;
    max-height: 278px;
    object-fit: cover;
}
.slider_news_section .single_item h3,
.slider_news_section .single_item .h3{
    text-transform: none;
    margin-bottom: 0px;
    font-size: 3.2rem;
    font-weight: 300;
}
.slider_news_section .single_item p{
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 0px;
}
.slider_news_section .tns-controls{
    position: absolute;
    right: 0px;
    top: 0px;
    display: flex;
    gap: 24px;
}
.slider_news_section .tns-controls button{
    width: 56px;
    height: 56px;
    padding: 0px;
    border: 1px solid #22282B;
    background-color: #22282B;
    border-radius: 100%;
    transition-duration: 0.3s;
    position: relative;
}
.slider_news_section .tns-controls button[disabled]{
    background-color: #FFF;
}
.slider_news_section .tns-controls button::after{
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    background-image: url('content/chevron-right.svg');
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.slider_news_section .tns-controls button:first-child::after{
    transform: translate(-50%, -50%) rotate(180deg);
}
.slider_news_section .tns-controls button[disabled]::after{
    background-image: url('content/chevron-left.svg');
}

.slider_tenders_section{
    padding-top: 90px;
    padding-bottom: 162px;
    background-image: url('content/tenders.jpg');
    background-size: cover;
    background-position: center;
}
.slider_tenders_section .wrapper{
    position: relative;
}
.slider_tenders_section .title_box{
    margin-bottom: 62px;
}
.slider_tenders_section .tns-carousel{
    display: flex;
}
.slider_tenders_section .single_item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 37px 28px;
    height: calc(100% - 37px - 37px);
}
.slider_tenders_section .single_item h3,
.slider_tenders_section .single_item .h3{
    text-transform: none;
    margin-bottom: 0px;
    font-size: 2.8rem;
    font-weight: 300;
    text-decoration: underline;
}
.slider_tenders_section .single_item p{
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 0px;
}
.slider_tenders_section .tns-controls{
    position: absolute;
    right: 0px;
    top: 0px;
    display: flex;
    gap: 24px;
}
.slider_tenders_section .tns-controls button{
    width: 56px;
    height: 56px;
    padding: 0px;
    border: 1px solid #22282B;
    background-color: #22282B;
    border-radius: 100%;
    transition-duration: 0.3s;
    position: relative;
}
.slider_tenders_section .tns-controls button[disabled]{
    background-color: transparent;
}
.slider_tenders_section .tns-controls button::after{
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    background-image: url('content/chevron-right.svg');
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.slider_tenders_section .tns-controls button:first-child::after{
    transform: translate(-50%, -50%) rotate(180deg);
}
.slider_tenders_section .tns-controls button[disabled]::after{
    background-image: url('content/chevron-left.svg');
}

.contact_form_section .cols_box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 194px;
}
.contact_form_section .cols_box .left h3,
.contact_form_section .cols_box .left .h3{
    margin-bottom: 50px;
}
.contact_form_section .cols_box .right{
    padding-top: 42px;
    position: relative;
}
.contact_form_section label{
    color: #344054;
    font-size: 1.6rem;
    display: inline-block;
    margin-bottom: 6px;
}
.contact_form_section input[type='text'],
.contact_form_section input[type='date'],
.contact_form_section input[type='email'],
.contact_form_section input[type='tel'],
.contact_form_section input[type='number'],
.contact_form_section textarea,
.contact_form_section select{
    margin-bottom: 26px;
}
.contact_form_section input[type='tel']{
    margin-left: 106px;
    width: calc(100% - 28px - 106px);
    border-radius: 0px 8px 8px 0px;
    border-left: 1px solid transparent;
}
.contact_form_section textarea{
    height: calc(134px - 20px);
}
.contact_form_section select{
    position: absolute;
    width: 106px;
    z-index: 2;
    padding: 10px 6px;
    border-radius: 8px 0px 0px 8px;
    border-right: 1px solid transparent;
}
.contact_form_section .wpcf7-form-control-wrap[data-name='your-tel']{
    display: block;
}
.contact_form_section .wpcf7-acceptance label{
    display: flex;
    position: relative;
    font-weight: 300;
    margin-bottom: 40px;
    color: #475467;
    cursor: pointer;
}
.contact_form_section .wpcf7-acceptance label::before{
    content: '';
    display: block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid #D0D5DD;
    margin-right: 12px;
}
.contact_form_section .wpcf7-acceptance label::after{
    content: '';
    display: block;
    position: absolute;
    left: 4px;
    top: 4px;
    /*width: 14px;
    height: 14px;
    background-color: #4FE06F;
    border-radius: 6px;*/
    opacity: 0;
    transition-duration: 0.4s;
    border-bottom: 3px solid #4FE06F;
    border-left: 3px solid #4FE06F;
    border-radius: 0px 0px 0px 4px;
    width: 12px;
    height: 8px;
    background-color: transparent;
    transform: rotate(-45deg);
}
.contact_form_section .wpcf7-acceptance label.checked::after{
    opacity: 1;
}
.contact_form_section .wpcf7-acceptance label input{
    width: 1px;
    opacity: 0;
}
.contact_form_section .wpcf7-acceptance label a{
    color: #475467;
}
.contact_form_section .wpcf7-spinner{
    position: absolute;
    left: 50%;
    bottom: 0px;
}
.contact_form_section input[type='submit']{
    display: none;
}
.contact_form_section .ltb_btn{
    width: 100%;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
}
.contact_form_section .ltb_btn.disabled{
    opacity: 0.7;
    pointer-events: none;
}
.contact_form_section .wpcf7 form .wpcf7-response-output{
    font-size: 1.4rem;
}
.contact_form_section .wpcf7-not-valid-tip{
    margin-top: -24px;
}

.page_hero_section{
    background-size: cover;
    background-position: center;
}
.page_hero_section .title_box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 324px;
    gap: 24px;
}
.page_hero_section .title_box h1{
    text-align: center;
    margin-bottom: 0px;
}

.article_section .content_box h2{
    margin-bottom: 45px;
}
.article_section .content_box table{
    margin-bottom: 45px;
}
.article_section .content_box>*:last-child{
    margin-bottom: 0px;
}
.article_section.large_size .content_box p{
    font-size: 2.4rem;
    line-height: 150%;
}
.article_section.large_size strong{
    color: #50B27D;
}
.article_section .article_box a:not(.ltb_btn):not(.ltb_btn_2){
    color: #50B27D;
    transition-duration: 0.4s;
    text-decoration: underline;
}
.article_section .article_box a:not(.ltb_btn):hover{
    color: #000;
}
.article_section.single_post .title_box{
    text-align: center;
    padding: 40px 0px;
}
.article_section.single_post .title_box img{
    max-width: 100%;
    width: auto;
    height: auto;
}
.article_section .gallery-item img{
    max-width: 100%;
    height: auto;
}
.article_section.single_post .to_archive{
    text-align: center;
}
.article_section.single_post .to_archive .ltb_btn{
    margin-top: 48px;
}

.tablesorter{
    width: 100%;
    border-radius: 4px;
    font-size: 1.6rem;
    text-align: center;
    color: #000;
    border-spacing: 0px;
    border-collapse: collapse;
}
.tablesorter thead{
    background-color: #50B27D;
}
.tablesorter thead th,
.tablesorter thead td{
    padding: 24px 12px;
    font-weight: 600;
    border: 1px solid #B9B9B9;
    background-size: 32px auto;
}
.tablesorter tbody tr:nth-child(odd){
    background-color: #50B27D33;
}
.tablesorter tbody td{
    padding: 24px 12px;
    border: 1px solid #B9B9B9;
    border-top: 0px;
}

.boxes_section .title_box{
    margin-bottom: 55px;
}
.boxes_section .title_box h2{
    margin-bottom: 0px;
}
.boxes_section .cols_box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 55px;
}
.boxes_section .cols_box.three{
    grid-template-columns: repeat(3, 1fr);
}
.boxes_section .single_item{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.boxes_section .single_item .left{
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 29px;
}
.boxes_section .cols_box.three .left{
    padding: 4px 29px;
}
.boxes_section .single_item .right{
    background-image: linear-gradient(to right, #eef2f5 0%, #FFF 100%);
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 29px;
}
.boxes_section .cols_box.three .right{
    padding: 4px 29px;
}
.boxes_section .single_item h3{
    width: 100%;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 24px;
}
.boxes_section .single_item h4{
    width: 100%;
    display: inline;
    color: #000;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding: 0px;
    background-color: unset;
}
.boxes_section .single_item ul{
    width: 100%;
    font-weight: 300;
}
.boxes_section .single_item p{
    width: 100%;
    font-weight: 300;
}
.boxes_section .single_item .left>*:last-child,
.boxes_section .single_item .right>*:last-child{
    margin-bottom: 0px;
}
.boxes_section .bottom_box h3{
    font-size: 1.6rem;
    text-transform: none;
    font-weight: 300;
}

.button_banner_section .banner_box{
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
    padding: 58px 0px;
}
.button_banner_section .banner_box h2{
    margin-bottom: 0px;
    text-align: center;
    color: #FFF;
}
.button_banner_section .banner_box .ltb_btn::after{
    transform: rotate(90deg);
}
.button_banner_section .banner_box .ltb_btn:hover::after{
    transform: translateX(12px) rotate(90deg);
}
.button_banner_section .banner_box .buttons{
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    gap: 12px;
}
.button_banner_section .banner_box .buttons .ltb_btn{
    justify-content: space-between;
}

.simple_note_section .note_box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 88px;
}
.simple_note_section .note_box.grid_mode{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}
.simple_note_section .note_box .single_item{
    padding: 19px 0px;
    width: 370px;
    background: linear-gradient(to right, #eef2f6 80%, #FFF 100%);
    text-align: center;
    position: relative;
}
.simple_note_section .note_box.grid_mode .single_item{
    width: calc(100% - 26px);
    height: calc(100% - 26px);
    padding: 13px 13px;
    text-align: left;
}
.simple_note_section .note_box .single_item::after{
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    left: -20px;
    top: -20px;
    background-color: #50B27D;
}
.simple_note_section .note_box.grid_mode .single_item::after{
    left: auto;
    right: -20px;
    top: auto;
    bottom: -20px;
}
.simple_note_section .note_box .single_item img{
    margin-bottom: 26px;
}
.simple_note_section .note_box .single_item h3{
    margin-bottom: 26px;
    font-weight: 900;
}
.simple_note_section .note_box .single_item>*:last-child{
    margin-bottom: 0px;
}
.simple_note_section .note_box.grid_mode .banner_item{
    grid-column: span 3;
    padding: 42px;
    height: calc(100% - 84px);
    width: calc(100% - 84px);
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.simple_note_section .note_box.grid_mode .banner_item .background_image{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.simple_note_section .note_box.grid_mode .banner_item .content{
    width: 50%;
    position: relative;
    z-index: 2;
}
.simple_note_section .note_box.grid_mode .banner_item h3{
    color: #FFF;
}

.chess_section{
    background-color: #EFEEEE;
    background-image: url('content/dots_in_section.png');
    padding: 96px 0px;
}
.chess_section .rows_box{
    display: flex;
    flex-direction: column;
    gap: 54px;
}
.chess_section .single_row{
    display: flex;
    align-items: center;
    gap: 140px;
    position: relative;
}
.chess_section .single_row:nth-child(odd){
    flex-direction: row-reverse;
}
.chess_section .single_row .left{
    width: 100%;
}
.chess_section .single_row .left img{
    max-width: 100%;
}
.chess_section .single_row .right{
    width: 100%;
}
.chess_section .single_row .right>*:last-child{
    margin-bottom: 0px;
}
.chess_section .absolute_text{
    font-family: 'Vujahday Script';
    font-size: 4.8rem;
    line-height: 100%;
    font-weight: 400;
    color: #50B27D;
    /*position: absolute;
    right: 0px;
    max-width: 100%;*/
    text-transform: none;
    margin-bottom: 24px;
}
/*.chess_section .single_row:nth-child(odd) .absolute_text{
    right: auto;
    left: 0px;
}*/
.chess_section .empty_text{
    height: 4.8rem;
    margin-bottom: 48px;
    display: none;
}

.faq_section .faq_box{
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 40px;
}
.faq_section .single_faq{
    position: relative;
}
/*.faq_section .single_faq::before{
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #50B27D;
    left: -40px;
    top: 0px;
}
.faq_section .single_faq::after{
    content: '';
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: -29px;
    top: 11px;
    background-image: url('content/plus_white.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition-duration: 0.4s;
}
.faq_section .single_faq.show::after{
    transform: rotate(45deg);
}*/
.faq_section .single_faq .title_row{
    padding: 0px 40px;
    display: flex;
    align-items: center;
    height: 40px;
    background-color: #D9D9D9;
    cursor: pointer;
    position: relative;
}
.faq_section .single_faq .title_row::before{
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #50B27D;
    left: -40px;
    top: 0px;
}
.faq_section .single_faq .title_row::after{
    content: '';
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: -29px;
    top: 11px;
    background-image: url('content/plus_white.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition-duration: 0.4s;
}
.faq_section .single_faq.show .title_row::after{
    transform: rotate(45deg);
}
.faq_section .single_faq .title_row p{
    margin-bottom: 0px;
}
.faq_section .single_faq .content_row{
    display: flex;
    align-items: flex-start;
    gap: 36px;
    padding: 40px 50px;
    background-color: #EFEFEF;
}
.faq_section .single_faq .content_row .boxes{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.faq_section .single_faq .content_row .single_box{
    display: flex;
    align-items: flex-start;
    gap: 13px;
}
.faq_section .single_faq .content_row .single_box p{
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq_section .single_faq .faq_row{
    display: none;
}

.contact_persons_section .title_box{
    text-align: center;
    margin-bottom: 150px;
}
.contact_persons_section .persons_box{
    /*display: grid;
    grid-template-columns: repeat(3, 1fr);*/
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    row-gap: 72px;
}
.contact_persons_section .single_person{
    padding: 30px;
    padding-top: 0px;
    background-color: #14AE5C;
    border-radius: 25px 25px 0px 0px;
    text-align: center;
    width: calc(100%/3 - 87px);
}
.contact_persons_section .single_person .avatar{
    margin-bottom: 40px;
    margin-top: -60px;
    max-width: 100%;
}
.contact_persons_section .single_person>*{
    color: #FFF;
}
.contact_persons_section .single_person>*:last-child{
    margin-bottom: 0px;
}
.contact_persons_section .single_person h3,
.contact_persons_section .single_person .h3{
    text-transform: none;
    margin-bottom: 4px;
    font-weight: 400;
    font-size: 2rem;
}
.contact_persons_section .single_person h4,
.contact_persons_section .single_person .h4{
    background-color: unset;
    padding: unset;
    font-size: 1.6rem;
    margin-bottom: 17px;
    font-weight: 500;
}
.contact_persons_section .single_person a{
    color: #FFF;
}

.contact_persons_section .single_person a:hover{
    color: #FFF;
	text-decoration:underline;
}

.gallery_section .grid_box .single_item{
    width: calc(100% / 4 - 20px);
    margin-bottom: 20px;
    height: 228px;
}
.gallery_section .grid_box .single_item.wide{
    width: calc(100% / 2 - 20px);
}
.gallery_section .grid_box .single_item.tall{
    height: 479px;
}
.gallery_section .grid_box .single_item a{
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}
.gallery_section .grid_box .single_item a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: 0.4s;
}
.gallery_section .grid_box .single_item a:hover img{
    transform: scale(1.2);
}

.gallery_section .title_box{
    margin-bottom: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gallery_section .title_box h2{
    margin-bottom: 0px;
}
.gallery_section .title_box .nav{
    display: flex;
    gap: 24px;
}
.gallery_section .title_box .nav button{
    width: 56px;
    height: 56px;
    padding: 0px;
    border: 1px solid #22282B;
    background-color: #22282B;
    border-radius: 100%;
    transition-duration: 0.3s;
    position: relative;
}
.gallery_section .title_box .nav button.disabled{
    background-color: #FFF;
}
.gallery_section .title_box .nav button:not(.disabled){
    cursor: pointer;
}
.gallery_section .title_box .nav button::after{
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    background-image: url('content/chevron-right.svg');
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.gallery_section .title_box .nav button.prev::after{
    transform: translate(-50%, -50%) rotate(180deg);
}
.gallery_section .title_box .nav button.disabled::after{
    background-image: url('content/chevron-left.svg');
}
.gallery_section .single_tab:not(.current){
    display: none;
}

.posts_loop_section .title_box{
    text-align: center;
    margin-bottom: 96px;
    padding-top: 24px;
}
.posts_loop_section .title_box h1{
    font-size: 3.2rem;
}
.posts_loop_section .loop_box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    row-gap: 32px;
}
.posts_loop_section .loop_box .single_item{
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    align-items: flex-start;
    gap: 15px;
    height: 100%;
}
.posts_loop_section .loop_box.competitions .single_item{
    padding: 37px 28px;
    background-color: rgb(236 236 236);
    height: auto;
}
.posts_loop_section .loop_box .single_item .image{
    margin-bottom: 15px;
    width: 100%;
    height: 278px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.posts_loop_section .loop_box .single_item .image img{
    width: 100%;
    max-width: 367px;
    height: auto;
    max-height: 278px;
    height: 100%;
    object-fit: cover;
}
.posts_loop_section .loop_box .single_item h3{
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;
   line-height: 2.2rem;
   height: 4.4rem;
}
.posts_loop_section .pagination{
    grid-column: span 3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.4rem;
    line-height: 120%;
    color: #01160E;
    margin-top: 48px;
}
.posts_loop_section .pagination a{
    color: #50B27D;
}

.ltb_breadcrumbs_box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.ltb_breadcrumbs_box a,
.ltb_breadcrumbs_box span{
    font-size: 1.2rem;
    list-style: 100%;
    color: #01160E;
}
.ltb_breadcrumbs_box a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #50B27D;
    transition-duration: 0.4s;
}
.ltb_breadcrumbs_box a:hover{
    color: #01160E;
}
.ltb_breadcrumbs_box a::after{
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #50B27D;
    border-top: 2px solid #50B27D;
    transform: rotate(45deg);
}

.history_section .history_box{
    display: flex;
    flex-direction: column;
}
.history_section .history_box .single_row{
    display: flex;
    gap: 96px;
    position: relative;
    padding: 48px 0px;
}
.history_section .history_box .single_row::before{
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0px;
    background-color: #14AE5C;
}
.history_section .history_box .single_row::after{
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    position: absolute;
    right: 50%;
    top: 50%;
    background-color: #14AE5C;
}
.history_section .history_box .single_row:nth-child(even){
    flex-direction: row-reverse;   
}
.history_section .history_box .single_row:nth-child(even)::after{
    right: auto;
    left: 50%;
}
.history_section .history_box .single_row>div{
    width: 100%;
}
.history_section .history_box .single_row .left{
    display: flex;
    align-items: center;
}
.history_section .history_box .single_row:nth-child(odd) .left{
    justify-content: flex-end;
}
.history_section .history_box .single_row p.date{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background-color: #14AE5C;
    color: #FFF;
    font-size: 2.4rem;
    margin-bottom: 0px;
    font-weight: 700;
}
.history_section .history_box .single_row .right>*:last-child{
    margin-bottom: 0px;
}
.history_section .history_box .single_row .right img{
    max-width: 100%;
}