.scroll_to_top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: block;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 300px;
    opacity: 0;
    visibility: hidden;
    background: radial-gradient(50% 50% at 50% 0%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.00) 100%), var(--warning)
    url(../img/to_top.svg) no-repeat center;
    background-size: 70%;
    transition: all 0.15s ease-in-out;
    z-index: 10;
}

.scroll_to_top.active {
    opacity: 1;
    visibility: visible;
}

.scroll_to_top.active:hover {
    opacity: 1;
}


.dbl-btn{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -8px;
}
.dbl-btn > .btn{
    margin-bottom: 8px;
}
.dbl-btn > .btn:not(:last-child){
    margin-right: 8px;
}
.dbl-btn--2 > .btn{
    margin-bottom: 2px;
}
.dbl-btn--2 > .btn:not(:last-child){
    margin-right: 2px;
}
.ui-table{
    width: 100%;
}
.ui-table tr td:first-child{
    padding-left: 0;
}
.ui-table tr td:last-child{
    padding-right: 0;
}
.ui-table tr td{
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
}

:root{
    --ico-size: 16px;
}
.ico.--size-24{
    --ico-size: 24px;
}
.ico.--ico-play{
    --ico-size: 72px;
}
.ico.--size-20{
    --ico-size: 20px;
}
.ico.--size-22{
    --ico-size: 22px;
}
.ico.--size-32{
    --ico-size: 32px;
}
.ico{
    display: flex;
    align-items: center;
    min-width: var(--ico-size);
    max-width: var(--ico-size);
    height: var(--ico-size);
}

.form-group{
    display: flex;
    flex-direction: column;
}
.label{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.label > *:not(:last-child){
    margin-right: 12px;
}
.form-group .label > *{
    margin-bottom: 12px;
    line-height: 1em;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}
.label-text{
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: var(--secondary);

    display: flex;
    align-items: center;
    line-height: 1em;
}
.input-wrapper{
    display: flex;
    padding: 0 !important;
    white-space: nowrap;
    height: 44px;
}

.input-wrapper .input,
.input-wrapper .textarea{
    min-height: auto;
    background-color: transparent;
    border-radius: 0;
    border: none;
    flex: auto;
    /*width: max-content;*/
}
.input, .textarea, .input-wrapper {
    padding: 8px 12px;
    min-height: 44px;
    font-size: var(--defaultFontSize);
    width: 100%;
    background-color: var(--card-bg-color);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-light-white);
    color: var(--white);
    resize: none;

}
.input::placeholder, .textarea::placeholder{
    font-size: var(--defaultFontSize);
    color: rgba(119, 126, 132, 0.6);
}
input,
button,
textarea {
    font-family: var(--fotnFamily);
}

[data-password].show .--view-pass{
    display: none !important;
}
[data-password]:not(.show) .--hidden-pass{
    display: none !important;
}

.form{
    display: flex;
    flex-direction: column;
}
.form-row{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -12px;
    align-items: flex-end;
    margin-left: -4px;
    margin-right: -4px;
}
.form-row > *{
    padding-left: 4px;
    padding-right: 4px;
}
.form-row > .dbl-btn{
    margin-bottom: 0px;
}
.form-row > .dbl-btn .btn{
    margin-bottom: 12px;
}
.form-row > *:not(.dbl-btn){
    margin-bottom: 12px;
}
.color--secondary-60{
    color: var(--secondary-60);
}
.def-text-1{
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
}
.form-footer-col{
    display: flex;
    flex-direction: column;
}
.form-footer:not(.form-footer-col){
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-footer:not(.form-footer-col) > *:not(:last-child){
    margin-right: 10px;
}


.heading-block{
    display: flex;
    flex-direction: column;
}
.heading{
    font-style: normal;
    font-family: var(--fotnFamily);
}
h6.heading{
    font-size: var(--h6Size);
}
h5.heading{
    font-size: var(--h5Size);
}
h4.heading{
    font-size: var(--h4Size);
}
h3.heading{
    font-size: var(--h3Size);
}
.text-description{
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    color: var(--secondary);
}

.file-form{
    cursor: pointer;
}
.file-form-content{
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow: hidden;
    border: 1px dashed var(--warning);
    border-radius: 24px;
    justify-content: center;
    align-items: center;
}
.upload-description{
    color: var(--secondary);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
}
.gutters-36{
    --bs-gutter-x: 36px;
    --bs-gutter-y: 36px;
}
.gutters-50{
    --bs-gutter-x: 50px;
}

.check-btn{
    cursor: pointer;
}
.btn--primary-border:hover .color-warning{
    color: var(--white) !important;
}
.check-btn input:not(:checked) ~ .btn--primary-border:hover{
    color: var(--defaultTextColor);
}

.check-btn .btn{
    font-weight:500;
    border-width: 2px;
}
.check-btn input:not(:checked) ~ .btn--primary-border{
    border-color: transparent;
    color: var(--secondary);
}
.check-btn input:checked ~ .btn--primary-border{
    border-color: var(--warning);
    pointer-events: none;
}

.point-color{
    width: 24px;
    height: 24px;
    border-radius: 300px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: transparent;
}
.view-checker{
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--card-bg-color);
    padding: 4px 2px;
    display: flex;
    max-width: max-content;
    cursor: pointer;
}
.view-checker .check-item input:checked ~ .btn{
    background-color: var(--warning);
    color: var(--defaultTextColor);
}
.view-checker .check-item{
    padding-right: 2px;
    padding-left: 2px;
}
.view-checker .btn{
    color: var(--secondary);
    cursor: pointer;
    border-radius: 8px;
}
.view-checker .btn:hover{
    border-color: var(--secondary-50);
}
.check-item input:checked ~ .check{
    background-color: var(--warning);
    border-color: transparent;
}
.check-item input:checked ~ .check::after{
    opacity: 1;
}
.check-item{
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
}
.check-text{
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--secondary);
    font-weight: 500;
}
.check::after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../img/ico-check.svg") no-repeat center center / 14px;
    top: 0;
    left: 0;
    opacity: 0;
}
.check{
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    overflow: hidden;
    border: 2px solid #202A35;
    background-color: transparent;
    border-radius: 4px;
    position: relative;
}
.check-text{
    flex: auto;
}
.check-text + .check-switch{
    margin-left: 8px;
}
.check + .check-text{
    margin-left: 8px;
}

.check-switch input:checked ~ .check-point{
    transform: translateX(-100%);
    left: 100%;
}
.check-switch input:checked ~ .check-line{
    background-color: var(--warning);
}
.check-switch{
    height: 18px;
    min-width: 30px;
    max-width: 30px;
    position: relative;
    padding-top: 3px;
    padding-bottom: 3px;
    transition: all 0.5s;
    display: flex;
    align-items: center;

    width: 100%;
    cursor: pointer;
}
.check-switch .check-point{
    min-width: 18px;
    max-width: 18px;
    height: 100%;
    position: absolute;
    background-color: #D7DCDD;
    border-radius: 300px;
    transition: all 0.3s;
    transform: translateX(0%);
    left: 0%;
}
.check-switch .check-line{
    background-color: #8C8C8C;
    border-radius: 300px;
    height: 100%;
    width: 100%;
    transition: background-color 0.8s;
}

.widget-range--input{
    width: 36px;
    border: none;
    background: transparent;
    text-align: right;
    color: var(--defaultTextColor);
}
.noUi-horizontal .noUi-handle{
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 360px;
    background-color: var(--warning);
    box-shadow: none;
    border: 2px solid #0D1218;
    right: -8px;
}
.noUi-horizontal .noUi-handle::before,
.noUi-horizontal .noUi-handle::after{
    display: none;
}
.noUi-connect{
    background-color: var(--warning);
}
.noUi-connects{
    margin: 0 -8px;
    width: calc(100% + 16px);
}
.noUi-horizontal{
    height: 2px;
}
.noUi-target{
    background: var(--secondary);
    border: none;
    border-radius: 360px;
    box-shadow: none;
    padding: 0 8px;
}


.form-header-col{
    display: flex;
    flex-direction: column;
}
.form-header:not(.form-header-col){
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -10px;
}
.form-header:not(.form-header-col) > *{margin-bottom:10px;}
.form-header:not(.form-header-col) > *:not(:last-child){
    margin-right: 10px;
}
.form-section{
    display: flex;
    flex-direction: column;
    flex: auto;
}
.form-section .container-form{
    margin: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}
.form-body{
    display: flex;
    flex-direction: column;
}

.or-line{
    display: flex;
    text-align: center;
    justify-content: center;
    position: relative;
}
.or-line::after{
    left: 0;
}
.or-line::before{
    right: 0;
}
.or-line::after, .or-line::before{
    content: "";
    width: calc(50% - 24px);
    height: 1px;
    display: block;
    position: absolute;
    background: rgba(256,256,256,0.06);
    top: 50%;
    transform: translateY(-50%);
}

.or-text{
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: var(--secondary);
}

.items-12 > *:not(:last-child){
    margin-bottom: 12px;
}

.container-full{
    padding-left: 80px;
    padding-right: 80px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
}

.prev-section{
    position: fixed;
    top: 0;
    background: transparent;
    width: 100%;
    pointer-events: none;
}
.prev-section .prev-btn{
    pointer-events: all;
    padding-top: 16px;
    padding-bottom: 16px;
}
.prev-btn:hover{
    color: var(--warning);
}
::-webkit-scrollbar{
    /* display: none; */
    width: 0;
    height: 0;
}

.card-gallery{
    display: flex;
    flex-direction: column;
    transition: border .2s;
    position: relative;
    height: 100%;
}
.card-gallery-photo:hover{
    border-color: var(--warning);
}
.card-gallery:hover .card-gallery-photo img{
    transform: scale(1.1);
}
.card-gallery-photo{
    overflow: hidden;
    border-radius: 16px;
    min-height: 210px;
    border: 1px solid transparent;
    transition: border .2s;

    display: flex;
    flex-direction: column;
    height: 100%;
}
.card-gallery-photo img{
    width: 100%;
    height: 100%;
    transition: transform .2s;
    flex: auto;
}

.video-wrapper{
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.video-wrapper .video-player{
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-fit: contain;
}
.fancybox-image{
    /* object-fit: cover !important; */
    width: auto;
    border-radius: 15px;
}
.is-closing.fancybox__container{display:none !important;}
.fancybox__container{
    --fancybox-bg: rgba(10, 14, 18, 0.90);
}
.btn-play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    /*
    min-width: 100%;
    height: 100%;
    max-width: 100%;*/
}
.btn-play{
    /*
    min-width: 72px;
    height: 72px;
    max-width: 72px;*/

    width: 100%;
    height: 100%;
    max-width: 100%;
}

.card-gallery .btn-play{
    pointer-events: none;
}
.card-gallery + .video-wrapper{
    display: none !important;
}
.fancybox__toolbar, .fancybox__container{
    padding-left: 80px;
    padding-right: 80px;
}
.fancybox__slide{
    margin: 0 !important;
    padding: 0 !important;
}
.is-closing .fancybox__toolbar [data-fancybox-close]{
    display: none !important;
}
.fancybox__toolbar [data-fancybox-close]{
    border-radius: 360px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    width: 50px;
    height: 50px;
}
.fancybox__toolbar [data-fancybox-close]:hover{
    border-radius: 360px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid #fff !important;
}
.fancybox__content{
    width: 1000px !important;
    overflow: hidden;
    border-radius: 16px;
    display: flex !important;
    padding: 0;
    max-height: 600px !important;
    min-height: 600px !important;
    background: transparent !important;
}
.fancybox__toolbar{
    height: 600px;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
.fancybox__toolbar,
.fancybox__toolbar *{
    visibility: visible !important;
    overflow: visible !important;
    opacity: 1 !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.fancybox__toolbar *:visited,
.fancybox__toolbar *:active,
.fancybox__toolbar *:focus,
.fancybox__toolbar *:hover{
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.fancybox__nav,
.fancybox__nav .f-button{
    visibility: visible !important;
    overflow: visible !important;
    opacity: 1 !important;
    outline: none !important;
    border: none !important;


}
.fancybox__nav .f-button{
    border-radius: 360px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.fancybox__nav .f-button:hover,
.fancybox__nav .f-button:focus,
.fancybox__nav .f-button:visited,
.fancybox__nav .f-button:active{
    outline: none !important;
    border: 1px solid transparent;
    box-shadow: none !important;
}
.fancybox__nav .f-button:hover{
    border-radius: 360px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid #fff !important;
}

.fancybox__nav .f-button::before,
.fancybox__nav .f-button::after{
    display: none !important;
}

.btn--xs-2{
    padding: 3px 14px;
    min-height: 40px;
    font-size: 15px;
    font-style: normal;
}
.custom-img{
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.wrapp-img{
    overflow: hidden;
}
.wrapp-img img{
    width: 100%;
    height: 100%;
}
.fullslide-bg{
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 42px;
    height: 550px;
}
.swiper-style--btn{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 360px;
    background: rgba(10, 14, 18, 0.50);
    backdrop-filter: blur(8px);
    border: 1px solid transparent;
    color: #CFCFCF;
}
.swiper-style--btn:hover{
    border-color: var(--white);
    color: var(--white);

}
.fullslider .swiper-button-prev{
    left: 20px;
}
.fullslider .swiper-button-next{
    right: 20px;
}
.swiper-style--btn::after{
    display: none;
}
.section-70{
    padding-top: 70px;
    padding-bottom: 70px;
}

.icon-to-logo{
    min-width: 120px;
    max-width: 120px;
    height: 120px;
}

.to-top-navigation{
    display: flex;
    order: -1;
}
.to-top-navigation .swiper-style--btn{
    position: relative;
}
.to-top-navigation .swiper-style--btn:not(:last-child){
    margin-right: 12px;
}
.to-top-navigation{
    height: 40px;
}
.to-top-navigation .swiper-style--btn{
    height: 100%;
    width: 40px;
    left: 0;
    right: 0;
    background-color: #151B22;
}
.like-btn{cursor:pointer;}
.like-btn input:checked ~ .btn-seondary-2 .ico{
    filter: brightness(0) saturate(100%) invert(37%) sepia(78%) saturate(2879%) hue-rotate(3deg) brightness(107%) contrast(101%);
}
.banner-fix-container .banner-container{
    width: 100%;
}
.galleryslider .card-gallery-photo{
    min-height: auto;
    aspect-ratio: 1 / 1;
}

.spectral-img{
    position: relative;
    height: inherit;
}
.blog-first__image img{
    height: 100%;
}
.blog-first__image{
    height: 430px;
    position: relative;
}
.spectral-logos img{
    height: 100%;
    width: max-content !important;
    max-width: 100%;
}
.blog-first__image .spectral-logos{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.table-size{
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
    overflow: hidden;
    align-items: center;
}
.table-size > .table-size--item{
    padding-left: 12px;
    padding-right: 12px;
}
.table-size--item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.table--row tbody tr{
    display: flex;
}
.table-wrapper{
    width: 100%;
    overflow: auto;
}
.table--row tbody tr td{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 70px;
    min-width: 70px;
    white-space: nowrap;
}
.table--row thead{
    position: sticky;
    left: 0;
}
.table--row tbody,
.table--row thead{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.table--row{
    display: flex;
}
.table--row tbody,
.table--row thead{
    width: 100%;
}
.table--row thead tr
{
    display: flex;
}
.table--row thead td,
.table--row thead th{
    width: 100%;
    display: flex;
    align-items: center;
}
.table-size--card .table-custom thead th,
.table-size--card .table-custom thead td{
    background-color: #141A20;
}
.table-custom thead th,
.table-custom thead td{
    background-color: var(--page-bg-color);
}
.table-custom th, .table-custom td{
    height: 52px;
    color: var(--secondary);
    font-family: var(--fotnFamily);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    padding: 8px;
}
.table-custom tr:not(:last-child) td,
.table-custom tr:not(:last-child) th{
    border-bottom: 1px solid #222C38;
}
.table-custom td:not(:last-child),
.table-custom th{
    border-right: 1px solid #222C38;
}
.table-size + .table-size{
    margin-top: 30px;
}
.select-secondary .select2-container--default.select2-container--open .select2-selection--single{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.select-sm .select2-container--default .select2-selection--single .select2-selection__arrow,
.select-sm .select2-container--default .select2-selection--single .select2-selection__rendered,
.select-sm .select2-container--default .select2-selection--single{
    height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 0;
}
.editor-projector{
    max-width: 550px;
    max-height: 550px;
    aspect-ratio: 1/1;
    background-color: #0D1218;
    border-radius: 300px;
    padding: 30px;
    width: 100%;
    
}
.editor-container{
    border: 1px dashed var(--warning);
    width: 100%;
    height: 100%;
    border-radius: 300px;
    position: relative;
    overflow: hidden;
}
.edit-text input{
    background-color: transparent;
    border: none;
}
.edit-text{
    padding: 8px 16px;
    border: 1px dashed transparent;
    min-height: 42px;
    position: absolute;
    width: 100%;

}
.edit-text.active{
    border-color: rgba(255, 255, 255, 0.14);
    background: #0D1218;
}
.edit-text.active .edit-controls{
    display: block;
}
.edit-controls{
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: none;
}
.edit-controls > *{
    pointer-events: all;
}
.control-edit{
    min-width: 10px;
    max-width: 10px;
    height: 10px;
    border-radius: 300px;
    position: absolute;
    display: flex;
}
.edit-widget,
.edit-widget *:not(.edit-controls *){
    cursor: pointer;
}
.edit-img svg,
.edit-img img{
    width: 100%;
    height: 100%;
}
.edit-widget 
.edit-widget{
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 100%;
    max-width: 100%;
}

.edit-text:hover{
    border-color: var(--warning);
}
.edit-text input{
    display: none;
}
.edit-text:not(.editable){
    user-select: none;
}
.edit-text.editable{
    border-color: var(--warning);
}
.edit-text.editable p{
    display: none;
}
.edit-text.editable input{
    display: block;
}

.tabs-list{
    flex-wrap: wrap;
    margin-bottom: -10px;
}
.tabs-list > li{
    margin-bottom: 10px;
}

.row-tab-info{
    display: flex;
    margin-left: -25px;
    margin-right: -25px;
    margin-bottom: -25px;
    align-items: center;
}
.row-tab-info > .row-tab-info--col{
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 25px;
}
.items-50 > *:not(:last-child){
    margin-bottom: 50px;
}
.table-size--card{
    display: flex;
    flex-direction: column;
    border-radius: 48px;
    background: #141A20;
}
.table-size--list{
    display: flex;
    flex-direction: column;
}
.counter-list{
    counter-reset: section;
    list-style-type: none !important;
    padding: 0 !important;
}
.counter-list li{
    list-style-type: none !important;
    display: flex;
}
.counter-list li::before{
    content: counter(section) ".";
    counter-increment: section;
    margin-right: 5px;
}
.counter-list li::marker{
    display: none;
}   


















/* styles - 14.03.2024 */
.post-page__container .gutters-20 {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.post-page__container .post-page-description {
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.post-page__container .post-single-widget {
    gap: 20px;
}

.post-page__container .post-single-header {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 32px;
}

.post-page__container .post-single-header img {
    width: 100%;
    height: 100%;
}

.post-page__container .post-single-widget,
.post-page__container .post-single-body {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: auto;
}

.post-page__container .post-single-body {
    gap: 10px;
}

.post-page__container .post-single--title {
    font-size: 16px;
    font-weight: 600;
}

.post-page__container .post-single--desk {
    font-size: 14px;
    font-weight: 400;
    color: #777E84;
}
.post-single-widget--row{
    display: flex;
   
    align-items: center;
    background-color: #141A20;
    border-radius: 32px;
}
.wrapper-image-single{
    overflow: hidden;
    border-radius: 32px;
}
.post-single-widegt--row--content{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.post-single-widget--row > .post-single-widegt--row--image{
    flex: 0 0 33.3%;
    max-width: 33.3%;
}
.post-single-widget--row > .post-single-widegt--row--content,
.post-single-widget--row > .post-single-widegt--row--image{
    padding: 25px;
}
.post-page-desc{
    color: #777E84;
}
.post-page-desc a{
    color: #FF5C00;
}
.post-single-widegt--row--content p{
    color: #777E84;
}
.post-page__container .blog-page img{
    object-fit: cover;
    border-radius: 36px;
}
.post-page__container .blog-page{
    padding-top: 80px;
    padding-bottom: 80px;
}
.blog-page p a{
    color: #FF5C00;
    text-decoration: underline;
}
.blog-page ul{
    margin: 30px;
    display: flex;
    flex-direction: column;
}
.blog-page ul li{
    display: flex;
    gap: 10px;
}
.blog-page ul li::before{
    content: "\2022";
}
.blog-page p a, .blog-page ul a {
    color: #FF5C00;
    text-decoration: underline;
}

.blog-page p+h5 {
    margin-top: 30px;
}
.blog-page h5 {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--defaultTextColor);
}
.blog-page h1,.blog-page h2,.blog-page h3,.blog-page h4,.blog-page h5,.blog-page h6{
    color: var(--defaultTextColor);
}
.blog-page h5+p {
    margin-top: 20px;
}
.post-page__container .blog-page{
    padding-top: 40px;
    padding-bottom: 40px;
}
.post-page__container .blog-page img:first-child{
    margin-top: 0 !important;
}
.post-page__container .blog-page p+h4 {
    margin-top: 30px;
}
.post-page__container .blog-page>img:not(:last-child), .blog-page img{
    margin-bottom: 30px !important;
}
.post-page__container .blog-page p strong{
    color: #fff;
}
.banner-page{
    border-radius: 32px;
    overflow: hidden;
}
.post-single-header video{
    height: 100%;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 992px){
    .post-single-widget--row{
        display: flex;
        flex-direction: column;
    }
    .post-single-widget--row > .post-single-widegt--row--image{
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (max-width: 768px){
    h2{
        font-size: var(--h4Size);
    }
}
/* styles - 14.03.2024 */