/* Base */ /* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

li a svg {
  min-width: 24px;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --font-family: "Roboto", sans-serif;
  --second-family: "Inter", sans-serif;
  --main-size: 16px;
  --white: #fff;
  --blue: #00386b;
  --orange: #ff8017;
  --black: #363636;
}

@font-face {
  font-family: Inter_18pt;
  font-display: swap;
  src: url("../fonts/Inter_18pt-Light.woff2") format("woff2"),
    url("../fonts/Inter_18pt-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Inter_18pt;
  font-display: swap;
  src: url("../fonts/Inter_18pt-SemiBold.woff2") format("woff2"),
    url("../fonts/Inter_18pt-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Inter_18pt;
  font-display: swap;
  src: url("../fonts/Inter_18pt-Regular.woff2") format("woff2"),
    url("../fonts/Inter_18pt-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"),
    url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
html,
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html {
  scroll-behavior: smooth;
  background-color: var(--white);
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: var(--font-family);
  text-wrap: auto;
  line-height: 1.2;
}

button:focus {
  box-shadow: none !important;
  outline: none !important;
}

.btn-blue {
  min-width: 230px;
  padding: 15px 30px;
  text-transform: uppercase;
  background-color: var(--blue);
  color: var(--white);
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 15px;
  line-height: 1;
}
.btn-blue:hover {
  background-color: var(--orange);
  color: var(--white);
}

.btn-orange {
  padding: 15px 60px;
  margin-top: 45px;
  background-color: var(--orange);
  color: var(--white);
  font-family: var(--font-family);
  font-size: 20px;
  text-transform: uppercase;
  border-radius: 15px;
  line-height: 1;
}

p {
  font-family: var(--font-family);
  font-size: 18px;
  text-align: justify;
  margin-bottom: 20px;
}
p img {
  display: inline-block;
}

.main {
  margin-bottom: 70px;
}

.small-text-14 {
  font-size: 14px;
}

a.text-link {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  color: var(--blue);
}
a.text-link:hover {
  color: var(--orange);
}

ul.text-list {
  list-style: disc;
}
ul.text-list li {
  list-style: disc;
  font-family: var(--font-family);
  font-size: 18px;
  text-align: justify;
}

.no-bold,
.no-bold .text-link,
a.no-bold {
  font-weight: 400;
}

.text-block,
.wp-block-media-text {
  margin-bottom: 35px;
}

.title-section,
.text-end {
  align-self: flex-end;
}

.col-6 .title-section .text-end,
a {
  font-size: 20px;
}

.title-section,
h2 {
  /* margin-top: 70px; */
  margin-bottom: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 26px;
  color: var(--blue);
}

.title-section a,
h2 a {
  color: var(--blue);
}
.title-section a:hover,
h2 a:hover {
  color: var(--orange);
}

h3.subtitle {
  margin-top: 35px;
  margin-bottom: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  color: var(--blue);
}
h3.subtitle a {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}
h3.subtitle a:hover {
  color: var(--orange);
}

.subtitle-empty {
  font-size: 16px;
  margin-top: 10px;
  color: transparent;
}

section {
  margin-top: 70px;
}

section:last-of-type {
  margin-bottom: 70px;
}

section:first-of-type {
  margin-top: 30px;
}

section.onetap-container-toggle {
  margin: 0px;
}

img {
  display: block;
  width: 100%;
}

a {
  color: var(--blue);
}
a:hover {
  color: var(--orange);
}

li img {
  display: inline-block;
}

table {
  width: 100%;
  margin-bottom: 20px;
  table-layout: fixed;
}
table tr td,
table tr th {
  border: 1px solid rgb(0, 73, 139);
  padding: 10px 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1, 3;
  color: var(--black);
  text-align: center;
}
table tr th {
  background-color: rgba(234, 245, 255, 0.5);
}

.rank-math-breadcrumb {
  margin: 20px 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
}
.rank-math-breadcrumb .separator {
  display: none;
}
.rank-math-breadcrumb p {
  display: inline-block;
  margin-bottom: 0;
  border-radius: 5px;
  overflow: hidden;
}
.rank-math-breadcrumb a,
.rank-math-breadcrumb span {
  padding: 10px 18px 10px 36px;
  text-decoration: none;
  outline: none;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  background: var(--blue);
  position: relative;
}
.rank-math-breadcrumb a:first-of-type {
  padding-left: 18px;
}
.rank-math-breadcrumb span {
  padding-right: 18px;
  background-color: #eaf5ff;
  color: var(--black);
}
.rank-math-breadcrumb a::after {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  width: 36px;
  height: 36px;
  transform: scale(0.7) rotate(45deg);
  z-index: 1;
  background: var(--blue);
  box-shadow: 2px -2px 0 2px rgb(255, 255, 255),
    3px -3px 0 2px rgba(198, 169, 247, 0.3);
  border-radius: 0 5px 0 50px;
}
.rank-math-breadcrumb a:hover {
  background: var(--orange);
}
.rank-math-breadcrumb a:hover::after {
  background: var(--orange);
}

@media (min-width: 1200px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.owl-carousel .owl-stage {
  display: flex;
}

.owl-carousel .owl-item {
  display: flex;
  flex: 0 0 auto;
  margin-bottom: 1px;
}

.owl-nav {
  text-align: center;
}
.owl-nav button {
  margin: 35px 20px 0 20px;
}

.info-card {
  display: block;
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 45px 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  background-color: #faf9f9;
  color: var(--black);
}
.info-card p {
  margin-bottom: 0;
}
.info-card .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}
.info-card .title b {
  font-size: 30px;
}
.info-card .subtitle {
  margin-top: 10px;
  font-size: 16px;
  color: var(--orange);
}
.info-card .text {
  margin-top: 30px;
  font-size: 18px;
}
.info-card:hover {
  border: 1px solid var(--orange);
  color: var(--orange);
}
.info-card:hover .title {
  color: var(--orange);
}

.announce .info-card .title {
  font-size: 22px;
}

.text-icon {
  display: flex;
  align-items: center;
}
.text-icon svg {
  margin-right: 10px;
}

.accordion {
  margin-top: 35px;
}

.accordion-item {
  border-bottom: 1px solid transparent;
}
.accordion-item .accordion-header {
  margin-bottom: 35px;
}
.accordion-item .accordion-header .accordion-button {
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 22px;
  color: var(--black);
  justify-content: space-between;
}
.accordion-item .accordion-header .accordion-button .plus,
.accordion-item .accordion-header .accordion-button .minus {
  margin-left: 20px;
  flex-shrink: 0;
}
.accordion-item .accordion-header .accordion-button::after {
  display: none;
  background-image: none;
  margin-left: 0;
  width: 0;
  height: 0;
}
.accordion-item .accordion-header .accordion-button.collapsed .minus {
  display: none;
}
.accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: var(--orange);
}
.accordion-item .accordion-header .accordion-button:not(.collapsed) .plus {
  display: none;
}

.hidden-block {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.hidden-block.active {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.search-container {
  position: relative;
  margin-bottom: 20px;
}
.search-container .search {
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 15px 30px 15px 70px;
  background: #faf9f9;
  width: 100%;
}
.search-container .search ::placeholder {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 16px;
  color: rgba(0, 56, 107, 0.7);
}
.search-container .search-icon {
  position: absolute;
  top: 16px;
  left: 35px;
}
.search-container .search-button .btn-orange {
  margin-top: 0;
}
@media (max-width: 768px) {
  .search-container .search-button {
    flex-basis: 100%;
  }
  .search-container .search-button .btn-orange {
    display: flex;
    margin: 20px auto;
    margin-bottom: 0;
  }
}

/* Blocks */
.footer {
  margin-top: auto;
  padding: 50px 0;
  background-color: var(--blue);
  color: #fff;
}
@media (max-width: 1199px) {
  .footer {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 0;
  }
}
.footer h2 {
  margin: 25px 0;
  color: var(--white);
  border-left: 3px solid #ef7918;
  padding-left: 15px;
}
.footer p {
  text-align: left;
  font-size: 15px;
  position: relative;
  padding-left: 25px;
}
.footer p svg {
  position: absolute;
  left: -3px;
  top: -3px;
}
.footer div.row {
  padding-bottom: 20px;
} 
.footer .link-orange {
  color: var(--orange);
}
.footer .link-orange:hover {
  text-decoration: underline;
}
.footer .btn-group {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.footer .btn-group .btn-link {
  border: 2px solid var(--orange);
  border-radius: 0;
  padding: 14px 20px;
  margin: 5px 0;
  color: var(--white);
}
.footer .btn-group .btn-link svg {
  margin-left: 10px;
}
.footer .btn-group .btn-link:hover {
  background-color: var(--orange);
}
@media (max-width: 1199px) {
  .footer .btn-group .btn-link {
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .footer .btn-group .btn-link {
    max-width: 75%;
  }
}

.header {
  min-height: 60px;
  background-color: var(--white);
  padding: 0;
}
.header .navbar {
  padding: 0;
  font-size: 15px;
}
.header .navbar .navbar-brand {
  margin: 0;
  padding: 10px 30px 10px 0;
}
.header .navbar .nav-link {
  padding: 24px 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 0.8em;
  text-transform: uppercase;
  color: var(--white);
}
.header .navbar .nav-link.active {
  color: var(--white);
}
.header .navbar .nav-link:hover {
  background-color: var(--white);
  color: var(--blue);
}
.header .navbar.navbar-blue {
  background-color: var(--blue);
}
@media (max-width: 1199px) {
  .header .navbar.navbar-blue .bg-white-mobile {
    background-color: var(--white);
    width: 100%;
  }
}
.header .navbar #menu-toggler {
  width: 20px;
  height: 16px;
  position: relative;
  margin: 10px 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.header .navbar #menu-toggler span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--orange);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.header .navbar #menu-toggler span:nth-child(1) {
  top: 0px;
}
.header .navbar #menu-toggler span:nth-child(2),
.header .navbar #menu-toggler span:nth-child(3) {
  top: 6px;
}
.header .navbar #menu-toggler span:nth-child(4) {
  top: 12px;
}
.header .navbar #menu-toggler.open span:nth-child(1) {
  top: 6px;
  width: 0%;
  left: 50%;
}
.header .navbar #menu-toggler.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header .navbar #menu-toggler.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header .navbar #menu-toggler.open span:nth-child(4) {
  top: 6px;
  width: 0%;
  left: 50%;
}
.header .navbar-light {
  background-color: #eaf5ff;
}
.header .navbar-light .nav-link {
  position: relative;
  padding: 24px 7.5px;
  font-weight: 700;
  font-size: 1em;
  text-transform: capitalize;
  color: var(--black);
}
.header .navbar-light .nav-link.active {
  color: var(--orange);
}
.header .navbar-light .nav-link:hover {
  background-color: transparent;
  color: var(--orange);
}
@media (min-width: 1200px) {
  .header .navbar-light .nav-link:hover::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 22px;
    left: 7.5px;
    right: 7.5px;
    background-color: var(--orange);
    height: 2px;
  }
}
@media (max-width: 1199px) {
  .header .navbar .container-fluid {
    padding: 0;
  }
  .header .navbar .container-fluid .navbar-brand,
  .header .navbar .container-fluid #menu-toggler {
    margin-right: 15px;
    margin-left: 15px;
  }
  .header .navbar .container-fluid .nav-link {
    margin: 10px 0;
    padding: 10px 30px;
    font-weight: 700;
    font-size: 1em;
    text-transform: capitalize;
    color: var(--black);
  }
  .header .navbar .container-fluid .nav-link:hover {
    background-color: transparent;
    color: var(--orange);
  }
  .header .navbar .container-fluid .dropdown-menu {
    padding: 0;
    background-color: transparent;
    border: none;
  }
  .header .navbar .container-fluid .dropdown-menu li .dropdown-item {
    padding: 10px 55px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 12px;
    color: var(--black);
  }
  .header .navbar .container-fluid .dropdown-menu li .dropdown-item:hover {
    background-color: transparent;
    color: var(--orange);
  }
  .header
    .navbar
    .container-fluid
    .dropdown-menu
    li:first-child
    .dropdown-item {
    margin-top: -10px;
  }
  .header .navbar .container-fluid .dropdown-menu li:last-child .dropdown-item {
    margin-bottom: -10px;
  }
}

#mega-menu-wrap-header_menu {
  width: 100%;
}
@media (min-width: 769px) {
  #mega-menu-wrap-header_menu #mega-menu-header_menu {
    display: flex;
  }
  #mega-menu-wrap-header_menu
    #mega-menu-header_menu
    li.mega-menu-item:nth-last-child(2) {
    margin-left: auto;
  }

  #mega-menu-wrap-header_menu
    #mega-menu-header_menu
    li.mega-menu-item:nth-last-child(2)
    a:hover {
    background-color: var(--blue);
    color: var(--white);
  }
  #mega-menu-wrap-header_menu
    #mega-menu-header_menu
    li.mega-menu-item:nth-last-child(1)
    a:hover {
    background-color: var(--blue);
    color: var(--white);
  }
}

@media (max-width: 768px) {
  #mega-menu-wrap-header_menu_2 .mega-menu-toggle + #mega-menu-header_menu_2 {
    padding: 10px 30px 10px 30px;
  }
}

@media (max-width: 768px) {
  #mega-menu-wrap-header_menu_2
    #mega-menu-header_menu_2
    li.mega-menu-item-has-children
    > a.mega-menu-link
    > span.mega-indicator {
    float: none;
  }
}

.logo {
  fill: #fff;
  width: 150px;
  height: 60px;
}

.social-icon {
  fill: var(--orange);
  width: 42px;
  height: 42px;
}
.social-icon:hover {
  fill: var(--white);
}

.search-icon {
  stroke: var(--blue);
  fill: transparent;
  width: 19px;
  height: 19px;
}

.location {
  fill: var(--orange);
  width: 24px;
  height: 24px;
}

.mail {
  fill: var(--orange);
  width: 24px;
  height: 24px;
}

.telephone {
  fill: var(--orange);
  width: 24px;
  height: 24px;
}

.mail-white {
  stroke: var(--white);
  fill: none;
  width: 20px;
  height: 20px;
}

.info-circle {
  fill: var(--white);
  width: 20px;
  height: 20px;
}

.arrow-right {
  stroke: var(--white);
  width: 20px;
  height: 22px;
}

.owl-arrow-l,
.owl-arrow-r {
  stroke: #747474;
  fill: #747474;
  width: 10.5px;
  height: 20px;
}
.owl-arrow-l:hover,
.owl-arrow-r:hover {
  stroke: var(--orange);
  fill: var(--orange);
}

.quote-symb {
  position: absolute;
  top: 0;
  left: 30px;
  fill: var(--blue);
  width: 50px;
  height: 50px;
}
.quote-symb:last-child {
  bottom: 0;
  right: 30px;
  top: auto;
  left: auto;
}
@media (max-width: 1199px) {
  .quote-symb {
    width: 35px;
    height: 35px;
    left: 0;
  }
  .quote-symb:last-child {
    right: 0;
    left: auto;
  }
}
@media (max-width: 768px) {
  .quote-symb {
    width: 20px;
    height: 20px;
  }
}

.plus {
  fill: var(--black);
  width: 30px;
  height: 30px;
}

.minus {
  fill: var(--orange);
  width: 30px;
  height: 30px;
}

.quest1,
.quest2 {
  fill: var(--blue);
  stroke: var(--white);
  width: 25px;
  height: 25px;
}

.down {
  fill: var(--blue);
  width: 25px;
  height: 25px;
}

.country {
  width: 30px;
  height: 30px;
}

.social-block {
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .social-block {
    margin-top: 25px;
  }
}
.social-block .social-icon {
  margin-right: 30px;
}

.preview {
  margin-top: 35px;
}
.preview img {
  border-radius: 20px;
  overflow: hidden;
  object-fit: cover;
}

@media (max-width: 768px) {
  .preview img {
    height: inherit;
    object-fit: contain;
  }
}

.news-item {
  display: flex;
  border: 1px solid var(--blue);
  border-radius: 30px;
  background: #faf9f9;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .news-item {
    display: block;
  }
}
.news-item .left-col,
.news-item .right-col {
  width: 50%;
}
@media (max-width: 1199px) {
  .news-item .left-col,
  .news-item .right-col {
    width: 100%;
  }
}
.news-item .left-col img {
  height: 100%;
  aspect-ratio: 16/9;
}
.news-item .right-col {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  text-align: center;
}
.news-item .right-col .news-title {
  font-weight: 700;
  font-size: 26px;
  color: var(--black);
}
.news-item .right-col .news-date {
  margin-top: 30px;
  font-size: 20px;
  color: var(--orange);
}
.news-item .right-col .all-news-btn {
  margin-top: 30px;
  padding: 15px 40px;
  border-radius: 15px;
  background-color: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
.news-item .right-col .all-news-btn:hover {
  background-color: var(--orange);
}
@media (max-width: 768px) {
  .news-item .right-col {
    padding: 40px 15px;
  }
  .news-item .right-col .news-title {
    font-size: 20px;
  }
  .news-item .right-col .news-date {
    font-size: 16px;
  }
}

.blockquote {
  position: relative;
  padding: 30px 100px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  text-wrap: auto;
  text-align: center;
  color: var(--black);
}
@media (max-width: 1199px) {
  .blockquote {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .blockquote {
    padding: 10px 30px;
    font-size: 16px;
  }
  .blockquote .quote-symb {
    width: 20px;
    height: 20px;
  }
}

.infrastruture {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
}
.infrastruture a {
  color: var(--blue);
  text-align: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}
.infrastruture a:hover {
  color: var(--orange);
}
@media (max-width: 768px) {
  .infrastruture {
    font-size: 16px;
  }
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 10px 25px;
  padding: 15px 30px;
  border-radius: 15px;
  background-color: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
.link-btn:hover {
  background-color: var(--orange);
  color: var(--white);
}

.title-image-block {
  display: flex;
  align-items: center;
  width: 100%;
}
.title-image-block img {
  width: auto;
  margin-right: 10px;
}

.image-center-group {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.image-center-group img {
  width: auto;
  margin: 1rem;
  margin-right: 40px;
}

.rating-col {
  margin-bottom: 24px;
}
.rating-col .rating-card {
  padding: 10px 20px;
  height: 100%;
}
.rating-col .rating-card .title {
  font-size: 24px;
  text-align: left;
}
.rating-col .rating-card .text {
  margin-top: 10px;
  font-size: 12px;
}

.erasmus-carousel {
  margin-bottom: 35px;
}
.erasmus-carousel .title {
  font-size: 20px;
  text-align: center;
}
.erasmus-carousel .text {
  margin-top: 60px;
}

.card-center-section .rating-card,
.card-center-block .rating-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.card-center-section .rating-card .title,
.card-center-block .rating-card .title {
  font-size: 22px;
  text-align: center;
}
.card-center-section.mini-cards .rating-card,
.card-center-block.mini-cards .rating-card {
  min-height: 170px;
}

.page-error .title-section {
  font-size: 35px;
  font-weight: 600;
  text-align: center;
}

.profile-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.profile-block img {
  max-width: 200px;
  margin-bottom: 30px;
}
.profile-block p {
  text-align: center;
}
.profile-block .profile-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 22px;
}
.profile-block .position {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: var(--blue);
}

.img-clipper {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 50%;
}

@media (min-width: 769px) {
  .full-md-img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
  }
  .full-md-img img {
    max-width: none;
  }
}
.two-cols-profile {
  margin-bottom: -65px;
}
.two-cols-profile .col-12 {
  margin-bottom: 65px;
}
.two-cols-profile .profile-block {
  height: 100%;
  padding: 30px;
  border: 1px solid var(--blue);
  border-radius: 10px;
}

.result-list {
  padding-left: 0;
  margin-top: 40px;
}
.result-list .result-item {
  list-style: none !important;
  border-bottom: 2px solid #d9d9d9;
  margin-bottom: 15px;
}

.result-list .result-item a.search-link {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 10px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  color: var(--blue);
}
.result-list .result-item a.search-link:hover {
  color: var(--orange);
}

.result-list .result-item a.item-title {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 10px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  color: var(--blue);
}
.result-list .result-item a.item-title:hover {
  color: var(--orange);
}
.result-list .result-item p {
  margin-bottom: 10px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
}

.wp-block-themeisle-blocks-accordion {
  margin: 0;
  margin-bottom: 20px;
}

.wp-block-themeisle-blocks-accordion-item__title {
  padding: 0;
  margin-bottom: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 22px;
}

.wp-block-themeisle-blocks-accordion-item__content {
  padding: 0;
  padding-left: 20px;
}

.wp-block-list li {
  font-family: var(--font-family);
  font-size: 18px;
  text-align: justify;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.logo-item {
  border: 1px solid var(--blue);
  border-radius: 10px;
}

.logo-item:hover {
  border: 1px solid var(--orange);
}

.logo-item img {
  display: block;
  width: 100%;
  min-width: 195px;
  height: 80px;
  object-fit: contain;
}

.numbers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.numbers-row > div {
  flex: 1 1 calc(20% - 20px); 
  min-width: 195px;           
  max-width: 250px;           
  display: flex;
  flex-direction: column;
  align-items: center;
}

.numbers-item img {
  display: block;
  width: 100%;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  object-fit: contain;
}

.numbers-text {
  padding-top: 20px;
  text-align: center;
}

/* .logo-item {
  border-radius: 6px;
  border: 1px solid var(--blue);
}
.logo-item:hover {
  border: 1px solid var(--orange);
} */
@media (min-width: 1200px) {
  .logo-row {
    justify-content: space-between;
  }
}
.swiper-global {
  position: relative;
  margin-bottom: 8rem;
}

.swiper-nav {
  position: absolute;
  bottom: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  gap: 40px;
}

@media (min-width: 1200px) {
  .swiper.news-swiper {
    height: 370px;
  }
}

.announce-swiper .swiper-wrapper a {
  height: auto;
}

.swiper-nav.hidden {
  display: none; /* уберёт кнопки и отступ */
}
/* .swiper-news-btn-next {
  transform: translateX(50%);
  right: 50%;
  padding-left: 70px;
}
.swiper-news-btn-prev {
  transform: translateX(-50%);
  left: 50%;
  padding-right: 70px;
}
.swiper-news-btn-next, .swiper-news-btn-prev {
  position: absolute;
  bottom: -70px;
  z-index: 10;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
} */

p a {
  font-size: inherit;
}

ul li a {
  font-size: inherit;
}

a.text-link {
  font-weight: 400;
}

/* No styles code below. Only in modules */
