/*
 * Theme name: Тема для ukrns
 * Author: Alex D
 * Version: 1.0
 */

 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Roboto, sans-serif;
    background: #fff;
    color: #333;
    min-height: 100vh;
    font-size: 14px;
}

a {
	text-decoration: none;
}

.head-block {
	-webkit-box-shadow: 0 3px 10px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 10%);
}

.wrap {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.top-nav {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 10px;
	margin-top: 10px;
    align-items: center;
}

.lang span {
	color: #2b4094;
	font-weight: 500;
}

.lang a {
	text-decoration: none;
}

.soc-block i {
	margin-left: 10px;
}

.soc-block a,
.soc-block a:visited {
    color: #333;
}

.soc-block a:hover {
    color: #2b4094;
}

/* navbar */

.navbar {
    background: #fff;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar .logo {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}

/* nav menu button */

.menu-btn {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
    content: "";
    position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
    width: 1.5rem;
    height: 0.1rem;
    background: #FFFFFF;
    transition: all 0.4s ease-in-out;
}

.navbar .menu-btn__lines::before {
    transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
    transform: translateY(0.5rem);
}

.navbar .menu-items {
    display: flex;
    align-items: center;
}

.navbar ul li {
    list-style: none;
    transition: 0.3s ease;
}

.navbar ul li .arrow{
    transition: all .3s ease-out;

}

.navbar ul li a {
    text-decoration: none;
    color: #333;
}

/* dropdown menu */

.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-menu,
.menu-right {
    position: absolute;
    background: #fff;
    width: 230px;
    line-height: 30px;
    border-radius: 0 0 5px 5px;
    top: 66px;
    border-top: 2px solid #2b4094;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.navbar .menu-right {
    top: 0;
    left: 100%;
}
.navbar .dropdown-menu,
.menu-left {
    left: unset;
    right: 0;
}
.navbar .menu-left {
    left: -100%;
}

.navbar .menu-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 22px 20px;
    font-size: 16px;
    font-weight: 600;
}
.navbar .menu-item:hover {
    color: #2b4094;
}

.dropdown-menu .menu-item {
	padding: 6px 10px;
	line-height: 22px;
}

.menu-item.home {
    padding: 22px 20px 22px 0px;
}

.menu-item.contact {
    padding: 22px 0px 22px 20px;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown-right:hover .menu-right {
    left: 100%;
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown-right:hover .menu-left {
    left: -100%;
}

/* mega menu  */

.navbar .mega-menu {
    position: absolute;
    left: 0;
    width: 100vw;
    top: 65px;
    border-top: 1px solid #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-out 0s, visibility 0.1s linear 0s;
}

.mega-menu .content {
    background: #25183e;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
    justify-content: space-between;
    -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.blog .content {
    grid-template-columns: repeat(4, 1fr);
}

.content .col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 3rem;
}

.content .col .img-wrapper {
    display: block;
    position: relative;
    width: 100%;
    height: 20vw;
    overflow: hidden;
}

.content .col .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.content .col img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.content .col .img-wrapper:hover img {
    transform: scale(1.1);
}

.content .col .menu-title {
    color: #ff5722;
    font-size: 1.2rem;
    line-height: 3rem;
    font-weight: bold;
}

.content .col p {
    line-height: 1.2rem;
    margin-top: 5px;
    color: #FFFFFF;
}

.content .col .mega-links {
    border-left: 1px solid #3c3c3c;
}

.content .col .read-more {
    font-size: 16px;
    display: flex;
    padding-top: 1rem;
    color: #03a9f4;
    transition: color 0.3s ease;
    justify-content: flex-end;
    padding-right: 10px;
}

.col .mega-links li,
.col .mega-links li a {
    padding: 0 1rem;
}

.menu-items li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.content .col .read-more:hover {
    color: #ff5722;
}

/* container */
.container {
    margin: 100px auto auto;
    padding: 0 15px;
    max-width: 1200px;
    text-align: center;
}
.container p {
    color: #FFFFFF;
}

h1 {
    font-weight: 700;
    font-size: 24px;
    color: #333;
    text-transform: uppercase;
    margin: 10px 0 30px 0;
}


/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
    transform: translateX(1rem);
    background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
    transform: rotate(45deg) translate(-0.5rem, 0.5rem);
    background: #FFFFFF;
}

.menu-btn.open .menu-btn__lines::after {
    transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
    background: #FFFFFF;
}


/* Responsive style */

@media screen and (max-width: 1024px) {

    .navbar {
        padding: 10px 20px;
    }

    .overflow {
        overflow: hidden;
    }

    .overlay {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 500;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .overlay--active {
        opacity: 1;
        visibility: visible;
    }

    .menu-btn {
        display: flex;
    }

    .navbar .menu-items {
        position: fixed;
        height: 100%;
        max-height: initial;
        overflow-y: auto;
        width: 100%;
        top: 0px;
        left: 0;
        background: #2b4094;
        display: block;
        transform: translateX(-100vh);
        transition: 0.3s ease-out;
        padding: 50px 10px 100px 10px;
    }

    .navbar .menu-item:hover {
        color: #fff;
    }

    .navbar ul li a {
        text-decoration: none;
        color: #fff;
    }

    .navbar ul li ul li a {
        text-decoration: none;
        color: #333;
    }

    .menu-items.open {
        transform: translateY(0);
    }

    .menu-items li:first-child {
        margin-top: 20px;
    }

    .menu-items li:last-child {
        margin-bottom: 20px;
    }

    .menu-items li a {
        padding: 10px 1rem;
        display: block;
        font-size: 18px;
    }

    .menu-items .dropdown-right .right-arrow{
        transform: rotate(90deg);
    }

    .menu-item.first-item {
        padding: 1rem 1rem;
    }

    /* DROPDOWN, MEGA MENUS */
    .menu-items .dropdown-menu,
    .menu-items .menu-right,
    .menu-items .mega-menu {
        position: static;
        opacity: 1;
        top: 4rem;
        visibility: visible;
        margin-left: -18px;
        width: auto;
        max-height: 0;
        transform: scaleX(0);
        transform-origin: left;
        overflow: hidden;
        transition: all 0.5s ease;
    }


    .menu-items .dropdown-menu,
    .menu-items .menu-right{
        padding-left: 1rem;
        width: 102%;
        margin-left: -10px;
    }

    .menu-items .mega-menu .col{
        padding-left: 1rem;
    }

    .expand-btn.open ~ .sample {
        max-height: 100%;
        transform: scaleZ(1);
    }

    .expand-btn.open + .blog.sample {
        max-height: 100%;
        transform: scaleZ(1);
        max-width: fit-content;
    }

    .navbar .sample{
        border-top: none;
    }

    .sample li {
        margin: 0;
    }

    .sample li:last-child{
        border-bottom: none;

    }

    .sample li a {
        font-size: 1rem;
    }

    .mega-menu .content {
        grid-template-columns: auto;
        padding: 1rem 1rem 0 1rem;
    }

    .mega-menu .content .col {
        width: 100%;
        padding-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .col .mega-links li,
    .col .mega-links li a {
        padding: 0 0.5rem;
    }

    .content .col .mega-links {
        border-left: 0;
        padding-left: 0.5rem;
    }
    .col .mega-links li {
        margin: 0;
    }
}


.slider {
    background: url(/wp-content/themes/ukrns/inc/img/slider-1.jpg) no-repeat;
    width: 100%;
    height: 80vh;
    display: block;
    background-position: center;
    background-size: cover;
    padding: 140px 0;
    margin-top: -10px;
}

.slider-title {
	max-width: 480px;
	font-size: 48px;
	font-weight: 600;
    color: #2b4094;
}

.slider-text {
	margin: 20px 0;
	font-size: 16px;
	max-width: 480px;
	font-weight: 400;
}

.slider-button {
	padding: 14px 32px;
	background: #2b4094;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
    border: none;
    cursor: pointer;
}

section {
	margin: 70px 0;
}

h3 {
	font-size: 32px;
	font-weight: 600;
	border-left: 3px solid #2b4094;
	padding-left: 12px;
	margin: 20px 0;
}

.last-news-block {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.last-news-item {
	width: 360px;
	-webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    min-height: 536px;
}

.last-news-item-img {
	width: 360px;
    height: auto;
    min-height: 300px;
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.category {
	padding: 5px 14px;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	background: #2b4094;
	display: inline-block;
}

.last-news-item-down {
	padding: 15px;
}

.date {
	border-left: 2px solid #2b4094;
	color: #2b4094;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
	padding-left: 10px;
}

.last-news-item-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #333;
}

.last-news-item-text {
	font-size: 13px;
	color: #989898;
}

.last-news-item:hover .last-news-item-title {
	color: #2b4094;
	transition: 0.2s;
}

.news-block {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}

.news-item {
	width: 360px;
	-webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    padding: 15px;
    margin-bottom: 20px;
}

.news-item-title {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 12px;
	color: #333;
}

.news-item:hover .news-item-title {
	color: #2b4094;
	transition: 0.2s;
}

.partners {
	background: #1f242c;
	padding: 30px 100px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.publications-block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.publications-item {
	width: 360px;
	-webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.publications-item-img {
	width: 360px;
    height: auto;
    min-height: 465px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.publications-item-title {
	display: none;
	color: #fff;
	width: 100%;
	height: 465px;
	background: rgba(43,64,148,0.8);
	padding: 20px;
	font-size: 26px;
}

.publications-item .date {
    display: flex;
    margin-left: 15px;
}

.publications-item:hover .publications-item-title {
	display: flex;
    flex-wrap: wrap;
	align-items: flex-end;
	transition: 0.2s;
}

.footer {
	background: #1f242c;
}

.footer-block {
	display: flex;
	justify-content: space-between;
	padding: 40px 0;
}

.footer-col {
	display: flex;
	justify-content: flex-start;
}

.footer-col img {
	width: 120px;
	margin-right: 15px;
}

.footer-col-title {
	font-size: 16px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-col-text {
	color: #676a70;
	font-size: 13px;
	width: 300px;
}

.footer-col-text i {
	margin-right: 6px;
}

.footer-copyright {
	padding: 10px 0;
	font-size: 11px;
	border-top: 1px solid #676a70;
	color: #676a70;
	display: flex;
	justify-content: space-between;
}

main {
	background: #fff;
    min-height: 500px;
}

.entry-content {
	padding: 20px 0;
}

.category-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.category-block-img {
    width: 300px;
    height: 200px;
    background-size: cover;
    margin-right: 20px;
    background-position: top center;
}

.category-block-text {
    width: calc(100% - 320px);
}

.category-block-title {
    margin-bottom: 12px;
}

.category-block-title a {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    transition: 0.2s;
}

.category-block:hover .category-block-title a {
    color: #2b4094;
}

.category-block-descr {
    color: #989898;
}

.breadcrumb {
    color: #989898;
    font-size: 12px;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #989898;
    transition: 0.2s;
}

.breadcrumb a:hover {
    color: #2b4094;
}

.breadcrumb i {
    margin: 0 5px;
    font-size: 10px;
}

.lang select {
    border: 1px solid #e5e5e5;
    padding: 2px 5px;
}

.post-content p {
    margin: 0 0 1.5em;
    line-height: 1.6em;
}

.post-content img {
    margin: 20px;
}

.post-content h1 {
    margin: 10px 0 20px 0;
    font-size: 30px;
}

.post-content a {
    font-weight: 600;
    color: #2b4094;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}

.post-content a:hover {
    font-weight: 600;
    color: #2b4094;
    border-bottom: 1px dashed #2b4094;
}

.post-content ul li {
    margin-left: 30px;
    margin-bottom: 10px;
    line-height: 1.6em;
}

.post-content ul {
    margin: 0 0 1.5em;
}

.post-content h2 {
    font-size: 26px;
    font-weight: 600;
    border-left: none;
    padding-left: 0;
    margin-top: 40px;
}

.post-content h3 {
    font-size: 22px;
    font-weight: 600;
    border-left: none;
    padding-left: 0;
    margin-top: 40px;
}

.post-content h4 {
    font-size: 18px;
    font-weight: 600;
    border-left: none;
    padding-left: 0;
    margin-top: 40px;
}

.post-content .wp-block-image .aligncenter>figcaption {
    text-align: center;
    font-style: italic;
} 

.post-content .wp-block-image figcaption {
    margin-top: 0;
    margin-bottom: 1.5em;
}

.post-content .wp-block-image .alignleft img {
    margin: 0 20px 0 0;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.page-numbers {
    margin: 0 5px;
    border: 1px solid #e5e5e5;
    padding: 6px 10px;
    transition: 0.2s;
}

a.page-numbers {
    color: #333;
}

.page-numbers.current {
    border: none;
    font-weight: 600;
}

.page-numbers:hover {
    border: 1px solid #2b4094;
}

.page-numbers.current:hover {
    border: none;
}

.expand-btn {
    position: relative;
    cursor: pointer;
}

.expand-btn:after {
    content: ' \25BE';
    opacity: 0.4;
    margin-left: 0px;
    position: absolute;
    right: 0;
    top: 23px;
}

form.pay textarea {
    background: #fff;
    padding: 5px 10px;
    color: #989898;
    font-family: Roboto;
}

.carousel__wrapper {
  padding: 20px;
  background: #1f242c;
}
.carousel__content {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.carousel__container {
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  align-items: center;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.carousel__container::-webkit-scrollbar {
  display: none;
}
.carousel__slide {
  min-width: 90%;
}
.card__description {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.card__description img {
  width: 20px;
}
.card__description span {
  padding: 5px 15px;
  border-radius: 5px;
  color: #fff;
}

.card__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px;
  flex-direction: column;
  row-gap: 0.5rem;
  height: 100px;
  border-radius: 15px;
  background-color: transparent;
  padding: 0;
}
.card__inner h4 {
  font-size: 1.5rem;
  margin: 0;
  color: rgb(170, 155, 155);
}
.card__image img {
  max-height: 100px;
  margin-bottom: 1rem;
}
.arrow {
  display: none;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: calc(50% - 10px);
  background-color: rgba(0, 0, 0, 0);
  padding: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.arrow i {
  font-size: 42px;
  color: #fff;
  opacity: 0.6;
}
.arrow.arrow--right {
  right: 0%;
}
.arrow.arrow--left {
  left: 0%;
}

.wpcf7 input[type="email"] {
    padding: 4px 8px;
    max-width: 280px;
}

.wpcf7 input[type="submit"] {
    color: #ffffff;
    font-size: 87.5%;
    text-shadow: none;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    letter-spacing: normal;
    word-spacing: normal;
    text-transform: none;
    font-weight: 600;
    padding: 6px 12px;
    background: #2b4094;
    border: 1px solid #2b4094;
    cursor: pointer;
}

.wpcf7-response-output {
    color: #ccc;
}

.post-content ul,
.post-content ol {
    margin-left: 30px;
    margin-bottom: 1.5em;
}

.post-content ul li,
.post-content ol li {
    margin: 0 0 0.5em;
    line-height: 1.6em;
}

.video-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.video-text {
    padding: 40px;
    flex: 1;
}

.video-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.video-button {
    margin: 40px 0 0 0;
    padding: 14px 32px;
    background: #2b4094;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.video-youtube {
  flex: 1;
  background-color: red;
}

.video-youtube div {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
}

.video-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.banner_desktop {
    display: block;
}

.banner_mob {
    display: none;
}

.slide-container {
  max-width: 1140px;
  width: 100%;
  padding: 40px 0;
}
.slide-content {
  margin: 0;
}
.cards {
  background-color: transparent;
}
.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content {
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlays {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #4070f4;
  border-radius: 25px 25px 0 25px;
}
.overlays::before,
.overlays::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #4070f4;
}
.overlays::after {
  border-radius: 0 25px 0 0;
  background-color: #fff;
}
.card-image {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}
.card-image .card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #4070f4;
}
.name {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description {
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.button {
  border: none;
  font-size: 16px;
  color: #fff;
  padding: 8px 16px;
  background-color: #4070f4;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover {
  background: #265df2;
}

.swiper-navBtn {
  color: #6e93f7;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover {
  color: #4070f4;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 38px;
}
.swiper-button-next {
  right: 0;
  display: none !important;
}
.swiper-button-prev {
  left: 0;
  display: none !important;
}
.swiper-pagination-bullet {
  background-color: #6e93f7;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #4070f4;
}

@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0;
  }
  .swiper-navBtn {
    display: none;
  }
}

@media screen and (min-width: 1180px) {
  .carousel__wrapper {
    padding: 50px;
  }
  .carousel__slide {
    min-width: 25%;
    scroll-snap-align: center;
    position: relative;
  }
  .arrow {
    display: flex;
  }
}


@media screen and (max-width: 528px) {

    .navbar {
        flex-wrap: wrap;
    }

    .navbar .menu-btn__lines,
    .navbar .menu-btn__lines::before, 
    .navbar .menu-btn__lines::after {
        background: #2b4094;
    }

    .last-news-block {
        flex-wrap: wrap;
    }

    .partners {
        flex-wrap: wrap;
        padding: 30px 50px;
    }

    .footer-block {
        flex-wrap: wrap;
    }

    .footer-logo {
        display: none;
    }

    .footer-col-text {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-col-text.last-col {
        margin-bottom: 0px;
    }

    .footer-copyright {
        flex-wrap: wrap;
        font-size: 9px;
    }

    .top-nav {
        border-bottom: none;
    }

    .lang {
        display: none;
    }

    .soc-block {
        display: none;
    }

    .header-email {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .menu-btn {
        margin-left: 30px;
    }

    .slider-title {
        max-width: 100%;
        font-size: 38px;
        color: #2b4094;
    }

    .slider-text {
        padding: 0px;
        /*background: rgba(255,255,255,0.6);*/
        color: #fff;
        font-weight: 600;
    }

    section {
        margin: 50px 0;
    }

    .last-news-item {
        margin-bottom: 20px;
    }

    .publications-item {
        margin-bottom: 20px;
    }

    .partners img {
        margin: 10px 0;
    }

    .category-block {
        flex-wrap: wrap;
    }

    .category-block-img {
        width: 100%;
        height: 200px;
        background-size: cover;
        margin-right: 0px;
        background-position: top center;
    }

    .category-block-text {
        width: 100%;
        padding: 15px 0;
    }

    .expand-btn:after {
        color: #fff;
        right: 23px;
        top: 17px;
    }

    .first-item {
        color: #fff;
    }

    .post-content img {
        margin: 20px 0;
    }

    .video-block {
        flex-wrap: wrap;
    }

    .video-youtube {
      flex: 100%;
    }

    .video-text {
      flex: 100%;
      padding: 20px 0;
    }

    .banner_desktop {
        display: none;
    }

    .banner_mob {
        display: block;
    }

}