@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
  font-family: "Open Sans", sans-serif;
  color: #303a45;
  line-height: 1.6;
  font-weight: 400;
  font-size: 0.9rem;
}

a {
  color: #0078b4;
}

a:hover {
  color: #0078b4;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #0078b4;
  font-weight: 500;
  color: #00497b;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .h1, h1 {
    font-size: 2rem;
  }

  .h3, h3 {
    font-size: 1.5rem;
  }
}

.blue {
  color: #00497b;
}

.red {
  color: #e30613;
  ;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #00497b;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #00805d;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  top: 0;
  background: #bce4fa;
}

#header .header-container {
  background: #bce4fa;
}

#header.header-scrolled {
  background: #bce4fa;
  top: 0;
}

#header .logo {
  overflow: hidden;
  padding: 25px 0px 20px 0px;
  color: #002243;
}

#header .logo h1 {
  font-size: 32px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  color: #00497b;
}

#header .logo h1 a, #header .logo h1 a:hover {
  text-decoration: none;
  color: #00497b;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    top: 0;
    background: #bce4fa;
  }

  #header.header-scrolled, #header .header-container {
    background: #bce4fa;
  }

  #header .logo h1 {
    font-size: 24px;
  }

  #header .logo {
    padding: 15px 0px 10px 0px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: inline-block;
  position: relative;
  color: #00497b;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .nav-menu a {
    padding: 10px 10px;
    font-size: 14px;
  }
}

.nav-menu a:hover, .nav-menu .active>a, .nav-menu li:hover>a {
  color: #002243;
  text-decoration: none;
}

.nav-menu .get-started a {
  background: #0078b4;
  color: #fff;
  border-radius: 5px;
  margin: 0;
  padding: 8px 25px;
  border-top-color: #0078b4;
  border-bottom-color: #075d89;
  -webkit-box-shadow: inset 0 -2px 0 0 #086ea1;
  box-shadow: inset 0 -2px 0 0 #086ea1;
}

.nav-menu .get-started a:hover {
  background: #0078b4;
  color: #fff;
  border-bottom-color: #0078b4;
}

.nav-menu .logged a {
  color: #01497b;
  background-color: #f6fbfd;
  border-color: #f6fbfd;
  border-radius: 5px;
  padding: 10px 15px 10px 15px;
  margin-left: 5px;
  border-bottom-color: #c8ced0;
  -webkit-box-shadow: inset 0 -2px 0 0 #c8ced0;
  box-shadow: inset 0 -2px 0 0 #c8ced0;
}

.nav-menu .logged a:hover {
  background: transparent;
  color: #01497b;
  background-color: #f6fbfd;
  border-color: #f6fbfd;
  border-bottom-color: #f6fbfd;
  -webkit-box-shadow: inset 0 -2px 0 0 #f6fbfd;
  box-shadow: inset 0 -2px 0 0 #f6fbfd;
}

.mobile-nav .logged a {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  border-radius: 5px;
  padding: 10px 10px;
  margin: 20px 30px;
}

.mobile-nav .logged a:hover {
  background: transparent;
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

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

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-weight: 400;
  text-transform: none;
  color: black;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active>a, .nav-menu .drop-down ul li:hover>a {
  color: #00497b;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #00497b;
}

.mobile-nav {
  position: fixed;
  top: 56px;
  right: 0px;
  bottom: 0px;
  left: 30%;
  z-index: 9999;
  overflow-y: auto;
  background: #313a45;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  padding: 10px 0;
  text-align: left;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 20px 30px;
  font-weight: 300;
  outline: none;
  font-size: 17px;
}

.mobile-nav a:hover, .mobile-nav .active>a, .mobile-nav li:hover>a {
  color: #aabacc;
  text-decoration: none;
}

.mobile-nav .get-started {
  text-align: center;
}

.mobile-nav .get-started a {
  display: inline-block;
  background: #0078b4;
  color: #fff;
  border-radius: 5px;
  margin: 0 15px;
  padding: 8px 25px;
}

.mobile-nav .get-started a:hover {
  background: #00c28e;
  color: #fff;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(29, 28, 31, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero.hero-work {
  width: 100%;
  height: 80vh;
  background: url("../img/hero-work-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero .container {
  padding-top: 80px;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 38px;
  font-weight: 300;
  line-height: 56px;
  color: #303a45;
}

#hero strong {
  color: #0078b4;
}

#hero p {
  color: #303a45;
  margin-bottom: 40px;
  font-size: 13px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

#hero .btn-get-started {
  background: #e30613;
  color: #fff;
  border-radius: 5px;
  margin: 0 15px;
  padding: 10px 25px;
  font-size: 16px;
  border-top-color: #e30613;
  border-bottom-color: #850000;
  -webkit-box-shadow: inset 0 -2px 0 0 #9e0000;
  box-shadow: inset 0 -2px 0 0 #9e0000;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 50px;
  width: 250px;
}

#hero .btn-get-started:hover {
  background: #e30613;
  border-bottom-color: #e30613;
  -webkit-box-shadow: inset 0 -2px 0 0 #e30613;
  box-shadow: inset 0 -2px 0 0 #e30613;
}

#hero .btn-get-started-work {
  background: #e30613;
  color: #fff;
  border-radius: 5px;
  margin: 0 15px;
  padding: .8rem 15px !important;
  font-size: 16px;
  border-top-color: #e30613;
  border-bottom-color: #850000;
  -webkit-box-shadow: inset 0 -2px 0 0 #9e0000;
  box-shadow: inset 0 -2px 0 0 #9e0000;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 50px;
  width: 280px;
}

#hero .btn-get-started-work :hover {
  background: #e30613;
  border-bottom-color: #e30613;
  -webkit-box-shadow: inset 0 -2px 0 0 #e30613;
  box-shadow: inset 0 -2px 0 0 #e30613;
}

.lead-work {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 50px;
  width: 250px;
  font-size: 15px;
  color: white
}

@media (min-width: 1024px) {
  #hero {}
}

@media (max-width: 768px) {
  #hero {
    height: 80vh;
    background: url("../img/hero-bg-mobile.jpg") top center;
    background-size: cover;
    position: relative;
  }

  #hero.hero-work {
    width: 100%;
    height: 80vh;
    background: url("../img/hero-work-bg-mobile.jpg") top center;
    background-size: cover;
    position: relative;
  }

  #hero .container {
    padding-top: 80px;
  }

  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }
}

#reg {
  width: 100%;
  height: 100vh;
  background: url("../img/reg-bg.jpg") center center;
  background-size: cover;
  position: relative;
}

#reg .container {
  padding-top: 80px;
}

#reg:before {
  content: "";
  background: rgba(0, 0, 0, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#reg h1 {
  margin: 0 0 10px 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#reg p {
  color: #fff;
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

#reg .btn-get-started {
  background: #e30613;
  color: #fff;
  border-radius: 5px;
  margin: 0 15px;
  padding: 10px 25px;
}

#reg .btn-get-started:hover {
  background: #e30613;
}

@media (min-width: 1024px) {
  #reg {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #reg {
    height: auto;
  }

  #reg .container {
    padding-top: 60px;
  }

  #reg h1 {
    font-size: 32px;
    line-height: 36px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #00497b;
  bottom: 0;
  left: 0;
}

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

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.home {
  background: #fff;
  padding: 50px 0 50px 0;
}

.clients {
  background: #f6f6f7;
  text-align: center;
  padding: 5px 0;
}

.clients img {
  width: 40%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about .content h3 {
  font-weight: 400;
  line-height: 32px;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #00497b;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 20px 0 20px 0;
  color: #fff;
  background-color: #00497b;
  background-image: url('../img/lines.svg');
  background-repeat: no-repeat;
  background-size: cover;
}

.counts .counters span {
  font-size: 56px;
  display: block;
  font-family: 'Bebas Neue', cursive;
}

@media (max-width: 768px) {
  .counts .counters span {
    font-size: 36px;
  }
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  font-weight: 400;
}

.bg-color {
  background: #dff2fd;
  padding: 40px 0 20px 0;
  color: rgba(48, 58, 69, .85) !important;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 30px;
  background: #00497b;
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #00497b;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
  transition: 0.3s;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #00497b;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

.why-us .icon-boxes .icon-box:hover {
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.7)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #00497b;
  border: 2px solid #00497b;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 40px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  border: 1px solid #00497b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
  color: #00497b;
}

.services .icon-box .icon i {
  font-size: 28px;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #36343a;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .icon-box:hover h4 a {
  color: #00497b;
}

.services .icon-box:hover .icon {
  color: #fff;
  background: #00497b;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 8px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  font-family: "Open Sans", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #00497b;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(54, 52, 58, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(54, 52, 58, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #00cc95;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #66ffd6;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #00497b !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}

.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.team .member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #36343a;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 400;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b5b3ba;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #a8a5ae;
}

.team .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #00497b;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: #00497b;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #36343a;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #686470;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #00497b;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #00805d;
}

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

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: #f6fbfe !important;
  margin-top: 85px;
  border-bottom: 1px solid #ccd7e1;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 55px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4f4c55;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #00497b !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  background-color: #dff2fd;
  z-index: 2;
  border-radius: 0;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -150px;
  position: inherit;
  text-align: center;
  padding-top: 150px;
  background-image: url(../img/hp_jsmetu.png);
  background-size: 128px auto;
  background-repeat: no-repeat;
  background-position: center 25px;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-info {
    width: 100%;
  }
}

.portfolio-info-form {
  padding: 30px;
  background: #fff;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  border-radius: 0;
  margin-top: 50px
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #303a45;
}

.portfolio-details .portfolio-description strong {
  color: #0078b4;
  font-weight: 600;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }

  .table td, .table th {
    padding: .15rem;
  }
}

.portfolio-details .etapy-container {
  margin-bottom: 50px;
  margin-top: 25px
}

.portfolio-details .etapy-info {
  padding: 30px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border-radius: 0px;
  margin-bottom: 25px;
}

.portfolio-details .etapy-info.active {
  background: #dff2fd !important;
}

.portfolio-details .etapy-info.box {
  padding: 30px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border-radius: 0px;
  margin-top: 25px;
  min-height: 300px
}

.etapy-info-signt {
  position: absolute;
  top: 25px;
    right: 15px;
}

.portfolio-details .etapy-info.color {
  background-color: #00497b;
  background-image: url(../img/lines.svg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.portfolio-details .etapy-info.color h3 {
  color: #fff;
  border-bottom: 1px solid #0062a7;
}

.portfolio-details .etapy-info img {
  margin-bottom: 10px;
}

.portfolio-details .etapy-info .etapy-info-gpx-add {
  padding: 15px;
  background-color: #f6fbfe !important;
}

.portfolio-details .etapy-info .etapy-info-gpx-add h3 {
  border-bottom: 1px solid transparent;
}

.portfolio-details .etapy-info .etapy-info-gpx-add .btn {
  margin-top: 0px;
}

.portfolio-details .etapy-info h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .etapy-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .etapy-info ul li+li {
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #2d3c4a;
  font-size: 14px;
  background: #bce4fa;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #313a45;
  color: #e6ebf0;
}

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

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  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: #00c28e;
  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: #00497b;
}

#footer .footer-newsletter {
  font-size: 15px;
}

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

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e4e3e6;
}

#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: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #00497b;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #00664b;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #00497b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #00805d;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 992px) {
  #map-big {
    width: 100%;
    min-height: 800px;
  }
}

@media (max-width: 991px) {
  #map-big {
    width: 100%;
    min-height: 700px;
  }
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background: #0078b4;
  color: #fff;
  border-radius: 5px;
  margin: 0;
  padding: 4px 25px;
  border-color: transparent;
  -webkit-box-shadow: inset 0 -2px 0 0 #086ea1;
  box-shadow: inset 0 -2px 0 0 #086ea1;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin: 5px;
}

.nav-pills .nav-link {
  color: #0078b4;
  background: #f6fbfe;
  border-radius: 5px;
  margin: 0;
  padding: 8px 25px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  border-color: transparent;
  font-weight: 400;
  margin: 5px;
}


.gm-style .gm-style-iw-c {
  position: absolute;
  box-sizing: border-box;
  overflow: hidden;
  top: 0;
  left: 0;
  transform: translate(-50%, -100%);
  border-radius: 0px;
  padding: 25px;
  box-shadow: 0 2px 7px 1px rgb(0 0 0 / 30%);
  color: #333A45;
  overflow: hidden;
}

.pin-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #00497b;
  margin-bottom: 15px;
}

.pin-box-tip {
  border: 1px solid #bce4fa;
  padding: 15px;
  border-radius: 5px;
}

.pin-num {
  font-size: 26px;
  display: block;
  font-weight: 700;
  font-family: 'Bebas Neue', cursive;
}

.leg-pin {
  border: 1px solid #bce4fa;
  padding: 5px;
  border-radius: 99px;
  margin-top: 5px;
  width: 45%;
  float: left;
  margin-right: 5px;
  cursor: pointer;
}

.leg-pin.active {
  background-color: #bce4fa;
}

.legal-copy {
  font-size: 0.8rem;
}

.pin-box-info {
  background-color: #dff2fd;
  padding: 10px;
  border-radius: .25rem;
  color: #313a45;
  height: 100px
}

.ico-1 {
  background: url(../img/map/pin5.png) no-repeat 10px 0;
  background-size: 20px auto;
  padding-left: 40px
}

.ico-2 {
  background: url(../img/map/pin8.png) no-repeat 10px 0;
  background-size: 20px auto;
  padding-left: 40px
}

.ico-3 {
  background: url(../img/map/pin6.png) no-repeat 10px 0;
  background-size: 20px auto;
  padding-left: 40px
}

.btn {
  margin-top: 15px;
  padding: 8px 25px;
  font-size: 16px;
  color: #0078b4;
}

.btn-group-sm>.btn, .btn-sm {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

.btn-group-sm>.btn, .btn-sm i {
  font-size: .775rem;
}

.btn-group-lg>.btn, .btn-lg {
  padding: .8rem 1.5rem !important;
  font-size: 1.25rem !important;
}

.btn-primary {
  color: #fff;
  background-color: #0078b4;
  border: #0078b4;
  border-bottom-color: #075d89;
  -webkit-box-shadow: inset 0 -2px 0 0 #075d89;
  box-shadow: inset 0 -2px 0 0 #075d89;
}

.btn-primary:hover {
  background-color: #0078b4;
  border-top-color: #0078b4;
  border-bottom-color: #0078b4;
  -webkit-box-shadow: inset 0 -2px 0 0 #0078b4;
  box-shadow: inset 0 -2px 0 0 #0078b4;
}

.btn-secondary {
  color: #fff;
  background-color: #e30613;
  border-color: #e30613;
  border-bottom-color: #850000;
  -webkit-box-shadow: inset 0 -2px 0 0 #9e0000;
  box-shadow: inset 0 -2px 0 0 #9e0000;
}

.btn-secondary:hover {
  background: #e30613;
  border-bottom-color: #e30613;
  border-color: #e30613;
  border-bottom-color: #e30613;
  -webkit-box-shadow: inset 0 -2px 0 0 #e30613;
  box-shadow: inset 0 -2px 0 0 #e30613;
}

.btn-outline-primary {
  color: #fff;
  border-color: #003c65;
  background: #003c65;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {
  color: #00497C;
  background-color: #fff;
  border-color: #fff;
}

.btn-primary.active, .btn-primary:active {
  color: #0b5181 !important;
  background-color: #bce4fa !important;
  border-color: #bce4fa !important;
  -webkit-box-shadow: inset 0 -2px 0 0 #bce4fa !important;
  box-shadow: inset 0 -2px 0 0 #bce4fa !important;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #717171;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  -webkit-box-shadow: inset 0 -2px 0 0 #f8f9fa;
  box-shadow: inset 0 -2px 0 0 #f8f9fa;
}

.btn-light {
  color: #01497b;
  background-color: #f6fbfd;
  border-color: #f6fbfd;
  border-bottom-color: #c8ced0;
  -webkit-box-shadow: inset 0 -2px 0 0 #c8ced0;
  box-shadow: inset 0 -2px 0 0 #c8ced0;
}

.btn-light:hover {
  color: #01497b;
  background-color: #f6fbfd;
  border-color: #f6fbfd;
  -webkit-box-shadow: inset 0 -2px 0 0 #f6fbfd;
  box-shadow: inset 0 -2px 0 0 #f6fbfd;
}

.btn-link {
  font-weight: 400;
  color: #0078b4;
  text-decoration: none;
  margin-top: 0px;
  padding: 8px 0px;
}

.btn-link:hover {
  font-weight: 400;
  color: #0078b4;
  text-decoration: none;
}

.btn-instagram {
  background-image: url(../img/instagram-line.svg);
  background-position: 0px 10px;
  background-repeat: no-repeat;
  background-size: 36px;
  padding-left: 50px !important
}

.popup-box {
  position: absolute;
  bottom: 25px;
  left: 10px;
  z-index: 2;
  width: 400px;
  background: #fff;
  padding: 15px 15px;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  border-radius: 2px;
  color: #01497b;
  font-size: 0.8rem;
}

.popup-box h5 {
  color: #01497b;
  font-weight: 400;
}

.popup-box .btn {
  position: absolute;
  right: 15px;
  top: 0px;
  background-color: #fff;
  border-color: #fff;
  font-size: 24px;
  padding: 0px 5px;
}

@media (max-width: 991px) {
  .popup-box {
    width: 75%;
  }

  .leg-pin {
    border: 1px solid #bce4fa;
    padding: 5px;
    border-radius: 99px;
    margin-top: 5px;
    width: 100%;
    float: left;
    margin-right: 5px;
  }
}

section {
  position: relative;
}

.main-prava {
  box-sizing: border-box;
  background-color: #DFF2FD;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 15px 15px;
  text-align: center;
}

.main-prava img {
  height: 100px;
  text-align: center;
}

.main-leva {
  box-sizing: border-box;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 15px 15px;
  text-align: center;
}

.main-leva img {
  height: 100px;
  text-align: center;
}

.card-body img {
  width: 50%;
  text-align: center;
}

.card-body {
  text-align: center;
}

.czech {
  color: #e60000
}

.timeline {
  width: 100%;
  position: relative;
  padding: 1px 0;
  list-style: none;
  padding-bottom: 100px;
  font-weight: 500;
  padding-top: 50px
}

.timeline .timeline-item {
  padding-left: 0;
  padding-right: 30px
}

.timeline .timeline-item.timeline-item-right,
.timeline .timeline-item:nth-of-type(even):not(.timeline-item-left) {
  padding-left: 30px;
  padding-right: 0
}

.timeline .timeline-item .timeline-event {
  width: 100%
}

.timeline:before {
  border-right-style: solid
}

.timeline:before,
.timeline:after {
  content: " ";
  display: block
}

.timeline:after {
  clear: both
}

.timeline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100% !important;
  margin-left: 2px;
  border-right-width: 4px;
  border-right-style: solid;
  border-right-color: rgba(52, 40, 104, .1)
}

.timeline .timeline-label .label {
  background-color: #dff2fd;
  color: #0078b4;
  display: inline;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  border-radius: 5px;
  padding: 8px 25px;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap
}

.timeline.timeline-line-solid:before {
  border-right-style: solid
}

.timeline.timeline-line-dotted:before {
  border-right-style: dotted
}

.timeline.timeline-line-dashed:before {
  border-right-style: dashed
}

.timeline .timeline-item {
  position: relative;
  float: left;
  clear: left;
  width: 50%;
  margin-bottom: 20px
}

.timeline .timeline-item:before,
.timeline .timeline-item:after {
  content: "";
  display: table
}

.timeline .timeline-item:after {
  clear: both
}

.timeline .timeline-item:last-child {
  margin-bottom: 0 !important
}

.timeline .timeline-item.timeline-item-right>.timeline-event,
.timeline .timeline-item:nth-of-type(even):not(.timeline-item-left)>.timeline-event {
  float: right !important
}

.timeline .timeline-item.timeline-item-right>.timeline-event:before,
.timeline .timeline-item:nth-of-type(even):not(.timeline-item-left)>.timeline-event:before,
.timeline .timeline-item.timeline-item-right>.timeline-event:after,
.timeline .timeline-item:nth-of-type(even):not(.timeline-item-left)>.timeline-event:after {
  right: auto !important;
  border-left-width: 0 !important
}

.timeline .timeline-item.timeline-item-right>.timeline-event:before,
.timeline .timeline-item:nth-of-type(even):not(.timeline-item-left)>.timeline-event:before {
  left: -15px !important;
  border-right-width: 15px !important
}

.timeline .timeline-item.timeline-item-right>.timeline-event:after,
.timeline .timeline-item:nth-of-type(even):not(.timeline-item-left)>.timeline-event:after {
  left: -14px !important;
  border-right-width: 14px !important
}

.timeline .timeline-item>.timeline-event:before {
  top: 10px;
  right: -15px;
  border-top: 15px solid transparent;
  border-left-width: 15px;
  border-left-style: solid;
  border-right-width: 0;
  border-right-style: solid;
  border-bottom: 15px solid transparent
}

.timeline .timeline-item>.timeline-event:after {
  top: 11px;
  right: -14px;
  border-top: 14px solid transparent;
  border-left-width: 14px;
  border-left-style: solid;
  border-right-width: 0;
  border-right-style: solid;
  border-bottom: 14px solid transparent
}

.timeline .timeline-item>.timeline-point {
  top: 25px
}

.timeline .timeline-item:nth-of-type(2) {
  margin-top: 40px
}

.timeline .timeline-item.timeline-item-left,
.timeline .timeline-item.timeline-item-right {
  clear: both !important
}

.timeline .timeline-item.timeline-item-right,
.timeline .timeline-item:nth-of-type(even):not(.timeline-item-left) {
  float: right;
  clear: right
}

.timeline .timeline-item.timeline-item-right>.timeline-point,
.timeline .timeline-item:nth-of-type(even):not(.timeline-item-left)>.timeline-point {
  left: -14px
}

.timeline .timeline-item>.timeline-event {
  position: relative;
  float: left
}

.timeline .timeline-item>.timeline-event:before {
  border-left-color: rgba(52, 40, 104, .04);
  border-right-color: rgba(52, 40, 104, .04)
}

.timeline .timeline-item>.timeline-event:after {
  border-left-color: rgba(52, 40, 104, .04);
  border-right-color: rgba(52, 40, 104, .04)
}

.timeline .timeline-item>.timeline-event:before,
.timeline .timeline-item>.timeline-event:after {
  content: "";
  display: inline-block;
  position: absolute
}

.timeline .timeline-item>.timeline-point {
  color: #5d5386;
  background: #5d5386;
  right: -14px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: 8px;
  margin-right: 8px;
  position: absolute;
  z-index: 100;
  border-width: 3px;
  border-style: solid;
  border-radius: 100%;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 0 0 5px #f2f3f8
}

.timeline .timeline-label {
  position: relative;
  float: left;
  clear: left;
  width: 50%;
  margin-bottom: 20px;
  top: 1px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  text-align: center
}

.timeline .timeline-label:before,
.timeline .timeline-label:after {
  content: "";
  display: table
}

.timeline .timeline-label:after {
  clear: both
}

.timeline .timeline-label:last-child {
  margin-bottom: 0 !important
}

.timeline .timeline-label+.timeline-item {
  margin-top: 0
}

.timeline .timeline-label+.timeline-item+.timeline-item {
  margin-top: 40px
}

.timeline .time-right {
  color: rgba(52, 40, 104, .5);
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: .85rem;
  font-weight: 500
}

.timeline .time-left {
  color: rgba(52, 40, 104, .5);
  position: absolute;
  top: -20px;
  left: 0;
  font-size: .85rem;
  font-weight: 500
}

.timeline .widget-header .user-image {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.07rem
}

.timeline .widget-header .user-image img {
  width: 50px
}

.timeline .widget-header .title {
  color: #2c304d;
  font-size: 1.2rem
}

.timeline .widget-header .username {
  color: #0078b4
}

.timeline .widget-header .time {
  font-size: .85rem
}

.timeline .widget-body {
  padding: 0rem 1.4rem
}

.timeline .widget-footer {
  border-top: 1px solid #eee;
  margin: 0 1.4rem;
  padding: .07rem 0
}

.timeline .users-like {
  padding: 0
}

.timeline .users-like a {
  margin: 0 -1.6rem 0 0;
  transition: all 0.4s ease
}

.timeline .users-like a:hover {
  margin-right: -.3rem
}

.timeline .users-like img {
  width: 40px;
  border: .25rem solid #fff
}

.timeline .users-like a.view-more {
  background: #5d5386;
  color: #fff;
  width: 40px;
  height: 40px;
  border: .25rem solid #fff;
  border-radius: 50%;
  vertical-align: middle;
  font-size: .85rem;
  text-align: center;
  line-height: 30px;
  margin-right: 0
}

.timeline .widget-footer .meta ul {
  padding: 0;
  margin: 0
}

.timeline .widget-footer .meta li {
  display: inline-block;
  margin-right: .5rem
}

.timeline .widget-footer .meta li:last-child {
  margin-right: 0
}

.timeline .widget-footer .meta li a {
  color: rgba(52, 40, 104, .3)
}

.timeline .widget-footer .meta li a:hover {
  color: rgba(52, 40, 104, .9)
}

.timeline .widget-footer .meta li a.active {
  color: rgba(52, 40, 104, .9)
}

.timeline .widget-footer .meta li i {
  font-size: 1.8rem;
  vertical-align: middle;
  margin-right: .3rem
}

.timeline .widget-footer .meta li .numb {
  vertical-align: middle
}

.meta-fancybox {
    display: inline-block;
    margin-right: 0.5rem;
    position: absolute;
    top: -105px;
    right: 10px;
    z-index: 1;
    padding: 15px 20px;
    font-size: 24px;
    background-color: rgb(223 242 253 / 70%);
    color: #00497b;
    font-weight: 700;
    border-radius: 5px;
}

.meta-fancybox a {
    font-size: 1.8rem;
    color: #00497b;
}

@media screen and (max-width:768px) {
  .timeline.timeline {
    width: 100%;
    max-width: 100%
  }

  .timeline.timeline .timeline-item {
    padding-left: 72px;
    padding-right: 0
  }

  .timeline.timeline .timeline-item.timeline-item-right,
  .timeline.timeline .timeline-item:nth-of-type(even):not(.timeline-item-left) {
    padding-left: 72px;
    padding-right: 0
  }

  .timeline.timeline .timeline-item .timeline-event {
    width: 100%
  }

  .timeline.timeline:before {
    left: 42px;
    width: 0;
    margin-left: -1px
  }

  .timeline.timeline .timeline-item {
    width: 100%;
    margin-bottom: 20px
  }

  .timeline.timeline .timeline-item:nth-of-type(even) {
    margin-top: 0
  }

  .timeline.timeline .timeline-item>.timeline-event {
    float: right !important
  }

  .timeline.timeline .timeline-item>.timeline-event:before,
  .timeline.timeline .timeline-item>.timeline-event:after {
    right: auto !important;
    border-left-width: 0 !important
  }

  .timeline.timeline .timeline-item>.timeline-event:before {
    left: -15px !important;
    border-right-width: 15px !important
  }

  .timeline.timeline .timeline-item>.timeline-event:after {
    left: -14px !important;
    border-right-width: 14px !important
  }

  .timeline.timeline .timeline-item>.timeline-point {
    transform: translateX(-50%);
    left: 42px !important;
    margin-left: 0
  }

  .timeline.timeline .timeline-label {
    transform: translateX(-50%);
    margin: 0 0 20px 42px
  }

  .timeline.timeline .timeline-label+.timeline-item+.timeline-item {
    margin-top: 0
  }

  .timeline .time-right {
    left: 0
  }
}

.rounded-widget .widget {
  border-radius: 4px
}

.rounded-widget .widget-image {
  border-radius: 4px
}

.rounded-widget .widget-header {
  border-radius: 4px 4px 0 0
}

.rounded-widget .widget-footer {
  border-radius: 0 0 4px 4px
}

.widget {
  background: #fff;
  border-radius: 0;
  border: none;
  margin-bottom: 30px
}

.widget-image {
  background: #fff;
  border-radius: 0;
  border: none;
  margin-bottom: 30px;
  position: relative
}

.widget-header {
  background: #fff;
  padding: .85rem 1.4rem;
  position: relative;
  width: 100%
}

.widget-header.bordered {
  border-bottom: .07rem solid #eee
}

.widget-header.no-actions {
  padding: 1.49rem
}

.widget-options .dropdown-toggle {
  color: #98a8b4;
  background: none;
  border: none;
  padding: 0;
  font-size: 1.7rem;
}

.widget-header h1,
.widget-header h2,
.widget-header h3,
.widget-header h4,
.widget-header h5,
.widget-header h6 {
  color: #2c304d;
  margin-bottom: 0
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  color: #2c304d;
  font-weight: 600;
  margin-bottom: 0
}

.widget-header h2 {
  color: #2c304d;
  font-size: 1.2rem;
  display: table-cell;
  vertical-align: middle;
  margin-right: auto
}

.widget-header h2 i {
  color: #aea9c3;
  font-size: 1.8rem;
  padding-right: .5rem;
  vertical-align: middle
}

.widget-body {
  padding: 1.4rem
}

.widget-image-footer {
  background: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.2rem 0;
  z-index: 1
}

.widget-footer {
  background: #fff;
  padding: 1rem 1.07rem;
  position: relative
}

.widget-footer.big {
  padding: 2.1rem 1.07rem
}

.no-border {
  border: 0 none !important;
}

.no-bg {
  background: none !important;
}

.card {
  border: 1px solid rgba(0, 0, 0, 0);
}

.form-control {
  border: 1px solid #40a3d5;
  border-radius: 5px;
  color: #00497b;
}

.icons {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.25rem;
}

.icon {
  background-color: var(--bs-light);
  border-radius: .25rem;
}

.ri {
  margin: .25rem;
  font-size: 0.8rem;
}

.ri2x {
  font-size: 1.5rem;
}

.ri5x {
  font-size: 3.5rem;
}

.badge-primary {
  background-color: #0078b4;
}

.badge-secondary {
  background-color: #e30613;
}

.badge-success {
  background-color: #AAAAAA;
}

.badge-info {
  background-color: #14BC6B;
}

.badge {
  padding: .4em .4em;
  font-size: 100%;
}

#top-bar {
  min-height: 35px;
  padding-top: 5px;
  padding-bottom: 5px;
  background: #e30613;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.5s;
  position: fixed;
  top: 85px;
  right: 0;
  left: 0;
  z-index: 1;
}

#top-bar a {
  color: #fff;
  s;
}

#top-bar.top-bar-scrolled {
  top: -35px;
  transition: all 0.5s;
}

@media screen and (max-width: 992px) {
  #top-bar {
    top: 55px;
  }
}

.modal {
  z-index: 9999;
}

.badge {
  border-radius: 5rem;
}

.inlet-wrapp {
  padding: 5px 15px;
  background: #f6fbfd;
  margin-bottom: 5px;
}

.inlet-wrapp .btn {
  margin-top: 0;
  float: right;
}

.profile-inlet-wrapp {
  padding: 15px 15px;
  background: #f6fbfd;
  margin-bottom: 5px;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .lead {
    font-size: 1rem;
  }
}

.input-group-addon {
  position: absolute;
  right: 5px;
  top: 5px
}

.input-group-addon .ri {
  font-size: 1.2rem;
}

.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after, .input-group:not(.has-validation)>.custom-select:not(:last-child), .input-group:not(.has-validation)>.form-control:not(:last-child) {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.mb-10, .my-10 {
  margin-bottom: 6rem !important;
}

.filter-box {
  padding: 15px 0;
  background-color: #f6fbfe !important;
  margin-top: 45px;
  border: 1px solid #ccd7e1;
  text-align: center
}

.forum {
  padding: 15px;
  background-color: #f6fbfe !important;
  margin-bottom: 25px;
  border-radius: 5px;
}

.forum-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
}

.forum-header .text-muted {
  font-size: 1.8rem;
}

.forum-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
  text-align: left;
}

.forum-body-add {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  text-align: left;
}

.forum .username {
  color: #0078b4;
  font-size: 1.2rem;
}

.table>thead>tr>td.active, .table>tbody>tr>td.active, .table>tfoot>tr>td.active, .table>thead>tr>th.active, .table>tbody>tr>th.active, .table>tfoot>tr>th.active, .table>thead>tr.sold>td, .table>tbody>tr.active>td, .table>tfoot>tr.active>td, .table>thead>tr.active>th, .table>tbody>tr.active>th, .table>tfoot>tr.active>th {
  background-color: #bce4fa;
}

a:not([href]):not([class]) {
  cursor: pointer;
  color: #0078b4;
}

@media screen and (min-width: 769px) {
  .timeline-hp {
    position: relative;
    height: 220px;
    width: 100%;
    background: url(../img/timeline.svg) 0px 30px;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .timeline-hp-new {
    position: relative;
    height: 220px;
    width: 100%;
    background: url(../img/timeline-new.svg) 0px 30px;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .progress-bar {
    top: 60px;
    position: absolute;
    left: 0px;
    height: 10px;
    width: 100%;
    background: #e30613;

  }

  .progress-bar-new {
    top: 55px;
    position: absolute;
    left: 0px;
    height: 35px;
    width: 100%;
    background: url(../img/timeline-hover.svg) left center;
    background-size: auto;
    background-repeat: no-repeat;
  }

  .progress-pin {
    top: 0px;
    position: absolute;
    height: 70px;
    width: 100px;
    background: url(../img//map/pin-gps.gif) bottom center;
    background-size: auto;
    background-repeat: no-repeat;
    position: relative;
    margin-left: -50px;
    z-index: 1
  }

  .progress-pin span {
    color: #e30613;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .timeline-hp-mobile {
    display: none
  }
  .timeline-hp-new-mobile {
    display: none
  }
}

@media screen and (max-width: 768px) {
  .timeline-hp-mobile {
    position: relative;
    height: 800px;
    width: 100%;
    background: url(../img/timeline-mobile.svg) center center;
    background-size: auto 800px;
    position: relative;
    background-repeat: no-repeat;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .timeline-hp-new-mobile {
    position: relative;
    height: 800px;
    width: 100%;
    background: url(../img/timeline-mobile-new.svg) center center;
    background-size: auto 800px;
    position: relative;
    background-repeat: no-repeat;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .progress-bar-mobile {
    top: 0px;
    position: absolute;
    left: 63%;
    width: 10px;
    background: #e30613;
  }

  .progress-pin-mobile {
    left: 47%;
    position: absolute;
    height: 70px;
    width: 150px;
    background: url(../img//map/pin-gps.gif) bottom left;
    background-size: auto;
    background-repeat: no-repeat;
    position: relative;
    margin-left: 40px;
    padding-left: 0px;
    padding-top: 35px;
    z-index: 1;
    transform: translate(0, -40px);
  }

  .progress-pin-mobile span {
    color: #e30613;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .timeline-hp {
    display: none
  }

  .timeline-hp-new {
    display: none
  }
}

.timeline-work {
  position: relative;
  height: 450px;
  width: 100%;
  background: url(../img/timeline-work.svg) 0px 30px;
  background-size: 100%;
  position: relative;
  background-repeat: no-repeat;
  margin-top: 10px;
  margin-bottom: 50px;
  padding-top: 18%;
  padding-left: 15%;
  padding-right: 15%;
}

.timeline-work-content {
  position: relative;
  max-width: 100%;
}

.progress-bar-work {
  height: 10px;
  background: rgb(217, 0, 13);
  background: linear-gradient(-90deg, rgba(217, 0, 13, 1) 0%, rgba(64, 163, 213, 1) 100%);
}

.progress-bar-work.run {
  top: 20px;
  position: absolute;
  left: 0px;
}

.progress-bar-work.run:before {
  width: 40px;
  height: 50px;
  content: " ";
  background-image: url(../img/ico-run.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: -50px;
  bottom: 0px;
}

.progress-bar-work.bike {
  top: 65px;
  position: absolute;
  left: 0px;
}

.progress-bar-work.bike:before {
  width: 60px;
  height: 62px;
  content: " ";
  background-image: url(../img/ico-bike.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: -65px;
  bottom: 0px;
}

.progress-bar-work.bus {
  top: 65px;
  position: absolute;
  left: 0px;
}

.progress-bar-work.bus:before {
  width: 120px;
  height: 35px;
  content: " ";
  background-image: url(../img/ico-bus.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: -125px;
  bottom: 0px;
}

.progress-bar-work.car {
  top: 105px;
  position: absolute;
  left: 0px;
}

.progress-bar-work.car:before {
  width: 80px;
  height: 50px;
  content: " ";
  background-image: url(../img/ico-car.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: -85px;
  bottom: 0px;
}

.progress-bar-work.ho {
  top: 65px;
  position: absolute;
  left: 0px;
}

.progress-bar-work.ho:before {
  width: 80px;
  height: 50px;
  content: " ";
  background-image: url(../img/ico-ho.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: -85px;
  bottom: 0px;
}

.timeline-work-num-start {
  top: 150px;
  position: absolute;
  left: 0px;
}

.timeline-work-num-end {
  top: 150px;
  position: absolute;
  right: 0px;
}

.timeline-work-num-center {
  top: 150px;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

.timeline-work-num-center span {
  color: #e30613;
  font-size: 1.25rem !important;
}

@media screen and (max-width: 768px) {
  .timeline-work {
    position: relative;
    height: 200px;
    width: 100%;
    background: url(../img/timeline-work.svg) 0px 30px;
    background-size: 100%;
    position: relative;
    background-repeat: no-repeat;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-top: 50px;
    padding-left: 15%;
    padding-right: 15px;
  }

  .progress-bar-work {
    height: 5px;
    background: rgb(217, 0, 13);
    background: linear-gradient(-90deg, rgba(217, 0, 13, 1) 0%, rgba(64, 163, 213, 1) 100%);
  }

  .progress-bar-work.run {
    top: 15px;
    position: absolute;
    left: 0px;
  }

  .progress-bar-work.run:before {
    width: 20px;
    height: 30px;
    content: " ";
    background-image: url(../img/ico-run.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    right: -25px;
    bottom: 0px;
  }

  .progress-bar-work.bike {
    top: 40px;
    position: absolute;
    left: 0px;
  }

  .progress-bar-work.bike:before {
    width: 30px;
    height: 32px;
    content: " ";
    background-image: url(../img/ico-bike.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    right: -35px;
    bottom: 0px;
  }

  .progress-bar-work.bus {
    top: 65px;
    position: absolute;
    left: 0px;
  }

  .progress-bar-work.bus:before {
    width: 60px;
    height: 18px;
    content: " ";
    background-image: url(../img/ico-bus.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    right: -65px;
    bottom: 0px;
  }

  .progress-bar-work.car {
    top: 65px;
    position: absolute;
    left: 0px;
  }

  .progress-bar-work.car:before {
    width: 35px;
    height: 22px;
    content: " ";
    background-image: url(../img/ico-car.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    right: -40px;
    bottom: 0px;
  }

  .progress-bar-work.ho {
    top: 65px;
    position: absolute;
    left: 0px;
  }

  .progress-bar-work.ho:before {
    width: 60px;
    height: 18px;
    content: " ";
    background-image: url(../img/ico-ho.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    right: -65px;
    bottom: 0px;
  }

  .timeline-work-num-start {
    top: 110px;
    position: absolute;
    left: 0px;
  }

  .timeline-work-num-end {
    top: 110px;
    position: absolute;
    right: 0px;
  }

  .timeline-work-num-center {
    top: 110px;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
  }
}

.filter {
    padding: 30px;
    background-color: #f6fbfe !important;
    border-radius: 0.25rem;
}

.detail.left img {
  display: block;
  margin: auto;
  max-width: 100%;
  max-height: 2085px
}

.detail .apparment-detail-over {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  text-align: center
}

.s-domy {
  background-color: #fff;
  position: relative;
  padding: 0
}

.s-domy-section-profile {
  position: relative
}

.detail.left {
  max-width: 2560px;
  margin-left: auto;
  margin-right: auto
}

.detail {
  position: relative;
  margin-top: 0
}

.detail.left img {
  display: block;
  margin: auto;
  max-width: 100%
}

.detail .apparment-detail-over {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  text-align: center
}

#map {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

#info-map {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
  box-shadow: 0 2px 8px rgb(0 0 0 / 30%);
  padding: 0
}

#info-map div {
  padding: 5px 25px
}

.tooltip-text {
  padding: 5px 0;
  font-size: 14px !important;
  font-weight: 600
}

.tooltip-title {
  padding: 15px 25px !important;
  font-size: 48px !important;
  font-weight: 500;
    color: #00497b;
  line-height: 1;
  margin-top: 10px;
  background-color: #fff
}

#info-box div:after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  z-index: 999;
  margin-left: -10px;
  border-top: 10px solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent
}

.building-title {
  margin: 130px auto 0;
  position: absolute;
  z-index: 9;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  max-width: 400px;
  top: 110px;
  line-height: 1.1;
  text-shadow: 0 0 4px rgb(152 182 207 / 50%);
  color: #fff;
  font-size: 66px
}

@media (max-width:1200px) {
  .building-title {
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    position: absolute;
    z-index: 9;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 0 4px rgb(152 182 207 / 50%);
    color: #fff;
    font-size: 36px
  }
}

.s-dum {
  background-color: #fff;
  position: relative;
  padding: 60px;
  z-index: 1;
  padding-top: 150px
}

.s-dum .floor-list a {
  background-image: none;
  border-bottom: 1px solid #ff6d78;
  color: #000;
  font-size: 14px;
  display: block;
  padding: 5px 0;
  text-transform: uppercase;
  text-decoration: none
}


.floor-list li {
  display: block
}

.floor-list a.active, .floor-list a:focus, .floor-list a:hover {
  color: #f58221;
  background-image: none
}

#map {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

#map-big {
  min-height: 700px
}

@media (max-width:1199px) {
  .s-byty {
    display: none
  }
}

.flats-heading {
  position: relative;
  display: flex;
  width: 100%;
  height: 260px;
  align-items: center;
  justify-content: center
}

@media (min-width:992px) {
  .flats-heading {
    height: 400px
  }
}

.flats-heading-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-duration: 1s;
  transition-property: opacity;
  opacity: 0;
  background-position: 50%;
  background-size: cover;
  will-change: opacity
}
