/* reset browser css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* main */
html, body {
  font-family: 'Segoe UI', 'Tahoma', 'Verdana', 'sans-serif';
  line-height: 1.7em;
  overflow-x: hidden;
}
a {
  color: #333;
  text-decoration: none;
}
h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
video {
  padding-top: 30px;
  max-width: 250px;
  width: 100%;
  height: auto;
}
/* content basic style */
.container {
  margin: auto;
  max-width: 1100px;
  padding: 0 20px;
  overflow: auto;
}
.container-bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
}
.text-primary {
  color: #fff;
}
.text-illustrative {
  text-align: center;
  font-size: 20px;
  color: #f7c08a;
  font-family: cursive;
  padding-bottom: 0%;
}
.text-graphic {
  color: #fff;
  font-family:'Courier New', Courier, monospace;
}
.btn {
  display: inline;
  font-size: 18px;
  background: #333;
  color: #fff;
  padding: 13px 20px;
  border: none;
  cursor: pointer;
}
.btn:hover{
  background: #f7c18ad7;
  color: #333;
}
.btn-light {
  background: #f4f4f4;
  color: #333;
}
.btn-light {
  background: #f4f4f4;
  color: #333;
}
.btn_more {
  background: none;
  font-size: 18px;
  font-family: sans-serif;
  color: #c6c6c6;
  padding: 13px 20px;
  border: none;
  cursor: pointer;
  align-items: left;
}
.btn_more:hover {
  color: #f7c08a;
}
.bg-primary {
  background: #333;
  color: #fff;
}
.bg-dark {
  background: #000;
  color: #fff;
}
.py-30 {
  padding: 30px;
}
.py-60 {
  padding: 60px;
}
.py-030 {
  padding-inline-start: 30px;
  padding-bottom: 15px;
}
.py-130 {
  padding: 30px;
  padding-bottom: 0%;
}
#navbar {
  background: #000;
  /* background: rgba(0, 0, 0, 0.35); */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#navbar a {
  color: #fff;
}
#navbar ul {
  float: right;
  list-style: none;
}
#navbar ul li {
  float: left;
}
#navbar ul li a {
  display: block;
  padding: 28px;
  text-align: center;
  font-family: cursive;
}
#navbar ul li a:hover,
#navbar ul li a.current {
  color: #f7c08a;
}
#navbar h1 {
  padding-top: 20px;
  float: left;
}
/*showcase*/
#showcase {
  height: 1000px;
  position: relative;
}
.showcase-bg {
  background: url('https://monareaita22.ikt.khk.ee/veebiarendus/portfoolio/img/showcase.jpeg') no-repeat center/cover;
  filter: blur(4px) sepia();
  transform: scale(1.1);
}
#showcase .showcase-content {
  color: #fff;
  text-align: center;
  padding-top: 80px;
}
#showcase .showcase-content h1 {
  font-size: 5rem;
  line-height: 0.75em;
  font-family: sans-serif;
  padding-bottom: 20px;
}
#showcase .showcase-content p {
  padding-bottom: 2.5%;
  line-height: 1.7em;
}
#showcase .showcase {
  padding: 20px;
  margin-bottom: 40px;
  margin-top: 120px;
  border-radius: 5px;
  opacity: 0.7;
}
/* footer */
footer {
  text-align: center;
  padding: 130px;
  background: #000;
  color: #9c9b9b;
  
}
/* clear */
.clear {
  clear: both;
}
/* portrait */
#portrait {
  position: relative;
  height: auto;
}
.portrait-bg {
  background: url('https://monareaita22.ikt.khk.ee/veebiarendus/portfoolio/img/showcase.jpeg') no-repeat center/cover;
  filter: blur(4px) sepia();
  transform: scale(1.1); /* filter: blur() makes blank border */
}
#portrait .portrait-content {
  color: #fff;
  text-align: center;
  padding-top: 28px;
}
#portrait h2 {
  color: #fff;
  font-family:"Montserrat", sans-serif;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 70px;
}
#portrait .portrait-content p {
  padding-bottom: 2.5%;
  line-height: 1.7em;
}
#portrait .portrait {
  padding: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
  border-radius: 5px;
  opacity: 0.8;
  text-align: justify;
}
/* gallery */
#gallery {
  padding: 8px;
  background-color: #000;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 5vw);
  grid-gap: 15px;
  overflow: hidden;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__item--1 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
.gallery__item--2 {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 3;
}
.gallery__item--3 {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 6;
}
.gallery__item--4 {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 3;
  grid-row-end: 6;
}
.gallery__item--5 {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 6;
  grid-row-end: 9;
}
.gallery__item--6 {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 6;
  grid-row-end: 9;
}
#gallery .gallery-content {
  float: left;
}
/* contact */
#contact-form {
  background: #000;
}
#contact-form p {
  color: #9c9b9b;
  padding: 2%;
}
#contact-form .form-group {
  margin-bottom: 20px;
}
#contact-form .form-group label {
  display: block;
  margin-bottom: 5px;
}
#contact-form .form-group input, 
#contact-form .form-group textarea {
  width: 100%;
  padding: 17px;
  border: 1px solid #ddd;
}
#contact-form .form-group textarea {
  height: 100px;
}
#contact-form .form-group input:focus, 
#contact-form .form-group textarea:focus {
  outline: none;
  border-color: #f7c08a;
}
#contact-info .box {
  float: left;
  width: 100%;
  text-align: left;
}
#contact-info .box p {
  color: #9c9b9b;
  padding-block-start: 2%;
  font-size: 15px;
}
#contact-info .box i {
  margin-bottom: 5px;
  color: #fff;
  font-size: 30px;
}
