
/** {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #323c41;
}*/

.blog-card {
  /*width: 350px;*/
  /*height: 500px;*/
  position: relative;

  overflow: hidden;
  border-radius: 10px;
  /*box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);*/
  text-align: center;
}
/*.blog-card.spring-fever {*/
/*  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/1765/bg-blog-card.jpg) no-repeat;*/
/*}*/
.blog-card .color-overlay {
  /* Rectangle 11: */
  /*background: rgba(84, 104, 110, 0.4);*/
  width: 350px;
  height: 500px;
  /*position: absolute;*/
  /*z-index: 10;*/
  /*top: 0;*/
  /*left: 0;*/
  transition: background 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
}
.blog-card .gradient-overlay {
  /* bg-gradient: */
  /*background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 21%);*/
  /*background-image: -moz-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 21%);*/
  /*background-image: -o-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 21%);*/
  /*background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 21%);*/
  width: 350px;
  height: 500px;
  position: absolute;
  top: 350px;
  left: 0;
  z-index: 15;
}
.blog-card:hover .card-info {
  opacity: 1;
  bottom: 120px;
}
.blog-card:hover .color-overlay {
  background: rgba(84, 104, 110, 0.5);
}

.title-content {
  text-align: center;
  margin: 70px 0 0 0;
  position: absolute;
  z-index: 20;
  width: 100%;
  top: 0;
  left: 0;
}

.blog-card-header {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #9CC9E3;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0;
}

hr {
  width: 50px;
  height: 3px;
  margin: 20px auto;
  border: 0;
  background: #D0BB57;
}

.intro {
  width: 170px;
  margin: 0 auto;
  color: #DCE3E7;
  font-family: 'Montserrat', serif;
  font-size: 13px;
  font-style: italic;
  line-height: 18px;
}

.card-info {
  width: 100%;
  position: absolute;
  bottom: 100px;
  left: 0;
  margin: 0 auto;
  padding: 0 50px;
  color: #DCE3E7;
  font-family: 'Montserrat', serif;
  font-style: 16px;
  line-height: 24px;
  z-index: 20;
  opacity: 0;
  transition: bottom 0.3s, opacity 0.3s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.utility-info {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 20;
}

.utility-list {
  list-style-type: none;
  margin: 0 0 30px 20px;
  padding: 0;
  width: 100%;
}
.utility-list li {
  margin: 0 5px 0 0;
  font-size: 24px;
  padding: 0 0 0 22px;
  display: inline-block;
  color: white;
  font-family: 'Montserrat', sans-serif;
}
/*.utility-list li.comments {*/
/*  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/1765/icon-chat.svg) no-repeat 0 0.1em;*/
/*}*/
/*.utility-list li.date {*/
/*  background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/1765/icon-calendar.svg) no-repeat 0 0.1em;*/
/*}*/



.carousel-wrap {
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}

.owl-stage-outer {
    width: 100%;
}

/* end fix */
.owl-nav > div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #364069;
}

.owl-nav i {
    font-size: 52px;
    opacity: 0.9;
}

.owl-nav .owl-prev {
    left: -20px;
}

.owl-nav .owl-next {
    right: -20px;
}


#drop-zone {
  width: 100%;
  min-height: 150px;
  border: 1px dashed rgba(0, 0, 0, .3);
  border-radius: 10px;
  text-align: center;
  position: relative;
  font-size: 20px;
  color: #7E7E7E;
}
#drop-zone input {
  position: absolute;
  cursor: pointer;
  left: 0px;
  top: 0px;
  opacity: 0;
}

#drop-zone.mouse-over {
  border: 3px dashed rgba(0, 0, 0, .3);
  color: #7E7E7E;
}

#clickHere {
  display: inline-block;
  cursor: pointer;
  color: white;
  font-size: 14px;

  width: auto;
  border-radius: 10px;
  background-color: #fed136;
  padding: 10px;
  padding-left: 40px;
  padding-right: 40px;
}
#clickHere:hover {
  background-color: #fed136;
}
#filename {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5em;
}
.file-preview {
  background: #ccc;
  border: 5px solid #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  display: inline-block;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
}


.simditor {
  /*border: 1px solid black;*/
  padding-left: 5px;
}


.bounce {
  display: inline-block;
  position: relative;
  -moz-animation: bounce 1.5s infinite linear;
  -o-animation: bounce 1.5s infinite linear;
  -webkit-animation: bounce 1.5s infinite linear;
  animation: bounce 1.5s infinite linear;
  colr:000;
}
.fa-arrow-down{
  color: white;
  font-size: 30px;
  margin: 40px;
}
@-webkit-keyframes bounce {
  0% { top: 0; }
  50% { top: -0.2em; }
  70% { top: -0.3em; }
  100% { top: 0; }
}
@-moz-keyframes bounce {
  0% { top: 0; }
  50% { top: -0.2em; }
  70% { top: -0.3em; }
  100% { top: 0; }
}
@-o-keyframes bounce {
  0% { top: 0; }
  50% { top: -0.2em; }
  70% { top: -0.3em; }
  100% { top: 0; }
}
@-ms-keyframes bounce {
  0% { top: 0; }
  50% { top: -0.2em; }
  70% { top: -0.3em; }
  100% { top: 0; }
}
@keyframes bounce {
  0% { top: 0; }
  50% { top: -0.2em; }
  70% { top: -0.3em; }
  100% { top: 0; }
}


/*#mainNav {*/
/*  background-color: #364069;*/
/*}*/

/*.list-inline-item {*/
/*  color: #364069;*/
/*}*/

/*.navbar-toggler-icon {*/
/*  color: white;*/
/*}*/

/*.navbar-toggler span {*/
/*  color: white;*/
/*}*/


/*.navbar-toggler-icon span {*/
/*  color: white;*/
/*}*/

.navbar-light .navbar-toggler {
  color: rgba(255, 255, 0, .5);
}

.arrowLink.focus , .arrowLink.hover, .arrowLink.active {
  border: 0px;
}


#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 9999;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  background: #364069;
  color: white;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
  opacity: 0;
}
#back-to-top:hover {
  background: #364069;
}
#back-to-top.show {
  opacity: 1;
}
#content {
  height: 2000px;
}



h2{
  text-align:center;
  padding: 20px;
}
/* Slider */

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus
{
  outline: none;
}
.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}
.slick-track:after
{
  clear: both;
}
.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide
{
  float: right;
}
.slick-slide img
{
  display: block;
}
.slick-slide.slick-loading img
{
  display: none;
}
.slick-slide.dragging img
{
  pointer-events: none;
}
.slick-initialized .slick-slide
{
  display: block;
}
.slick-loading .slick-slide
{
  visibility: hidden;
}
.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}


.grey_img {
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
}

/* Disable grayscale on hover */
.grey_img:hover {
  -webkit-filter: grayscale(0);
  filter: none;
}

.synclab_white_link {
  color: white;
  opacity: 0.8;
}

.synclab_white_link:active, .synclab_white_link:focus, .synclab_white_link:hover {
  color: white;
  opacity: 1;
}



.bg-img {
  position: relative;
  /*width: 100%;*/
  /*height: 100%;*/
  /*background: url("http://unsplash.it/1200x800") center center no-repeat;*/
  /*background-size: cover;*/
}
.bg-img:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #002f4b, #00aeef);
  opacity: .5;
}

.banner {
  background-size: cover;
  display: table;
  width: 100%;
}

.banner:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0px;
  left: 0;
  background-image: linear-gradient(to bottom right, #0097a7, #0097a7);
  opacity: .5;
}


.hero {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  margin: 0 auto;
}

.btn-primary:hover {
  background: #0097a7;

}

.bg-gradient-msoprejshpise
{
  background: linear-gradient(87deg, #0097a7 0, #008191 100%) !important;
}

::selection {
  background: #0097a7; /* WebKit/Blink Browsers */
  color: white;
}
::-moz-selection {
  background: #0097a7; /* Gecko Browsers */
  color: white;
}

.msoprejshpise-link {
  color: #0097a7;
}

.msoprejshpise-link:focus, .msoprejshpise-link:hover, .msoprejshpise-link:active {
  color: #0097a7;
}




/*.nav-pills .nav-link:hover {*/
/*  color: #0097a7;*/
/*}*/