@import url('https://fonts.googleapis.com/css?family=Raleway');

body, html{
    height:100%;
}

body{
	padding:0;
	margin:0;
    background:ffffff;
	/*background:#f4f4f4;*/
}

html,h1,h2,h3,h4,h5,h6,a{
	font-family:"Raleway";
}

section {
    max-height: 300px; /* limit section height */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Enable container queries */
    container-type: inline-size;
    container-name: section;
}

/*Navbar*/

.navbar{
    position: fixed;
	background:#ffffff;
}

.nav-link , .navbar-brand{
	color:#000000;
	cursor:pointer;
}

.nav-link{
	margin-right:1em !important;
}

.nav-link:hover{
	background:#ffffff;
	color:#f97300;
}

a:hover{
    background:#ffffff;
	color:#f97300;
}

.navbar-collapse{
 justify-content:flex-end;
}

.navbar-toggler{
  background:#fff !important;
}

/*about header style*/

.overlay{
	position:absolute;
        /*inset:0;*/
	min-height:100%;
	min-width:100%;
	left:0;
	top:0;
	background:rgba(244, 244, 244, 0.79);
}

.hero {
    position: absolute;
    background: url('/gallery/header.png') no-repeat center;
    background-size: cover;
    padding: 200px 0;
    color: #ffffff;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-size: 50px;
    margin-bottom: 30px;
    
    /*Make text transparent*/
    -webkit-text-stroke: 1px #ffffff;
}

.hero-text p {
    font-size: 25px;
}

.description{
    position:relative;
    top:20%;
    margin:4em 0;
	padding:4em;
}
.description h1{
	color:#cc5d5d;
}
.description p{
	color:#666;
	font-size:20px;
	width:100%;
	line-height:1.5;
}

.parallax {
  /* The image used */
  background-image: url("/gallery/parallaximage.jpg");

  /* Full height */
  height: 100%;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*About*/

.about{
	margin:4em 0;
	padding:4em;
	position:relative;
	top:20%;
}
.about h1{
	color:#cc5d5d;
	margin:2em;
}
.about img{
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
    border-radius:50%;
}
.about span{
    position:static;
	display:block;
	color:#888;
	margin-top:10px;
}
.about .desc{
	padding:2em;
	border-left:4px solid #004C97;
}
.about .desc h3{
	color:#004C97;
}
.about .desc p{
	line-height:2;
	color:#888;
}


/*Portfolio*/

.portfolio{
	margin:4em 0;
    padding:1em;
    position:relative;	
    top:20%;
}
.portfolio h1{
	color:#cc5d5d;
	margin:2em;	
}

/*.portfolio img{
	 height: 15rem;
	 width: 100%;
	 margin: 1em;
}*/


/*lightbox*/

* {
  box-sizing:border-box;
}

.row > .column {
  padding:0 8px;
}

.row:after {
  content:"";
  display:table;
  clear: both;
}

.column {
  float:left;
  width:25%;
}

/* The Modal (background) */

.modal {
  display:none;
  position:fixed;
  z-index:1;
  padding-top:80px;
  left:0;
  top:0;
  width:100%;
  height:100%;
  overflow:auto;
  background-color:rgba(0,0,0,0.9);
}

/* Modal Content */

.modal-content {
  position:relative;
  background-color:#fefefe;
  margin:auto;
  padding:0;
  max-width:90%;
  max-height: 100%;
}

/* The Close Button */

.close {
  color:white;
  position:absolute;
  top:40px;
  right:25px;
  font-size:35px;
  font-weight:bold;
}

.close:hover,
.close:focus {
  color:#999;
  text-decoration:none;
  cursor:pointer;
}

.mySlides {
  display:none;
}

.cursor {
  cursor:pointer;
}

/* Next & previous buttons */

.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;
}

/* Position the "next button" to the right */

.next {
  right:0;
  border-radius:3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
  background-color:rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */

.numbertext {
  color:#f2f2f2;
  font-size:12px;
  padding:8px 12px;
  position:absolute;
  top:0;
}

.modal img{
    height:100%;
    width:auto;
}

img {
  margin-bottom:-4px;
}

.caption-container {
  text-align:center;
  background-color:black;
  padding:2px 16px;
  color:white;
}

.demo {
  opacity:0.6;
}

.active,
.demo:hover {
  opacity:1;
}

img.hover-shadow {
  transition:0.3s;
}

.hover-shadow:hover {
  box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
 
/*Contact Form*/

.contact-form{
	margin:6em 0;
	padding:1em;
	position:relative;
	top:20%;
}

.contact-form h1{
	padding:2em 1px;
	color:#cc5d5d; 
}
.contact-form .right{
	max-width:600px;
}
.contact-form .right .btn-secondary{
	background:#cc5d5d;
	color:#fff;
	border:0;
}
.contact-form .right .form-control::placeholder{
	color:#888;
	font-size:16px;
}

/*Footer*/

footer{
	padding:20px 0;
	text-align:center;
}

footer ul.social-buttons{
	margin-bottom:0;
}

footer ul.social-buttons li a{
	font-size:20px;
	line-height:50px;
	display:block;
	width:50px;
	height:50px;
	-webkit-transition:all .3s;
	transition:all .3s;
	color:#fff;
	border-radius:100%;
	outline:0;
	background-color:#212529;
}

footer ul.social-buttons li a:active,ul.social-buttons li a:focus,ul.social-buttons li a:hover{
	background-color:#004C97;
}

/*Responsive adjustments */
@media (max-width: 600px) {
    .header {
        height: 200px;
    }
    .header-text h1 {
        font-size: 1.8rem;
    }
    .header-text  {
        font-size: 1rem;
    }
    
}
