@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,1000,3000,4000,7000,9001,1001,3001,4001,7001,900&family=Roboto:ital,wght@0,100..9001,100..900&display=swap");
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", sans-serif;
  position: relative;
  overflow-x: hidden;
}

h1 {
  margin: 0;
}

h2 {
  font-size: 45px;
  color: #00192F;
}

a {
  text-decoration: none;
}

small {
  color: #919191;
}

.card {
  border-radius: 10px;
}

.text-bg-primary {
  background-color: #00192F !important;
  color: #FFF !important;
}

.btn {
  border-radius: 10px;
  display: inline-block;
  border: 1px solid #7E4130;
}

.btn.btn-outline-warning {
  background-color: #F1B634;
  color: #000;
  width: 100%;
  max-width: 220px;
  min-height: 60px;
  font-size: 14px;
  font-weight: 700;
}
.btn.btn-outline-warning:hover {
  background-color: #7E4130;
  color: #fff;
}

.btn.btn-outline-info {
  border-color: #04AAC2;
  color: #04AAC2;
}
.btn.btn-outline-info:hover {
  background-color: #04AAC2;
  color: #FFF;
}

.btn.btn-dark {
  background-color: transparent;
  border-color: #fff;
}

.btn.btn-info {
  background-color: #04AAC2;
  border: none;
  color: #FFF;
  font-weight: 700;
}

.btn.round {
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.header {
  position: absolute;
  z-index: 15;
  margin: auto;
  left: 0;
  right: 0;
}
.header .mobile-wrap {
  position: fixed;
  z-index: 25;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #7E4130;
  color: #fff;
  display: none;
}
.header .mobile-wrap .top-wrap {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
.header .mobile-wrap .top-wrap .search-wrap {
  border-color: #fff;
  background-image: url("../img/search-w.svg");
}
.header .mobile-wrap .top-wrap .mm-menu-wrap {
  border-color: #fff;
  background-color: #fff;
}
.header .mobile-wrap .top-wrap .mm-menu-wrap .hamburger span {
  height: 1px;
}
.header .mobile-wrap .menu-wrap {
  width: 100%;
  display: block;
}
.header .mobile-search-wrap {
  display: none !important;
}
.header .header-wrap {
  display: flex;
  padding: 15px 0 0;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  z-index: 15;
  position: relative;
}
.header .menu-wrap {
  display: flex;
  margin-left: auto;
  height: 145px;
}
.header .menu-wrap a {
  text-decoration: none;
  color: #fff;
}
.header .menu-wrap > ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header .menu-wrap > ul > li {
  font-size: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 5;
  font-weight: 700;
}
.header .menu-wrap > ul > li > a {
  display: block;
  color: #000;
  text-transform: uppercase;
}
.header .menu-wrap > ul > li:hover > a {
  color: #7E4130;
}
.header .menu-wrap > ul > li:hover .submenu {
  display: flex;
}
.header .menu-wrap > ul .title {
  font-size: 20px;
  display: flex;
  width: 100%;
  margin-bottom: 55px;
  font-weight: 500;
}
.header .menu-wrap > ul .submenu {
  display: none;
  position: absolute;
  color: #F1B634;
  background-color: #7E4130;
  padding: 25px;
  left: 0;
  top: 100%;
  width: 100%;
  border-radius: 10px;
  flex-direction: row;
  flex-wrap: wrap;
  z-index: 10;
}
.header .menu-wrap > ul .submenu a:hover {
  color: #F1B634;
}
.header .menu-wrap > ul .sub-menu-wrap {
  display: flex;
  flex-direction: column;
  padding-right: 55px;
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.header .menu-wrap > ul .sub-menu-wrap:has(.sub) {
  width: 33%;
}
.header .menu-wrap > ul .sub-menu-wrap li {
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.2em;
  width: 100%;
  font-weight: 500;
}
.header .menu-wrap > ul .sub-menu-wrap li a {
  display: block;
  padding: 10px;
}
.header .menu-wrap > ul .sub-menu-wrap li:hover {
  background-color: rgb(107.5344827586, 55.474137931, 40.9655172414);
}
.header .menu-wrap > ul .sub-menu-wrap li:hover > a {
  color: #F1B634;
}
.header .menu-wrap > ul .sub-menu-wrap li:hover > ul {
  display: flex;
}
.header .menu-wrap > ul .sub-menu-wrap ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 100%;
  top: 0;
  align-items: start;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
  width: 50%;
}
.header .menu-wrap > ul .sub-menu-wrap ul li {
  display: inline-block;
  text-transform: none;
}
.header .menu-wrap > ul .sub-menu-wrap ul li a {
  padding: 10px;
  font-size: 14px;
  display: inline-block;
  line-height: 1.2em;
}
.header .menu-wrap > ul .sub-menu-wrap ul ul {
  width: 200%;
  flex-wrap: wrap;
  flex-direction: row;
}
.header .menu-wrap > ul .sub-menu-wrap ul ul li {
  width: 50%;
}
.header .logo-wrap {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  width: 300px;
  font-weight: 700;
  text-transform: uppercase;
}
.header .logo-wrap img {
  height: 125px;
  width: auto;
}
.header .block-wrap {
  display: flex;
  gap: 10px;
}
.header .mm-menu-wrap {
  border: 1px solid #000;
  width: 48px;
  height: 48px;
  border-radius: 50em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  display: none;
}
.header .mm-menu-wrap .hamburger {
  width: 30px;
  height: 20px;
  position: absolute;
  cursor: pointer;
  left: 70%;
  margin-left: -25px;
  top: 65%;
  margin-top: -20px;
}
.header .mm-menu-wrap .hamburger span {
  display: block;
  position: absolute;
  height: 4px;
  border-radius: 15em;
  width: 100%;
  background: #000 none repeat scroll 0% 0%;
  opacity: 1;
  right: 0px;
  transition: all 0.25s ease-in-out 0s;
  transform: rotate(0deg);
}
.header .mm-menu-wrap .hamburger span:nth-child(1) {
  margin-top: 0px;
}
.header .mm-menu-wrap .hamburger span:nth-child(2) {
  margin-top: 12px;
  margin-right: 0px;
}
.header .mm-menu-wrap .hamburger span:nth-child(3) {
  margin-top: 24px;
}
.header .mm-menu-wrap .hamburger.opened span:nth-child(1) {
  transform: rotate(135deg);
  margin-top: 12px;
}
.header .mm-menu-wrap .hamburger.opened span:nth-child(2) {
  opacity: 0;
  right: -75px;
}
.header .mm-menu-wrap .hamburger.opened span:nth-child(3) {
  transform: rotate(-135deg);
  margin-top: 12px;
}
.header .lang-wrap {
  position: relative;
  height: 50px;
  width: 50px;
}
.header .lang-wrap ul {
  position: absolute;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  z-index: 15;
}
.header .lang-wrap ul:hover li {
  display: flex;
}
.header .lang-wrap ul:hover li a {
  background-color: #fff;
  color: #000;
}
.header .lang-wrap ul li {
  display: none;
}
.header .lang-wrap ul li a {
  border: 1px solid #000;
  width: 48px;
  height: 48px;
  border-radius: 50em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  color: #000;
}
.header .lang-wrap ul li:hover a {
  background-color: #F1B634;
  border-color: #7E4130;
  color: #7E4130;
}
.header .lang-wrap ul li:hover a a {
  color: #7E4130;
}
.header .lang-wrap ul li.true {
  display: flex;
}
.header .search-wrap {
  border: 1px solid #000;
  width: 48px;
  height: 48px;
  border-radius: 50em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/search.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.header .search-wrap:hover {
  background-color: #F1B634;
  color: #fff;
  cursor: pointer;
}
.header .search-wrap a {
  display: block;
  width: 48px;
  height: 48px;
}
.header .search-wrap.active {
  background-color: #F1B634;
  color: #fff;
}
.header .search-block {
  position: absolute;
  top: 150px;
  width: 100%;
  left: 0;
  background-color: #7E4130;
  padding: 15px;
  border-radius: 10px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
}
.header .search-block.show {
  opacity: 1;
  top: 160px;
  visibility: visible;
}
.header .search-block form input[type=text] {
  width: 85%;
  border: none;
  padding: 10px;
  border-radius: 7px;
}
.header .search-block form .btn-search-form {
  background-color: #7E4130;
  border: 1px solid #F1B634;
  color: #F1B634;
  border-radius: 7px;
  width: calc(15% - 25px);
  padding: 10px;
  margin-left: 15px;
}

.welcome h1 {
  font-size: 45px;
  color: #FFF;
  text-align: center;
}
.welcome .mailing-wrap {
  max-height: 480px;
  overflow: hidden;
  border: none;
  background-color: #7E4130;
  color: #FFF;
  text-transform: uppercase;
  margin: 150px 0;
}
.welcome .mailing-wrap .bg-img {
  background-image: url("../img/tree.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.welcome .mailing-wrap div {
  max-height: 480px;
}
.welcome .mailing-wrap .card-body {
  height: 100%;
  padding: 60px;
  padding-right: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.welcome .mailing-wrap .b-title {
  color: #FFF;
  font-size: 32px;
  margin-bottom: 50px;
}
.welcome .mailing-wrap input {
  margin-bottom: 30px;
  border: none;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 21px 22px;
  border-radius: 10px;
}
.welcome .mailing-wrap input::-moz-placeholder {
  color: #FFF;
  opacity: 1;
}
.welcome .mailing-wrap input::placeholder {
  color: #FFF;
  opacity: 1;
}
.welcome .slider {
  position: relative;
}
.welcome .slider .swiper-slide {
  height: 80vh;
  display: flex;
  padding: 55px;
  background-size: cover;
  position: relative;
}
.welcome .slider .swiper-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, transparent, rgb(255, 255, 255));
  background-color: rgba(255, 255, 255, 0.4);
}
.welcome .slider .swiper-slide.swiper-slide-active .content {
  transform: translateX(0);
}
.welcome .slider .swiper-slide .content {
  display: block;
  position: relative;
  z-index: 10;
  padding-top: 15%;
  width: 80%;
  transition: all 0.7s ease-in-out;
  transform: translateX(-20px);
}
.welcome .slider .swiper-slide .content .title {
  font-size: 45px;
  line-height: 1.2em;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.welcome .slider .swiper-slide .content .btn-more {
  font-size: 14px;
  background-color: #F1B634;
  padding: 10px 25px;
  font-weight: bold;
  border-width: 2px;
  color: #7E4130;
}

.local-page {
  padding-top: 160px;
}

.section {
  text-align: center;
  padding: 55px 0;
}
.section .title {
  font-size: 44px;
  text-transform: uppercase;
}
.section .s-title {
  font-size: 14px;
  color: #919191;
}
.section.bg-gray {
  background-color: #F6F6F6;
}

.ann-wrap .swiper-wrapper {
  margin-top: 25px;
  margin-bottom: 55px;
}
.ann-wrap .swiper-wrapper .block {
  display: block;
  height: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  background-size: cover;
  transform: scale(0.9);
  transition: all 0.25s ease-in-out;
}
.ann-wrap .swiper-wrapper .block::after {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, transparent, rgb(0, 0, 0));
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  width: 100%;
}
.ann-wrap .swiper-wrapper .block .date {
  margin-bottom: 15px;
  font-size: 12px;
}
.ann-wrap .swiper-wrapper .block .b-content {
  position: absolute;
  right: 15px;
  left: 15px;
  bottom: 35px;
  color: #fff;
  line-height: 1.5em;
  text-align: left;
  z-index: 2;
}
.ann-wrap .swiper-wrapper .block .b-content a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
.ann-wrap .swiper-wrapper .swiper-slide.swiper-slide-active .block {
  transform: scale(1);
}
.ann-wrap .swiper-wrapper .swiper-slide.swiper-slide-active .b-content a {
  font-size: 20px;
  color: #F1B634;
}
.ann-wrap .sl-prev,
.ann-wrap .sl-next {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #7E4130;
  padding-top: 9px;
  color: #7E4130;
}
.ann-wrap .sl-prev {
  right: 55px;
}
.ann-wrap.history .swiper-slide .block {
  transform: translateX(0);
}
.ann-wrap.history .swiper-slide:nth-child(2n) .block {
  background: #D4D4D4;
}
.ann-wrap.history .swiper-slide:nth-child(2n) .block .b-content {
  color: #7C8794;
}
.ann-wrap.history .swiper-slide:nth-child(3n) .block {
  background: #F1B634;
}
.ann-wrap.history .swiper-slide:nth-child(3n) .block .b-content {
  color: #7E4130;
}
.ann-wrap.history .swiper-slide:nth-child(4n) .block {
  background: #7E4130;
}
.ann-wrap.history .swiper-slide:nth-child(4n) .block .b-content {
  color: #fff;
}
.ann-wrap.history .swiper-slide:nth-child(5n) .block {
  background: #D4D4D4;
}
.ann-wrap.history .swiper-slide:nth-child(5n) .block .b-content {
  color: #7C8794;
}
.ann-wrap.history .swiper-slide:nth-child(5n) .block {
  background: #fff;
}
.ann-wrap.history .swiper-slide:nth-child(5n) .block .b-content {
  color: #7E4130;
}
.ann-wrap.history .block {
  background: #7C8794;
}
.ann-wrap.history .block::after {
  content: none;
}
.ann-wrap.history .block .b-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 50px);
  top: 25px;
}
.ann-wrap.history .block .b-content .date {
  font-size: 44px;
}
.ann-wrap.history .block .b-content .desc {
  font-size: 16px;
  line-height: 1.2em;
}

.news-wrap {
  text-align: left;
}
.news-wrap .news-block {
  display: grid;
  grid-template-columns: auto 25% 25% 25%;
  grid-template-rows: auto;
  grid-gap: 15px 15px;
}
.news-wrap .news-block .block {
  padding: 15px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  background-size: cover;
}
.news-wrap .news-block .block:first-child {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
}
.news-wrap .news-block .block::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.news-wrap .news-block .block::after {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, transparent, rgb(0, 0, 0));
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  width: 100%;
}
.news-wrap .news-block .block .b-content {
  position: absolute;
  bottom: 25px;
  left: 15px;
  right: 15px;
  z-index: 2;
  font-size: 20px;
}
.news-wrap .news-block .block .b-content .date {
  font-size: 12px;
  color: #fff;
}
.news-wrap .news-block .block .b-content a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}
.news-wrap .news-block .block:hover .b-content a {
  color: #F1B634;
}
.news-wrap .news-block .block:nth-child(2) {
  grid-row: 2/span 2;
}
.news-wrap .news-block .block:nth-child(2) .b-content {
  background-color: #F1B633;
  padding: 15px;
  right: 0;
  left: 0;
  bottom: 0;
  height: 50%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.news-wrap .news-block .block:nth-child(2) .b-content a {
  color: #000;
}

.news-detail-wrap .top-wrap {
  text-align: center;
}
.news-detail-wrap .title {
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
}
.news-detail-wrap .date {
  font-size: 14px;
  margin-bottom: 25px;
}
.news-detail-wrap .img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.news-detail-wrap .img-wrap img {
  width: 100%;
}
.news-detail-wrap .news-block {
  padding: 25px 0;
  text-align: justify;
}

.more-news-wrap .title {
  text-align: left;
  margin-bottom: 55px;
}
.more-news-wrap .more-block {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.more-news-wrap .more-block .block {
  min-height: 250px;
  background-size: cover;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  width: 25%;
}
.more-news-wrap .more-block .block::after {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, transparent, rgb(0, 0, 0));
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  width: 100%;
}
.more-news-wrap .more-block .block:hover .b-content a {
  color: #F1B634;
}
.more-news-wrap .more-block .block .b-content {
  padding: 15px;
  margin-bottom: 10px;
  text-align: left;
  color: #fff;
  z-index: 5;
}
.more-news-wrap .more-block .block .b-content a {
  color: #fff;
  text-decoration: none;
}
.more-news-wrap .more-block .block .b-content .date {
  font-size: 12px;
}

.his-2 .title {
  text-align: left;
  line-height: 1.2em;
}
.his-2 .content {
  font-size: 16px;
  text-align: left;
}

.his-3 .title {
  margin-bottom: 55px;
  text-align: left;
}
.his-3 .block-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
.his-3 .block-wrap .block {
  width: calc(25% - 15px);
  background-color: #fff;
  padding: 15px;
  color: #4B4B4B;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}
.his-3 .block-wrap .block .title {
  font-size: 24px;
  font-weight: bold;
  text-transform: none;
  line-height: 1.2em;
}
.his-3 .block-wrap .block .content {
  font-size: 16px;
}

.projects .s-title {
  margin-bottom: 55px;
  font-size: 20px;
}
.projects .block-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
.projects .block-wrap .block {
  width: calc(25% - 15px);
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: left;
  justify-content: space-between;
}
.projects .block-wrap .block .title {
  font-size: 24px;
}
.projects .block-wrap .block .desc {
  margin: 25px 0;
}
.projects .block-wrap .block a.btn-more {
  color: #7E4130;
}
.projects.sec-2 {
  text-align: left;
}
.projects.sec-2 .title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 45px;
}

.books-list .b-title {
  text-align: left;
  font-size: 44px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.books-list .swiper-books .block {
  text-align: left;
}
.books-list .swiper-books .block .img-wrap {
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 25px;
}
.books-list .swiper-books .block .img-wrap img {
  width: 100%;
}
.books-list .swiper-books .block .title {
  font-size: 16px;
  color: #000;
}
.books-list .swiper-books .block .btn-more {
  font-size: 14px;
  color: #7E4130;
}

footer {
  background-color: #7E4130;
  padding: 76px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5411764706);
}
footer h5 {
  font-size: 16px;
  color: #F1B633;
  margin-bottom: 15px;
}
footer ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}
footer li {
  margin-bottom: 10px;
}
footer a {
  color: rgba(255, 255, 255, 0.5411764706);
  text-decoration: none;
}
footer a::hover {
  color: #7E4130;
}
footer li,
footer p {
  line-height: 130%;
}
footer .container > .row {
  padding: 60px 0;
  margin: 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
footer .container > .row > * {
  padding: 0;
}
footer .container > .row .btn.btn-dark {
  width: 60px;
  height: 60px;
}
footer .block {
  padding-right: 35px;
  position: relative;
}
footer .up-wrap {
  position: absolute;
  top: 0;
  right: 0;
}
footer .footer-bottom {
  font-size: 12px;
  padding-top: 45px;
  grid-template-columns: 1fr auto 1fr;
}
footer .footer-bottom .developer-info {
  text-align: right;
}
footer .footer-bottom .developer-info a {
  font-weight: 700;
  color: #FFF;
  margin-right: 3px;
}
footer .footer-left-wrap {
  text-align: left;
  margin-top: 100px;
}
footer .social-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 15px;
}
footer .logo-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
}
footer .logo-wrap img {
  height: 150px;
}

.akorda-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  box-sizing: border-box;
}
.akorda-cards .card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.akorda-cards .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.04));
  z-index: 0;
}
.akorda-cards .card__meta {
  position: relative;
  z-index: 1;
  width: 100%;
}
.akorda-cards .card__date {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 6px;
}
.akorda-cards .card__title {
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.akorda-cards .card--1 {
  grid-column: 1/3;
  grid-row: 1/3;
}
.akorda-cards .card--2 {
  grid-column: 3/4;
  grid-row: 1/2;
}
.akorda-cards .card--3 {
  grid-column: 4/5;
  grid-row: 1/2;
}
.akorda-cards .card--4 {
  grid-column: 3/4;
  grid-row: 2/4;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: none;
  aspect-ratio: auto;
}
.akorda-cards .card--4::after {
  display: none;
}
.akorda-cards .card--4__img {
  flex: 1;
  min-height: 50%;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.akorda-cards .card--4__text {
  flex: 1;
  min-height: 50%;
  background-color: #02a1b0;
  color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.akorda-cards .card--4__text .date {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 6px;
}
.akorda-cards .card--5 {
  grid-column: 4/5;
  grid-row: 2/3;
}
.akorda-cards .card--6 {
  grid-column: 1/2;
  grid-row: 3/4;
}
.akorda-cards .card--7 {
  grid-column: 2/3;
  grid-row: 3/4;
}
.akorda-cards .card--8 {
  grid-column: 4/5;
  grid-row: 3/4;
}

.articles {
  margin-top: 120px;
}
.articles .btn-info {
  font-size: 14px;
  padding-left: 45px;
  padding-right: 45px;
}
.articles .nav-tabs {
  margin-bottom: 60px;
  margin-top: 20px;
}
.articles .nav-tabs .nav-link {
  font-size: 20px;
  font-weight: 500;
  color: #919191;
  border: none;
  padding: 14px 42px;
  margin-right: 15px;
}
.articles .nav-tabs .nav-link.active {
  color: #7E4130;
  border-bottom: 3px solid #7E4130;
}
.articles .nav-tabs .nav-link:hover {
  color: #7E4130;
}
.articles .statistics {
  font-size: 60px;
  color: #5178B4;
  margin-top: 100px;
}
.articles .statistics h3 {
  font-size: 20px;
  color: #01236A;
}
.articles .statistics small {
  font-size: 14px;
  color: #919191;
}
.articles .statistics div {
  width: 100%;
}
.articles .statistics .d-flex > div {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #D4D4D4;
  padding-bottom: 20px;
  margin-right: 20px;
}
.articles .text-bg-primary {
  margin-top: 100px;
  border: none;
  height: 480px;
}
.articles .text-bg-primary .card-body {
  padding: 60px;
  height: 100%;
}
.articles .text-bg-primary img {
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.articles .text-bg-primary small {
  font-size: 20px;
  color: #919191;
}
.articles .text-bg-primary h3 {
  font-size: 35px;
}
.articles .text-bg-primary p {
  font-size: 14px;
  width: 80%;
}

.journals-wrap {
  background-color: #F6F6F6;
  margin-top: 100px;
  padding: 100px 0;
  text-align: center;
}
.journals-wrap .s-title {
  border-bottom: 1px solid #7C8794;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.journals-wrap .block-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
.journals-wrap .block-wrap .block {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: row;
}
.journals-wrap .block-wrap .block .b-title {
  font-size: 34px;
}
.journals-wrap .block-wrap .block .img-wrap {
  border-radius: 10px;
  overflow: hidden;
  width: 45%;
}
.journals-wrap .block-wrap .block .img-wrap img {
  width: 100%;
}
.journals-wrap .block-wrap .block .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: left;
  padding-left: 50px;
}
.journals-wrap .block-wrap .block .content .btn {
  color: #7E4130;
  padding: 15px;
}
.journals-wrap .block-wrap .block .content .btn:hover {
  background-color: #7E4130;
  color: #fff;
}

.partners-wrap .title {
  text-align: left;
}
.partners-wrap .s-title {
  text-align: left;
  color: #7E4130;
  margin-bottom: 50px;
  font-size: 24px;
}
.partners-wrap .block-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
.partners-wrap .block-wrap .block {
  width: calc(20% - 15px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.partners-wrap .block-wrap .block img {
  transition: all 0.25s ease-in-out;
  opacity: 0.4;
}
.partners-wrap .block-wrap .block:hover img {
  opacity: 1;
}
.partners-wrap .block-wrap .block a {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  color: #444;
  display: block;
  padding: 15px;
}
.partners-wrap .block-wrap .block .no-photo {
  border: 1px dashed #888;
  height: 100%;
  padding: 15px 0;
}

.docs-wrap .title, .docs-wrap .s-title {
  text-align: left;
}
.docs-wrap .s-title {
  font-size: 28px;
  color: #444;
  margin-top: 25px;
}
.docs-wrap .block-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}
.docs-wrap .block-wrap .block {
  width: calc(50% - 15px);
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: left;
  position: relative;
}
.docs-wrap .block-wrap .block a {
  font-size: 18px;
  color: #7E4130;
  position: relative;
  z-index: 5;
}
.docs-wrap .block-wrap .block .desc {
  margin-top: 15px;
  color: #444;
  z-index: 5;
}
.docs-wrap .block-wrap .block .icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 0;
}
.docs-wrap .block-wrap .block .icon i {
  color: rgb(246.724137931, 236.2068965517, 233.275862069);
  font-size: 54px;
}

.projects-wrap .title, .projects-wrap .s-title {
  text-align: left;
}
.projects-wrap .s-title {
  font-size: 28px;
  color: #444;
  margin-top: 25px;
}
.projects-wrap .block-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}
.projects-wrap .block-wrap .block {
  width: calc(50% - 15px);
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: left;
}
.projects-wrap .block-wrap .block .title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #7E4130;
  display: block;
}

.about {
  color: #00192F;
  font-size: 20px;
}
.about h1 {
  font-size: 45px;
  margin-bottom: 30px;
}
.about img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .cards {
  text-align: center;
}
.about .cards > p {
  width: 60%;
  margin-bottom: 100px;
}
.about .cards .row {
  margin-bottom: 20px;
  text-align: left;
}
.about .cards .row > div {
  height: 335px;
  padding: 0;
  overflow: hidden;
}
.about .cards .row > div > div {
  height: 100%;
  border-radius: 10px;
  padding: 30px;
}
.about .cards .row > div:not(:last-child) {
  padding-right: 20px;
}
.about .cards .block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 14px;
}
.about .cards .block .title {
  font-size: 20px;
  margin-top: auto;
  margin-bottom: 25px;
}
.about .cards .block h3, .about .cards .block .b-title {
  font-size: 40px;
}
.about .cards .color-3 {
  background-color: #F1B634;
  color: #7E4130;
}
.about .cards .color-2 {
  background-color: #D4D4D4;
}
.about .cards .color-1 {
  background-color: #7E4130;
  color: #fff;
}
.about .prorities {
  margin-top: 140px;
  padding-bottom: 140px;
  border-bottom: 1px solid #D4D4D4;
}
.about .prorities small {
  color: #7C8794;
  font-size: 14px;
  margin-bottom: 40px;
  display: block;
  width: 80%;
}
.about .prorities .col {
  padding: 0;
}
.about .structure {
  padding-bottom: 140px;
  line-height: 1.4em;
}
.about .structure h2 {
  padding: 40px 0;
}
.about .structure .card-custom {
  position: relative;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 340px;
}
.about .structure .card-custom:hover {
  transform: translateY(-5px);
}
.about .structure .card-custom:hover .card-title {
  color: #F1B634;
}
.about .structure .card-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(70%);
  transition: filter 0.3s ease;
}
.about .structure .card-custom:hover .card-img {
  filter: brightness(60%);
}
.about .structure .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: #FFF;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.about .structure .card-title {
  font-size: 35px;
  margin-bottom: 30px;
}
.about .structure .card-subtitle {
  font-size: 14px;
}
.about .person-list h2 {
  padding: 40px 0;
}
.about .person-list .person-card {
  position: relative;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  height: 440px;
  margin-bottom: 25px;
}
.about .person-list .person-card:hover {
  cursor: pointer;
}
.about .person-list .person-card:hover .card-title {
  color: #F1B634;
}
.about .person-list .person-card:hover .card-subtitle {
  color: #F1B634;
}
.about .person-list .card-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.3s ease;
}
.about .person-list .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: #FFF;
  background: linear-gradient(transparent, #00192F);
}
.about .person-list .card-title {
  font-size: 25px;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.about .person-list .card-subtitle {
  font-size: 14px;
}

.page {
  background: #fff;
  position: relative;
}
.page .breadcrumbs {
  padding-bottom: 30px;
}
.page .bg-color {
  position: absolute;
  height: 450px;
  background-color: #F6F6F6;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.page .person-profile .card-title {
  font-size: 45px;
  width: 70%;
  line-height: 1.2em;
  text-transform: uppercase;
}
.page .person-profile .card-subtitle {
  font-size: 20px;
  margin-top: 20px;
}
.page .person-profile .card-soc ul {
  display: flex;
  flex-direction: row;
  padding: 0;
}
.page .person-profile .card-soc ul li {
  list-style-type: none;
  padding-right: 15px;
  margin-top: 45px;
}
.page .person-profile .card-soc img {
  width: 40px;
}
.page .person-profile .person-card {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.page .person-profile-data {
  padding: 50px 0;
}
.page .person-profile-data .person-block {
  font-size: 14px;
  margin-bottom: 40px;
}
.page .person-profile-data .person-block .b-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
.page .lang-wrap ul li a {
  border-color: #000;
  color: #000;
}

.breadcrumbs {
  color: #919191;
}
.breadcrumbs ul {
  display: flex;
  flex-direction: row;
}
.breadcrumbs ul li {
  list-style-type: none;
  color: #919191;
  margin-left: 5px;
}
.breadcrumbs a {
  color: #919191;
}
.breadcrumbs a:hover {
  color: #7E4130;
}

.btn-wrap .btn-back {
  color: #7E4130;
  display: inline-block;
  padding: 15px 55px;
  text-decoration: none;
  border: 1px solid #7E4130;
  border-radius: 10px;
}

.mobile-block {
  display: none;
}

.desktop-block {
  display: block;
}

.p-404 {
  padding: 150px 0;
}
.p-404 .block-wrap {
  background-image: url("../img/404-bg.jpg");
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-color: #111111;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.p-404 .block-wrap .block {
  width: 50%;
  padding: 55px;
  text-align: left;
}
.p-404 .block-wrap .block .title {
  margin-bottom: 35px;
  width: 70%;
}
.p-404 .block-wrap .block .btn {
  border: 1px solid #F1B634;
  color: #F1B634;
  padding: 10px 25px;
}

/*==========  Desktop First  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  .header .mm-menu-wrap {
    display: block;
  }
  .header .mobile-wrap.show {
    display: block;
  }
  .header .menu-wrap {
    display: none;
    height: 100vh;
    overflow: scroll;
    background-color: #7E4130;
  }
  .header .menu-wrap .has-submenu {
    position: relative;
  }
  .header .menu-wrap .has-submenu:hover > a {
    color: #F1B634;
  }
  .header .menu-wrap .has-submenu:hover > a i {
    transform: rotate(90deg);
  }
  .header .menu-wrap ul {
    flex-direction: column;
    align-items: start;
    padding: 15px;
  }
  .header .menu-wrap ul li {
    height: auto;
    display: block;
  }
  .header .menu-wrap ul li a {
    display: block;
    padding: 15px;
    color: #fff;
  }
  .header .menu-wrap ul li i {
    transition: all 0.25s ease-in-out;
  }
  .header .menu-wrap ul li:hover a {
    color: #fff;
  }
  .header .menu-wrap ul .title {
    display: none;
  }
  .header .menu-wrap ul .submenu {
    position: relative;
    padding: 0;
    padding-left: 15px;
  }
  .header .menu-wrap ul .submenu .sub-menu-wrap {
    width: auto;
    gap: 0;
  }
  .header .menu-wrap ul .submenu .sub-menu-wrap li {
    font-size: 14px;
  }
  .header .menu-wrap ul .submenu .sub-menu-wrap li a {
    color: #ddd;
  }
  .header .menu-wrap ul .submenu .sub-menu-wrap li:hover > a {
    color: #F1B634;
  }
  .header .menu-wrap ul .submenu .sub-menu-wrap li:hover ul {
    display: block;
  }
  .header .menu-wrap ul .submenu .sub-menu-wrap ul {
    position: relative;
    width: auto;
    left: auto;
  }
  .header .menu-wrap ul .submenu .sub-menu-wrap ul li {
    display: block;
    width: auto;
    padding-left: 15px;
  }
  .header .menu-wrap ul .submenu .sub-menu-wrap ul li a {
    display: block;
    padding: 10px;
  }
  .welcome .slider .swiper-slide .content {
    width: 100%;
  }
  .page .person-profile .person-card {
    width: auto;
  }
}
/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
  .welcome .slider .swiper-slide .content .title {
    font-size: 32px;
  }
}
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  .header .container {
    gap: 0;
    justify-content: space-around;
  }
  .welcome .slider .swiper-slide .content {
    padding-top: 35%;
  }
  .welcome .slider .swiper-slide .content .title {
    font-size: 24px;
  }
  .welcome .title {
    font-size: 24px;
    padding: 15px;
  }
  .welcome .carousel {
    min-height: 100vh;
  }
  .welcome .carousel .carousel-indicators {
    top: 10%;
  }
  .welcome .carousel img {
    height: auto;
  }
  .welcome .mailing-wrap {
    max-height: none;
  }
  .welcome .mailing-wrap .bg-img {
    min-height: 350px;
  }
  .welcome .mailing-wrap div {
    max-height: none;
  }
  .welcome .mailing-wrap .card-body {
    padding: 15px;
  }
  .info-block .info-block-wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .info-block .info-block-wrapper .right-side img {
    width: 100%;
  }
  .article .name-article a {
    position: absolute;
    top: -100px;
    right: 0;
  }
  .accordion_menu {
    width: 60%;
    padding: 15px;
  }
  .accordion_menu .title {
    margin-top: 0;
  }
  .d-flex .has-submenu,
  .d-flex p,
  .d-flex li {
    display: none;
  }
  .article .articles {
    overflow: auto;
  }
  .statistic-block .statistic-wrapper {
    flex-wrap: wrap;
  }
  .statistic-block .statistic-wrapper .statistic-item {
    min-width: auto;
    width: 45%;
  }
  .accordion_wrap ul {
    flex-wrap: wrap;
  }
  .section .block-wrap .block {
    width: calc(50% - 15px);
  }
  .about .cards .row > div:not(:last-child) {
    padding: 0 0 15px;
  }
  .about .cards .block {
    margin-bottom: 15px;
  }
  .journals-wrap .block-wrap .block {
    width: 100%;
  }
  .news-wrap .news-block {
    grid-template-columns: auto 50%;
  }
  .news-wrap .news-block .block:nth-child(2) {
    grid-row: 4/span 2;
  }
  .news-wrap .news-block .block {
    font-size: 16px;
    line-height: 1.2em;
  }
  footer .footer-left-wrap {
    margin-top: 25px;
    margin-bottom: 35px;
  }
  footer .footer-bottom {
    text-align: center;
  }
  footer .footer-bottom .developer-info {
    text-align: center;
    margin-top: 15px;
  }
  footer .footer-left-wrap {
    text-align: center;
  }
  footer .footer-left-wrap .social-links {
    text-align: center;
    justify-content: center;
  }
  .desktop-block {
    display: none;
  }
  .mobile-block {
    display: block;
  }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  .header .lang-wrap, .header .search-wrap {
    display: none;
  }
  .header .mobile-search-wrap {
    display: block !important;
  }
  .welcome .slider .swiper-slide {
    padding: 15px;
  }
  .welcome .slider .swiper-slide .content .title {
    padding: 15px 0;
  }
  .section .block-wrap .block {
    width: 100%;
  }
  .partners-wrap .block-wrap .block {
    width: calc(50% - 15px);
  }
  .partners-wrap .block-wrap .block img {
    width: 90%;
  }
}
/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {
  /**/
}
/*==========  Mobile First  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  /**/
}
/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  /**/
}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  /**/
}
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  /**/
}/*# sourceMappingURL=style.css.map */