/*

*/
/*************************
*******Typography******
**************************/
body {
  padding-top: 100px;
  background: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #231f20;
  line-height: 26px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #272727;
}

a {
  color: #ed1c24;
  -webkit-transition: color 400ms, background-color 400ms;
  -o-transition: color 400ms, background-color 400ms;
  transition: color 400ms, background-color 400ms;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #000000;
}

hr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #fff;
}

.gradiant {
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
}

.gradiant-horizontal {
  background-image: -ms-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
}

.section-header {
  margin-bottom: 50px;
}

.section-header .section-title {
  font-size: 24px;
  color: #231f20;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
  margin: 0 0 20px;
}

@media screen and (min-width: 768px) {
  .section-header .section-title {
    font-size: 34px;
  }
}

@media screen and (max-width: 640px) {
  .section-header {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  footer .mobile-my-3 {
    margin: 15px 0;
  }
}

.section-header .section-title:before {
  content: "";
  position: absolute;
  width: 140px;
  bottom: 0;
  left: 50%;
  margin-left: -70px;
  height: 1px;
  background: #ebebeb;
}

.section-header .section-title:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: -11px;
  left: 50%;
  margin-left: -12px;
  border: 5px solid #fff;
  border-radius: 20px;
  background: #ed1c24;
}

.btn {
  border-width: 0;
  border-bottom-width: 3px;
  border-radius: 3px;
}

.btn.btn-primary {
  background: #ed1c24;
  border-color: #231f20;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #231f20;
  border-color: #ed1c24;
}

.column-title {
  margin-top: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  position: relative;
}

.column-title:after {
  content: " ";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40%;
  border-bottom: 1px solid #45aed6;
}

ul.nostyle {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

ul.nostyle i {
  color: #45aed6;
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
    top: 80%;
  }
  100% {
    opacity: 1;
    top: 100%;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    top: 80%;
  }
  100% {
    opacity: 1;
    top: 100%;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    top: 100%;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    top: 100%;
  }
  100% {
    opacity: 0;
  }
}

/*************************
*******Header******
**************************/
.navbar.navbar-default {
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
}

.navbar.navbar-default .navbar-toggle {
  margin-top: 32px;
}

.navbar.navbar-default .navbar-brand {
  height: auto;
  padding: 22px 15px 21px;
}

/* Dropdown menu */

#main-menu.navbar-default .dropdown-menu {
  display: block;
  position: relative;
  background: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 30px;
  float: none;
}

#main-menu.navbar-default .dropdown-menu a {
  display: block;
  color: #777;
}

#main-menu.navbar-default .dropdown-menu a:hover {
  color: #333;
}

@media screen and (min-width: 768px) {
  #main-menu.navbar-default {
    background: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
  }

  #main-menu.navbar-default .navbar-nav > li > a {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #main-menu.navbar-default .navbar-nav > li.active > a,
  #main-menu.navbar-default .navbar-nav > li.open > a,
  #main-menu.navbar-default .navbar-nav > li:hover > a {
    background: transparent;
    padding-top: 37px;
    border-top: 3px solid #ed1c24;
  }

  /* Dropdown menu */
  #main-menu.navbar-default .dropdown-menu {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    left: 0;
    width: 250px;
    padding-left: 0;
    -webkit-animation: fadeOut 4s;
    animation: fadeOut 4s;
  }

  #main-menu.navbar-default li:hover .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-animation: fade 0.4s;
    animation: fade 0.4s;
    padding-bottom: 5px;
  }

  #main-menu.navbar-default .dropdown-menu a {
    display: block;
    padding: 5px;
  }
}

.navbar-collapse.collapsing {
  -webkit-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}

@media screen and (min-width: 1199px) {
  #main-menu.navbar-default .dropdown-menu {
    padding-left: 10px;
  }
}

@media screen and (max-width: 1199px) {
  .navbar-header {
    float: none;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
  }

  .navbar-collapse.collapse {
    display: none !important;
    max-height: 80vh;
  }

  .navbar-collapse.collapse.in {
    display: block !important;
    margin-top: 0;
  }
}

@media screen and (max-width: 999px) and (min-width: 768px) {
  .navbar-nav li a {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 0;
    padding-right: 0;
    margin: 4px 10px;
  }
}

@media screen and (max-width: 1199px) and (min-width: 1000px) {
  .navbar-nav li a {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 0;
    padding-right: 0;
    margin: 20px;
  }

  #main-menu.navbar-default .dropdown-menu a {
    margin: 0 20px;
  }
}

@media screen and (min-width: 1000px) {
  .navbar-nav .carpet-desktop {
    display: block;
  }
}

@media screen and (max-width: 999px) {
  .navbar-nav .carpet-desktop {
    display: none;
  }
}

#main-slider {
  overflow: hidden;
}

#main-slider .item {
  height: 558px;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

#main-slider .slider-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  text-shadow: 1px 1px #000;
}

#main-slider .slider-inner h2 {
  margin-top: 180px;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  color: #ed1c24;
  text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}

@media screen and (max-width: 767px) {
  #main-slider .slider-inner h2 {
    font-size: 20px;
  }

  #main-slider .carousel-content {
    margin: 0 30px;
  }
}

#main-slider .slider-inner h2 > span {
  color: #fff;
  text-shadow: -1px 0 #ed1c24, 0 1px #ed1c24, 1px 0 #ed1c24, 0 -1px #ed1c24;
}

#main-slider .slider-inner .btn {
  margin-top: 10px;
}

#main-slider .owl-prev,
#main-slider .owl-next {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 30px;
  display: inline-block;
  margin-top: -35px;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 100px;
  z-index: 5;
  -webkit-transition: background-color 400ms;
  -o-transition: background-color 400ms;
  transition: background-color 400ms;
}

#main-slider .owl-prev:hover,
#main-slider .owl-next:hover {
  background-color: #ed1c24;
}

#main-slider .owl-prev {
  left: -35px;
  text-indent: 14px;
}

#main-slider .owl-next {
  right: -35px;
  text-indent: -14px;
}

#bar {
  width: 0%;
  max-width: 100%;
  height: 4px;
  background: #ed1c24;
}

#progressBar {
  margin-top: -4px;
  position: relative;
  z-index: 999;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
}

#cta {
  padding: 50px 0;
  background-color: #eeeeee;
}

#cta h2 {
  margin-top: 0;
}

#cta .btn {
  margin-top: 40px;
}

#cta2 {
  background: #242a33 url(../images/cta2/cta2-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  color: #fff;
  padding-top: 70px;
}

#cta2 .btn {
  margin-top: 10px;
}

#cta2 h2 {
  color: #fff;
  font-size: 44px;
  line-height: 1;
}

#cta2 h2 > span {
  color: #45aed6;
}

#features {
  padding: 100px 0;
}

#features .media.service-box:first-child {
  margin-top: 0;
}

#services {
  padding: 100px 0 75px;
}

#services .container .row > [class^="col-"] {
  padding-bottom: 20px;
}

@media screen and (max-width: 640px) {
  #services {
    padding: 30px 0;
  }
}

.media.service-box {
  margin: 25px 0;
}

.media.service-box .pull-left {
  margin-right: 20px;
}

.media.service-box .pull-left > i {
  font-size: 24px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  width: 64px;
  border-radius: 100%;
  color: #231f20;
  box-shadow: inset 0 0 0 1px #d7d7d7;
  -webkit-box-shadow: inset 0 0 0 1px #d7d7d7;
  -webkit-transition: background-color 400ms, background-color 400ms;
  -o-transition: background-color 400ms, background-color 400ms;
  transition: background-color 400ms, background-color 400ms;
  position: relative;
}

.media.service-box .pull-left > i:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  right: -10px;
  border: 4px solid #fff;
  border-radius: 20px;
  background: #ed1c24;
}

.media.service-box:hover .pull-left > i {
  background-image: -ms-linear-gradient(90deg, #ed1c24 0%, #ed1c24 100%);
  color: #fff;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.8);
}

#gallery {
  padding: 100px 0;
  background: #f5f5f5;
}

#gallery .gallery-filter {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  #gallery .gallery-filter {
    width: 100%;
  }
}

#gallery .gallery-filter > li {
  float: left;
  display: block;
}

#gallery .gallery-filter > li a {
  display: block;
  padding: 7px 15px;
  background: #e5e5e5;
  color: #64686d;
  position: relative;
}

#gallery .gallery-filter > li a:hover,
#gallery .gallery-filter > li a.active {
  background: #ed1c24;
  color: #fff;
  box-shadow: 0 -3px 0 0 #231f20 inset;
  -webkit-box-shadow: 0 -3px 0 0 #231f20 inset;
}

#gallery .gallery-filter > li a.active:after {
  content: " ";
  position: absolute;
  bottom: -17px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: #ed1c24 transparent transparent transparent;
}

#gallery .gallery-filter > li:first-child a {
  border-radius: 4px 0 0 4px;
}

#gallery .gallery-filter > li:last-child a {
  border-radius: 0 4px 4px 0;
}

@media screen and (max-width: 991px) {
  #gallery {
    padding: 40px 0;
  }

  #gallery .gallery-filter > li {
    float: none;
    margin-bottom: 6px;
  }

  #gallery .gallery-item .gallery-item-inner .gallery-info {
    display: none;
  }
}

#gallery .gallery-text {
  width: 100%;
  float: center;
  padding: 15px;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

#gallery .gallery-item {
  width: 33.33%;
  padding: 15px;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 991px) {
  #gallery .gallery-item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  #gallery .gallery-item {
    width: 100%;
  }
}

#gallery .gallery-item .gallery-item-inner {
  position: relative;
}

#gallery .gallery-item .gallery-item-inner .gallery-info {
  opacity: 0;
  -o-transition: opacity 400ms;
  transition: opacity 400ms;
  -webkit-transition: opacity 400ms;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

#gallery .gallery-item .gallery-item-inner .gallery-info h3 {
  font-size: 16px;
  line-height: 1;
  margin: 0;
  color: #fff;
}

#gallery .gallery-item .gallery-item-inner .gallery-info .preview {
  position: absolute;
  top: -18px;
  right: 12px;
  border-radius: 50%;
  background-image: -ms-linear-gradient(90deg, #ed1c24 0%, #ed1c24 100%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 0 2px #fff;
  -webkit-box-shadow: 0 0 0 2px #fff;
  font-size: 20px;
}

#gallery .gallery-item:hover .gallery-info {
  opacity: 1;
}

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

#rent {
  background: #333333 url(../images/rent/bg.jpg) no-repeat 0 0;
  background-size: cover;
  padding: 50px 0;
  color: #fff;
}

#rent h4 {
  color: #fff;
  margin-bottom: 0;
}

#rent h2 {
  color: #fff;
  margin-bottom: 0;
}

#rent small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

#rent .btns {
  margin-top: 10px;
}

#rent a {
  color: #fff;
}

#rent a:hover {
  color: #ed1c24;
}

#about {
  padding: 100px 0;
}

#work-process {
  padding: 100px 0 50px;
  background: #20222e url(../images/work-process/bg.jpg) no-repeat 0 0;
  background-size: cover;
  color: #fff;
}

#work-process h2 {
  color: #fff;
}

#work-process h3 {
  color: #fff;
  margin-bottom: 0;
}

#work-process .icon-circle {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border: 2px solid #45aed6;
  border-radius: 100px;
  position: relative;
}

#work-process .icon-circle > span {
  border-style: solid;
  border-width: 2px;
  border-color: #45aed6;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  width: 24px;
  height: 24px;
  line-height: 20px;
  top: -12px;
  color: #64686d;
}

#work-process h3 {
  margin-bottom: 50px;
}

#meet-team {
  padding-top: 50px;
}

#meet-team .team-member {
  padding: 13px;
  background: #eeeeee;
  border: 2px solid #eeeeee;
  -o-transition: border-color 400ms;
  transition: border-color 400ms;
  -webkit-transition: border-color 400ms;
}

#meet-team .team-member .team-img {
  margin: -15px -15px 0 -15px;
  margin-left: auto;
  margin-right: auto;
}

#meet-team .team-member .team-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 10px;
}

#meet-team .team-member:hover {
  border-color: #ed1c24;
}

#meet-team .team-member:hover .social-icons > li > a {
  background: #ed1c24;
}

#meet-team .social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}

#meet-team .social-icons > li {
  display: inline-block;
}

#meet-team .social-icons > li > a {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background: #222534;
  border-radius: 3px;
}

.divider {
  margin-top: 50px;
  margin-bottom: 50px;
  background-image: -ms-linear-gradient(
    180deg,
    #ffffff 0%,
    #e3e3e3 49%,
    #ffffff 100%
  );
  width: 95%;
  height: 1px;
}

.progress {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #eeeeee;
}

.progress .progress-bar.progress-bar-primary {
  background-image: -ms-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.nav.main-tab {
  background: #eee;
  border-bottom: 3px solid #222534;
  border-radius: 3px 3px 0 0;
}

.nav.main-tab > li > a {
  color: #272727;
}

.nav.main-tab > li.active > a {
  background: #222534;
  color: #45aed6;
}

.nav.main-tab > li:first-child > a {
  border-radius: 3px 0 0 0;
}

.nav.main-tab > li:last-child > a {
  border-radius: 0 3px 0 0;
}

.tab-content {
  border: 1px solid #eee;
  border-top: 0;
  padding: 20px 20px 10px;
  border-radius: 0 0 3px 3px;
}

.panel-default {
  border-color: #eee;
}

.panel-default > .panel-heading {
  background-color: #fff;
  border-color: #eee;
}

.panel-default > .panel-heading .panel-title {
  font-size: 14px;
  font-weight: normal;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #eee;
}

#animated-number {
  padding: 50px 0 10px;
  background: #132125 url(../images/animated-number/bg.jpg) no-repeat 0 0;
  background-size: cover;
  color: #fff;
}

#animated-number h1,
#animated-number h2,
#animated-number h3,
#animated-number h4 {
  color: #fff;
}

#animated-number strong {
  display: block;
  margin-bottom: 30px;
}

.animated-number {
  display: inline-block;
  width: 140px;
  height: 140px;
  font-size: 24px;
  line-height: 140px;
  border: 3px solid #fff;
  border-radius: 100px;
  margin-bottom: 20px;
}

#pricing {
  padding: 100px 0 70px;
}

#pricing ul.pricing {
  list-style: none;
  padding: 0;
  margin: 70px 0 30px;
  border: 1px solid #eee;
  border-radius: 5px 5px 4px 4px;
  padding: 15px;
  text-align: center;
}

#pricing ul.pricing li {
  display: block;
  padding: 10px;
}

#pricing ul.pricing li.plan-header {
  background: #eee;
  border-radius: 4px 4px 0 0;
  margin: -15px -15px 10px;
  padding: 15px 15px 30px;
  border: 0;
}

#pricing ul.pricing li.plan-header .price-duration {
  position: relative;
  margin-top: -63px;
  top: -10px;
  display: inline-block;
  width: 116px;
  height: 116px;
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  color: #fff;
  border-radius: 100px;
  border: 5px solid #f6f6f6;
}

#pricing ul.pricing li.plan-header .price-duration > span {
  display: block;
  line-height: 1;
}

#pricing ul.pricing li.plan-header .price-duration > span.price {
  font-size: 24px;
  font-weight: 700;
  margin-top: 35px;
}

#pricing ul.pricing li.plan-header .price-duration > span.duration {
  margin-top: 5px;
}

#pricing ul.pricing li.plan-header .plan-name {
  margin-top: 10px;
  font-size: 24px;
  color: #272727;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
}

#pricing ul.pricing.featured {
  background: #222534;
  color: #fff;
  border: 0;
}

#pricing ul.pricing.featured li.plan-header {
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
}

#pricing ul.pricing.featured li.plan-header .plan-name {
  color: #fff;
}

#get-in-touch {
  padding: 100px 0 50px;
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  color: #fff;
}

#get-in-touch h1,
#get-in-touch h2 {
  color: #fff;
}

#blog {
  padding: 100px 0;
}

#blog .blog-post {
  border: 1px solid #eee;
  padding: 15px;
}

#blog .blog-post .post-format {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 34px;
  text-align: center;
  color: #fff;
  background: #222534;
  border: 3px solid #fff;
  border-radius: 100px;
}

#blog .blog-post.blog-large .entry-thumbnail {
  margin: -15px -15px 15px;
  position: relative;
}

#blog .blog-post.blog-large .post-format {
  width: 66px;
  height: 66px;
  line-height: 60px;
  position: absolute;
  right: 20px;
  bottom: -33px;
}

#blog .blog-post.blog-large .post-format > i {
  font-size: 20px;
}

#blog .blog-post.blog-large .entry-date {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #45aed6;
}

#blog .blog-post.blog-large .entry-title {
  margin-top: 0;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 15px;
}

#blog .blog-post.blog-large .entry-title a {
  color: #64686d;
}

#blog .blog-post.blog-large .entry-title a:hover {
  color: #45aed6;
}

#blog .blog-post.blog-media {
  margin-bottom: 30px;
}

#blog .blog-post.blog-media .entry-thumbnail {
  margin: -15px 15px -15px -15px;
  position: relative;
}

#blog .blog-post.blog-media .post-format {
  position: absolute;
  top: 20px;
  right: -10px;
}

#blog .blog-post.blog-media .entry-date {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #45aed6;
}

#blog .blog-post.blog-media .entry-title {
  margin-top: 0;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 15px;
}

#blog .blog-post.blog-media .entry-title a {
  color: #64686d;
}

#blog .blog-post.blog-media .entry-title a:hover {
  color: #45aed6;
}

#blog .blog-post .entry-meta {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

#blog .blog-post .entry-meta > span {
  display: inline-block;
  margin-right: 10px;
  color: #999;
}

#blog .blog-post .entry-meta > span > a {
  color: #999;
}

#blog .blog-post .entry-meta > span > a:hover {
  color: #45aed6;
}

#contact {
  position: relative;
  overflow: hidden;
}

#contact .container-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#contact .contact-form {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  margin-top: 50px;
}

#contact .contact-form h3 {
  margin-top: 0;
}

#facebook {
  margin: 30px 0;
}

/***********************
********* Footer ******
************************/
#footer {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
  background: #2e2e2e;
}

#footer a {
  color: #fff;
}

#footer a:hover {
  color: #ed1c24;
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0 -7.5px;
}

#footer ul > li {
  display: inline-block;
  margin: 0 7.5px;
}

#footer .copy {
  font-size: 11px;
}

@media only screen and (min-width: 768px) {
  #footer .social-icons {
    float: right;
  }
}

@media only screen and (max-width: 767px) {
  #footer .copy {
    margin-top: 15px;
  }

  #footer .social-icons {
    margin-top: 15px;
  }
}

.form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  /* prettyPhoto styling for small screens */
  .pp_pic_holder.pp_default {
    width: 100% !important;
    left: 0 !important;
    overflow: hidden;
  }

  div.pp_default .pp_content_container .pp_left {
    padding-left: 0 !important;
  }

  div.pp_default .pp_content_container .pp_right {
    padding-right: 0 !important;
  }

  .pp_content {
    width: 100% !important;
    height: auto !important;
  }

  .pp_fade {
    width: 100% !important;
    height: 100% !important;
  }

  a.pp_expand,
  a.pp_contract,
  .pp_hoverContainer,
  .pp_gallery,
  .pp_top,
  .pp_bottom {
    display: none !important;
  }

  #pp_full_res img {
    width: 100% !important;
    height: auto !important;
  }

  .pp_details {
    width: 100% !important;
    padding: 10px 4% 10px 3%;
    background-color: #fff;
    margin-top: -2px !important;
  }

  a.pp_close {
    right: 10px !important;
    top: 10px !important;
  }
}

.szolgaltatas {
  margin-bottom: 0;
}

.download {
  display: block;
  position: absolute;
  right: 55px;
  bottom: 10px;
  z-index: 9999;
}

@media screen and (max-width: 767px) {
  .download {
    display: none;
  }
}

.diploma {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.diploma > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-desc {
  margin: 0;
  line-height: 18px;
}

#gallery .gallery-item a {
  text-decoration: none;
  color: #231f20;
}

#gallery .gallery-item .panel {
  margin-bottom: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#gallery .gallery-item .panel .panel-heading {
  border: none;
  overflow: hidden;
  padding: 0;
  margin: auto;
}

#gallery .gallery-item .panel .panel-heading {
  padding: 8px 0;
}

#gallery .gallery-item.reverse .panel .panel-heading {
  padding: 0;
}

#gallery .gallery-item.reverse .panel {
  display: block;
}

#gallery .gallery-item .panel .panel-body {
  padding-top: 5px;
}

#gallery .gallery-item .panel .panel-body ul {
  margin-bottom: 0;
  margin-top: 5px;
}

#gallery .gallery-item .panel .panel-body ul li {
  font-size: 13px;
}

#gallery .gallery-item .panel .panel-heading img {
  margin: auto;
  max-height: 300px;
}

@media screen and (max-width: 767px) {
  #gallery .gallery-item .panel .panel-heading img {
    margin: auto;
    max-height: 450px;
  }
}

#gallery .gallery-item figcaption {
  display: none;
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.98 !important;
}

.fancybox-container .fancybox-caption {
  background: transparent;
}

@media screen and (max-width: 767px) {
  .fancybox-container .fancybox-caption {
    background: rgba(1, 1, 1, 0.5);
  }

  .fancybox-caption {
    padding: 15px;
  }
}

.fancybox-container .fancybox-caption h4 {
  color: #ffffff;
}

.fancybox-container .fancybox-caption p .params {
  margin-right: 10px;
  white-space: pre;
}

@media screen and (max-width: 767px) {
  .fancybox-container .fancybox-caption p .params:last-child {
    white-space: normal;
  }
}

#gallery .gallery-item a h4 {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-bottom: 0;
}

#gallery .gallery-item a:hover h4 {
  color: #ed1c24;
}

#gallery .gallery-item a img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#gallery .gallery-item a:hover img {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

#gallery .gallery-item.reverse a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.fancybox-thumbs {
  background: #000000;
}

.fancybox-thumbs__list a:before {
  border: 3px solid #ed1c24;
}

.contact-form-desktop {
  display: block;
}

.contact-form-mobile {
  display: none;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .contact-form-desktop {
    display: none;
  }

  #contact .container-wrapper {
    display: none;
  }

  .contact-form-mobile {
    display: block;
  }
}