/* General styles */

/*
1.HTML
2.Site Elements
3.Navigation & Header
4.Headings
5.Button
6.Home
7.Servcies
8.Branding
8.Web
9.print
9.Contact
10.About
10.404
11.Footer
12.Owl Slider
*/

/*1.HTML*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.space {padding:40px 0 20px 0;}

.top-space {padding-top:20px;}

.bottom-space {padding-bottom:20px;}

.large {padding:80px 200px;}

/*2.Site Elements*/
html {
	background-color: #f5f8fa;
}

body {
	height: 100%;
	font-size: 87.52%;
	line-height: 1.6875;
	font-family: 'Poppins', sans-serif;
	color: #66757f;
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0,0,0,0.1);
}

a {color:#00B1B0;
	text-decoration:none;}

a:hover {opacity:0.5;}

img {
	max-width: 100%;
	height: auto;
	border-width: 0;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
}

hr,
.sep {
	height: 0;
	margin-bottom: 1.5em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
	border-top: 1px solid #e1e8ed;
	line-height: 1;
	text-align: center;
}

hr {
	-moz-box-sizing: content-box;
}

.sep.red {
	border-top: 3px solid #F76D6D;
	width: 30px;
}

.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.row:after,
.row:before {
	display: table;
	content: " ";
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
	clear: both;
}

.clear {
	visibility: hidden;
	display: block;
	width: 0;
	height: 0;
	overflow: hidden;
	clear: both;
}

.italic {
	font-style:italic;
	color: #939393;	
	}

.no {
	text-decoration:none;
	cursor: context-menu;
	color:#333 !important;
	}
	
.line {
	padding:10px 0 10px 0;
	border-bottom:1px solid #ccc;
	width: 60%;
	}
	
.line-mid {
	padding:0px 0 10px 0;
	border-bottom:1px solid #ccc;
	width: 60%;
	}
	
/* Style for the scroll to top button */
#scrollToTopButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    cursor: pointer;
    padding: 10px;
    background-color: #dbac34; 
    color: #fff;
    border: none;
    border-radius: 5px;
}


/*Colours*/

.light {
	background:#f1f3ed;
	}
	
.dark {
	background:#292f33;
	}
	
.light-blue {
	background-color: #f5f8fa;	
	}
	
.light-grey {
	background:#f4f4f4;
	}
	
.grey {
	background: #dedcd0;
	}
	
.white {
	background:#fff;
	}
	
.blue {
	background:#edf9f7;
	}
	
.dark-blue {
	background:#d0f5ef;
	}
	
.text-white {
	color:#fff;
	}
	
.aqua {background-color: #00B1B0;}

/*Grid*/
.container {
  max-width: 100%;
  margin: 0 auto;
}

.row {
	width:100%;
	padding:0 60px 0 60px;
	clear: both;
	}
	
.row::after {
  content: "";
  clear: both;
  display: table;
}
	
[class*="col-"] {
  float: left; 
  padding:30px;
	}
	
 [class*="col-"]:first-child {
  margin-left: 0;
}

[class*="col-"]:last-child {
	margin-right: 0;
	}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}


/*3.Navigation & Header*/

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  background-color: #fff;
}

.logo img {
  height: 90px; 
}

.nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.nav-menu li {
  margin-right: 20px; 
}

.nav-menu a {
  text-decoration: none;
  color: grey;
  font-size:15px;
}

.nav-menu a:hover {
  opacity:0.6;
}

.active {color:#00B1B0 !important;}

.hamburger-menu {
  display: none; 
}

.hamburger-menu .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
}


/*4.Headings*/

strong {font-weight: 600;}

.center {text-align:center;}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p {
	overflow-wrap: break-word;
	word-wrap: break-word;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    
	font-family: 'Poppins', sans-serif;
	color: #292f33;
	margin-bottom:10px;
	text-transform:uppercase;
}


h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	letter-spacing:0.05em;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	font-weight: inherit;
	color: inherit;
}

h1 {
	letter-spacing: 0.01em;
	line-height: 1.2em;
    font-size: 37px;
	font-weight: 900;
}

h1.error {
	font-size: 10em;
	line-height: 1.5em;
}

h2 {
	font-size: 30px;
	letter-spacing: -1px;
	line-height: 1.1em;
}

h3 {
	font-size: 25px;
	letter-spacing: -1px;
	line-height: 1.1em;
}

h4 {
	font-size: 20px;
	line-height: 1.142857142857143em;
}

h5 {
	font-size: 18px;
	line-height: 1.333333333333333em;
}

h6 {
	text-transform: uppercase;
    line-height: 1.3;
    font-size: 16px;
    text-align: left;
    font-style: normal;
}

p,
ol,
ul,
pre,
form {
	margin-bottom: 1.1em;
	font-size: 13px;
	line-height: 1.6em;
	font-weight:300;
	font-family: 'Poppins', sans-serif;
	color: #292f33;
}

ul li {
	margin-left: 1.2em;
}

li {
	padding-left: 1.2em;
}

ol {
	padding-left: 1.2em;
	list-style: decimal outside none;
}

ul li,
ol li {
	margin-left: 1.2em;
}

li ul,
li ol {
	margin: 0;
	padding-left: 0;
}

ul.square {
	list-style-type: square;
}

ul.circle {
  list-style-type:'○';
}


.price-amount {
	font-size:25px;
	font-weight:800;
	margin-top:10px;
	margin-bottom:10px;
	text-align:center;
	color:#00B1B0;
	}
	
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
	
.small {
	font-size:12px;
	font-weight:100px;
	color:#fff;
	padding-right:5px;
	}

/*5.Button*/

button, input[type=submit], input[type=reset], input[type=button], .button {
    display: inline-block;
    padding: 1em 1.2em;
    line-height: normal;
    margin: 0;
    border: 1px solid #292f33;
    font-size: 1em;
    font-weight: inherit;
    vertical-align: middle;
    text-decoration: none;
    background: none;
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    background-color: transparent;
    color: #292f33;
    cursor: pointer;
    outline: 0;
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.button, .button:hover, .button:visited {
    text-decoration: none;
}

button:hover, button:focus, input[type=submit]:hover, input[type=submit]:focus, input[type=reset]:hover, input[type=reset]:focus, input[type=button]:hover, input[type=button]:focus, .button:hover, .button:focus {
    border-color: #ddd;
}

.button-grey {
	display: inline-block;
    padding: 1em 2em;
    line-height: normal;
    margin: 0 0 1.2em;
    border: none;
    font-size: 1em;
    font-weight: inherit;
    vertical-align: middle;
    text-decoration: none;
    background-color: #ccc;
    color: white;
    cursor: pointer;
    outline: 0;
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.long {
	padding: 15px 75px 15px 75px !important;
    font-size: 25px !important;
    font-weight: 600 !important;
	cursor:context-menu !important;
	}

.button-grey:hover {
	background-color:#00B1B0;
	opacity: 0.6;
	} 
	
.button-aqua {
	display: inline-block;
    padding: 1em 2em;
    line-height: normal;
    margin: 0;
    border: none;
    font-size: 1em;
    font-weight: inherit;
    vertical-align: middle;
    text-decoration: none;
    background-color: #00B1B0;
    color: white;
    cursor: pointer;
    outline: 0;
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.aqua-box {
	display: inline-block;
    padding: 1em 2em;
    line-height: normal;
    margin: 0 0 1.2em;
    border: none;
    font-size: 1em;
    font-weight: inherit;
    vertical-align: middle;
    text-decoration: none;
    background-color: #00B1B0;
    color: white;
    cursor: pointer;
    outline: 0;
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.button-aqua:hover {
	opacity: 0.6;
	} 
	
/* Style for the oval button */
  .oval-button {
	width: 180px;
	height: 50px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 50px; 
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	text-decoration:none;
	color:grey;
  }

  .oval-button:hover {
	background-color: #00B1B0;
	color:white;
  }

/*6.Home*/
  
/*parallax image*/

.parallax-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.parallax-image {
  background-image: url(../img/beach.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
}

.parallax-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Adjust the opacity as needed */
}

.parallax-content h1 {
  color: rgba(255,255,255,1);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.03em;
  font-size: 41px;
  font-family: 'Poppins';
  font-weight: 700;
  margin-bottom: 16px;
}

.parallax-content h6 {
  text-transform: uppercase;
  color:white;
  line-height: 1.5;
  letter-spacing: -0.03em;
  font-size: 20px;
  font-weight: 100;
  margin-bottom: 16px;
  text-align:center;
}

.parallax-content p {
  font-size: 18px;
  color:white;
}

.button.custom-color {
  color: #fff; 
  border:solid 1px white;
}

.button.custom-color:hover {
	opacity:0.6;
}


.font-white {
	color:#fff;
	}
	
.button-container {
    display: flex;
    justify-content: space-between; /* Distribute buttons evenly with no spaces */
}

.button-item {
    flex: 1; /* Each button takes an equal amount of space */
    color: white; /* Text color */
    border: none;
    padding: 40px 20px; /* Adjust padding as needed */
    text-align: center;
    font-size: 18px; /* Adjust font size as needed */
	font-weight:100;
}

.button-item:hover {
    opacity:0.5;
    cursor: pointer;
}

.grey {background-color:#92d6e3;}

.blue-grey {background-color:#56c5d0;}

.navy {background-color:#00a3b4;}

	
.color-box {
    background-color: #efe7f4;
    padding: 40px 0 40px 0;
}

	
/*call to action*/

.cta-bar {
      background-color: #444;
      color: #fff;
      padding: 60px;
      display: inline-block;
      text-align: center;
	  width:100%;
    }

    .cta-bar h6 {
      margin: 0;
      margin-right: 10px;
	  font-size:17px;
	  color:white;
	  text-align:center;
    }

    .cta-bar a {
      color: #FF8370;
      text-decoration: none;
      font-weight: 500;
    }
	
/*Color box befind roll images*/
	
.bg {
	padding:40px 0 40px 0;
	background-color:#444;
}

.bg h6 {
    color: white;
    text-align: center;
    padding-top: 40px;
}

/*image rollover*/
.gallery {
  display: flex;
  flex-wrap: wrap;
}

.thumbnail {
    position: relative;
    width: 195px;
    height: auto;
    margin: 5px;
    overflow: hidden;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  background-color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding:15px;
}

.overlay h5 {
  color: black;
  font-size: 15px;
  margin-bottom: 5px;
}


.overlay h5:after {content: '';
    position: absolute;
    left: 15px;
    bottom: 120px;
    width: 30px;
    height: 2px;
    background-color: #F76D6D;
}

.overlay p {
  color: #666;
  font-size: 12px;
  margin-bottom: 10px;
  margin-top:10px;
}

.overlay .arrow {
  font-size: 14px;
  text-decoration: none;
  margin-top:10px;
}

.arrow {
	display: inline-block;
    width: 24px;
    height: 14px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAOCAYAAAA1+Nx+AAAABmJLR0QAAAAAAAD5Q7t/AAAARklEQVR42mNgoBBo6hsfAOLzQCzAQAsAteA/zSwBGQrEF0YtId8SJAFa4PO0tuACLYLoPMxwqsbDqOHEFBUXaJX2D+AzHABNpITiZujn4AAAAABJRU5ErkJggg==) no-repeat;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE0cHgiIHZpZXdCb3g9IjAgMCAyNCAxNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjQgMTQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj48cGF0aCBmaWxsPSIjMjkyZjMzIiBkPSJNMCw3YzAsMC42LDAuNCwxLDEsMWgxOS42bC00LjMsNC4zYy0wLjQsMC40LTAuNCwxLDAsMS40czEsMC40LDEuNCwwbDYtNmMwLjEtMC4xLDAuMi0wLjIsMC4yLTAuM0MyNCw3LjMsMjQsNy4xLDI0LDdjMCwwLDAsMCwwLDBsMCwwYzAtMC4xLDAtMC4zLTAuMS0wLjRjMC0wLjEtMC4xLTAuMi0wLjItMC4zbC02LTZjLTAuNC0wLjQtMS0wLjQtMS40LDBjLTAuNCwwLjQtMC40LDEsMCwxLjRMMjAuNiw2SDFDMC40LDYsMCw2LjQsMCw3TDAsN3oiLz48L3N2Zz4=), none;
	}

.thumbnail:hover .overlay {
  opacity: 1;
}





/*6.Servcies*/

.about-img {	
	margin:10px 0 10px 0;
	}
	
.services-container {
	padding:30px 0 30px 0;
	Background: #dedcd0;
	display:block;
	}
	
.services-container h5 {
	padding:0 0 20px 0;
	}
	
.client-container {
	padding:30px 0px;
	Background: #f5f8fa;
	display:block;
	}
	
.promo-container {
	padding:30px 0 30px 0;
	Background: #dcdcdc;
	display:block;
	}
	

	
.img-overlay {
	 position: relative;
	 width:100%;
	 
	}

.img-overlay  img{
	background-size: cover;
	width:100%;
}

.img-overlay::before{
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.7;
    background-size: cover;
	background-color:#000;
}


/*testimonials*/

.tes-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d6d6d6;
  padding: 10px 60px 10px 60px;
}

.small-column {
  flex: 1;
  max-width: 400px;
  padding: 10px;
}

.small-column h6 {
	text-transform: uppercase;
    color: rgba(0,0,0,0.1);
    font-size: 35px;
    font-weight: 600;
    line-height: 1em;
    padding: 60px 0px !important;
	}

.large-column {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width:680px;
  padding: 0px 30px;
}

.testimonial {
	font-style: italic;
	font-size:17px;		
    margin-bottom: 0em;
	}

.speech::before {
 content: '"';
  position: absolute;
  top: 60%;
  left: -70px;
  transform: translateY(-50%);
  font-size: 200px;
  color: grey;
  opacity: 0.3;
  font-style: italic;
}
	
.author {
	letter-spacing: 0.2em;
    font-size: 13px;
    text-align: center;
    font-family: 'Poppins';
    font-weight: 300;
    font-style: normal;
	color:grey;
	}
	
.owl-theme .owl-nav [class*=owl-]:hover {
    background:none !important;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
	font-size:30px !important;	
	font-family: 'Poppins', sans-serif !important;	
	font-weight:300 !important;
	}
	
.owl-theme .owl-nav {
    margin-top: 0px !important;
	font-family: 'Poppins', sans-serif !important;	
	font-weight:100 !important;
}

.owl-theme .owl-nav [class*=owl-] {
    margin: 10px !important;
}

.owl-carousel.owl-loaded {
    display: block;
    margin-top: 30px !important;
}

.owl-carousel .owl-stage-outer {
    margin-top: 40px !important;
}

.bg-purple {
	background-color:#f4f2ef;
	}

.mid {
	text-align:center;
	}

/*logo banner*/	
.logo-bg {
  background-color:#f4f2ef;
  display: flex;
  justify-content: space-between;
  padding: 10px;	
	}
	
.logo-bg img {opacity: 0.3;}
	
.multi-col {
  flex: 1; 
  padding: 10px;
}

.special {
	text-transform: uppercase;
	color: rgba(204,0,102,0.1);
	font-size:35px;
	font-weight:600;
	line-height: 1em;
	padding: 60px 50px !important;
   }
	
/*price table*/

.price {
  list-style-type: none;
  border: 1px solid #eee;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Add shadows on hover */
.price:hover {
  box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

/* Pricing header */
.price .price-header {
  background-color: #111;
  color: white;
  font-size: 25px;
  margin-left: 0px !important;
}

/* List items */
.price li {
  border-bottom: 1px solid #eee;
  padding: 20px;
  text-align: center;
  margin-left: 0px !important;
}

/* Grey list item */
.price .grey {
  background-color: #eee;
  font-size: 20px;
}

/* The "Sign Up" button */
.button-sign {
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
}

.fa-check:before {
    content: "\f00c";
	color:#0F3;
}




/*call to action*/

.cta-bar {
      background-color:#292f33;
      color: #fff;
      padding: 60px;
      display: inline-block;
      text-align: center;
	  width:100%
    }

    .cta-bar h6 {
      margin: 0;
      margin-right: 10px;
	  font-size:19px;
	  color:white;
	  text-align:center;
    }

    .cta-bar a {
      color: #FF8370;
      text-decoration: none;
      font-weight: 500;
    }
	
	
	
	/*new services*/
	




/*7. gallery */


.image-gallery {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping to create rows */
    overflow: auto; /* Add horizontal scroll if needed */
    gap: 0;
}

.img-gallery-container {
    position: relative;
    flex: 0 0 calc(25% - 0px);
}

.img-gallery-container img {
    max-width: 100%;
    height: auto;
}

.overlay-img-gallery {
    position: absolute;
    top: 0; /* Change top to 0 */
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to the bottom */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
	font-weight: 100;
}

.img-gallery-container:hover .overlay-img-gallery {
    opacity: 1;
}

.overlay-img-content p {
	
	 color: #000 !important;
	}

/* slider */

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  max-height:350px
}


.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.prev, .next {
  cursor: pointer;
  padding: 10px;
  color: #fff;
}

.sli-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #444;
  padding: 10px 60px 10px 60px;
}

.sli-container-sml {
	flex: 1;
  max-width: 400px;
  padding: 10px;
}

.sli-container-sml h6 {
	text-transform: uppercase;
    color: rgba(0,0,0,0.3);
    font-size: 35px;
    font-weight: 600;
    line-height: 1em;
    padding: 60px 0px !important;
	}


/*8. Branding */
.video-container {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); 
  z-index: 1;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  z-index: 2;
}

.text-overlay h1 {
  font-size: 50px;
  font-weight: lighter;
  margin-bottom: 10px; 
  color: #fff;
  text-transform: lowercase;
  font-family: 'Sacramento', cursive;
}

.text-overlay p {
  font-size: 16px;
  color: #fff;
}

/*9.Web*/
.small-heading {
	font-size:12px;
	}








/*8.Contact*/

.pink {background-color:#f3e2eb;}

.project-properties h6 {
	margin-bottom: 0.5em;
	font-size: 14px;
}

.project-properties p.small {
	padding-bottom: 1.5em;
	border-bottom: 1px solid #e1e8ed;
	color:#000;
}

.social-share {
	margin-bottom: 2em;
}

.social-share a {
	display: inline-block;
	padding: 0 0.5em;
	margin-right: 1.25em;
	margin-left: -0.5em;
	margin-bottom: 0.5em;
	color: #b5c2ca;
	-webkit-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
}

.social-share a:last-child {
	margin-right: 0;
}

.social-share a:hover,
.social-share a:focus {
	color: #292f33;
}


/*form*/

        form {
            max-width: 800px;
            margin: 0 auto;
        }

        label,
        input,
        textarea {
            margin-bottom: 10px;
        }
		
		
		input[type=text],
		input[type=password],
		input[type=email],
		input[type=search],
		input[type=date],
		input[type=number],
		input[type=tel],
		input[type=url],
		textarea
		 {
			width: 100%;
			max-width: 100%;
			padding: 1em;
			margin: 0 0 1em;
			border: 1px solid #ccd6dd;
			font-family: "Droid", Arial, sans-serif;
			line-height: normal;
			vertical-align: baseline;
			background: none;
			background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); /* Removing the inner shadow on iOS inputs */
			background-color: transparent;
			color: #292f33;
			outline: none;
			-moz-appearance: none;
			-webkit-appearance: none;
			border-radius: 2px;
			-webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
			transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
			background-color:#fff;
		}
		
		select {
     margin-bottom: 10px;
     margin-top: 10px;
	 width: 100%;
			max-width: 100%;
			padding: 1em;
			margin: 0 0 1em;
			border: 1px solid #ccd6dd;
			font-family: "Droid", Arial, sans-serif;
			line-height: normal;
			vertical-align: baseline;
			background: none;
			background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); /* Removing the inner shadow on iOS inputs */
			background-color: transparent;
			color: #292f33;
			border-radius: 2px;
			-webkit-transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
			transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
			background-color:#fff;			
   }
			
		input:invalid,
		textarea:invalid {
			box-shadow: none;
			background-color:#fff;
		}
		
		input[disabled],
		select[disabled],
		textarea[disabled] {
			cursor: default;
			opacity: 0.5;
		}

        input[type="submit"] {
            padding: 10px;
            width: 100%;
			background-color: #00B1B0;
            color: white;
            cursor: pointer;
        }

        input[type="submit"]:hover {
			opacity:0.6;
			color:white;
        }
		
		 input[type="text"][value]:not(:focus),
        input[type="tel"][value]:not(:focus),
        input[type="email"][value]:not(:focus),
        textarea[value]:not(:focus) {
            color: #CCC;
        }
		
		::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
   color: #CCC /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #CCC
}

::-ms-input-placeholder { /* Microsoft Edge */
   color: #CCCcolor: red;
}

/*9.404*/

/*10.About*/

.center-box {
	width: 80%;
    margin-right:auto;
    margin-left:auto;	
	}

.faq {
    max-width: 100%;
    margin: 0px auto;
}

.faq-item {
	margin-bottom: 20px; 
}

.faq-question {
	cursor: pointer;
	font-weight: normal;
	display: flex;
	align-items: center; 
}

.faq-question::before {
	content: "+";
	display: inline-block;
	margin-right: 10px; 
    font-size: 40px;
    font-weight: 200;
}

.faq-answer {
	display: none;	 	
	color:#292f33 !important;
}

.faq-answer.active {
	display: block;
	margin-top: 10px;
}

.hero {
	background-color: #000000;
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/laptop-image.jpg);
  background-position: center;
	background-size: cover;
	color: #ffffff;
	padding: 100px 0;
	text-align: center;
}

.hero h3 {
	font-weight:100;
	color:#fff;
	
	}
	
.thin {
	font-weight:100;
	color:#fff;
	}
	
	
/*Prices*/

.top-banner {
	background-color: #000000;
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/shoes.jpg);
  background-position: center;
	background-size: cover;
	color: #ffffff;
	padding: 100px 0;
	text-align: center;
}

.top-banner h1 {
	color:#fff;
	}


/*10.Footer*/
.colored-box-dark {
  background-color: #000;
  padding: 20px 0 20px 0;
  display: block;
  position: relative;
  bottom: 0;
  width: 100%;
}

.colored-box-dark h6{
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    color: white;
    font-size: 15px;
	text-align:left;
}

.colored-box-dark p {
    line-height: 1.3;
    color: #ebebeb;
    opacity: 0.6;
	font-size:14px;
}
.copyright {
    font-size: 13px !important;
}

.colored-box-dark .fa {
    color: white;
	font-size:17px;
}

.colored-box-dark .fa:hover {
    opacity:0.6;
}

/*12.Owl Slider*/

.owl-theme .owl-dots .owl-dot span {
    width: 17px !important;
    height: 4px !important;
    margin: 5px 4px !important;
    border-radius: 1px !important;
}

.owl-dot span {background:#666 !important;}

.owl-dot span:hover {opacity:0.6;}

.owl-dot.active span {background:#F76D6D !important;}

.owl-carousel .owl-item img {
    width: 50%;}
	
/*client logo owl carousel*/
.client-logo{
  margin-bottom: 10px;
}

.client-logo .item {
    transition: transform 200ms cubic-bezier(.785, .135, .15, .86), box-shadow 200ms cubic-bezier(.785, .135, .15, .86);
    margin-bottom: 15px;
    background-color: #fff;
    margin: 10px 10px 10px 0;
    padding: 4px 10px 4px 10px;
    border: 1px solid #efeeee;
    background-color: #ddd;
    height: 71px;
}
.client-logo .item:hover {
    opacity:0.8;
}
.client-logo img {
    width: 100%;
    margin: 0 auto;
    opacity: 0.8;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.client-logo img:hover {
    opacity: 1;
    transition: all 0.3s ease-in-out 0s;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}	

.small-icons img {
	width:20%;
	max-width:30px;
	}
	
/*quick prices*/
.pricing-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 60vh;
        }

        .pricing-card {
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding:20px 10px;
            margin: 10px;
            text-align: center;
            border-radius: 8px;
            width: 300px;
        }

        .pricing-card h2 {
            color: #333;
        }

        .pricing-card p {
            color: #777;
        }

        .pricing-card button {
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
		
	
        .custom-list {
            list-style-type: none;
            padding: 0;
        }

        .custom-list-item {
            margin-bottom: 10px;
			color:#666;
        }

        .custom-list-item i {
            margin-right: 5px;
			 vertical-align: middle;
			 color:#444;
        }
		
		.fa-arrow-circle-o-down:before {
			content: "\f01a";
			font-size: 20px;
			-webkit-text-stroke: 0.5px white;
		}


	/*add on section*/
	
	.grid {
    display: flex;
    flex-wrap: wrap;
}

.box-item {
    flex: 0 0 23%;
    box-sizing: border-box;
    background-color: #f0f0f0;
    padding: 20px;
    margin: 10px;
    text-align: center;
}

.box-item h6 {text-align:center;color:#666;}

.box-item h5 {color:#666;}

.divider {border-bottom:1px solid #ccc;}

.font-dark {color:#666;}
	

