/*
    Theme Name: ALFREDO JAAR STUDIO, MAO
    Description: AJS is a WordPress CMS based theme
    Version: 1
    Author: Mauricio Arango. Implemented by OUTSET
    Author URI: https://www.alfredojaar.com/
    Tags: Blank, HTML5, CSS3
    License: MIT
    License URI: http://opensource.org/licenses/mit-license.php
*/
/*THE MINIFIED RESET*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    display: none;
}
a {
  text-decoration: none;
}
/*self clearfixing*/
/*section:before, section:after, article:before, article:after {clear: both; content: ""; display: table;}*/
/* new clearfix */
/* removed comments from below clearfix - SAKI */
.clearfix::after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
* html .clearfix {
    transform: scale(1)
}
/* IE6 */
*:first-child+html .clearfix {
    transform: scale(1)
}
/* IE7 */
/*END RESET*/
/* MAURICIO'S AdditionS */
* {
    /* All divs will have border-box property */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    /* Removes Hyphens */
    -moz-hyphens:none;
    -ms-hyphens:none;
    -webkit-hyphens: none;
    hyphens:none;
}

/* iOS Eliminate default */
textarea, input, input[type="text"], input[type="button"], input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}
button{
  -webkit-appearance: none;
  background-color: transparent;
  border-radius: 0;
  border: none;
  bottom: 0;
  box-shadow: none;
  cursor:pointer;
}
*:focus, textarea:focus, input:focus{
    outline: none;
}
video:-webkit-full-screen {
   width: 100%;
   height: 100%;
   max-height: 100%;
   transform: none !important;
   top: 0;
   left:  0;
}
/* SAKI'S Custom Resets */
img {
  max-width: 100%;
  height: auto;
}
a, a:active, a:focus {
  color: black;
}
/* COMMON TO ALL */
html {
 overflow-x:hidden
}
body,html {
 width:100%;
}
/* fade image in after load */
img.lazyload{
  opacity: 0;
}
,
img.lazyloading {

}
img.lazyloaded {
  opacity: 1;
  transition: opacity 750ms;
}