/*Webfont start*/
@font-face {
font-family: 'Kohiregular';
src: url('fonts/kohi_tk_regular.eot');
src: url('fonts/kohi_tk_regular.eot#iefix') format('eot'),
url('fonts/kohi_tk_regular.woff') format('woff'),
url('fonts/kohi_tk_regular.svg') format('svg'),
url('fonts/kohi_tk_regular.ttf') format('truetype');
}

@font-face {
font-family: 'Kohibold';
src: url('fonts/kohi_tk_bold.eot');
src: url('fonts/kohi_tk_bold.eot#iefix') format('eot'),
url('fonts/kohi_tk_bold.woff') format('woff'),
url('fonts/kohi_tk_bold.svg') format('svg'),
url('fonts/kohi_tk_bold.ttf') format('truetype');
}

@font-face {
font-family: 'Kohilight';
src: url('fonts/kohi_tk_light.eot');
src: url('fonts/kohi_tk_light.eot#iefix') format('eot'),
url('fonts/kohi_tk_light.woff') format('woff'),
url('fonts/kohi_tk_light.svg') format('svg'),
url('fonts/kohi_tk_light.ttf') format('truetype');
}

@font-face {
font-family: 'Cambmedium';
src: url('fonts/camb_tk_medium.eot');
src: url('fonts/camb_tk_medium.eot.eot#iefix') format('eot'),
url('fonts/camb_tk_medium.woff') format('woff'),
url('fonts/camb_tk_medium.svg') format('svg'),
url('fonts/camb_tk_medium.ttf') format('truetype');
}
/*Webfont end*/

/*portfolio-gallery start*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.caption > p {
  text-shadow:none;
}

.portfolio-image {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-image img {
  height: 250px;
  width: 350px;
  transform: scale(1.0);
  transition: transform 0.4s ease;
}

.img-box {
  box-sizing: content-box;
  margin: 10px;
  height: 250px;
  width: 350px;
  overflow: hidden;
  display: inline-block;
  position: relative;
  background-color: white;
}

.caption {
  position: absolute;
  bottom: 5px;
  left: 20px;
  opacity: 0.0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.transparent-box {
  height: 250px;
  width: 350px;
  background-color:rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;

}

.img-box:hover img {
  transform: scale(1.5);
}

.img-box:hover .transparent-box {
  background-color:rgba(0, 0, 0, 0.8);
}

.img-box:hover .caption {
  transform: translateY(-20px);
  opacity: 1.0;
}

.img-box:hover {
  cursor: pointer;
}

.caption > p:nth-child(2) {
  font-size: 1.3em;
}

.opacity-low {
  opacity: 0.6;
}

/*portfolio-gallery end*/

/*responsive header start*/
.header {
  background-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
  position: fixed;
  top: 0;
  width: 100%;
  padding-right: 1.1em;
  z-index: 1;
  text-align: right;
}

.header ul {
  list-style: none;
  overflow: hidden;
  background-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
  text-align: right;
}

.header li a {
  display: block;
  padding: 2px 2px;
  border-right: 1px solid #f4f4f4;
  font-size: 1.2em;
  font-family: Kohiregular;
  text-decoration: none;
  text-align: right;
}

.header li a::before,
.header .menu-btn::before {
  background-color: #000000;
  color: #260000;
}

.header li a:link,
.header .menu-btn:visited {
  color: #000000;
}

.header li a:visited,
.header .menu-btn:visited {
  color: #000000;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: #260000;
  color: #b2b2b2;
}

.header .logo {
  display: block;
  float: left;
  font-size: 1.4em;
  padding: 2px 2px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 12px 7px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
margin-top: 5px;
  background: #333;
  display: block;
  height: 4px;
  position: relative;
  transition: background .2s ease-out;
  width: 21px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 8px;
}

.header .menu-icon .navicon:after {
  top: -8px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 400px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 55em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 10px 15px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}
/*responsive header end*/

/*round profilpic start*/
.round-image {
  margin-top: 4.2em;
  border-radius: 50%;
  width: 300px;
  height: auto;
  padding: 8px;
  border: solid;
  border-color: #260000;
  border-width: 6px;
  float: center;
  display: block;
  margin: 0 auto;
}
/*round profilpic end*/

/*global style*/
.mylogo {
  margin-top: 8.1em;
  max-width: 700px;
}

html {
font-size: 100%;
scroll-behavior: smooth;
}

body {
background-image: url('cork_1.png');
background-repeat: repead;
background-attachment: fixed;
padding: 1.1em;
}

section {
  padding-top: 4em;
}

hr {
  border-top: 1px solid #260000;
  margin-top: 30px;
}

p { font-family: Kohiregular;
line-height: 135%;
font-size: 1.3em;
padding-right: 18px;
padding-left: 10px;
color: #260000;
text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7) , -1px -1px 1px rgba(115, 115, 115, 0.4) ;
-webkit-background-clip: text;
-moz-background-clip: text;
background-clip: text;
hyphens: auto;
}

h2 { font-family: Kohibold;
line-height: 107%;
font-size:2.5em;
text-align: center;
color: #b2b2b2;
margin-top: 1.1em;
margin-bottom: 0.5em;
text-shadow: 1px 2px 2px rgba(255, 255, 255, 0.7) , -1px -1px 2px rgba(115, 115, 115, 0.8) ;
-webkit-background-clip: text;
-moz-background-clip: text;
background-clip: text;
}

h1 { font-family: Cambmedium;
letter-spacing: 2px;
padding-left: 10px;
font-size: 1.2em;
text-align: center;
color: #260000;
text-shadow: 1px 2px 2px rgba(255, 255, 255, 0.8) , -1px -1px 2px rgba(115, 115, 115, 0.8) ;
-webkit-background-clip: text;
-moz-background-clip: text;
background-clip: text;
}

h3 { font-family: Cambmedium;
letter-spacing: 2px;
padding-left: 2em;
padding-top: 1em;
padding-bottom: 1em;
font-size: 1.5em;
color: #260000;
text-shadow: 1px 2px 2px rgba(255, 255, 255, 0.8) , -1px -1px 2px rgba(115, 115, 115, 0.8) ;
-webkit-background-clip: text;
-moz-background-clip: text;
background-clip: text;
}

a.link {
    font-family: Kohiregular;
  display:inline-block;
  outline: none;
  text-decoration: none;
  background-color: #7d000038;
  padding: 1px 1px -2px;
  border-radius: 4px;
  text-shadow: none;
}

a.link:link {
  color: #260000;
}

a.link:visited {
  color: #260000;
}

a.link:focus {
  border-bottom: 2px solid;
  background-color: #7d000038;
}

a.link:hover {
  border-bottom: 2px solid #260000;
  background-color: #da323238;
}

a.link:active {
  background-color: #da323238;
  color: red;
}


.downloadcenter {
  animation-name: backgroundColorPalette;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  border-radius: 7px;
  color: #b2b2b2;
  text-shadow: none;
  font-family: Cambmedium;
  font-size: 1.3em;
  line-height: 120%;
  padding: 0.8em;
  width: 90%;
  margin-top: 8em;
  margin-left: 2em;
  margin-right: 2em;
  float: center;
  display: block;
  margin: 0 auto;
}
@keyframes backgroundColorPalette {
	0% {
		background: #340000;
	}
	50% {
		background: #5b0000;
	}
	100% {
		background: #340000;
	}
}

.downloadlogo
{
  float: left;
  margin-right: 0.8em;
}

.downloadcenter a {
  color: #aaff7f;
  text-decoration-line:
}

/*Footer start*/
aside {
  margin: 2em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


footer {
    font-family: Kohiregular;
  text-align: center;
}

#footer ul {
    font-family: Kohiregular;
  text-align: center;
}

#footer li {
    font-family: Kohiregular;
  display: inline;
  list-style-type: none;
  line-height: 2em;
  margin-left: auto;
  margin-right: auto;
  width: 8em
}

.footer a {
    font-family: Kohiregular;
  display:inline-block;
  outline: none;
  text-decoration: none;
  background-color: #7d000038;
  padding: 1px 1px -2px;
  border-radius: 4px;
  text-shadow: none;
}

.footer a:link {
  color: #260000;
}

.footer a:visited {
  color: #260000;
}

.footer a:focus {
  border-bottom: 2px solid;
  background-color: #7d000038;
}

.footer a:hover {
  border-bottom: 2px solid #260000;
  background-color: #da323238;
}

.footer a:active {
  background-color: #da323238;
  color: red;
}
/*footer end*/
/*global style*/
