@charset "UTF-8";
/*
  # Kirby Starterkit
  
  This CSS file handles all of the styling in of Kirby’s
  Starterkit. Feel free to tinker around with it and
  adjust it according to your needs.  
  
  ## Color Definitions
  
  The following colors used in the Starterkit. If you want
  to use this CSS file as a starting point for your own
  project, you can do a simple search & replace to adjust
  the color scheme to your needs.
  
  - Background:            #fffff8
  - Text:                  #261e66
  - Hovered Links:         #560bed
  - Active Button BG:      #4509be
  - Caption BG in projects
    showcase:              rgba(38, 30, 102, .95)

  - Highlight, Selection,
    Link Underline:        #71efac
  - Tap color
    (touch devices):       rgba(113, 239, 172, .5)
  - Marked Text BG,
    Callout Boxes BG:      #eafded

  - Menu Separator,
    <hr> in text:          #a8a5be
  - Blockquote BG:         #fffffd
  
  ## Table of Contents
  
  1 Global Rules & Definitions
  1.1 Font Definitions
  1.2 Reset & Normalization
  1.3 General Typography
  1.4 Images & Figures
  
  2 Layout Helpers & Reusable Components
  2.1 Kirbytext
  2.2 Button
  2.3 Grid & Layout
  2.4 Pagination
  2.5 Projects Showcase
  
  3 Site Layout
  3.1 Header
  3.2 Menu
  3.3 Sticky Footer
  3.4 Main Content
  
  4 Template-specific Components
  4.1 Homepage
  4.2 Blog Article
  4.3 Team
  4.4 Contact
  
*/

/* =====  1 Global Rules & Definitions  ===================================== */

/* -----  1.1 Font Definitions  --------------------------------------------- */

@import url('https://fonts.googleapis.com/css?family=Crimson+Text:400,400i');

/* -----  1.2 Reset & Normalization  ---------------------------------------- */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
  list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary {
  /* Add correct display for IE 9- and some newer browsers */
  display: block;
}

::-moz-selection {
  background: #ace5d7;
  color: #f6ff00;
}

::selection {
  background: #ace5d7;
  color: #f6ff00;
}

/* -----  1.3 General Typography  ------------------------------------------- */


h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, pre {
  /* Reset font-sizes and normalize margins */
  font-size: inherit;
  line-height: inherit;
}

p {
  line-height: 1.3em;
}

/* Headings */
h1, h2, h3 {
  font-weight: 400;
}

h1 {
  font-weight: 400;
  font-size: 2.5rem;
}

h2 {
  font-weight: 900;
  font-size: inherit;
  text-align: left;
  line-height: 1.3em;
  font-style: italic;
}

h3 {
  font-size: 1.25em;
  line-height: 1;
}

h4 {
  font-size: 1em;
}

/* Links */
a {
  color: white;
  text-decoration: none;

}

a:hover, a:focus, a:active {
  color: yellow;
}

/* Misc */
hr {
  height: 0.7rem;
}



i, em {
  /* Vesper Libre does not have Italics,
     so we use a the *medium* weight instead */
  font-weight: 400;
  font-style: normal;
}

b, strong {
  font-weight: 400;
}

mark {
  padding: .1em .05em;
  margin: -.1em 0;
  color: yellow;
  background: #eafded;
}

/* -----  1.4 Images & Figures  --------------------------------------------- */

img {
  border-style: none;
  width: 100%;
  height: auto;
  margin-top: 0.5em;
}


figcaption {
  font-size: .75rem;
}

/* =====  2 Layout Helpers & Reusable Components  =========================== */

/* The Clearfix™: A classic … */
.cf::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;
  clear: both;
}

/* -----  2.1 Kirbytext  ---------------------------------------------------- */


.text {
  margin-top: 0rem;
  text-align: left;
}





@supports (-webkit-overflow-scrolling: touch) {
  .text pre > code {
    /* Enables smoother scrolling for code sections on
       mobile (i.e. touch) devices. */
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}



/* -----  2.2 Button  ------------------------------------------------------- */

.btn {
  display: block;
  padding: .6em .75em;
  margin-bottom: 2em;
  text-shadow:none;
  font-family: Helvetica, Arial, sans-serif;
  vertical-align: middle;
  margin-left: 5%;
  margin-right: 5%;
  white-space: nowrap;
  font-style: normal;
  width: 90%;
  font-size: 1em;
  line-height: 1;
  text-align: center;
  color:black;
  background: #ffdba5; /* Old browsers */
  background: -moz-linear-gradient(left, #ffdba5 0%, #ffffff 52%, #fcd792 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ffdba5 0%,#ffffff 52%,#fcd792 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ffdba5 0%,#ffffff 52%,#fcd792 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  position: relative;
  box-shadow: 0 5px 9px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btn:hover {
  background: white; /* Old browsers */
 
  text-decoration: none;
  color:black;
}


/* -----  2.3 Grid & Layout  ------------------------------------------------ */

.grid {
  font-size: 0;
}

.grid.gutter-1 {
  /* We don’t use the shorthand attribute `margin: …` here
     to make vertical margin easily overridable by other
     styles with a lower specifity. */
  margin-left: -.375rem;
  margin-right: -.375rem;
}

.grid.gutter-1 .column {
  padding-left: .375rem;
  padding-right: .375rem;
}

.column {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  vertical-align: top;
}

.wrap {
  box-sizing: content-box;
  margin: 0 auto;
  margin-top: 0.5em;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 90%;
}

.wrap.wide {
  max-width: 100%;
}

@media all and (min-width: 31.5em) {
  .wrap:not(.wide) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  
}

@media all and (min-width: 38.25em) {
  .wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .wrap.wide {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  img {
  border-style: none;
  width: 65%;
  height: auto;
}


}

/* -----  2.4 Pagination  --------------------------------------------------- */

.pagination {
  margin-bottom: 1.5rem;
}

.pagination-item {
  position: relative;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #efeeed;
  color: #261e66;
  border-bottom: 0;
}

.pagination-item:hover, .pagination-item:focus {
  background: #261e66;
  color: #71efac;
}

.pagination-item:active {
  background: #4509be;
}

.pagination-item.left {
  float: left;
}

.pagination-item.right {
  float: right;
}

.pagination-item svg {
  position: relative;
  top: 50%;
  display: block;
  margin: -6px auto 0;
  width: 24px;
  height: 12px;
}

.pagination-item path {
  fill: currentColor;
}

.pagination-item.is-inactive {
  color: #e4e3e6;
  border: 2px solid currentColor;
  background: transparent;
}

@media all and (min-width: 75em) {
  .pagination-item {
    position: fixed;
    top: 50%;
    margin-top: -.875rem;
  }
  .pagination-item.left {
    float: none;
    left: 2.25rem;
  }
  .pagination-item.right {
    float: none;
    right: 2.25rem;
  }
}

@media all and (pointer: coarse) {
  .pagination-item {
    /* On touch-devices we increase prev/next buttons */
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* ----- 2.5 Projects Showcase ---------------------------------------------- */


@media all and (min-width: 38em) {
 
.showcase-link {
  display: block;
  position: relative;
  padding-top: 1em;
  z-index: 0;
  border-bottom: 0;
}

}
.showcase-link {
  display: block;
  position: relative;
  padding-top: 1em;
  z-index: 0;
  border-bottom: 0;
}

@media screen and (min-width: 44em) {
  .col-group {
    overflow: hidden;
    margin-left:5%;
    margin-right:5%;
  }
  .col-group > div {
    float: left;
    width: 50%;
  }
}

@media screen and (max-width: 38em) {
  .col-group {
    overflow: hidden;
    margin-left:5%;
    margin-right:5%;
  }
  .col-group > div {
    float: left;
    width: 100%;
  }
}

/* =====  3 Site Layout  ==================================================== */

body{
    overflow: auto;
      height: 100%;
}

html {
  background-color: #000000;
  background: url("/content/home/bg.svg") center top no-repeat black;
  background-attachment: local;
  background-size: 100% auto;    
  color: #fcfbef;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
  font: italic 900 1.6em/1.6 Arial, sans-serif;
  /* Always show the vertical scrollbar to prevent `jumps`
     of page content after navigating from a very short page
     that does not scroll to a long pager */
  overflow: visible;
  overflow-scrolling: visible;
  -webkit-overflow-scroll: touch;
  -webkit-overflow-scrolling: touch;
  /* Setting this to `default` prevents the cursors from
     changing when hovering blocks of text or whitespace,
     which is less distracting */
  cursor: default;
  /* Neccessary for sticks footer. */
  position: relative;
  height: 100%;
  min-height: 100%;
  /* Prevent adjustments of font size after orientation
     changes in IE and iOS. */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* Highlight color for WebKit-bases touch devices. */
  -webkit-tap-highlight-color: red;
}

@media all and (max-width: 375px) {
  html {
    /* We decrease the font-size a little-bit for tiny
       screens. Because this stylesheet uses relative units
       everywhere, everything scales nicely. */
    font-size: 1.25em;
    background-attachment: local;
    background-size: contain;    
  }
}

body {
  /* space for sticky footer */
  margin-bottom: 0.5rem;
}

/* ----- 3.1  Header  ------------------------------------------------------- */

.header {
  padding-top: 0.5rem;
  line-height: 1em;
  color:#ff1e47;
  padding-bottom: 10em;
}



@media all and (min-width: 56em) {
  .header {
    padding-top: 0.4rem;
    padding-bottom: 1.5rem;
      padding-bottom: 20em;
  }
  
}

/* -----  3.2 Menu  --------------------------------------------------------- */

.menu {
  text-align: center;
  font-weight: 400;
}

.menu-item {
  display: inline-block;
}

.menu-item:not(:last-child)::after {
  content: "⁄";
  display: inline-block;
  font-size: .75em;
  padding: 0 .2em;
  color: yellow;
}

.menu-item a {
  border-bottom: 0;
}

.menu-item.is-active a {
  border-bottom: 2px solid #71efac;
}

@media all and (min-width: 56em) {
  .menu {
    text-align: right;
  }
}

/* -----  3.3 Sticky Footer  ------------------------------------------------ */



.footer {
  position: relative;
  margin-top: 5em;
  bottom: 1em;
  width: 100%;
  text-align: center;

}





@media all and (min-width: 48em) {
  
 
}

/* -----  3.4 Main Content  ------------------------------------------------- */

.main {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

@media all and (max-width: 30em) {
  .main {
 padding-top: 5rem;
  padding-bottom: 1.5rem;

  }
}

/* =====  4 Template-specific Components ==================================== */

/* -----  4.1 Homepage  ----------------------------------------------------- */

.projects-section {
  background: #eafded;
  margin-top: 3rem;
  padding-top: 2.25rem;
  padding-bottom: .75rem;
}

.projects-section-more {
  text-align: center;
}

/* ----- 4.2 Blog Article  -------------------------------------------------- */


.article {
background-color: transparent;
-webkit-box-shadow: inset 0px 0px 121px 104px rgba(255,255,255,1);
-moz-box-shadow: inset 0px 0px 121px 104px rgba(255,255,255,1);
box-shadow: inset 0px 0px 121px 104px rgba(255,255,255,1);
padding: 1em;
padding-bottom: 5em;
color:red;
min-height: 600px;

}

.article .text {
  width:100%;
}


.article img {
max-width: 100%;
margin-left: auto;
margin-right: auto;
display: block;
margin-top:1em;
}


.routine {
   background: url("/content/rectangle-1.png") center center no-repeat;
  background-size: 100% 100%;
padding: 1em;
padding-bottom: 1em;
}

.routine img {
max-width: 100%;
margin-left: auto;
margin-right: auto;
display: block;
margin-top: 1em;
}

.mani {
  width:95%;
margin-left: 2%;
margin-right: 2%;
margin-top: 1em;
margin-bottom: 5em;
color:red;}

.mani a{
  color:red;
text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}


@media all and (min-width: 38.25em) {
.routine {
 background: url("/content/rectangle-1.png") center center no-repeat;
  background-size: 100% 100%;
padding: 3em;
padding-bottom: 5em;
}

.article {
  background-color: transparent;
-webkit-box-shadow: inset 0px 0px 221px 104px rgba(255,255,255,1);
-moz-box-shadow: inset 0px 0px 221px 104px rgba(255,255,255,1);
box-shadow: inset 0px 0px 221px 104px rgba(255,255,255,1);
padding: 3em;
padding-bottom: 5em;
}


  .article img {
max-width: 50%;
margin-left: auto;
margin-right: auto;
vertical-align: middle;
}

.routine img {
max-width: 50%;
margin-left: auto;
margin-right: auto;
vertical-align: middle;
}

.mani {
  width:95%;
margin-left: 2%;
margin-right: 2%;
margin-top: 1em;
margin-bottom: 30%;
text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
color:red;}


}


