

html{
	scroll-behavior: smooth;
}

body{
	position:relative;
	font-family: Lato, sans-serif;
}

*{
	box-sizing:border-box;
}

#up-button {
	display:block;
	opacity: 0;
	position: fixed;
	right: 0.2em;
	z-index: 99;
	font-size: 2.5rem;
	outline: none;
	background-color: transparent;
	color: red;
	cursor: pointer;
	padding: 0px;
	border-radius: 40px;
	border: none;
	transition: all 1000ms ease;
}

#up-button:hover{
	background-color:165,165,165,1;
	color: black;
	border-color:black;
}

/* toggle navbar START*/

.toggle-menu-wrapper{
	width: 100%;
	z-index:1000;
}

.navbar-collapse{
	width:100%;
	background-color:#b3b3b3;
	color: white;
	margin:0px;
	padding:0px;
	display:none;
	overflow:hidden;
	height:0vh;
	transition: all	500ms ease;
}

.navbar-collapse .navbar-logo{
	text-align:center;
}

.navbar-logo{
	text-decoration: none;
	color: white;
	margin:auto;
}

.navbar-logo img{
	padding-top:0px;
}

.left .toggle-collapse{
	z-index:0;
	position:relative;
	float:left;
	background-color:transparent;
	border-radius:3px;
	cursor:pointer;
	
}

.navbar-nav{
	margin-top:10px;
	margin-bottom:10px;
	display: flex;
	 flex-direction: column;
  align-items: start;
  list-style-type: none;
	
}

.navbar-nav .nav-item a{
	text-decoration: none;
	display:block;
	font-size:16px;
	padding: 0.5em 0.7em;
	margin:0.5em 1em;
	color:black;
	text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
}

.navbar-nav .nav-item a:hover{
	color:#5d5d5d;
	text-decoration: none;
}

.toggle-collapse{
	position:absolute;
	z-index:1;
	float: right;
	width:45px;
	height:32px;
	margin: 0.5em 0.5em;
	background-color: transparent;
	color: black;
	border: 1px solid black;
	border-radius: 3px;
	cursor: pointer;
	display:none;
}

.toggle-collapse:hover{
	color: rgba(232, 232, 232);
	border: 1px solid rgba(232, 232, 232);
}
.toggle-main-collapse{
	position:absolute;
	z-index:1;
	float: right;
	width:45px;
	height:32px;
	margin: 0.5em 0.5em;
	background-color: transparent;
	color: rgba(45, 45, 45, 0.3);
	border: 1px solid rgba(45, 45, 45, 0.3);
	border-radius: 3px;
	cursor: pointer;
	display:none;
}

.toggle-main-collapse:hover{
	color: rgba(232, 232, 232);
	border: 1px solid rgba(232, 232, 232);
}

.collapse{
	display:block !important;
	height:50vh !important;
	position:sticky !important;
	position: -webkit-sticky;
}

.collapse-button{
	display:none !important;
}

.navbar-collapse .menu-footer{
	opacity:0;
	transition: opacity	500ms ease-in-out;
	transition-delay: 0.5s;
}

.navbar-collapse .menu-footer-collapse{
	opacity:1;
}

@media screen and (min-width:769px){
	.navbar-collapse{
		display:none !important;
	}
}

@media screen and (max-width:768px){
	.header{
		display:none;
	}
	
	.toggle-collapse{
		display:block;
	}
	
	.navbar-collapse{
		display:block;
	}
	.toggle-main-collapse{
		display:block;
		color:black;
		border: 1px solid black;
	}
	.navbar-collapse .menu-footer-collapse{
		width:100%;
	}
	.small-header{
		display:block;
	}
	.small-header-collapse{
		display:none !important;
	}
	.small-header{
	padding:0px !important;
	display:block;
}

	.small-header-logo{
	text-align:center;
	background-color: #b3b3b3;
	padding:10px;
}

	.small-header-logo a{
	margin:auto;
}

	.small-header-logo img{
	width:60%;
}

	#section1{
		 scroll-margin-top: 50vh;
	}

}

/* toggle navbar END*/

/* MAIN MENU START */
.header{
	position:relative;
	background-color:#b3b3b3;
	padding:0px;
	height:auto;
	overflow:visible;
	z-index:0;
}

.header-wrapper{
  height: 100%;
  position: fixed;
  z-index: 1;
  padding-top: 20px;
}

.main-menu{
	/* position:sticky !important;
	position: -webkit-sticky; */
	top:10px;
}

.main-menu ul{
	list-style-type:none;
	margin-top:40px;
	padding-left:0px;
}

.main-menu ul li{
	margin-left:0px;
	margin-top:2px;
	width: 100%;
}

.main-menu ul li a{
	font-family: Lato, sans-serif;
	position:relative;
	display: inline-block;
	color:black;
	padding:12px 25px 12px 25px;
	transition: all 0.5s ease-out;
	transition-timing-function: ease-out;
	text-align:center;
	text-decoration: none;
	cursor: pointer;
	/* border-bottom: 3px solid black; */
}

.main-menu ul li a::after {
        position: absolute;
        content: "";
        top: 100%;
        left: 0;
        width: 100%;
        height: 3px;
        background: red;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s;
      }

.main-menu ul li a:hover{
	/* border-bottom:3px solid white; */
}

.main-menu ul li a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
}

.slider{
    position: absolute;
    display:block;
    left: 0;
    top:90%;
    margin:0 auto;
    height: 2px;
    background-color: white;
    width: 0%;
    transition: width 1s;
}

.slider:hover {
    width: 100%;
}


.active{
	background-color:black;
}

.logo-space{
	padding: 40px 0px;
	width:90%;
	margin:auto;
}

.logo-space img{
	max-width: 100%;
}

.menu-footer{
	position: absolute;
	bottom: 0px;
	margin:auto;
}

.copyright{
	font-size:0.8em;
	margin:auto;
	color:#5d5d5d;
	text-align:center;
	padding: 30px;
}

.copy-link{
	color: black;
	text-align:center;
	font-size: 1.2em;
	font-weight: 800;
	padding-left:4px;
	padding-right:4px;
	transition: color 0.4s;
	transition-timing-function: ease-out;
}

.copy-link:hover{
	color:white;
	text-decoration: none;
}

@media screen and (min-width:768px){
	.small-header{
		display:none;
	}
}
  
/* MAIN MENU END */

/* MASTHEAD START */

.mastehead{
	display:block;
	margin-left:0;
	margin-right:0;
	padding:0;
	height:100vh;
}

.carousel{
	/* margin:auto; */
}

.carousel-item .img{
	position: 50%;
	object-fit: cover;
}

.carousel-inner{
	display:flex;
	overflow-x: hidden;
	height: 100%;
	max-height: 100vh;
}

.carousel-item{
	height:100%;
}
/* MASTHEAD END */


/* CONTENT START */

.row{
	margin:0px;
}

.content{
	padding:0px;
	/* padding-bottom:2em; */
}

.content .row{
	padding: 0em 0em 0em 0em;
	background-color: white;
}

.portfolio{
	margin: 0em 0em 0em 0em !important;
}

.pic{
	padding:0.2em;
	overflow: hidden;
}

.pic img{
	width:100%;
	transition: all 0.7s ease-in-out;
	opacity:1;
}

.pic_card_info{
    padding-top: 10px;
	text-shadow: black 1px 2px;
	font-size: 10px !important;
	color:white;
	font-weight:500;
	transition: all 1s ease;
	opacity: 0;
	position: absolute;
	top: 90%;
	left: 0%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
	min-width:100%:
	padding-top:10px;
}

.pic .pic-card h3{
	text-shadow: black 1px 2px;
	font-size: 2em;
	color:white;
	font-weight:700;
	transition: all 1s ease;
	opacity: 0;
	position: absolute;
	top: 90%;
	left: 0%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
	width:70%:
} 


.pic:hover img{
	opacity:1;
	cursor:pointer;
	transform: scale(1.1) rotate(5deg);
}

@media screen and (min-width:768px){

	.pic:hover .pic-card h3{
		opacity:1;
		cursor:pointer;
		left:50%;
	}
.pic_card_info{
		font-size: 12px !important;
		opacity:1;
		cursor:pointer;
		left:50%;
		min-width: 100%;
        padding-top: 10px;
	}
}

@media screen and (max-width:768px){
	
	.pic .pic-card h3{
		font-size:14px;
		opacity:1;
		cursor:pointer;
		left:50%;
		top:85%;
		width:70%;
	}
	p .pic-card{
		font-size:10px !important;
		opacity:1;
		cursor:pointer;
		left:50%;
		top:85%;
		width:100%;
	}
	.pic_card_info{
		font-size: 10px !important;
		opacity:1;
		cursor:pointer;
		left:50%;
		min-width: 100%;
        padding-top: 10px;
	}
}
/* Modal start */

.modal-header{
	border:none;
}

.modal-footer{
	border:none;
}

.modal-body{
	padding:0px;
	vertical-align: middle;
}

.modal-body img{
	max-width: 90%;
	max-height: 90vh;
	display: block;
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.mod-car{
	max-width: 90%;
	height: 90vh;
	margin:auto;
}

.mod-car img{
	
}

.mod-car .active{
	background-color: black;
}

.modal-dialog{
	max-height:90%;
	max-width:90%;
	margin:auto;
	/* overflow-y: auto; */
}

.modal-content{
	display:block;
	background-color:black;
	color:white;
	margin:auto;
}

.close{
	color:white;
	opacity:1;
	transition: color 0.3s;
}

.close:hover{
	color:rgba(232, 232, 232, 0.3);
}

.numbertext {
  color: black;
  font-size: 12px;
  padding: 0.4rem 0.6rem;
  position: absolute;
  top: 0;
  border-radius: 0 0 3px 0;
  background-color:rgba(232, 232, 232, 0.3);
  color: white;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(232, 232, 232, 0.3);
}

.my-slides img{
	max-width:70%;
}

/* Modal END */

/* Contact start */
#section3{
	background-image: url(../img/background.jpg);
/* 	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover; */
	padding-bottom: 6em;
	padding-left:5em;
	padding-right:5em;
	padding-top:4em;
}

#section3 > h2{
    text-align: center;
	padding-left: 2em;
	padding-right: 2em;
}

.contact{
	padding-bottom: 5em;
}

.contact-row{
	background-color:transparent !important;
}

.info{
margin-top: 5em;
padding-top: 5em;
}

.info-content{
	font-size:1.2rem;
}

.info-content>p {
	padding:2em;
	text-decoration: none;
}

.info-content h3{
	padding-top:2em;
	padding-left:2em;
	padding-bottom:1em;
}

.info-content ul{
	list-style:none;
}

.info-item i{
	font-size:2em;
}

.info-item a{
	text-decoration:none;
	color: #f6b45e;
}
.info-item a:hover{
	color:#5d5d5d;
}

.map{
	margin-top:5em;
	border-left:1px solid gray;
	position:relative;
	height:500px;
}

.map iframe{
	width:60%;
	height:70%;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media screen and (max-width:768px){

	.map{
		margin-top:0px;
	}
	
	.info{
		padding: 2em 2em 0em 2em;
		margin-top: 0px;
	}
	
	#section3{
	margin-bottom: 4em;
	padding-left:0em;
	padding-right:0em;
	scroll-margin-top: 50vh;
}
	
	#section2{
		 scroll-margin-top: 50vh;
	}
}


/* Contact end */

/* About start */


.about{
	
	padding:0 3em 0 3em;
	background-color:
}

.jumbo-row{
	border-radius: 1em;
	margin-bottom: 10em !important;
	padding-top:2em !important;
	padding-left:2em !important;
	padding-right:2em !important;
	padding-bottom:2em !important;
	/* background-color:#e9ecef !important; */
}

.about-jumbotron{
	text-align: center;
	padding-top: 0px;
	padding-bottom: 0px;
	margin:0px;
	border-radius:1em;
	/* background-color:white; */
}

.jumbotron h1{
	margin-top:0.5em;
}

.about-inner{
	border-radius: 1em;
	padding: 3em 0 0 0 !important;
	
}

.about-parallax{
	background-image: url(../img/content/about/about.jpg);
	padding: 15em 5em 15em 5em !important;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.about-header{
	height:4em;
	width:100%;
	background-color:white;
}

.about-header i{
	display:block;
	font-size: 3em;
	margin:auto;
	text-align:center;
}

.about-header img{
	display:block;
	margin:auto;
	text-align:center;
	max-height:100%;
}

.about-content{
	text-align:center;
	padding:2em;
	padding-top:0;
}

.portfolio-button{
	border:2px solid white;
	border-radius:1em;
	margin:auto;
	margin-top:3em;
	overflow:hidden;
	text-shadow: black 1px 2px;
}

.portfolio-button :hover{
	background-color: rgba(255, 255, 255, 0.3);
}

.portfolio-button h3{
	text-decoration:none;
	color: white;
	padding:0.5em;
	margin:0;
}

.portfolio-button a{
	text-decoration:none;
}

.portfolio-button h3 :hover{
	text-decoration:none;
}

.simple-link{
	color:red;
	text-decoration: none;
	transition: all 1s ease;
	font-weight:800;
}

.simple-link:hover{
	color:black;
	text-decoration:none;
}

.about-paraf{
	font-size:1.1rem;
	text-align: center;
}

.about-paraf-bottom{
	font-size:1.1rem;
	text-align: center;
	margin:auto;
	padding:1rem 5rem;
	border-top: 1px solid rgba(0,0,0,.1);
	border-width: 100%;
}

.about-paraf-bottom a{
	color:red;
	transition: color 1000ms ease;
}

.about-paraf-bottom a:hover{
	color:black;
	text-decoration:none;
}

.badge{
 padding:7px;
 border-top:1px solid white;
 border-left:1px solid white;
 background-color:red;
}

.badge:hover{
	border-top:1px solid gray;
	border-left:1px solid gray;
	background-color: black;
}

.offer-link{
	
}

.offer-body{
	background-color:white;
	color: black;
	padding: 10em;
}


@media screen and (max-width:768px){

.about-parallax{
	padding: 5em 1em 5em 1em !important;
}	
	
}

.social{
	margin: auto;
	padding-top: 3em;
}

.social p{
	text-align: center;
	font-weight: 700;
}

.links{
	text-align:center;
}

.social a{
	transition: opacity 0.2s;
	margin: auto;
	padding: 0px 5px 0px 5px;
}

.social a:hover{
	text-decoration:none;
	opacity:0.7;
}

/* About end */

/* CONTENT END */


/* FOOTER */

.footer{
	position:absolute;
	display:none;
	background-color:black;
}

.copyright-footer{
	font-size:0.8em;
	color:#5d5d5d;
	text-align:center;
	padding: 1em 0em;
	margin:0px;
}

.copy-link-footer{
	color: white;
	text-align:center;
	font-size: 1.2em;
	font-weight: 800;
	padding-left:4px;
	padding-right:4px;
	transition: color 0.3s;
	transition-timing-function: ease-out;
}

.copy-link-footer:hover{
	color:#5d5d5d;
	text-decoration: none;
}

@media screen and (max-width:768px){

	.footer{
		display:block;
	}
}

/* FOOTER END*/

@media screen and (max-width:768px){
  

/*   @keyframes mobpic {
  0%   {left:-100%; top:40%;}
  100%  {left:50%; bottom:40%;}
} */
}