:root{
    --primary-color:#1f7ae2;
    --primary-color-rgb: rgb(31, 122, 226);
    --primary-color-80: rgba(31, 122, 226, 0.8);
    --primary-color-70: rgba(31, 122, 226, 0.7);
    --primary-color-60: rgba(31, 122, 226, 0.6);
    --primary-color-50: rgba(31, 122, 226, 0.5);
    --primary-color-40: rgba(31, 122, 226, 0.4);
    --primary-color-30: rgba(31, 122, 226, 0.3);
    --primary-color-20: rgba(31, 122, 226, 0.2);
    --primary-color-10: rgba(31, 122, 226, 0.1);
}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  background:url('../images/bg.jpg') 0 0 no-repeat fixed #fff;
}
body:not(.page-start) {
    padding-top:100px;
}
a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.25;
    color: #222222;
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}
h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 25px);
}
h1 span {
  color: var(--primary-color);
}
h2 {
    color: #222222;
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    display: inline-block;
}
h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background: #eee;
    bottom: 0;
    left: 0;
}
h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.table caption {
    caption-side: top;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--bs-primary);
}
/* breadcrumb */
.breadcrumb {
    border-radius: 0.35rem;
    overflow: hidden;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.breadcrumb-item {
    padding: 0 2rem;
    line-height: 2;
}
.breadcrumb-item a {
    color: #fff;
}
.breadcrumb-item:first-child {
    background-color: var(--primary-color-80);
}
.breadcrumb-item:nth-child(2) {
    background-color: var(--primary-color-60);
}
.breadcrumb-item:nth-child(3) {
    background-color: var(--primary-color-50);
}
.breadcrumb-item:nth-child(4) {
    background-color: var(--primary-color-40);
}
.breadcrumb-item:last-child {
    background-color: var(--primary-color-10);
    color: var(--primary-color);
    font-weight:600;
}
.breadcrumb-item+.breadcrumb-item::before {
    width: 32px;
    height: 32px;
    margin: 0 1rem 0 -21px;
    position: relative;
    display:block;
    padding-right:0;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width1='512' height1='512' viewBox='0 0 512 512'%3E%3Cpath fill='%231f7ae2' d='M 511.5,247.5 C 511.5,252.833 511.5,258.167 511.5,263.5C 506.697,280.765 495.364,290.931 477.5,294C 429.167,294.333 380.833,294.667 332.5,295C 289.833,363 247.167,431 204.5,499C 187.157,499.833 169.824,499.666 152.5,498.5C 173.538,430.553 194.872,362.72 216.5,295C 169.833,294.333 123.167,294.333 76.5,295C 63.8333,311.667 51.1667,328.333 38.5,345C 25.5043,345.5 12.5043,345.667 -0.5,345.5C -0.5,344.167 -0.5,342.833 -0.5,341.5C 8.11933,313.041 16.4527,284.375 24.5,255.5C 16.4527,226.625 8.11933,197.959 -0.5,169.5C -0.5,168.167 -0.5,166.833 -0.5,165.5C 12.5043,165.333 25.5043,165.5 38.5,166C 51.1667,182.667 63.8333,199.333 76.5,216C 123.167,216.667 169.833,216.667 216.5,216C 194.872,148.28 173.538,80.4469 152.5,12.5C 169.824,11.3337 187.157,11.167 204.5,12C 247.167,80 289.833,148 332.5,216C 380.833,216.333 429.167,216.667 477.5,217C 495.364,220.069 506.697,230.235 511.5,247.5 Z'/%3E%3C/svg%3E");
}

.blockquote {
    font-size: 1rem;
    font-style: italic;
    padding: 1rem;
    background-color: beige;
}

.card .date {
    display: inline-block;
    margin: 0.5rem 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    line-height: 1;
    border-radius: 0.25rem;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--primary-color);
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.node {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid #1f5297;
    position: relative;    
}
.node::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: #fff;
    border: 2px solid #1f5297;
}
.node .title {
    line-height: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
}
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

/* Sections General */
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f9fe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: var(--primary-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h2::before,
.section-title h2::after{
    content:none;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: var(--primary-color);
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}


/* Top Bar */
#topbar {
  background: var(--primary-color);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/* Header */
#header {
  background: rgba(255,255,255,0.8);
  transition: all 0.5s;
  z-index: 997;
  height: 80px;
  /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: var(--primary-color);
}

#header .logo img {
  max-height: 50px;
}

.scrolled-offset {
  margin-top: 100px;
}
#header.header-transparent {
    background-color: rgba(255, 255, 255, 0.2);
}
#header.header-scrolled {
    background: rgba(255, 255, 255, 0.9);
    height: 60px;
}

/* Navigation Menu */
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--primary-color);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--primary-color);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Our Values
--------------------------------------------------------------*/
.our-values .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.our-values .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.our-values .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.our-values .card-title a {
  color: #150517;
}

.our-values .card-text {
  color: #5e5e5e;
}

.our-values .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.our-values .read-more a:hover {
  text-decoration: underline;
}

.our-values .card:hover .card-body {
  background: #ff7f5d;
}

.our-values .card:hover .read-more a,
.our-values .card:hover .card-title,
.our-values .card:hover .card-title a,
.our-values .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #f1f6fe;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--primary-color);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: var(--primary-color);
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

#footer .footer-top .social-links a {
    font-size: 22px;
    display: inline-block;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    line-height: 1;
    padding: 7px 0;
    margin-right: 4px;
    border-radius: 6px;
    text-align: center;
    width: 36px;
    height: 36px;
    overflow: hidden;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

.transport-list dd {
    position: relative;
    display: inline-block;
    min-width: 24px;
    min-height: 24px;
    text-align: center;
    box-sizing: border-box;
    margin: 6px 4px 0px 0px;
    padding: 4px 6px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}
.transport-list dt {
    margin: 0.75rem 0 0 0 ;
    font-weight: 300;
}
.transport-list .bus {
    background-color: #3cb200;
}
.transport-list .minibus {
    background-color: #b43dcc;
}
.transport-list .trolleybus {
    background-color: #196dff;
}
.transport-list .tramvay {
    background-color: #f43;
}

/*--------------------------------------------------------------
# carouselStart Section
--------------------------------------------------------------*/
#carouselStart {
  width: 100%;
  height: 100vh;
  background: #000;
  overflow: hidden;
  position: relative;
}
/*
@media (max-height: 500px) {
  #carouselStart {
    height: 150vh;
  }
}
*/
#carouselStart .carousel,
#carouselStart .carousel-inner,
#carouselStart .carousel-item,
#carouselStart .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#carouselStart .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#carouselStart .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
}

#carouselStart .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#carouselStart .container {
  text-align: center;
}

#carouselStart .title {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 3rem;
}

#carouselStart p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

@media (min-width: 1024px) {
  #carouselStart p {
    width: 60%;
  }
}

#carouselStart .carousel-fade {
  overflow: hidden;
}

#carouselStart .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#carouselStart .carousel-fade .carousel-inner .carousel-item,
#carouselStart .carousel-fade .carousel-inner .active.carousel-item-start,
#carouselStart .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#carouselStart .carousel-fade .carousel-inner .active,
#carouselStart .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#carouselStart .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#carouselStart .carousel-fade .carousel-inner .carousel-item-next,
#carouselStart .carousel-fade .carousel-inner .carousel-item-prev,
#carouselStart .carousel-fade .carousel-inner .active.carousel-item-start,
#carouselStart .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#carouselStart .carousel-control-prev,
#carouselStart .carousel-control-next {
  width: 10%;
}

@media (min-width: 1024px) {

  #carouselStart .carousel-control-prev,
  #carouselStart .carousel-control-next {
    width: 5%;
  }
}

#carouselStart .carousel-control-next-icon,
#carouselStart .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#carouselStart .carousel-indicators li {
  cursor: pointer;
  list-style-type: none;
}

#carouselStart .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #18d26e;
}

#carouselStart .btn-get-started:hover {
  background: #fff;
  color: #18d26e;
}
.gallery .item {
    position: relative;
    margin-bottom: var(--bs-gutter-x);
    overflow: hidden;
    /*border-radius: 0.5rem;*/
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}
.gallery .item .img {
    width: 100%;
    padding-bottom: 75%;
    /*margin-bottom: 5rem;*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.5s ease-in-out;
}
.gallery .item:hover .img {
    transform: scale(1.2);
}
.gallery .item .text {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    right: 0;
    transition: all ease-in-out 0.5s;
    /*background-color: #fff;*/
    padding: 10px 15px;
    /*height: 5rem;*/
}
.gallery .item .date {
    position: absolute;
    top: 0;
    z-index: 3;
    right: 0;
    transition: all ease-in-out 0.5s;
    color: #fff;
    background-color: var(--primary-color);
    padding: 0px 5px;
    display: inline-block;
    margin: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.8rem;
}
.gallery .item:hover .text {
    background-color: rgba(0, 0, 0, 0.2);
}
.gallery .item .text h4 {
    font-size: 1.2rem;
    color:#fff;
    margin-bottom: 0;
}
.gallery .item .text p {
    display:none;
    color: #fff;
    font-style: italic;
}
.gallery .item:hover .text .description {
    display:block;
}
.gallery .item .text p {
    margin-bottom: 0;
}

.page-person .person-photo {
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 2rem;
}
.info-block {
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom:1rem;

}
.section-bg .info-block {
    background-color: #fff;
}

.courses .item {
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

#cb-cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999; border-radius: 0; display: none; }

table.results thead {
    --bs-table-color: #000;
    --bs-table-bg: #cfe2ff;
    --bs-table-border-color: #a6b5cc;
    --bs-table-striped-bg: #c5d7f2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bacbe6;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfd1ec;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}
table.results thead td,
table.results thead th {
    font-weight:600;
    text-align:center;
    vertical-align:middle;
    font-size:0.8rem;
}


/* ==========================================================================
   SORMOVO-AVIA — modern light visual layer
   ========================================================================== */
:root {
    --primary-color: #1769d2;
    --primary-color-rgb: 23, 105, 210;
    --primary-color-80: rgba(23, 105, 210, .80);
    --primary-color-70: rgba(23, 105, 210, .70);
    --primary-color-60: rgba(23, 105, 210, .60);
    --primary-color-50: rgba(23, 105, 210, .50);
    --primary-color-40: rgba(23, 105, 210, .40);
    --primary-color-30: rgba(23, 105, 210, .30);
    --primary-color-20: rgba(23, 105, 210, .20);
    --primary-color-10: rgba(23, 105, 210, .10);

    --text: #243244;
    --text-soft: #667085;
    --heading: #142033;
    --surface: #ffffff;
    --surface-soft: #f6f9fc;
    --border: #e6ebf2;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;
    --shadow-sm: 0 4px 18px rgba(20, 45, 80, .06);
    --shadow: 0 12px 35px rgba(20, 45, 80, .09);
    --shadow-hover: 0 18px 45px rgba(20, 45, 80, .14);
}

html { scroll-behavior: smooth; }

body {
    color: var(--text);
    background: #fff;
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body:not(.page-start) { padding-top: 84px; }

img { max-width: 100%; }

::selection {
    background: rgba(23, 105, 210, .16);
    color: var(--heading);
}

a {
    color: var(--primary-color);
    transition: color .2s ease, opacity .2s ease;
}

a:hover { color: #0f55b0; }

h1, h2, h3, h4, h5, h6 {
    color: var(--heading);
    letter-spacing: -.02em;
}

h1 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 2.5rem;
    padding-bottom: 1.15rem;
}

h1::after {
    height: 3px;
    width: 44px;
    left: calc(50% - 22px);
    border-radius: 99px;
}

h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.05rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: .8rem;
}

h2::before {
    height: 2px;
    background: var(--border);
}

h2::after {
    width: 42px;
    height: 2px;
    border-radius: 99px;
}

section {
    padding: 76px 0;
}

.section-bg {
    background: var(--surface-soft);
}

.section-title {
    padding-bottom: 34px;
}

.section-title h2 {
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 700;
    padding: 7px 14px;
    background: rgba(23, 105, 210, .08);
    color: var(--primary-color);
    border: 1px solid rgba(23, 105, 210, .10);
}

.section-title h3 {
    margin-top: 14px;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1.2;
}

.section-title p {
    color: var(--text-soft);
    font-weight: 400;
    line-height: 1.7;
}

/* Header */
#topbar {
    background: #12345b;
    height: 36px;
    font-size: 13px;
}

#header {
    height: 84px;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(20,32,51,.06);
    box-shadow: 0 2px 20px rgba(20,45,80,.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

#header.header-transparent {
    background: rgba(255,255,255,.72);
}

#header.header-scrolled {
    height: 68px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 8px 28px rgba(20,45,80,.08);
}

#header .logo {
    font-size: 28px;
    font-weight: 700;
}

#header .logo img {
    max-height: 48px;
}

.navbar>ul>li {
    padding: 10px 0 10px 24px;
}

.navbar a, .navbar a:focus {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}

.navbar>ul>li>a:before {
    bottom: -5px;
    height: 2px;
    border-radius: 99px;
}

.navbar .dropdown ul {
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 8px 0;
}

.navbar .dropdown ul a {
    padding: 9px 16px;
}

/* Cards / content surfaces */
.card,
.info-block,
.courses .item,
.team .member {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.card {
    background: var(--surface);
}

.card .date {
    border-radius: 999px;
    padding: .45rem .8rem;
    font-size: .78rem;
}

.info-block {
    padding: 1.25rem;
}

.courses .item {
    padding: 38px 30px;
    border-top: 3px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.courses .item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--primary-color);
}

/* Team */
.team {
    padding: 76px 0;
}

.team .member {
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

.team .member:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.team .member .member-info {
    padding: 22px 20px 24px;
}

.team .member .member-info h4 {
    font-size: 17px;
}

.team .member .member-info span {
    color: var(--text-soft);
}

/* Values */
.our-values .card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 150px 20px 20px;
}

.our-values .card-body {
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    background: rgba(255,255,255,.94);
}

.our-values .card:hover .card-body {
    background: #fff;
    transform: translateY(-3px);
}

/* Gallery */
.gallery .item {
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.gallery .item .img {
    transition: transform .45s ease;
}

.gallery .item:hover .img {
    transform: scale(1.045);
}

.gallery .item .date {
    border-radius: 999px;
    padding: 4px 9px;
    margin: .75rem;
}

/* Hero */
#carouselStart .carousel-item::before {
    background: linear-gradient(180deg, rgba(8,25,48,.18) 0%, rgba(8,25,48,.48) 100%);
}

#carouselStart .title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    text-shadow: 0 4px 24px rgba(0,0,0,.25);
}

#carouselStart p {
    max-width: 760px;
    color: rgba(255,255,255,.92);
    line-height: 1.65;
}

#carouselStart .btn-get-started {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 11px 28px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .01em;
    box-shadow: 0 8px 22px rgba(23,105,210,.25);
}

#carouselStart .btn-get-started:hover {
    background: #fff;
    border-color: #fff;
    color: var(--primary-color);
}

/* Footer */
#footer {
    background: #f5f8fc;
    border-top: 1px solid var(--border);
}

#footer .footer-newsletter,
#footer .footer-top {
    background: transparent;
}

#footer .footer-newsletter form {
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

#footer .footer-newsletter form input[type=submit] {
    border-radius: 0 12px 12px 0;
}

#footer .footer-top .social-links a {
    border-color: var(--border);
    border-radius: 10px;
    background: #fff;
}

#footer .footer-top .social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Utility */
.back-to-top {
    width: 44px;
    height: 44px;
    right: 20px;
    bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(23,105,210,.22);
}

.transport-list dd {
    border-radius: 999px;
}

table.results {
    border-radius: 12px;
    overflow: hidden;
}

table.results thead {
    --bs-table-bg: #eef4fb;
    --bs-table-border-color: var(--border);
}


/* ==========================================================================
   Compatibility overrides
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
