@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Montserrat', sans-serif;
  color: #444444;
}

a {
  color: #5C5C5C;
  text-decoration: none;
}

a:hover {
  color: #6aa3d5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Josefin Sans', sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

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

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

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

/*--------------------------------------------------------------
# Whatsapp button
--------------------------------------------------------------*/

.whatsapp {
	position: fixed;
	left: 15px;
	bottom: 15px;
	z-index: 100001;
	background: #25D366;
	border: 2px solid #25D366;
	color: #fff;
	font-size: 32px;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.whatsapp:hover {
	background: #fff;
	border: 2px solid #25D366;
	color: #25D366;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	left: 70px;
	bottom: 15px;
	z-index: 99999;
	background: #5C5C5C;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #629fd3;
  color: #fff;
}

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

.btn-range {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 18px 14px;
  cursor: pointer;
  border-radius: 0;
  transition: 0.5s;
  text-transform: uppercase;
  line-height: 1;
  animation-delay: 0.8s;
  color: #fff;
  background: #5C5C5C;
  border: 2px solid #5C5C5C;
}
.Feedback {
  display: none;
}

.btn-range:hover {
  color: #5C5C5C;
  background: #fff;
  border: 2px solid #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  display: inline-flex;
  height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #5C5C5C;
}
.parent .header {
	background: transparent;
}
.header.sticked {
  background: #5C5C5C;
}

.header .logo img {
  width: 180px;
  filter: brightness(0) invert(1);
}

@media (max-width: 992px) {
  .header {
    border: 0;
  }
}

.header .btn-book {
  font-weight: 600;
  font-size: 14px;
  display: flex;
  cursor: pointer;
  align-items: center;
  padding: 12px;
  transition: 0.5s;
  text-transform: uppercase;
  line-height: 1;
  animation-delay: 0.8s;
  color: #5C5C5C;
  background: #fff;
  border: 2px solid #fff;
}

.header .btn-book:hover {
  color: #fff;
  background: #5C5C5C;
  border: 2px solid #fff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a{
  color: #ababab;
}

.navbar>ul>li>a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	bottom: 3px;
	background-color: #ababab;
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
	visibility: visible;
	width: calc(100% - 40px);
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  color: #193c5a;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #5C5C5C;
}

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

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

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

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

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

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

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

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

  .navbar ul {
    display: none;
  }
}

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

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

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

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

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #5C5C5C;
}

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

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

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

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

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5C5C5C;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #5C5C5C;
  overflow: hidden;
  position: relative;
}

#hero .grid1 {
  position: absolute;
  width: 700px;
  height: 700px;
  bottom: -545px;
  z-index: 1;
  rotate: 45deg;
  opacity: .2;
}
#hero .grid2 {
  position: absolute;
  width: 700px;
  height: 700px;
  top: 140px;
  right: 140px;
  z-index: 1;
  rotate: 45deg;
  opacity: .2;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
	content: "";
	background: #000000ad;
}

#hero .carousel-item img {
	width: 100%;
	max-width: 100%;
	min-height: 100%;
	object-fit: cover;
}
#hero .carousel-caption {
	position: absolute;
	left: 0;
	bottom: 140px;
	width: 100%;
}
#hero .carousel-indicators {
  position: absolute;
  right: auto;
  margin-bottom: 3rem;
  margin-left: 10px;
	display: none;
}

#hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 700;
}
#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 700;
}

#hero p {
  font-size: 22px;
  line-height: 34px;
  animation-delay: 0.4s;
  margin: 0 70px 30px auto;
  color: #fff;
}

#hero .carousel-control-next,
#hero .carousel-control-prev {
	position: absolute;
	top: auto;
	bottom: 90px;
}
#hero .carousel-control-prev {
	left: 180px;
}
#hero .carousel-control-next {
	left: 250px;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #5C5C5C;
}

.btn-get-started {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px;
  margin-right: 5px;
  transition: 0.5s;
  line-height: 1;
  animation-delay: 0.8s;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
}

.btn-get-started:hover {
  color: #5C5C5C;
  background: #fff;
  border: 2px solid #fff;
}

.btn-get-started i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  animation-delay: 0.8s;
  color: #5C5C5C;
  background-color: #fff;
  border-radius: 3px;
  text-align: center;
  margin-right: 10px;
  font-size: 18px;
  width: 25px;
  height: 25px;
}

.btn-get-started:hover i{
  background-color: #5C5C5C;
  color: #fff;
}

.btn-whatsapp {
	font-weight: 600;
	padding: 12px;
	margin-right: 5px;
	color: #fff;
	background: #25D366;
	border: 2px solid #25D366;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 53px;
	width: 53px;
	font-size: 36px;
}

.btn-whatsapp:hover {
  background: #fff;
  border: 2px solid #fff;
}

.btn-get-started:hover i{
  color: #25D366;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
		margin-bottom: 5px;
  }
	#hero p {
    font-size: 22px;
    line-height: 28px;
    animation-delay: 0.4s;
    margin: 0;
    margin-bottom: 20px;
    color: #fff;
	}
	#hero .carousel-caption {
    padding: 10px;
	}
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

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

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

.section-title h1 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    color: #5C5C5C;
    border-radius: 50px;
}
.section-title h2 {
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #5C5C5C;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h2 i:first-child {
  margin-right: 10px;
}
.section-title h2 i:last-child {
  margin-left: 10px;
}

.section-title h3 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #111E21;
}
.section-title h4 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #111E21;
}
.section-title p {
  font-size: 16px;
	line-height: 28px;
  font-weight: 500;
}

.section-title ul {
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 1024px) {
	.section-title {
    padding-bottom: 10px;
	}
	.section-title h3 {
    font-size: 28px;
	}
  .section-title p {
    width: 80%;
  }
}
@media (max-width: 768px) {
	.section-title h3 {
    font-size: 28px;
	}
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #394047;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #b9d4ec;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #5C5C5C;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #5C5C5C;
  border-color: #5C5C5C;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #5C5C5C;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#5C5C5C 50%, rgba(66, 139, 202, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(66, 139, 202, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #5C5C5C;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
	background: #fff;
	padding: 15px;
	height: 100%;
	transition: all .3s ease-in-out;
	position: relative;
	box-shadow: 0 0 35px 1px rgba(0,0,0,.05)!important;
}
/* .services .col-md-6:nth-child(even) {
  margin-top: 60px;
} */

.services .icon-box:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
  transform: scale(1.03);
  transition: all .3s ease-in-out;
}

.services .icon-box img{
  margin-bottom: 15px;
	width: 100%;
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.services .title a {
  color: #343a40;
  transition: 0.3s;
}

.services .icon-box:hover .title a {
  color: #5C5C5C;
}

.services .description {
	font-weight: 500;
	line-height: 28px;
	font-size: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.services .description.no-clamp {
	display: block;
}
.content-section .section-title p {
  width: 100%!important;
}
.services .img-svg {
  width: 200px;
}

/*--------------------------------------------------------------
# Exp-strip
--------------------------------------------------------------*/
.exp-strip {
	padding: 0;
}
.exp-strip .box {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 5px;
	padding: 10px;
	box-shadow: 0 0 10px 1px rgba(0,0,0,0.05)!important;
}
.exp-strip .box img{
	width: 60px;
	margin-right: 10px;
}
.exp-strip .box h4{
	font-size: 20px;
	margin-bottom: 0;
}
/*--------------------------------------------------------------
# What
--------------------------------------------------------------*/
.what {
  background: #5C5C5C;
}

.what .row {
  margin-top: -130px;
}

.what .form-sec {
  height: 100%;
  transition: all .3s ease-in-out;
}

.what .section-title {
  margin-top: 130px;
  margin-bottom: 0;
}
.what .section-title h2,
.what .section-title i,
.what .section-title h3,
.what .section-title p {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(12, 13, 14, 0.8), rgba(12, 13, 14, 0.8)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 50px 0;
}

.cta h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta p {
  color: #fff;
  font-size: 20px;
}

.cta .icon img {
  width: 150px;
  filter: brightness(0) invert(1);
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .card {
  border: 0;
  border-radius: 0px;
	height: 100%;
  transition: all .3s ease-in-out;
}

.blog .card:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.05)!important;
  transform: scale(1.01);
  transition: all .3s ease-in-out;
}

.blog .card img {
    margin-bottom: 15px;
    min-height: 240px;
    width: 100%;
    object-fit: cover;
}

.blog .card img.short {
    min-height: 180px;
}

.blog .card .card-title {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0;
}
.blog .card small {
  border-top: 2px solid #e7e7e7;
  width: 100%;
  display: block;
  padding-top: 10px;
}
/*--------------------------------------------------------------
# Blog-section
--------------------------------------------------------------*/
.blog-section h3 {
  font-size: 45px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #111E21;
}
.blog-section h4 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #111E21;
}
.blog-section h5 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 20px;
}
.blog-section p {
  font-size: 18px;
  font-weight: 500;
}
.blog-section a {
    color: #6aa3d5;
}
.blog-section a:hover {
    color: #598fbe;
}

/*--------------------------------------------------------------
# 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 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

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

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

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(57, 64, 71, 0.6);
  height: 300px;
}

.portfolio .portfolio-wrap .img-fluid {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(57, 64, 71, 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: flex-start;
  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: #6aa3d5;
}

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

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

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.glightbox-clean .gdesc-inner {
  padding: 18px 18px;
}
.glightbox-clean .gslide-title {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# free-quote
--------------------------------------------------------------*/

.free-quote {
  padding: 15px 10px 15px 15px;
  border: none;
  border-top: 15px solid #5C5C5C;
}
.free-quote .form-control {
  border: 2px solid #5C5C5C;
}
.free-quote h3 {
  font-size: 30px;
  letter-spacing: -1px;
  font-weight: 600;
}
.free-quote p {
  font-size: 16px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
	padding: 10px;
	background: #fefefe;
	box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
	text-align: center;
	min-height: 120px;
	display: grid;
	align-content: center;
}

.contact .info i {
  font-size: 48px;
  color: #92bce0;
  margin-bottom: 0;
}

.contact .info h4 {
  padding: 0;
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact .info p {
	font-size: 18px;
	margin-bottom: 0;
}

.contact .card.address:first-child {
    border:none;
  border-bottom: 15px solid #5C5C5C;
}

.btn-send {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 16px;
  transition: 0.5s;
  line-height: 1;
  animation-delay: 0.8s;
  color: #fff;
  background: #198754;
  border: 4px solid #198754;
}
.btn-send:hover {
  color: #198754;
  background: #fff;
  border: 4px solid #198754;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  background-size: cover!important;
  min-height: 450px;
  margin-top: 90px;
  padding: 50px 0 30px;
  display: flex;
  align-items: end;
  color: #fff;
}

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

.breadcrumbs li a{
  color: #b4b4b4;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #b4b4b4;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
}

#footer .logo img {
  width: 250px;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

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

#footer .footer-top .footer-info {
  margin-bottom: 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-content {
  background: #2a2a2a;
  padding: 30px;
}

#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: #fff;
  font-size: 24px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: #C3C4C8;
  font-size: 16px;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #fff;
}

#footer .footer-bottom {
	padding: 15px 0;
	background-color: #2a2a2a;
	z-index: 100000;
	position: relative;
}

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

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

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

/* ral-colour */

.ral-colour ul.colour-charts li {
	display: block;
	float: left;
	margin: 5px;
	padding: 5px;
	width: 15.7%;
	text-align: center;
	transition: all 0.4s;
}
.ral-colour ul.colour-charts li:hover {
	background: #fff;
	border-radius: 40px;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
	transition: all 0.4s;
}
ul.colour-charts {
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
ul.colour-charts li img {
	height: 70px !important;
	width: 100% !important;
	border-radius: 50px;
}
ul.colour-charts li h2 {
	font-size: 16px;
	margin-bottom: 5px;
}
ul.colour-charts li h3 {
	font-size: 14px;
}