@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap);
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/*
Edited YUI CSS Reset

Copyright (c) 2011, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.com/yui/license.html, version: 2.9.0
*/
html {
  color: #000;
  background: #FFF;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, select, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, button, caption, cite, code, dfn, em, input, optgroup, option, select, strong, textarea, th, var {
  font: inherit;
}

del, ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000;
}

a {
  color: inherit;
  text-decoration: none;
}

header, footer, section, nav {
  display: block;
}

body, html {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  background-color: #ebebeb;
}
@media screen and (max-width: 760px) {
  body, html {
    overflow-x: hidden;
  }
}

.mid-page {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 760px) {
  .mid-page {
    padding: 0 10px;
  }
}

.main-heading {
  height: 40px;
  box-sizing: border-box;
  background-color: #ffffff;
}
.main-heading .mid-page {
  display: flex;
  justify-content: space-between;
}
.main-heading .mid-page > div {
  display: flex;
}
.main-heading .mid-page > div .main-logo {
  margin-right: 17px;
  margin-top: 2px;
}
.main-heading .mid-page > div .main-logo a img {
  background-size: contain;
  background-repeat: no-repeat;
  width: 110px;
  height: 37px;
}
.main-heading .mid-page > div ul {
  display: flex;
  padding-top: 8px;
}
.main-heading .mid-page > div ul li {
  box-sizing: border-box;
}
.main-heading .mid-page > div ul li a img {
  height: 24px;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}
.main-heading .mid-page .info-contact-lang {
  text-align: center;
}
.main-heading .mid-page .info-contact-lang div {
  box-sizing: border-box;
  padding-top: 12px;
}
.main-heading .mid-page .info-contact-lang div > a {
  margin-right: 17px;
  font-size: 16px;
  color: #555555;
}
@media screen and (max-width: 760px) {
  .main-heading .mid-page .info-contact-lang > div {
    display: none;
  }
}
.main-heading .mid-page .info-contact-lang ul {
  margin: 0;
  padding: 0;
}
.main-heading .mid-page .info-contact-lang ul li > a {
  width: 30px;
  height: 36px;
  font-size: 14px;
  font-weight: bold;
  color: #27235e;
  display: block;
  text-transform: uppercase;
  box-sizing: border-box;
  text-align: center;
  padding-top: 14px;
  overflow: hidden;
}
.main-heading .mid-page .info-contact-lang ul .selected {
  width: 30px;
  height: 36px;
  background-color: #fdb94a;
}

/*new section second*/
.heading-cont {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#27235e+0,007fc4+100&0.9+0,0.9+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(39, 35, 94, 0.9) 0%, rgba(0, 127, 196, 0.9) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e627235e", endColorstr="#e6007fc4",GradientType=1 );
  /* IE6-9 */
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 2;
  height: 80px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.heading-cont .mid-page {
  display: flex;
  /*justify-content: space-between;*/
  box-sizing: border-box;
  align-items: center;
  padding-top: 25px;
}
.heading-cont .mid-page > div {
  font-size: 30px;
  color: #ffffff;
  /*width: 50%;*/
}
.heading-cont .mid-page > div a span:first-child {
  transform: skewY(-1deg);
  margin-right: 9px;
}
.heading-cont .mid-page > div a span:nth-of-type(2n+2) {
  color: #ffec5a;
}
.heading-cont .mid-page > div a span:nth-of-type(3n+3) {
  color: #fdb94a;
  font-size: 24px;
}
@media screen and (max-width: 760px) {
  .heading-cont .mid-page > div {
    font-size: 24px;
  }
  .heading-cont .mid-page > div a span:nth-of-type(3n+3) {
    font-size: 20px;
  }
}
.heading-cont .mid-page nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 990px) {
  .heading-cont .mid-page nav {
    display: none;
  }
}
.heading-cont .mid-page nav > ul {
  width: 100%;
  display: flex;
}
.heading-cont .mid-page nav > ul > li {
  margin-left: 20px;
  position: relative;
}
.heading-cont .mid-page nav > ul > li a {
  text-transform: uppercase;
  color: #ffffff;
  font-weight: bold;
}
.heading-cont .mid-page nav > ul > li > ul {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  top: 100%;
  left: 0;
  background: #27235e;
  padding: 10px 5px;
  width: 220px;
  font-size: 16px;
  line-height: 30px;
}
.heading-cont .mid-page nav > ul > li > ul > li > a {
  font-size: 14px;
}
.heading-cont .mid-page nav > ul > li > ul > li {
  transition: 0.3s;
  background: transparent;
  padding: 0 5px;
}
.heading-cont .mid-page nav > ul > li > ul > li:hover {
  background: black;
}
.heading-cont .mid-page nav > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 990px) {
  .heading-cont .mid-page nav > ul > li:hover > ul {
    display: none;
  }
}

.video-section {
  margin-top: -80px;
  height: calc(100vh - 40px);
  position: relative;
}
.video-section .video-bg {
  height: 100%;
  position: relative;
}
.video-section .video-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.2;
}
.video-section .video-bg video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-section .scroll-down {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 15px);
  color: white;
  width: 24px;
  height: 30px;
}
.video-section .scroll-down span {
  display: block;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  background: url("../img/scdn.svg") no-repeat 50% 50%/contain;
  position: absolute;
  left: 0;
}
.video-section .scroll-down span:nth-of-type(1) {
  top: 0;
  -webkit-animation: 2s linear 0s infinite normal both running scrollDown;
          animation: 2s linear 0s infinite normal both running scrollDown;
}
.video-section .scroll-down span:nth-of-type(2) {
  top: 10px;
  -webkit-animation: 2s linear 0.66666s infinite normal both running scrollDown;
          animation: 2s linear 0.66666s infinite normal both running scrollDown;
}
.video-section .scroll-down span:nth-of-type(3) {
  top: 20px;
  -webkit-animation: 2s linear 1.33333s infinite normal both running scrollDown;
          animation: 2s linear 1.33333s infinite normal both running scrollDown;
}
@-webkit-keyframes scrollDown {
  from {
    top: -10px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    top: 20px;
    opacity: 0;
  }
}
@keyframes scrollDown {
  from {
    top: -10px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    top: 20px;
    opacity: 0;
  }
}

/*fourth section*/
.intro-cont {
  margin-bottom: 75px;
  margin-top: 58px;
}
.intro-cont .mid-page h1 {
  color: #27235e;
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 760px) {
  .intro-cont .mid-page h1 {
    font-size: 32px;
  }
}
.intro-cont .mid-page ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 760px) {
  .intro-cont .mid-page ul {
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px);
  }
}
.intro-cont .mid-page ul li {
  width: 33.33%;
  height: 270px;
  position: relative;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 990px) {
  .intro-cont .mid-page ul li {
    width: 50%;
  }
}
@media screen and (max-width: 760px) {
  .intro-cont .mid-page ul li {
    width: 100% !important;
  }
}
.intro-cont .mid-page ul li > a {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /*background-color: #000000;*/
  opacity: 0.2;
  z-index: 1;
}
.intro-cont .mid-page ul li img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: 50% 50%;
  transition: 0.6s;
}
.intro-cont .mid-page ul li .shadow-box {
  min-height: 134px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding-left: 24px;
  padding-bottom: 20px;
  padding-right: 20px;
}
.intro-cont .mid-page ul li .shadow-box h2 {
  font-size: 36px;
  color: #ffffff;
  position: relative;
}
.intro-cont .mid-page ul li .shadow-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  opacity: 0.4;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+46 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 46%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
}
.intro-cont .mid-page ul li .shadow-box p {
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  position: relative;
  margin-top: 8px;
  height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.intro-cont .mid-page ul li .shadow-box a {
  font-size: 16px;
  color: #fdb94a;
  position: relative;
  margin-top: 0px;
  width: 100%;
  text-align: right;
  font-weight: bold;
  transition: 0.3s;
}
.intro-cont .mid-page ul li:hover img {
  transform: scale(1.1);
}
.intro-cont .mid-page ul li:hover .shadow-box p {
  height: 80px;
}
.intro-cont .mid-page ul li:hover .shadow-box a {
  margin-top: 12px;
}
.intro-cont .mid-page ul li:nth-of-type(1), .intro-cont .mid-page ul li:nth-of-type(2), .intro-cont .mid-page ul li:nth-of-type(9), .intro-cont .mid-page ul li:nth-of-type(10) {
  width: 50%;
  height: 320px;
}
@media screen and (max-width: 760px) {
  .intro-cont .mid-page ul li:nth-of-type(1), .intro-cont .mid-page ul li:nth-of-type(2), .intro-cont .mid-page ul li:nth-of-type(9), .intro-cont .mid-page ul li:nth-of-type(10) {
    height: 270px;
  }
}

/*news-cont*/
@media screen and (max-width: 990px) {
  .intro-cont.news-cont .mid-page ul {
    justify-content: center;
  }
}
.intro-cont.news-cont .mid-page ul li {
  width: 30%;
  height: 360px;
  margin-left: 60px;
  margin-left: 5%;
}
@media screen and (max-width: 990px) {
  .intro-cont.news-cont .mid-page ul li {
    width: 45%;
    margin-bottom: 15px;
  }
  .intro-cont.news-cont .mid-page ul li:nth-of-type(2n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 760px) {
  .intro-cont.news-cont .mid-page ul li {
    margin-left: 0;
    margin-bottom: 0;
  }
}
.intro-cont.news-cont .mid-page ul li .shadow-box h2 {
  font-size: 24px;
}
.intro-cont.news-cont .mid-page ul li .shadow-box p {
  font-size: 12px;
}
.intro-cont.news-cont .mid-page ul li .shadow-box a {
  font-size: 14px;
}
.intro-cont.news-cont .mid-page ul li:first-of-type {
  margin: 0;
}

.intro-cont.blog-cont {
  margin-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .intro-cont.blog-cont .mid-page ul {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.intro-cont.blog-cont .mid-page ul li {
  width: 24.1%;
  margin-right: 1.2%;
  height: 390px;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media screen and (min-width: 991px) {
  .intro-cont.blog-cont .mid-page ul li {
    margin-bottom: 15px;
  }
  .intro-cont.blog-cont .mid-page ul li:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 990px) {
  .intro-cont.blog-cont .mid-page ul li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 15px;
  }
  .intro-cont.blog-cont .mid-page ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 760px) {
  .intro-cont.blog-cont .mid-page ul li {
    width: 100%;
    margin-right: 0;
  }
}
.intro-cont.blog-cont .mid-page ul li .text-cont {
  background-color: #ffffff;
  box-sizing: border-box;
  padding-left: 19px;
  padding-right: 19px;
  padding-top: 16px;
  padding-bottom: 12px;
  width: 100%;
  min-height: 200px;
}
.intro-cont.blog-cont .mid-page ul li .text-cont h2 {
  font-size: 20px;
  color: #27235e;
  line-height: 26px;
  letter-spacing: -1px;
  position: relative;
  margin-bottom: 20px;
}
.intro-cont.blog-cont .mid-page ul li .text-cont h2::before {
  content: "";
  position: absolute;
  width: 118px;
  height: 2px;
  background-color: #fdb94a;
  bottom: -10px;
  left: -19px;
}
.intro-cont.blog-cont .mid-page ul li .text-cont p {
  font-size: 14px;
  color: #555555;
  line-height: 19px;
}
.intro-cont.blog-cont .mid-page ul li .link-date {
  height: 32px;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px 0 27px;
  position: relative;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1c3d7a+0,27245e+100 */
  background: #1c3d7a;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #1c3d7a 0%, #27245e 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1c3d7a", endColorstr="#27245e",GradientType=1 );
  /* IE6-9 */
}
.intro-cont.blog-cont .mid-page ul li .link-date p {
  color: #ffffff;
}
.intro-cont.blog-cont .mid-page ul li .link-date a {
  color: #fdb94a;
  font-weight: bold;
  font-size: 14px;
}
.intro-cont.blog-cont .mid-page ul li .link-date::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 13px;
  background-color: #f3b24e;
  transform: skewX(-16deg);
  left: 17px;
}
.intro-cont.blog-cont .mid-page ul li .link-date::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 13px;
  background-color: #f3b24e;
  transform: skewX(-16deg);
  left: 20px;
}
.intro-cont.blog-cont .mid-page ul li:last-of-type {
  margin-right: 0;
}

.img-shadow-box {
  height: 160px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 0;
  overflow: hidden;
}
.img-shadow-box::before {
  content: "";
  position: absolute;
  width: 100%;
  min-height: 130px;
  left: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+46 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 46%, black 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
}
.img-shadow-box img {
  width: 100%;
  height: 100%;
  position: absolute;
}

.footer {
  min-height: 365px;
  border-top: 5px solid #86c03f;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#27235e+0,1c3d7a+100 */
  background: #27235e;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #27235e 0%, #1c3d7a 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#27235e", endColorstr="#1c3d7a",GradientType=1 );
  /* IE6-9 */
  color: #ffffff;
  font-size: 14px;
}
.footer > .mid-page {
  display: flex;
}
@media screen and (max-width: 760px) {
  .footer > .mid-page {
    flex-direction: column;
  }
}
.footer > .mid-page .footer-info-cont {
  /*width: 50%;*/
  box-sizing: border-box;
  padding-top: 15px;
}
.footer > .mid-page .footer-info-cont .footer-logo {
  background-image: url("../img/footer-logo.png");
  width: 177px;
  height: 50px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 17px;
}
.footer > .mid-page .footer-info-cont div {
  display: flex;
}
.footer > .mid-page .footer-info-cont div .separated {
  min-width: 355px;
  display: flex;
  flex-wrap: wrap;
  margin-right: 37px;
  line-height: 24px;
}
@media screen and (max-width: 760px) {
  .footer > .mid-page .footer-info-cont div .separated {
    font-size: 13px;
    line-height: 20px;
  }
}
.footer > .mid-page .footer-info-cont div .separated .separated-list {
  display: flex;
  margin-top: 18px;
}
.footer > .mid-page .footer-info-cont div .separated .separated-list ul:first-of-type {
  min-width: 145px;
  text-align: right;
  margin: 0 11px 33px 0;
}
@media screen and (max-width: 990px) {
  .footer > .mid-page .footer-info-cont > div {
    flex-direction: column;
  }
}
.footer > .mid-page .weather-widg {
  /*width: 50%;*/
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  padding-top: 52px;
}
@media screen and (max-width: 760px) {
  .footer > .mid-page .weather-widg {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer > .mid-page .weather-widg a img {
  border: 3px solid #000000;
  max-width: 100%;
  box-sizing: border-box;
}
.footer .footer-lower-section {
  height: 40px;
  border-top: 2px solid #1fb3ed;
  box-sizing: border-box;
  padding-top: 10px;
}
@media screen and (max-width: 990px) {
  .footer .footer-lower-section {
    margin-top: 20px;
  }
}
@media screen and (max-width: 760px) {
  .footer .footer-lower-section {
    height: auto;
    font-size: 13px;
    padding-bottom: 8px;
  }
}
.footer .footer-lower-section .mid-page {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .footer .footer-lower-section .mid-page {
    flex-direction: column;
  }
}
@media screen and (max-width: 760px) {
  .footer .footer-lower-section .mid-page a {
    margin-left: auto;
  }
}
.footer .footer-lower-section .mid-page a span {
  color: #1fb3ed;
}

/*list page*/
.intro-cont.list-page {
  margin-bottom: 100px;
}
.intro-cont.list-page .mid-page > h1 {
  text-align: left;
  font-size: 30px;
  margin-bottom: 37px;
  margin-top: 65px;
}
.intro-cont.list-page .mid-page ul li {
  width: 25%;
}
@media screen and (max-width: 990px) {
  .intro-cont.list-page .mid-page ul li {
    width: 50%;
  }
}
.intro-cont.list-page .mid-page ul li a {
  font-size: 12px;
}
.intro-cont.list-page .mid-page ul li:nth-of-type(1), .intro-cont.list-page .mid-page ul li:nth-of-type(2) {
  height: 270px;
}

.link-site {
  margin-top: 28px;
  margin-bottom: 40px;
}
.link-site .mid-page .page-links-status {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 760px) {
  .link-site .mid-page .page-links-status {
    flex-direction: column;
  }
}
.link-site .mid-page .page-links-status ul {
  display: flex;
  color: #555555;
  align-items: center;
  flex-wrap: wrap;
}
.link-site .mid-page .page-links-status ul li {
  margin-right: 9px;
  color: #007fc4;
  position: relative;
  /*padding-right: 14px;*/
}
.link-site .mid-page .page-links-status ul li a {
  font-size: 16px;
}
.link-site .mid-page .page-links-status ul li span {
  color: #888;
  pointer-events: none;
}
@media screen and (max-width: 760px) {
  .link-site .mid-page .page-links-status ul li {
    margin-bottom: 8px;
  }
}
.link-site .mid-page .page-links-status ul li:last-of-type {
  color: #555555;
}
.link-site .mid-page .page-links-status .breadcrumbs > li::after {
  width: 1px;
  height: 16px;
  background-color: #555555;
  transform: skewX(-16deg);
  display: inline-block;
  content: "";
  margin-left: 10px;
  vertical-align: middle;
}
.link-site .mid-page .page-links-status .breadcrumbs > li:last-of-type::after {
  display: none;
}
@media screen and (max-width: 760px) {
  .link-site .mid-page .page-links-status ul + ul {
    margin-left: auto;
  }
}
.link-site .mid-page .page-links-status ul + ul li {
  color: #555555;
}
.link-site .mid-page .page-links-status ul + ul li a img {
  width: 24px;
  height: 24px;
  margin-top: 5px;
}

.restourant-section .mid-page h1 {
  font-size: 48px;
  color: #27235e;
  text-align: center;
  margin-bottom: 73px;
}
@media screen and (max-width: 760px) {
  .restourant-section .mid-page h1 {
    font-size: 32px;
  }
}
.restourant-section .mid-page ul {
  display: flex;
  flex-wrap: wrap;
}
.restourant-section .mid-page ul li {
  width: 50%;
  display: flex;
  margin-bottom: 44px;
  align-items: center;
}
@media screen and (max-width: 760px) {
  .restourant-section .mid-page ul li {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 990px) {
  .restourant-section .mid-page ul li {
    width: 100%;
  }
}
.restourant-section .mid-page ul li > .img-shadow-box {
  width: 300px;
}
.restourant-section .mid-page ul li > .img-shadow-box img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  margin: 0;
  position: relative;
}
.restourant-section .mid-page ul li > .img-shadow-box img.blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(10px);
}
@media screen and (max-width: 760px) {
  .restourant-section .mid-page ul li > .img-shadow-box {
    width: 100%;
    margin-bottom: 20px;
  }
}
.restourant-section .mid-page ul li div:last-of-type {
  box-sizing: border-box;
  padding-left: 20px;
  color: #555555;
  font-size: 14px;
  line-height: 21px;
}
@media screen and (max-width: 760px) {
  .restourant-section .mid-page ul li div:last-of-type {
    padding-left: 12px;
  }
}
.restourant-section .mid-page ul li div:last-of-type h4 {
  font-size: 24px;
  line-height: 29px;
  color: #27235e;
  margin-bottom: 15px;
  width: 100%;
  /*ili opcija width ili u html da stavim <br>*/
}
.restourant-section .mid-page ul li div:last-of-type a:last-of-type {
  color: #007fc4;
}

/*restourant-section single-page*/
.intro-picture + .restourant-section.single-page {
  /*padding-top: 30px;*/
}

.restourant-section.single-page > .mid-page .single-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.restourant-section.single-page > .mid-page .single-title.document-spec {
  margin-bottom: 43px;
}
.restourant-section.single-page > .mid-page .single-title h1 {
  margin-bottom: 24px;
}
@media screen and (max-width: 760px) {
  .restourant-section.single-page > .mid-page .single-title h1 {
    margin-bottom: 24px;
  }
}
.restourant-section.single-page > .mid-page .single-title p {
  color: #555555;
  font-size: 22px;
  text-align: center;
  width: 65%;
  line-height: 30px;
  position: relative;
}
@media screen and (max-width: 990px) {
  .restourant-section.single-page > .mid-page .single-title p {
    width: 90%;
  }
}
@media screen and (max-width: 760px) {
  .restourant-section.single-page > .mid-page .single-title p {
    font-size: 18px;
    line-height: 26px;
    width: 100%;
  }
}
.restourant-section.single-page > .mid-page .single-title p::before {
  content: "";
  width: 250px;
  height: 3px;
  background-color: #fdb94a;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 125px);
}

.intro-picture {
  /*margin-top: -40px;*/
}
.intro-picture .mid-page > div {
  /*min-height: 675px;*/
  position: relative;
  overflow: hidden;
}
.intro-picture .mid-page > div img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  position: relative;
}
.intro-picture .mid-page > div img.blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  filter: blur(10px);
  -o-object-fit: cover;
     object-fit: cover;
}
.intro-picture .mid-page ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 760px) {
  .intro-picture .mid-page ul {
    /*overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;*/
  }
}
.intro-picture .mid-page ul li {
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  width: calc(33% - 20px);
  margin-bottom: 20px;
}
@media screen and (max-width: 760px) {
  .intro-picture .mid-page ul li {
    width: 60vw;
    flex-shrink: 0;
  }
}
.intro-picture .mid-page ul li img {
  width: 100%;
  height: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro-picture .mid-page ul li a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.intro-picture .mid-page ul li:last-of-type {
  /*margin: 0;*/
}

.single-page img {
  display: block;
  margin: 10px auto;
  max-width: 75%;
}

.single-content {
  padding: 30px 262px 50px 22px;
  color: #555555;
  box-sizing: border-box;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ebebeb+0,ffffff+100 */
  background: #ebebeb;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ebebeb 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ebebeb", endColorstr="#ffffff",GradientType=1 );
  /* IE6-9 */
  margin-top: -4px;
  margin-bottom: 31px;
}
@media screen and (max-width: 990px) {
  .single-content {
    padding-right: 30px;
  }
}
@media screen and (max-width: 760px) {
  .single-content {
    padding: 30px 15px;
  }
}
.single-content p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 29px;
}
.single-content p span {
  font-weight: bold;
}
.single-content b, .single-content strong {
  font-weight: bold;
}
.single-content i, .single-content em {
  font-style: italic;
}
.single-content a {
  color: #007fc4;
  text-decoration: underline;
}

.single-content + .single-content {
  margin-top: -31px;
  padding-top: 0;
}

/*document */
.single-title.document-spec h1 {
  margin-bottom: 43px;
  position: relative;
}
.single-title.document-spec h1::before {
  content: "";
  width: 250px;
  height: 3px;
  background-color: #fdb94a;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 125px);
}

/*documents*/
.documents {
  color: #007fc4;
}
.documents .single-content {
  padding-right: 120px;
}
@media screen and (max-width: 760px) {
  .documents .single-content {
    padding-right: 20px;
  }
}
.documents ul.folders {
  display: flex;
  flex-wrap: wrap;
  color: #007fc4;
}
@media screen and (max-width: 760px) {
  .documents ul.folders {
    margin-bottom: 15px;
  }
}
.documents ul.folders > li {
  position: relative;
  box-sizing: border-box;
  width: 25%;
  height: 60px;
  padding: 0px 10px 0px 80px;
  display: flex;
  align-items: center;
  line-height: 24px;
}
@media screen and (max-width: 990px) {
  .documents ul.folders > li {
    width: 50%;
  }
}
@media screen and (max-width: 760px) {
  .documents ul.folders > li {
    width: 100%;
  }
}
.documents ul.folders > li::before {
  content: "";
  position: absolute;
  background-image: url("../img/folder.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 40px;
  height: 36px;
  left: 20px;
  top: 12px;
}
.documents ul.folders > li:hover {
  background: white;
}
.documents ul.folders ul.files {
  display: none;
}
.documents ul.files {
  color: #007fc4;
}
.documents ul.files > li {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 10px 8px 80px;
  line-height: 24px;
  margin-bottom: 12px;
}
.documents ul.files > li::before {
  content: "";
  position: absolute;
  background-image: url("../img/pdf-file.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 40px;
  height: 36px;
  left: 20px;
  top: 6px;
}
.documents ul.files > li:hover {
  background: white;
}
.intro-interact {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-interact .intro-inner {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  box-sizing: border-box;
  height: 500px;
  position: relative;
  color: white;
  display: flex;
}
.intro-interact .intro-inner > ul {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 760px) {
  .intro-interact .intro-inner > ul.intro-details {
    width: 100%;
  }
}
.intro-interact .intro-inner > ul.intro-details > li {
  position: absolute;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.8s;
  padding-top: 116px;
}
@media screen and (max-width: 760px) {
  .intro-interact .intro-inner > ul.intro-details > li {
    padding-top: 164px;
  }
}
.intro-interact .intro-inner > ul.intro-details > li h2 {
  font-size: 60px;
  font-weight: 300;
  line-height: 70px;
  height: 140px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
@media screen and (max-width: 760px) {
  .intro-interact .intro-inner > ul.intro-details > li h2 {
    font-size: 36px;
    line-height: 45px;
    height: 90px;
  }
}
.intro-interact .intro-inner > ul.intro-details > li p {
  font-size: 18px;
  line-height: 24px;
  max-width: 535px;
  overflow: hidden;
  max-height: 96px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
@media screen and (max-width: 760px) {
  .intro-interact .intro-inner > ul.intro-details > li p {
    font-size: 16px;
  }
}
.intro-interact .intro-inner > ul.intro-details.act-1 li:nth-of-type(1) {
  visibility: visible;
  opacity: 1;
}
.intro-interact .intro-inner > ul.intro-details.act-2 li:nth-of-type(2) {
  visibility: visible;
  opacity: 1;
}
.intro-interact .intro-inner > ul.intro-details.act-3 li:nth-of-type(3) {
  visibility: visible;
  opacity: 1;
}
.intro-interact .intro-inner > ul.intro-details.act-4 li:nth-of-type(4) {
  visibility: visible;
  opacity: 1;
}
.intro-interact .intro-inner > ul.intro-details.act-5 li:nth-of-type(5) {
  visibility: visible;
  opacity: 1;
}
.intro-interact .intro-inner > ul.intro-details.act-6 li:nth-of-type(6) {
  visibility: visible;
  opacity: 1;
}
.intro-interact .intro-inner > ul.intro-details.act-7 li:nth-of-type(7) {
  visibility: visible;
  opacity: 1;
}
.intro-interact .intro-inner > ul.intro-details.act-8 li:nth-of-type(8) {
  visibility: visible;
  opacity: 1;
}
.intro-interact .intro-inner > ul.intro-details.act-9 li:nth-of-type(9) {
  visibility: visible;
  opacity: 1;
}
.intro-interact .intro-inner > ul.intro-details.act-10 li:nth-of-type(10) {
  visibility: visible;
  opacity: 1;
}
.intro-interact .intro-line {
  height: 2px;
  width: 100%;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}
.intro-interact .intro-line::before, .intro-interact .intro-line::after {
  position: absolute;
  top: 0;
  width: 45%;
  height: 2px;
  content: "";
}
@media screen and (max-width: 760px) {
  .intro-interact .intro-line::before, .intro-interact .intro-line::after {
    width: 100%;
  }
}
.intro-interact .intro-line::before {
  left: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f8e558+0,f8e558+100&1+0,0+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #f8e558 0%, rgba(248, 229, 88, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f8e558", endColorstr="#00f8e558",GradientType=1 );
  /* IE6-9 */
}
.intro-interact .intro-line::after {
  right: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f8e558+0,f8e558+100&0+0,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(248, 229, 88, 0) 0%, #f8e558 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00f8e558", endColorstr="#f8e558",GradientType=1 );
  /* IE6-9 */
}
@media screen and (max-width: 760px) {
  .intro-interact .intro-line::after {
    display: none;
  }
}
.intro-interact ul.intro-list {
  text-align: right;
  transition: 0.4s;
}
.intro-interact ul.intro-list > li {
  font-size: 18px;
  font-weight: bold;
  opacity: 0.8;
  line-height: 30px;
  transition: 0.4s;
}
.intro-interact ul.intro-list.act-1 li:nth-of-type(1) {
  font-size: 30px;
  opacity: 1;
  line-height: 36px;
}
.intro-interact ul.intro-list.act-2 li:nth-of-type(2) {
  font-size: 30px;
  opacity: 1;
  line-height: 36px;
}
.intro-interact ul.intro-list.act-3 li:nth-of-type(3) {
  font-size: 30px;
  opacity: 1;
  line-height: 36px;
}
.intro-interact ul.intro-list.act-4 li:nth-of-type(4) {
  font-size: 30px;
  opacity: 1;
  line-height: 36px;
}
.intro-interact ul.intro-list.act-5 li:nth-of-type(5) {
  font-size: 30px;
  opacity: 1;
  line-height: 36px;
}
.intro-interact ul.intro-list.act-6 li:nth-of-type(6) {
  font-size: 30px;
  opacity: 1;
  line-height: 36px;
}
.intro-interact ul.intro-list.act-7 li:nth-of-type(7) {
  font-size: 30px;
  opacity: 1;
  line-height: 36px;
}
.intro-interact ul.intro-list.act-8 li:nth-of-type(8) {
  font-size: 30px;
  opacity: 1;
  line-height: 36px;
}
.intro-interact ul.intro-list.act-9 li:nth-of-type(9) {
  font-size: 30px;
  opacity: 1;
  line-height: 36px;
}
.intro-interact ul.intro-list.act-10 li:nth-of-type(10) {
  font-size: 30px;
  opacity: 1;
  line-height: 36px;
}
.intro-interact ul.intro-list.act-1 {
  margin-top: 218px;
}
.intro-interact ul.intro-list.act-2 {
  margin-top: 187px;
}
.intro-interact ul.intro-list.act-3 {
  margin-top: 158px;
}
.intro-interact ul.intro-list.act-4 {
  margin-top: 128px;
}
.intro-interact ul.intro-list.act-5 {
  margin-top: 99px;
}
.intro-interact ul.intro-list.act-6 {
  margin-top: 69px;
}
.intro-interact ul.intro-list.act-7 {
  margin-top: 38px;
}
.intro-interact ul.intro-list.act-8 {
  margin-top: 8px;
}
.intro-interact ul.intro-list.act-9 {
  margin-top: -22px;
}
.intro-interact ul.intro-list.act-10 {
  margin-top: -52px;
}
@media screen and (max-width: 760px) {
  .intro-interact ul.intro-list {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    margin-top: 0 !important;
    display: flex;
    justify-content: center;
  }
  .intro-interact ul.intro-list > li {
    overflow: hidden;
    width: 8px;
    height: 8px;
    background: white;
    text-indent: -10000px;
    margin: 0 5px;
    opacity: 0.5;
    border-radius: 4px;
  }
}
.intro-interact .genbtn {
  display: inline-block;
  margin-top: 12px;
  height: 36px;
  line-height: 36px;
  padding: 0 20px;
  background: #fdb94a;
  font-weight: bold;
  border-radius: 18px;
  border-radius: 4px;
  transition: 0.3s;
}
.intro-interact .genbtn:hover {
  background: black;
}

.mobile-nav {
  margin-left: auto;
  display: none;
}
@media screen and (max-width: 990px) {
  .mobile-nav {
    display: block;
  }
}
.mobile-nav .mob-handle {
  width: 32px;
  height: 24px;
  display: block;
  position: relative;
}
.mobile-nav .mob-handle span {
  position: absolute;
  left: 0px;
  right: 0px;
  height: 2px;
  top: calc(50% - 1px);
  background: white;
  transition: 0.3s;
}
.mobile-nav .mob-handle span::before, .mobile-nav .mob-handle span::after {
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  height: 2px;
  background: white;
  transition: 0.3s;
  transform-origin: 50% 50%;
}
.mobile-nav .mob-handle span::before {
  top: -6px;
}
.mobile-nav .mob-handle span::after {
  top: 6px;
}
.mobile-nav.open .mob-handle span {
  background: transparent;
}
.mobile-nav.open .mob-handle span::before {
  top: 0;
  transform: rotate(45deg);
}
.mobile-nav.open .mob-handle span::after {
  top: 0;
  transform: rotate(-45deg);
}
.mobile-nav > div {
  visibility: hidden;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  background: white;
  top: 80px;
  color: #27235e !important;
}
.mobile-nav > div ul {
  padding: 20px;
  font-size: 20px;
  text-align: center;
}
.mobile-nav > div ul li {
  margin-bottom: 12px;
}
.mobile-nav > div .mob-add {
  font-size: 14px;
  color: #555555;
  text-align: right;
  padding: 0 20px 20px;
}
.mobile-nav.open > div {
  visibility: visible;
}

.mid-page h2 {
  font-size: 24px;
  color: #27235e;
  position: relative;
}

.contact-info {
  margin: 40px 0;
}
.contact-info .intro-img > img {
  display: block;
  width: 100%;
}
.contact-info .ci-part {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 262px 50px 22px;
  color: #111;
  box-sizing: border-box;
  background: #ebebeb;
  background: linear-gradient(to right, #ebebeb 0%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ebebeb", endColorstr="#ffffff",GradientType=1 );
  line-height: 25px;
}
.contact-info .ci-part h2 {
  width: 100%;
  margin-bottom: 22px;
}
.contact-info .ci-part h2:before {
  content: "";
  width: 150px;
  height: 2px;
  background-color: #fdb94a;
  position: absolute;
  bottom: -8px;
  left: 0;
}
.contact-info .ci-part .info {
  margin-right: 40px;
}
.contact-info .ci-part .ext-info span {
  display: inline-block;
  width: 180px;
  margin-right: 10px;
  text-align: right;
}
.contact-info .ci-part .ext-info a {
  color: #007fc4;
}
.contact-form {
  max-width: 600px;
  width: 100%;
}
.contact-form .cf-row {
  display: flex;
  margin-bottom: 12px;
}
.contact-form .cf-row label {
  display: block;
  width: 120px;
  margin-right: 10px;
}
.contact-form .cf-row input, .contact-form .cf-row textarea {
  background: white;
  outline: none;
  -webkit-appearance: none;
  border: 0;
  border-bottom: 2px solid #fdb94a;
  border-bottom: 2px solid #ccc;
  display: block;
  width: calc(100% - 130px);
  box-sizing: border-box;
  height: 36px;
  padding: 0 12px;
}
.contact-form .cf-row input:focus, .contact-form .cf-row textarea:focus {
  border-bottom: 2px solid #fdb94a;
}
.contact-form .cf-row textarea {
  height: 140px;
  padding: 5px 12px;
}
.contact-form .cf-row button {
  display: block;
  margin-left: auto;
  background: #1c3d7a;
  color: white;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
  height: 36px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0 10px;
}
.contact-form .cf-row button:hover {
  background: #27235e;
}

.temp-info {
  max-width: 250px;
  margin-right: auto;
  margin-left: 20px;
  display: flex;
  align-items: center;
  height: 40px;
}
.temp-info em {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 20px;
  box-sizing: border-box;
  text-align: center;
  flex-shrink: 0;
  /*background: #1b75bc;*/
  color: #1b75bc;
  border-radius: 4px;
  margin-right: 8px;
  border: 2px solid #1b75bc;
  position: relative;
}
.temp-info em::before {
  content: "";
  width: 3px;
  height: 3px;
  top: -2px;
  right: -2px;
  position: absolute;
  background: white;
}
.temp-info em::after {
  content: "";
  width: 2px;
  height: 2px;
  top: -2px;
  right: -2px;
  position: absolute;
  background: #1b75bc;
}
.temp-info span {
  color: #666;
  line-height: 16px;
  font-size: 12px;
}
@media screen and (max-width: 760px) {
  .temp-info {
    position: relative;
    margin-left: 8px;
  }
  .temp-info span {
    position: absolute;
    left: calc(50% - 75px);
    top: calc(100% - 2px);
    width: 150px;
    z-index: 10;
    background: #27235e;
    color: white;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 5px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }
  .temp-info span::before {
    position: absolute;
    content: "";
    top: -4px;
    left: calc(50% - 7px);
    border-bottom: 4px solid #27235e;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
  }
  .temp-info:hover span {
    visibility: visible;
    opacity: 1;
  }
}

.stats-section {
  margin: 30px 0;
}
.stats-section .stats {
  display: flex;
  background: white;
  padding: 20px 0;
  border-top: 5px solid #86c03f;
  border-bottom: 5px solid #03a6e9;
  margin-bottom: 100px;
}
.stats-section .stats > li {
  width: 33.333%;
  text-align: center;
}
.stats-section .stats > li p {
  position: relative;
  margin-top: 20px;
  font-size: 36px;
  color: #fdb94a;
  font-weight: 300;
  color: #006838;
  color: #03a6e9;
  color: #1b75bc;
  line-height: 40px;
}
.stats-section .stats > li p::before {
  height: 2px;
  width: 50px;
  left: calc(50% - 25px);
  top: -10px;
  position: absolute;
  content: "";
  background: #fdb94a;
}
@media screen and (max-width: 767px) {
  .stats-section .stats {
    flex-direction: column;
  }
  .stats-section .stats > li {
    width: 100%;
    padding: 0 0 15px;
  }
  .stats-section .stats > li p {
    height: 40px;
  }
}

.partners-section {
  margin: 40px 0;
}
.partners-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.partners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.partners > li {
  width: 250px;
  background: white;
  margin-right: 4px;
  margin-left: 4px;
  margin-bottom: 8px;
}
.partners > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners > li > a span {
  display: block;
  width: 100%;
  text-align: center;
  padding: 6px 10px;
  background: #1c3d7a;
  color: white;
  box-sizing: border-box;
  font-size: 14px;
}
.partners > li img {
  max-width: 80%;
  width: 100%;
  height: 120px;
  margin: 0 auto 15px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.hbmore {
  display: flex;
  justify-content: right;
  margin-bottom: 12px;
}
.hbmore a {
  display: block;
  color: #1b75bc;
  line-height: 20px;
}
.hbmore a::after {
  content: ">";
  display: inline-block;
  height: 20px;
  padding: 0 4px;
  margin-left: 8px;
  font-size: 14px;
  font-weight: bold;
  background: #fdb94a;
  color: #27235e;
  border-radius: 3px;
}

.pricelist {
  max-width: 800px;
  background: #f8f8f8;
}
.pricelist tr:nth-of-type(2n) {
  background: #ebebeb;
}
.pricelist tr:hover {
  background: #d8d8d8;
}
.pricelist th, .pricelist td {
  padding: 4px 8px;
}

/*# sourceMappingURL=app.css.map*/