

/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/
:root{
    --accent: #f6783a;
    --blue: #2f2e69;
    --font-title: #10589c;
    --wid-bg: #f3f3f3;
    --text-grey: #636363;
    --border-color: #e9e9e9;
    --bg_sections: #020031;
    --vs-title-color-rgb: 37, 40, 62;
}
html,
body {
    height: 100%;
    font-family: 'Rubik', sans-serif;
}

.container{
    /*overflow: hidden;*/
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 36px;
    line-height: 1.2;
}

i {
    margin-right: 10px;
}

p {
    font-size: 14px;
    color: #636363;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}
a{
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

/*---------------------
	Helper CSS
-----------------------*/

.spad {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-title {
    margin-bottom: 50px;
}


.section-title p {
    margin-bottom: 0;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: #fff;
}

/*---------------------
	Commom elements
-----------------------*/

/* Buttons */

.site-btn {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    background: var(--accent);
    color: #fff;
    padding: 18px 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    border-radius: 50px;
    min-width: 170px;
    text-align: center;
    border: none;
    cursor: pointer;
}

/* Image Popup */

.img-popup-warp .mfp-content,
.img-popup-warp.mfp-ready.mfp-removing .mfp-content {
    opacity: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.img-popup-warp.mfp-ready .mfp-content {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

/*------------------- Pagination  -------------------*/
.vs-pagination {
    margin-bottom: 30px;
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.vs-pagination ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vs-pagination li {
    display: inline-block;
    margin: 0 0px;
    list-style-type: none;
}
.vs-pagination li:last-child {
    margin-right: 0;
}
.vs-pagination li:first-child {
    margin-left: 0;
}
.vs-pagination span,
.vs-pagination a {
    display: inline-block;
    color: #000000;
    text-align: center;
    border: none;
    min-width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    z-index: 1;
    border-radius: 6px;
    position: relative;
    background-color: rgba(var(--vs-title-color-rgb), 0.1);
    border: 2px solid rgba(var(--vs-title-color-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Small devices */
}
@media (max-width: 767px) {
    .vs-pagination span,
    .vs-pagination a {
        min-width: 40px;
    }
}
.vs-pagination span::before,
.vs-pagination a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 5px;
    transition: all 0.3s ease;
    opacity: 70%;
    z-index: -1;
}
.vs-pagination span.active, .vs-pagination span:hover,
.vs-pagination a.active,
.vs-pagination a:hover {
    box-shadow: none;
    color: #ffffff;
    background-color: var(--accent);
}
.vs-pagination li.active span,
.vs-pagination li.active a {
    box-shadow: none;
    color: #ffffff;
    background-color: var(--accent);
}

.vs-pagination .pagi-btn {
    font-size: 15px;
}
.vs-pagination .pagi-btn--next {
    background-color: var(--blue);
    color: #ffffff;
    border-color: var(--font-title);
}

/*---------------------
	Header section
-----------------------*/
.header-section {
    /*height: 100px;*/
    display: flex;
    align-items: center;
    overflow: hidden;
}

.header-section .container{
    padding: 10px 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-section__list{
    display: flex;
    justify-content: start;
    gap: 10px;
    list-style-type: none;
    /*width: 40%;*/
}
.header-section__list a{
    color: #000;
    padding-right: 15px;
    margin: 0;
    text-decoration: none;
}
.site-logo {
    display: inline-block;
    margin-right: 50px;
    padding-top: 20px;
}
.social-lang{
    display: flex;
    justify-content: center;
    align-content: center;
    float: right;
}

.lang-switch {
    height: 50px;
    align-items: center;
    background: var(--gray-b-top);
    display: inline-flex;
    border-radius: 6px;
    padding: 4px;
    margin-left: 25px;
}
.lang-btn {
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    background: white;
    margin: 0 2px;
    transition: 0.3s;
}
.lang-btn:hover {
    background: #f6e1cc;
    color: var(--accent);
}
.lang-btn.active {
    background: var(--accent);
    color: #FFFFFF;
}

.header-info {
    display: flex;

}

.header-info .hf-item {
    display: flex;
    justify-content: start;
    margin-left: 35px;
    align-items: center;
}

.header-info .hf-item i {
    width: 45px;
    height: 45px;
    display: inline-block;
    position: relative;
    text-align: center;
    color: var(--accent);
    font-size: 17px;
    padding-top: 13px;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.header-info .hf-item i:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 1px solid #d2d2db;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 2px;
}

.header-info .hf-item p {
    display: inline-block;
    position: relative;
    margin-bottom: 0;
}

.header-info .hf-item p span {
    /*display: block;*/
    font-size: 12px;
    text-transform: uppercase;
    color: #020031;
    font-weight: 500;
}

.nav-switch {
    display: none;
}

.nav-section {
    background: var(--blue);
}
.nav-display {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
}

.main-menu li {
    display: inline-block;
    /*width: 100%;*/
}

.main-menu li a {
    display: inline-block;
    /*height: 100%;*/
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 15px 15px;
    margin-right: -5px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.main-menu li a:hover {
    background: var(--accent);

}

.main-menu li.active a {
    background: var(--accent);
}
.main-menu__item {
    position: relative;

}
.subnav {
    display: none;
    position: absolute;
    min-width: 220px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    padding: 10px 0;
    z-index: 10;
}

.subnav li a{
    display: inline-block;
    color: #000;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 20px;
    margin-right: -5px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.main-menu__item:hover .subnav {
    display: block;
    top: 90%;   /* ровно под родителем */
    left: 0;
    margin-top: 2px;
}
.main-menu .subnav .subnav {
    display: none;

}

.ripple-animation, .play-btn:after, .play-btn:before {
    animation-duration: var(--ripple-ani-duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-name: ripple;
}
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes slideinup {
    0% {
        opacity: 0;
        transform: translateY(70px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes slideindown {
    0% {
        opacity: 0;
        transform: translateY(-70px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes slideinleft {
    0% {
        opacity: 0;
        transform: translateX(-70px);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes slideinright {
    0% {
        opacity: 0;
        transform: translateX(70px);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes fadein-custom {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}


.play-btn {
    --ripple-ani-duration: 5s;
    --icon-size: 85px;

    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: var(--icon-size);
    height: var(--icon-size);

    border-radius: 50%;
    overflow: visible;

    z-index: 1;
}
.icon-inst {
    position: absolute;
    right: 0;
    z-index: 2;
}
.play-btn > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size, 124px);
    height: var(--icon-size, 124px);
    line-height: var(--icon-size, 124px);
    font-size: var(--vs-icon-font-size, 1.5em);
    text-align: center;
    background-color: #ffffff;
    color: #ffffff;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all ease 0.4s;
    margin: 0;



}

.svg-inst {
    /*width: 100%;*/
    /*height: 100%;*/
    object-fit: contain;
    margin: 10px;
}

.bg-inst {
    width: 70% ;
    height: 70%;
    border-radius: 50%;
    background-color: var(--font-title);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.play-btn:after, .play-btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #2983DD;
    z-index: -1;
    border-radius: 50%;
    transition: all ease 0.4s;
}
.play-btn:after {
    animation-delay: 2s;
}
.play-btn:hover:after, .play-btn:hover::before,
.play-btn:hover i, .play-btn:hover .bg-inst {
    background-color: var(--accent);
    color: #ffffff;

}

/* === breadcrumbs =======*/
.breadcrumbs {
    padding-top: 2.22222vw ; }
.breadcrumbs__list {
    margin: 0;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.55556vw 1.11111vw;
    background-color: rgba(246, 120, 58, 0.43);
    border-radius: 2.5vw;
    font-size: 0.83333vw; }
@media (min-width: 1600px) {
    .breadcrumbs ol {
        padding: 8px 16px;
        border-radius: 36px;
        font-size: 12px; } }
@media (min-width: 576px) and (max-width: 1024px) {
    .breadcrumbs ol {
        padding: 1.07527vw 2.15054vw;
        border-radius: 4.83871vw;
        font-size: 1.6129vw; } }
@media (max-width: 575px) {
    .breadcrumbs ol {
        padding: 2.13333vmin 4.26667vmin;
        border-radius: 9.6vmin;
        font-size: 3.2vmin; } }
.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    text-decoration: none;}
.breadcrumbs__item a{
    color: var(--gray-sd);
    text-decoration: none;}
.breadcrumbs__item:after {
    content: "";
    display: inline-block;
    width: 0.41667vw;
    height: 0.41667vw;
    border-radius: 50%;
    background-color: var(--accent);
    margin: 0 0.83333vw; }
@media (min-width: 1600px) {
    .breadcrumbs__item:after {
        width: 6px;
        height: 6px;
        margin: 0 12px; } }
@media (min-width: 576px) and (max-width: 1024px) {
    .breadcrumbs__item:after {
        width: 0.80645vw;
        height: 0.80645vw;
        margin: 0 1.6129vw; } }
@media (max-width: 575px) {
    .breadcrumbs__item:after {
        width: 1.6vmin;
        height: 1.6vmin;
        margin: 0 3.2vmin; } }
.breadcrumbs__item a:hover {
    color: var(--accent); }
.breadcrumbs__item span {
    font-weight: 500;
    color: var(--green-d);}
.breadcrumbs__item:last-child {
    color: #000; }
.breadcrumbs__item:last-child:after {
    display: none; }
@media (min-width: 1600px) {
    .breadcrumbs {
        margin-bottom: 40px; } }
@media (min-width: 576px) and (max-width: 1024px) {
    .breadcrumbs {
        margin-bottom: 5.37634vw; } }
@media (max-width: 575px) {
    .breadcrumbs {
        margin-bottom: 10.66667vmin;
        display: none; } }


/*---------------------
	Hero Section
-----------------------*/
.hero-section {
    height: 420px;
    align-items: center;
}
.owl-stage {
    height: 100%;
}
.owl-item{
    height: 100%;
}
data-setbg{
    height: 100%;
}
.hs-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 30px;
}
.hs-item {
    min-height: 100%;
    height: 100%;
    position: relative;
    display: table;
    width: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hs-btn{
    display: flex;
    justify-content: start;
    gap: 20px;
    z-index: 3;
}
.hs-item .hs-text {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    z-index: 2;
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgb(0 3 49 / 77%) 50%, rgb(2 0 49 / 58%));
    /*background: rgba(1, 70, 139, 0.70);*/
    /* clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%); */
    z-index: 1;
}

.hs-title,
.ml-logo,
.ml-social {
    position: relative;
    z-index: 2;
}
.ml-logo{
    height: 100%;
    overflow: hidden;
}
.ml-logo img{
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}
.hs-item .hs-title {
    color: #fff;
    font-size: 38px;
    margin-bottom: 15px;
    position: relative;
    left: 150px;
    opacity: 0;
    text-transform: uppercase;
}

.hs-btn-item{
    background-color: var(--accent);
    padding: 6px 15px;
    border-radius: 3px;
   align-content: center;
}
.hs-btn-item a {
    font-size: 16px;
   color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0;
}
/*.ml-social{*/
/*    display: flex;*/
/*    justify-content: start;*/
/*    gap: 15px;*/
/*}*/
/*.ml-social__icon{*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    margin-right: 15px;*/
/*    border: 1px solid #f6783a;*/
/*    border-radius: 10px;*/
/*    padding: 10px;*/
/*    background-color: #f6783a;*/
/*}*/
/*.ml-social__icon:hover{*/
/*    background-color: inherit;*/
/*    border: 1px solid #f6783a;*/

/*    fill: #f6783a;*/
/*}*/


.owl-item.active .hs-item .hs-title,
.owl-item.active .hs-item .hs-des,
.owl-item.active .hs-item .hs-subtitle,
.owl-item.active .hs-item .site-btn {
    left: 0;
    top: 0;
    opacity: 1;
}

.owl-item.active .hs-item .hs-subtitle {
    -webkit-transition: all 0.5s ease 0.4s;
    -o-transition: all 0.5s ease 0.4s;
    transition: all 0.5s ease 0.4s;
}

.owl-item.active .hs-item .hs-title {
    -webkit-transition: all 0.5s ease 0.6s;
    -o-transition: all 0.5s ease 0.6s;
    transition: all 0.5s ease 0.6s;
}

.owl-item.active .hs-item .hs-des {
    -webkit-transition: all 0.5s ease 0.8s;
    -o-transition: all 0.5s ease 0.8s;
    transition: all 0.5s ease 0.8s;
}

.owl-item.active .hs-item .site-btn {
    -webkit-transition: all 0.5s ease 1s;
    -o-transition: all 0.5s ease 1s;
    transition: all 0.5s ease 1s;
}

.hero-slider .owl-dots {
    position: absolute;
    width: 100%;
    bottom: 30px;
    left: 0;
    z-index: 1;
    text-align: center;
}

.hero-slider .owl-dots .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #fff;
    margin: 0 5px;
}

.hero-slider .owl-dots .owl-dot.active {
    background: var(--accent);
}
.popular-activity-area {
    border: 1px solid var(--border-color); }
.catalog-row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.catalog-card{
    padding: 10px;
}
.activity-item {
    padding: 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background: white;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
.activity-item .content h5  {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--font-title);
}
.activity-item .content h5 a{

    color: var(--font-title);
}
@media only screen and (max-width: 375px) {
    .activity-item {
        padding-left: 15px;
        padding-right: 15px; } }
.activity-item .image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-right: 25px; }
@media only screen and (max-width: 1399px) {
    .activity-item .image {
        margin-right: 15px; } }
.activity-item .image img {
    border-radius: 50%; }
@media only screen and (max-width: 1399px) {
    .activity-item .image img {
        width: 65px;
        height: 65px; } }
.activity-item .content {
    margin-right: 10px; }
.activity-item .content h5 {
    line-height: 1.2;
    margin-bottom: 5px; }
@media only screen and (max-width: 1399px) {
    .activity-item .content h5 {
        font-size: 16px; } }
.activity-item .right-btn {
    margin-left: auto; }
/*.activity-item .right-btn .more {*/
/*    color: white;*/
/*    font-size: 14px;*/
/*    display: inline-block;*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    background: var(--accent);*/
/*    line-height: 30px;*/
/*    border-radius: 50%;*/
/*    text-align: center; }*/
.activity-item:hover {
    border-color: var(--accent);
    -webkit-box-shadow: 10px 4px 60px rgba(247, 146, 30, 0.3);
    box-shadow: 10px 4px 60px rgba(247, 146, 30, 0.3); }
/*---------------------
	Counter Section
-----------------------*/

.counter-section {
    background: var(--blue);
    padding: 10px 0;
    overflow: hidden;
}

marquee{
    font-size: 25px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    align-content: center;
}

/*---------------------
	Service Section
-----------------------*/

.services {
    margin-bottom: -50px;
}

.service-item {
    margin-bottom: 50px;
}

.service-item .service-icon {
    width: 45px;
    float: left;
}

.service-item .service-icon img {
    max-width: 100%;
}

.service-item .service-content {
    padding-left: 75px;
}

.service-content a{
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 450;
    color: #000;
}

.director{
    display: flex;
    gap: 20px;
    justify-content: start;
    flex-direction: row;
    flex-wrap: nowrap;
    /*max-height: 200px;*/
    align-items: center;
    /*margin-bottom: 35px;*/
    overflow: hidden;
    padding: 10px;
}
.director-img {
    width: clamp(200px, 15vw, 400px);
    aspect-ratio: 1 / 1;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.30);
    flex-shrink: 0;
}

.director-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;

}
.director-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: start;
}
.dr-btn-item{
    background-color: var(--accent);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 3px;
    align-content: center;
    text-transform: none;

}
.dr-btn-item a{
    color: #ffffff;

}
.dr-content__inner h2{
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}
.dr-content__inner p{
    font-size: 18px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 10px;
}

/*---------------------
	Office page
-----------------------*/

.office-page__inner{
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent);
    margin-bottom: 20px;
}
.office-page__inner:last-child{
    border-bottom: none;
}
.office-page__header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-radius: 6px;

}
.office-page__image{
    overflow: hidden;
    border-radius: 10px;
    margin-right: 30px;
    height: 300px;
}
.office-page__header .col-6{
    padding-right: 0;
    padding-left: 0;
}
.office-page__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.office-page__li{
    padding-right: 20px;
}
.office-page__li ul{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    list-style-type: none;
    margin-top: 20px;
    gap: 10px;
}
.office-page__li ul li{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
}
.office-page__li ul li p{
    font-size: 20px;
    color: #000;
    margin-bottom: 0;
}
.office-page__li ul li span{
    font-size: 15px;
    color: #ffffff;
    padding: 5px 10px;
    background-color: #f6783a;
    border-radius: 6px;
    margin-left: 15px;
}
.office-page-title{
    border-bottom: 2px solid #A6A6A6FF;
}
.header-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.office-page__item img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 10px;
    border-radius: 6px;
}

.office-page__info{
    display: flex;
    justify-content: start;
    align-items: center;
}
.office-page__item p{
    font-size: 16px;
    margin-bottom: 0;
}
.office-page__item span{
    font-size: 14px;
    color: #ffffff;
    padding: 0 10px;
    background-color: var(--accent);
    border-radius: 6px;
    margin-left: 15px;
}


.office-page-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;gap: 15px;
}

.swiper-slide .footer-office-img{
    width: 100%;
    height: 150px;
    overflow: hidden;
}
.office-page__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 6px;

}


/*---------------------
Kruzhok page
-----------------------*/
.kruzhok-page__item{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--accent);
}
.kruzhok-page__item:last-child{
    border-bottom: none;
}
.kruzok-page__image{
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 6px;
}
.kruzok-page__image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.kruzhok-page__title{
    display: flex;
    margin-bottom: 20px;
}
.kruzhok-page__info{
    width: 100px;
    padding: 20px;
    background-color: var(--gray-b-top);

}
.kruzhok-page__team-inner{
    text-align: center;
}
.kruzhok-page__team img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}
.table td, .table th {
    padding: .35rem;

}
/*---------------------
cloth page
-----------------------*/
.cloth-page__info{
    text-align: center;
}
.grid {
    margin: 0 auto;
}

.grid-sizer,
.grid-item {
    width: 25%; /* 4 в ряд на десктопе */
    box-sizing: border-box;
    padding: 10px;
}

.grid-item img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

/* планшет */
@media (max-width: 992px) {
    .grid-sizer,
    .grid-item {
        width: 33.333%; /* 3 в ряд */
    }
}

/* мобила */
@media (max-width: 576px) {
    .grid-sizer,
    .grid-item {
        width: 50%; /* 2 в ряд */
    }
}

/*---------------------
AurStars page
-----------------------*/
.card-img-wrapper {
    position: relative;
}

.card-img-wrapper img {
    display: block;
}
.diplom {
    position: absolute;
    bottom: -5%;
    right: -7%;
    z-index: 2;
}
.diplom img {
    display: block;
    max-width: 220px;
    max-height: 160px;
    transition: transform .25s ease;
    background: #fff;
    padding: 6px;
    box-shadow: 0 0px 10px rgba(0,0,0,0.75);
    border-radius: 4px;
}
.diplom:hover img {
    transform: rotate(0deg) scale(1.1) !important;
}
.diplom.landscape { }
.diplom.portrait  { }
.modal-dialog{
    min-width: 900px;
    height: 100%;
}
.modal-ourStars__title{
    font-size: 30px;
    line-height: 1.2;
}
.ourSatars-modal__info{
    display: flex;
    justify-content: start;
    gap: 20px;
}
.diplom-modal{
    width: 50%;
}
.diplom-modal img{
    width: 100%;
    height: auto;
}
.ourStars-text{
    width: 50%;
}

/*---------------------
AurStars page
-----------------------*/
.card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4; /* стандартный книжный формат, можно 4/3 если хочешь более квадратно */
    /*overflow: hidden;*/
    /*background: #f8f8f8;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 👈 не обрезает, сохраняет пропорции */

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.text-center{
    padding: 10px 5px;
}
.text-center h6{
    font-size: 14px;
    font-weight: 400;
}
/*---------------------
	Enroll Section
-----------------------*/
.row{
    display: flex;
    flex-wrap: wrap;

}

.director__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
.director__content p{
    font-size: 14px;
    color: #FFFFFF;
}
.director__text {
    font-family: 'Cardo', serif;
    font-size: 20px;
    font-style: italic;
    color: #fff;
}

.director__name {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 20px 0 0 0;
    color: #fff;
}

.director__button {
    margin-top: 30px;
}

.btn--director {
    font-size: 16px;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 500;
    padding: 10px 30px;
    text-decoration: none;
}


.btn.btn--director:hover {
    background-color: #ffffff;
    color: var(--green-d);
}
.enroll-section {
    position: relative;
}

.enroll-section:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--bg_sections);
    opacity: 0.7;
}

.enroll-section .container {
    position: relative;
    z-index: 1;
}

.enroll-section .section-title {
    margin-bottom: 40px;
}


/* БАЗА */
:root{
    --orange:#f6783a;      /* оранжевый из макета */
    --black:#111;          /* заголовки */
    --text:#333;           /* обычный текст */
    --muted:#f3f3f3;       /* светло-серый фон карточки */
}


/* СЕКЦИЯ */
.contingent__title{
    margin:0 0 28px;
    text-align:center;
    font-size:36px;
    line-height:1.2;
    color:var(--black);
}

/* СЕТКА */
.contingent__grid{
    display:grid;
    gap:28px;
    max-width:1100px;
    margin:0 auto;
    grid-template-columns:1fr;  /* мобайл */
}
@media (min-width:992px){
    .contingent__grid{grid-template-columns:1fr 1fr;}
}

/* ЛЕВАЯ КАРТОЧКА */
.contingent__card{
    background:var(--muted);
    padding:28px 28px 24px;
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
}
.contingent__total{
    line-height:1;
    margin-bottom:18px;
}
.contingent__total-num{
    display:block;
    font-size:86px;          /* крупное число */
    font-weight:900;
    color:var(--accent);
    letter-spacing:1px;
}
.contingent__total-label{
    display:block;
    margin-top:8px;
    font-size:44px;
    font-weight:800;
    color:#000;
}
.contingent__shifts{display:flex;gap:14px;flex-wrap:wrap;margin-top:10px}
.pill{
    display:inline-block;
    background:var(--accent);
    color:#fff;
    padding:10px 18px;
    border-radius:24px;
    font-weight:700;
    font-size:16px;
    box-shadow:0 2px 0 rgba(0,0,0,.06);
}

/* ПРАВАЯ ЧАСТЬ */
.contingent__right{display:flex;flex-direction:column;gap:20px;justify-content: center}
.contingent__desc{
    margin:0;
    text-align:center;
    font-size:15px;
    line-height:1.45;
    color:#444;
}
@media (min-width:992px){ .contingent__desc{text-align:left} }

.contingent__ribbons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    align-items:flex-start;
    justify-content:center;
}
@media (min-width:992px){
    .contingent__ribbons{justify-content:flex-start}
}

/* ЛЕНТОЧКИ КЛАССОВ (точно как в макете) */
.ribbon{
    width:160px;            /* ширина блока */
    user-select:none;
}
.ribbon__top{
    position:relative;
    background:#fff;
    height:40px;
    display:flex;
    align-items:center;
    padding:0 10px 0 12px;
    font-weight:900;
    font-size:24px;
    color:var(--accent);
    box-shadow:0 1px 0 rgba(0,0,0,.06);
}

/* маленький серый "загиб" справа сверху */
.ribbon__top::after{
    content:"";
    position:absolute;
    right:0; top:0;
    border-left:16px solid transparent;
    border-top:16px solid #e9e9e9;
    width:0;height:0;
}

/* бейдж "классы" поверх верхней ленты */
.ribbon__tag{
    /*position:absolute;*/
    right:6px; top:10px;
    font-size:16px;
    font-weight:900;
    color:#000;
    background:transparent;
    transform:skewX(-12deg);
}

/* число «1–4 / 5–9 / 10–11» */
.ribbon__grade{
    transform:skewX(-12deg);
    display:inline-block;
    margin-right:10px; /* место под "классы" */
}

/* нижняя оранжевая трапеция с числом */
.ribbon__bottom{
    margin-top:4px;
    height:34px;
    background:var(--accent);
    color:#fff;
    font-weight:900;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    clip-path:polygon(0 0, 88% 0, 100% 100%, 0 100%); /* скошенный правый край */
    box-shadow:0 2px 0 rgba(0,0,0,.06);
}



/*---------------------
	Fact Section
-----------------------*/

.block {
    display: flex;
    gap: 20px;
    align-items: center;
}
.canvas {
    width: 100%;
}
/* Левая часть (диаграмма) */
.chart {
    display: inline-block;

}

/* Правая часть */
/*.content {*/
/*    width: 50%;*/
/*}*/

.content h2 {
    /*font-size: 46px;*/
    font-weight: bold;
    margin: 0 0 30px 0;
    color: #fff;
}

.content h2 span {
    /*font-size: 78px;*/
    color: var(--accent);
}

/* Легенда */
.legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 50px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* Кружки с процентами */
.legend-circle {
    flex-shrink: 0;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    margin-right: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Цвета для кружков */
.orange { background: #ff9800; }
.green { background: #4caf50; }
.blue { background: #2196f3; }
.purple { background: #9c27b0; }




.fact-section {
    background-position: center center;
    position: relative;
}

.fact-section:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--bg_sections);
    opacity: 0.8;
}

.fact-section .container {
    position: relative;
    z-index: 1;
}

.fact {
    text-align: center;
}

.fact-icon {
    font-size: 48px;
    color: #fff;
    width: 50px;
    display: inline-block;
}

.fact-text {
    padding-left: 20px;
    display: inline-block;
    text-align: left;
}

.fact-text h2 {
    color: var(--accent);
    font-weight: 400;
}

.fact-text p {
    margin-bottom: 0;
    text-transform: uppercase;
    color: #fff;
}

/*---------------------
	Event Section
-----------------------*/
.event-section{
    position: relative;
    overflow: hidden;
}
.row-part{
    display: flex;
    justify-content: center;
    padding: 40px 0;

}
/* Левая часть */
.left-part {
    width: 60%;
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.left-top{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* блок с 58 */
.left-num__boeder {
    border: 10px solid #e6e6e6;
    padding: 15px 25px;
    margin-bottom: 20px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
    background: #fff;
    position: relative;
    z-index: 1;

    /* правая часть скошена */
}
.left-num{
    font-size: 70px;
    font-weight: 900;
    color: var(--accent);

}
.left-text{
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 500;
    font-style: italic;
    color: #000;
    background-color: #e6e6e6;
    padding: 10px 30px;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}
.lang-wrapper, .dod-wrapper{
    display: flex;
    align-items: center;
}
.lang-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--accent);
    color: #fff;
    padding: 10px 15px;
    margin: 8px 0;
    position: relative;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
}

.lang-num {
    font-size: 30px;
    font-weight: 600;
    line-height: 0.8;
    padding: 5px 10px;
}

.lang-text {
    font-size: 20px;
    font-weight: 500;
    border-bottom: 10px solid #e6e6e6;
    padding-right: 15px;
    line-height: 1;
}

/* Правая часть */
.right-background {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -53%;
    z-index: -1;
    width: 100% ;
    flex: 1;

    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    /* левая грань скошена */
}
.right-part {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    width: 35%;

    /* левая грань скошена */
}
.right-background img{
    background: #e6e6e6;
    color: #000;
    opacity: 0.2;

    /* левая грань скошена */
}
.right-num {
    font-size: 200px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 10px;
    padding: 0;
    line-height: 0.8;
}

.right-text {
    font-size: 50px;
    font-weight: 600;
    text-align: end;
    line-height: 1;
    font-style: italic
}
.left-top-part{
    margin-top: 30px;
    border-top: 1px solid var(--accent);
    padding: 20px 0 0px 40px;
    width: 80%;
}
.dod-block{
    background-color: var(--accent);

}
.dod-num{
    font-size: 70px;
    font-weight: 700;
    padding: 10px 20px;
    color: #FFFFFF;
}
.dod-text{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    margin-left: 10px;
}
@media (max-width: 600px) {
    .stat-card {
        flex-direction: column;
    }
    .right-part {
        clip-path: none;
    }
    .lang-block {
        clip-path: none;
    }
    .left-top {
        clip-path: none;
        font-size: 36px;
    }
    .right-num {
        font-size: 42px;
    }
}




/*!*---------------------*/
/*	Gallery Section*/
/*-----------------------*!*/

/*.gallery .gallery-item {*/
/*    width: 12.5%;*/
/*    position: relative;*/
/*}*/

/*.gallery .gallery-item:after {*/
/*    content: '';*/
/*    display: block;*/
/*    clear: both;*/
/*}*/

/*.gallery .gallery-item:before {*/
/*    position: absolute;*/
/*    content: '';*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    left: 0;*/
/*    top: 0;*/
/*    background: #000;*/
/*    opacity: 0;*/
/*    -webkit-transition: all 0.4s;*/
/*    -o-transition: all 0.4s;*/
/*    transition: all 0.4s;*/
/*}*/

/*.gallery .gallery-item:hover:before {*/
/*    opacity: 0.3;*/
/*}*/

/*.gallery .gallery-item.gi-big,*/
/*.gallery .gallery-item.gi-long {*/
/*    width: 25%;*/
/*}*/

/*.gallery .gallery-item a {*/
/*    position: absolute;*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    background: rgba(246, 120, 58, 0.9);*/
/*    color: #fff;*/
/*    left: 50%;*/
/*    top: 60%;*/
/*    margin-left: -25px;*/
/*    margin-top: -25px;*/
/*    border-radius: 50%;*/
/*    padding-top: 13px;*/
/*    text-align: center;*/
/*    opacity: 0;*/
/*    z-index: 1;*/
/*    -webkit-transition: all 0.4s;*/
/*    -o-transition: all 0.4s;*/
/*    transition: all 0.4s;*/
/*}*/

/*.gallery .gallery-item a i {*/
/*    font-size: 24px;*/
/*}*/

/*.gallery .gallery-item:hover a {*/
/*    opacity: 1;*/
/*    top: 50%;*/
/*    -webkit-transition: all 0.4s cubic-bezier(0.55, 0.09, 0.68, 0.53) 0s;*/
/*    -o-transition: all 0.4s cubic-bezier(0.55, 0.09, 0.68, 0.53) 0s;*/
/*    transition: all 0.4s cubic-bezier(0.55, 0.09, 0.68, 0.53) 0s;*/
/*}*/

/*.gallery .grid-sizer {*/
/*    width: 12.5%;*/

/*}*/

/*---------------------
	Blog Section
-----------------------*/
.blog-section{
    padding-top: 50px;
    background: #f3f2ef;
}
.blog-item {
    display: flex;
    gap: 20px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.10);
    height: 100%;
    margin-bottom: 15px;
}
.blog-thumb {
    display: flex;
}
.blog-item .blog-thumb {
    width: 100%;
    height: 150px;
}


.inst-title--link {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #10589c;
}
.inst-title--font{
    text-transform: uppercase;
    color: #10589c;
    font-size: 16px;
}
.blog-item .blog-meta span {
    margin-right: 10px;
    font-size: 14px;
    color: #000000;
}
.blog-meta span i {
    color: var(--accent);
}
/*---------------------
	pots block
-----------------------*/
.vs-blog__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 9px 0;
}
.vs-blog__meta--link{
    color: #000000;
}
.vs-blog__meta--link:first-child i {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 500;
    color: #636161;
    text-transform: none;
    color: var(--accent);
}
.vs-blog__heading--link{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 0;
}
.vs-blog__heading{
    text-transform: uppercase;
    color: #10589c;
    font-size: 18px;
}
.vs-blog__desc{
    line-height: 1.2;
}
.vs-blog__link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--accent);
    gap: 9px;
    text-transform: none;
    font-size: 18px;
}
.vs-blog__footer--cloud {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.vs-blog__footer--links{
    font-weight: 500;
    color: var(--blue);
}
.vs-blog__footer--links:hover{
    color: var(--accent);
}
.fa-solid {
    fill: var(--accent);
}
/*---------------------
	Newsletter Section
-----------------------*/

.newsletter-section {
    background: #f7f7f7;
    padding: 50px 0;
}

.newsletter-section .newsletter {
    position: relative;
    margin-top: 12px;
}

.newsletter-section .newsletter input {
    width: 100%;
    font-size: 14px;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    padding-right: 170px;
}

.newsletter-section .newsletter .site-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border-radius: 0px 50px 50px 0px;
    min-width: 150px;
}

/*---------------------
	Footer Section
-----------------------*/

.footer-section {
    background-color: var(--bg_sections);
    background-position: center 75px;
}



.footer-section .footer-top {
    padding: 65px 15px;
}

.footer-section .copyright {
    border-top: 1px solid #312f56;
    padding: 27px 0;
    text-align: center;
}

.footer-section .copyright p {
    color: #b7b7b7;
    margin-bottom: 0;
}

.footer-section .copyright p a {
    color: #fff;
    font-weight: 500;
}

.footer-section .copyright p a:hover {
    color: var(--accent);
}

.footer-widget .fw-title {
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
    padding-top: 10px;
}

.footer-widget p,
.footer-widget span {
    color: #b7b7b7;
}

.footer-widget ul {
    list-style: none;
}
.footer-widget .about-widget{
    margin-right: 10px;
}
.footer-widget .about-widget img {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.footer-widget .about-widget p {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
}

.footer-widget .social a {
    color: #b7b7b7;
    margin-right: 15px;
}

.footer-widget .dobule-link ul {
    display: inline-block;
}

.footer-widget .dobule-link ul a {
    display: block;
    font-size: 14px;
    color: #b7b7b7;
    margin-bottom: 0;
}

.footer-widget .dobule-link ul a:hover {
    color: var(--accent);
}

.footer-widget .recent-post li {
    margin-bottom: 25px;
}

.footer-widget .recent-post p {
    margin-bottom: 5px;
}

.footer-widget .recent-post span {
    font-size: 12px;
}

.footer-widget .recent-post span i {
    color: var(--accent);
    margin-right: 5px;
}

.footer-widget .contact li {
    margin-bottom: 15px;
    display: block;
}

.footer-widget .contact li p {
    margin-bottom: 0;
}

.footer-widget .contact i {
    font-size: 12px;
}
.user-block{
    display: flex;
    align-items: center;
    gap: 20px;
    color: #FFFFFF;

}
/*---------------------
	Other Pages
----------------------
======================*/

.site-breadcrumb {
    padding: 60px 0;
    color: #b7b7b7;
    font-size: 18px;
}

.site-breadcrumb a {
    color: #111111;
}

.site-breadcrumb a i {
    margin: 0;
}

.site-breadcrumb i {
    margin: 0 10px;
}

.site-pageination {
    list-style: none;
}

.site-pageination li {
    display: inline;
    text-align: center;
}

.site-pageination li a {
    display: inline-block;
    min-width: 40px;
    height: 40px;
    border: 1px solid #e1e1e1;
    color: #636363;
    padding-top: 9px;
    font-size: 14px;
    margin-right: 14px;
    border-radius: 2px;
}

.site-pageination li a:hover,
.site-pageination li a.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.page-title{
    margin-bottom: 20px;
}
.section-page{
    margin-bottom: 30px;
}
/*---------------------
	teams page
-----------------------*/

.post-list{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}
.form-checking {
    display: inline-block;
}

.form-checking-input {
    display: none;
}

.form-checking-label {
    font-size: 14px;
    line-height: 1.2;
    color: #636363;
    padding: 8px 14px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.form-checking-input:checked + .form-checking-label {
    background-color: var(--accent);
    color: #fff;
}
.btn-group {
    margin-top: 20px;
}
.filter__inner .btn-group a{
    color: black;
}
.card-title{
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--font-title);
}
.card-body p{
    line-height: 1.2;
}
/*---------------------
	swiper-wrapper
-----------------------*/
.swiper{
    margin-right: 0;
}

.slider-controls {
    display: flex;
    gap: 10px;
}
.slider-controls button {
    background-color: rgba(156, 163, 175, 0);
    color: var(--gray-d);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 30px;
}
.header-carousel{
    height: 400px;
}
.header-carousel__slide-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*---------------------
	Blog Page
-----------------------*/

.post-item {
    margin-bottom: 60px;
}

.post-item .post-thumb {
    height: 320px;
    margin-bottom: 40px;
    width: 100%;
    object-fit: cover;
}

.post-item .post-thumb-full {
    margin-bottom: 40px;
}

.post-item .post-content h3 {
    font-size: 29px;
    font-weight: 400;
    margin-bottom: 10px;
}

.post-item .post-content h4 a
{
    color: #111111;
    font-weight: 300;
    text-decoration: none;
}

.post-item .post-content p {
    margin-bottom: 0;
}

.post-item .post-meta {
    margin-bottom: 10px;
}

.post-item .post-meta span {
    margin-right: 10px;
    font-size: 14px;
    color: #fff;
    background-color: var(--accent);
    padding: 3px 10px;
}

.post-item .post-meta span i {
    color: var(--accent);
}

.post-item .tag {
    padding-top: 15px;
    padding-bottom: 40px;
    font-size: 12px;
    text-transform: uppercase;
    color: #b7b7b7;
}

.post-item .tag i {
    color: var(--accent);
    margin-right: 5px;
}

.post-item .post-author {
    padding: 40px 0;
    border-top: 1px solid #f5f5f5;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.author-item{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    flex: 1 1 calc(33.333% - 20px); /* 3 в ряд */
    max-width: calc(33.333% - 20px);
}
.post-item .post-author .pa-thumb {
    float: left;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.post-item .post-author .pa-content {
    padding-left: 130px;
    padding-top: 5px;
}

.post-item .post-author .pa-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.comment-warp {
    padding-top: 40px;
    border-top: 1px solid #f5f5f5;
}

.comment-warp .comment-title {
    font-weight: 400;
    margin-bottom: 35px;
}

.comment-warp .comment-list {
    list-style: none;
}

.comment-warp .comment-list .replay-comment-list {
    list-style: none;
    margin-left: 14%;
}

.comment-warp .comment {
    margin-bottom: 40px;
}

.comment-warp .comment .comment-avator {
    float: left;
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.comment-warp .comment .comment-content {
    padding-left: 100px;
}

.comment-warp .comment .comment-content .c-date {
    font-size: 12px;
    text-transform: uppercase;
    color: #b7b7b7;
    margin-bottom: 5px;
    display: block;
}

.comment-warp .comment .comment-content h5 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 400;
}

.comment-warp .comment .comment-content p {
    margin-bottom: 0;
}

.comment-warp .comment .comment-content .c-btn {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    border: 1px solid #e1e1e1;
    color: #111111;
    padding: 5px 25px;
    border-radius: 2px;
    margin-right: 5px;
    margin-top: 15px;
}

.comment-warp .comment .comment-content .c-btn:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.comment-form-warp {
    padding: 40px 0;
    border-top: 1px solid #f5f5f5;
}

.comment-form input[type='text'],
.comment-form input[type='email'],
.comment-form textarea {
    width: 100%;
    border: 1px solid #cccccc;
    font-size: 14px;
    padding: 18px 20px;
    margin-bottom: 30px;
    border-radius: 2px;
}

.comment-form textarea {
    height: 150px;
}

.comment-form.--contact input[type='text'],
.comment-form.--contact input[type='email'],
.comment-form.--contact textarea {
    border: 1px solid #e1e1e1;
}

.comment-form.--contact textarea {
    margin-bottom: 50px;
}


/*---------------------
	Contact page
-----------------------*/

.map-section {
    height: 500px;
    position: relative;
}

.map-section .map {
    height: 100%;
}

.contact-info-warp {
    position: absolute;
    width: 400px;
    height: 100%;
    background: rgba(2, 0, 49, 0.8);
    text-align: center;
    z-index: 1;
    padding-top: 70px;
}

.contact-info-warp .contact-info {
    margin-bottom: 40px;
}

.contact-info-warp .contact-info h4 {
    color: #fff;
    font-weight: 400;
    margin-bottom: 8px;
}

.contact-info-warp .contact-info p {
    color: #fff;
    margin-bottom: 0;
}

/*------------------
	Responsive
---------------------*/

/*@media (min-width: 1200px) {*/
/*    .container {*/
/*        max-width: 1170px;*/
/*    }*/
/*}*/

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .counter-section .counter {
        padding-left: 20px;
    }
    .counter-section .counter .counter-item {
        min-width: 80px;
    }
    .counter-section .counter .counter-item h4 {
        font-size: 35px;
    }
    .widget {
        margin-left: 0;
    }
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-info .hf-item i {
        float: left;
    }
    .header-info .hf-item p {
        display: block;
    }
    .hs-item {
        height: auto;
        min-height: auto;
        padding: 140px 0;
    }
    .counter-section .counter {
        padding-top: 15px;
        padding-left: 0;
    }
    .counter-section .counter .counter-item {
        min-width: 70px;
    }
    .counter-section .counter .counter-item h4 {
        font-size: 27px;
    }
    .gallery .gallery-item,
    .gallery .gallery-item.gi-big,
    .gallery .gallery-item.gi-long {
        width: 25%;
    }
    .footer-widget {
        margin-bottom: 40px;
    }
    .testimonial-slider .owl-nav {
        left: -16px;
    }
    .member {
        margin-bottom: 40px;
    }
    .sidebar {
        padding-top: 80px;
    }
    .widget {
        margin-left: 0;
    }
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
    .header-info {
        display: none;
    }
    .site-logo {
        padding: 15px 0;
    }
    .nav-switch {
        position: absolute;
        right: 30px;
        font-size: 30px;
        color: #111;
        top: 25px;
        display: block;
    }
    .nav-section .nav-right {
        display: block;
        float: none;
        text-align: right;
        padding-bottom: 20px;
    }
    .main-menu {
        display: none;
    }
    .main-menu li {
        display: block;
    }
    .main-menu li a {
        padding: 15px;
        display: block;
        border-top: 1px solid #212031;
    }
    .main-menu li a:hover {
        background-color: transparent;
        color: var(--accent);
    }
    .main-menu li.active a {
        background-color: transparent;
    }
    .hs-item {
        min-height: auto;
        padding: 100px 0;
    }
    .hs-item .hs-title {
        font-size: 40px;
    }
    .counter-section .counter {
        float: none;
        padding-top: 30px;
        padding-left: 0;
        text-align: center;
    }
    .gallery .gallery-item,
    .gallery .gallery-item.gi-big,
    .gallery .gallery-item.gi-long {
        width: 50%;
    }
    .fact {
        text-align: left;
        margin-bottom: 15px;
    }
    .footer-widget {
        margin-bottom: 40px;
    }
    .testimonial-slider .owl-nav {
        left: 50%;
        margin-left: -90px;
    }
    .testimonial-slider .owl-dots {
        text-align: center;
        width: 100%;
        left: 0;
        bottom: 0;
    }
    .testimonial-slider .ts-author-pic {
        margin: 5px auto 30px;
    }
    .testimonial-slider .ts-item {
        text-align: center;
        padding-bottom: 50px;
    }
    .member {
        margin-bottom: 40px;
    }
    .sidebar {
        padding-top: 80px;
    }
    .widget {
        margin-left: 0;
    }
    .map-section {
        height: auto;
    }
    .contact-info-warp {
        position: relative;
        height: auto;
        display: block;
        width: 100%;
        padding-bottom: 70px;
    }
    .map-section .map {
        height: 300px;
    }
}

/* small Mobile :320px. */

@media only screen and (max-width: 479px) {
    .hs-item .hs-title {
        font-size: 27px;
    }
    .counter-section .counter .counter-item {
        min-width: 65px;
    }
    .counter-section .counter .counter-item h4 {
        font-size: 25px;
    }
    .course-item .course-info {
        margin: 0;
    }
    .blog-item .blog-thumb {
        height: 230px;
        width: 100%;
        margin-bottom: 20px;
    }
    .blog-item .blog-content {
        padding-left: 0;
    }
    .gallery .gallery-item,
    .gallery .gallery-item.gi-big,
    .gallery .gallery-item.gi-long {
        width: 100%;
    }
    .newsletter-section .newsletter {
        text-align: center;
    }
    .newsletter-section .newsletter input {
        padding-right: 30px;
        margin-bottom: 20px;
        text-align-last: auto;
    }
    .newsletter-section .newsletter .site-btn {
        position: relative;
        border-radius: 50px;
    }
    .post-item .post-author .pa-thumb,
    .comment-warp .comment .comment-avator {
        float: none;
        margin-bottom: 15px;
    }
    .post-item .post-author .pa-content,
    .comment-warp .comment .comment-content {
        padding-left: 0;
    }
    .block {
        flex-direction: column;
    }
    .content{
        width: 100%;

    }
    .content h2 {
        font-size: 26px;
    }
    .content h2 span{
        font-size: 56px;
    }
    .legend {
        display: flow;
    }
    .legend-item {
        margin-bottom: 15px;
    }
}

.marquee-inner {
    display: flex;
    align-items: center;

}

.marquee-inner img {
    max-height: 180px;
    width: auto;
    display: inline-block;
    margin: 0 15px;
    object-fit: contain;

    transition: transform 0.3s;
}

.marquee-inner img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
/*Document table*/
.document-table{
    background-color: #FFFFFF;
}
.documentPage-inner{
    background-color: #FFFFFF;
    padding: 30px 20px;

}
.documentPage-title{
    padding: 0 20px;
    color: var(--font-title);
    text-align: end;
    border-bottom: 1px solid var(--wid-bg);
    margin-bottom: 15px;
}

/*.table-thead{*/
/*    background-color: #020031;*/
/*    color: #FFFFFF;*/
/*}*/
.custom-table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 6px;
    overflow: hidden;
}
.custom-table thead th {
    background-color: var(--blue);
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
tbody a {
    color: var(--accent);
    font-weight: 600;
}
.vs-blog__img--figure .play-btn > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size, 124px);
    height: var(--icon-size, 124px);
    line-height: var(--icon-size, 124px);
    font-size: var(--vs-icon-font-size, 1.5em);
    text-align: center;
    background-color: var(--font-title);
    color: #ffffff;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all ease 0.4s;
    margin: 0;



}

/*------------------- 4.10. Feature  -------------------*/
.vs-feature {
    display: flex;
    align-items: center;
    border: 3px dashed rgba(var(--vs-white-color-rgb), 25%);
    gap: 15px;
    padding: 25px 30px;
    border-radius: 18px;
    position: relative;
    /* Large devices */
}
vs-feature__content{
    height: 100%;
}
@media (max-width: 1199px) {
    .vs-feature {
        padding: 20px 15px;
        gap: 10px;
    }
}
.vs-feature__top {
    position: absolute;
    top: -23px;
    left: 30px;
}
.vs-feature__title {
    font-size: 18px;
    color: #000000;
    font-weight: 400;
}
.vs-feature__text {
    color: var(--vs-white-color);
    font-weight: 500;
    margin-bottom: 0;
}
.vs-feature__icon {
    --icon-size: 90px;
    width: var(--icon-size);
    height: var(--icon-size);
    min-width: var(--icon-size);
    min-height: var(--icon-size);
    /* Large devices */
}
@media (max-width: 1199px) {
    .vs-feature__icon {
        --icon-size: 65px;
    }
}
.vs-feature.style2 {
    background: var(--blue);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    border: none;
    z-index: 1;
    align-items: flex-start;
    padding: 33px 30px;
    transition: all 0.3s ease-in-out;
}
.vs-feature.style2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    right: 0;
    bottom: 0;
    width: 96%;
    height: 100%;
    border-radius: 20px;
    border: 1px solid var(--blue);
    background-color: #ffffff;
    z-index: -1;
}
.vs-feature.style2 .vs-feature__icon {
    --icon-size: 60px;
}
.vs-feature.style2 .vs-feature__title {
    color: var(--vs-title-color);
}

.vs-feature.style2 .vs-feature__link {
    color: var(--text-grey);
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vs-feature.style2 .vs-feature__link:hover {
    color: var(--accent);
}
.vs-feature.style2:hover {
    background-color: var(--accent);
}

/*------------------- 4.1. Widget  -------------------*/
.widget {
    background-color: var(--wid-bg);
    position: relative;
    padding: 20px;
    /*margin-left: 50px;*/
    border: 1.5px solid rgba(var(--vs-title-color-rgb), 0.07);
    border-radius: 20px;
}

.wp-block-heading{
    font-size: 22px;
    color: #000000;
    font-weight: 600;

}
/*.widget_nav_menu ul,*/
/*.widget_meta ul,*/
/*.widget_pages ul,*/
/*.widget_archive ul,*/
.widget_categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*.widget_nav_menu a,*/
/*.widget_meta a,*/
/*.widget_pages a,*/
/*.widget_archive a,*/
.widget_categories a {
    display: block;
    background-color: transparent;
    color: var(--text-grey);
    margin-bottom: 10px;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border-bottom: 1.5px solid rgba(var(--vs-title-color-rgb), 0.15);
    text-transform: none;
    letter-spacing: 0.48px;

    position: relative;
}
.category-link.is-disabled {
    pointer-events: none;   /* отключает клик */
    cursor: default;
    opacity: 0.6;           /* визуально как disabled */
    text-decoration: none;
}



/*.widget_nav_menu a::before,*/
/*.widget_meta a::before,*/
/*.widget_pages a::before,*/
/*.widget_archive a::before,*/
.widget_categories a::before {
    content: ">>";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: absolute;
    right: 20px;
    /*top: 0;*/
    color: #636363;
    font-size: 15px;
    display: inline-block;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/*.widget_nav_menu a:hover,*/
/*.widget_meta a:hover,*/
/*.widget_pages a:hover,*/
/*.widget_archive a:hover,*/
.widget_categories a:hover {
    color: var(--accent);
}
/*.widget_nav_menu a:hover::before,*/
/*.widget_meta a:hover::before,*/
/*.widget_pages a:hover::before,*/
/*.widget_archive a:hover::before,*/
.widget_categories a:hover::before {
    color: var(--accent);
}
/*.widget_nav_menu li,*/
/*.widget_meta li,*/
/*.widget_pages li,*/
/*.widget_archive li,*/
/*.widget_categories li {*/
/*    display: block;*/
/*    position: relative;*/
/*}*/
/*.widget_nav_menu li:last-child a,*/
/*.widget_meta li:last-child a,*/
/*.widget_pages li:last-child a,*/
/*.widget_archive li:last-child a,*/
.widget_categories li:last-child a {
    border-bottom: none;
}
/*.widget_nav_menu li > span,*/
/*.widget_meta li > span,*/
/*.widget_pages li > span,*/
/*.widget_archive li > span,*/
/*.widget_categories li > span {*/
/*    text-align: center;*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: -4.5px;*/
/*    font-size: 16px;*/
/*    transition: all ease 0.4s;*/
/*}*/
/*.widget_nav_menu li:hover > span,*/
/*.widget_meta li:hover > span,*/
/*.widget_pages li:hover > span,*/
/*.widget_archive li:hover > span,*/
/*.widget_categories li:hover > span {*/
/*    color: var(--vs-theme-color1);*/
/*}*/
/*.widget_nav_menu .children,*/
/*.widget_meta .children,*/
/*.widget_pages .children,*/
/*.widget_archive .children,*/
/*.widget_categories .children {*/
/*    margin-left: 10px;*/
/*}*/

/*.widget_nav_menu a,*/
/*.widget_meta a,*/
/*.widget_pages a {*/
/*    padding-right: 20px;*/
/*}*/

/*.widget_nav_menu .sub-menu {*/
/*    margin-left: 10px;*/
/*}*/

/*.wp-block-archives {*/
/*    list-style: none;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    margin-bottom: 20px;*/
/*}*/
/*.wp-block-archives a:not(:hover) {*/
/*    color: inherit;*/
/*}*/

/*.vs-blog ul.wp-block-archives li {*/
/*    margin: 5px 0;*/
/*}*/

/* Small devices */
@media (max-width: 767px) {
    .widget_nav_menu a,
    .widget_meta a,
    .widget_pages a,
    .widget_archive a,
    .widget_categories a {
        font-size: 14px;
    }
}

.widget .tags a.active {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.widget .tags a {
    min-width: 80px;
    text-transform: uppercase;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 10px;
    color: var(--vs-body-color);
    padding: 12px 15px;
    border: 1px solid var(--accent);
    margin-right: 5px;
    margin-bottom: 8px;
    text-align: center;
    border-radius: 3px;
}


/*------------------- Comments  -------------------*/

@media (max-width: 1199px) {
    .vs-comme.nts-wrap {
        margin-top: 40px;
    }
}
.blog-inner-title{
    background-color: var(--blue);
    color: #ffffff;
    padding: 20px;
    border-radius: 6px;
}
.vs-comments-wrap .vs-post-comment {
    margin: 40px 0 40px 0;
}
.vs-comments-wrap .vs-post-comment-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 991px) {
    .vs-comments-wrap .vs-post-comment-inner {
        flex-direction: column;
        align-items: start;
        gap: 0;
    }
}
.vs-comments-wrap .comment-content {
    border: 1px dashed rgba(6, 47, 52, 0.4);
    padding: 20px 25px;
    border-radius: 10px;
}
.vs-comments-wrap .reply_and_edit {
    margin-left: 138px;
}
.vs-comments-wrap .reply_and_edit .replay-btn {
    margin-left: 0;
    margin-top: 20px;
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
@media (max-width: 991px) {
    .vs-comments-wrap .reply_and_edit {
        margin-left: 0;
    }
}
.vs-comments-wrap .children {
    margin-left: 60px;
}
@media (max-width: 991px) {
    .vs-comments-wrap .children {
        margin-left: 40px;
    }
}
.vs-comments-wrap .comment-avater {
    width: 118px;
    height: 118px;
    flex-shrink: 0;
    border: 4px solid var(--accent);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.vs-comments-wrap .comment-avater img {
    transform: scale(1.08);
}
@media (max-width: 991px) {
    .vs-comments-wrap .comment-avater {
        width: 90px;
        height: 90px;
    }
}
.vs-comments-wrap .comment-content .content-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}
@media (max-width: 1199px) {
    .vs-comments-wrap .comment-content .content-header {
        margin-bottom: 8px;
    }
}
.vs-comments-wrap .comment-content .content-header .name {
    font-weight: 500;
    line-height: 1;
    font-size: 20px;
    color: var(--font-title);
    text-transform: uppercase;
}
.vs-comments-wrap .comment-content .content-header .commented-on {
    display: inline-block;
    color: var(--text-grey);
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    line-height: 1;
}
.vs-comments-wrap .comment-content .text span{
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
}
.vs-comments-wrap .comment-content .text {
    font-size: 16px;
    font-style: normal;
    text-transform: none;
    margin: 0;
}
.bg-even {
    background-color: var(--wid-bg);
}
@media (max-width: 991px) {
    .vs-comments-wrap .comment-content .text {
        font-size: 14px;
        font-weight: 400;
    }
}

@media (max-width: 767px) {
    .vs-comment-form .vs-btn {
        width: 100%;
    }
}

/* Large devices */
@media (max-width: 1199px) {
    .vs-comments-wrap .vs-post-comment {
        display: block;
    }
    .vs-comments-wrap .star-rating {
        top: 0;
        right: 0;
    }
    .vs-comments-wrap .comment-top {
        display: block;
    }
    .vs-comments-wrap .comment-avater {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .vs-comments-wrap .children {
        margin-left: 40px;
    }
    .vs-comments-wrap .reply_and_edit {
        position: relative;
        top: 0;
        margin: 15px 0 0 0;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .vs-comments-wrap .children {
        margin-left: 20px;
    }
    .vs-comments-wrap .name {
        font-size: 18px;
    }
    .comment-respond .form-inner {
        padding: 30px 15px;
    }
}
