@charset "utf-8";

* {
    box-sizing: border-box;
}

html {
    background-color: #000;
}

header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 75px; 
    grid-gap: 10px;
    align-items: center;
    justify-items: center;
    overflow-x:hidden;
    cursor: url(../images/cursor.png), auto;
}

section {
    
    margin-top: 30px;

}



footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(1, 150px);
    align-items: center;
    justify-items: right;
    padding: 20px;
    margin: 50px 0;
    border-top: 2px snow solid;
}

footer ul li {
    list-style: none;
    line-height: 200%;
    text-decoration: none;
    font-family: "Michroma", "Unica One", Helvetica, sans-serif;
    color: white;
}

a {
	text-decoration: none;
    list-style: none;
}


.visibilityOn {
    visibility: visible;
}

.visibilityOff {
    visibility: hidden;
}

/******************************************** #ID *********************************************/



#mainNav {

    grid-column: 2/4;

}

#mainNav ul { 

    list-style: none;
    display: inline;
    
}

#mainNav ul li {
    display: inline;
    padding-top: 35px;
    padding-left: 35px;
}

#stickyHeader {

    position: fixed;
    max-height: 50px;
    border-bottom: white;
    z-index: 19;
}


#stickyLogo{
    max-height: 45px;
    position: fixed;
    left: 15px;
    display: none;
}

#stickyLogo:hover {
    padding: 3px;
    border: 3px solid tomato;
}

#stickyLogo:focus {
    padding: 3px;
    border: 3px solid tomato;
}

#stickyCart {
    max-height: 40px;
    position: fixed;
    right: 70px;
    z-index: 19;
}

#stickyIG{
    max-height: 37px;
    position: fixed;
    right: 85px; 
    top: 10px;
}

#stickyBurgerMenu {
    max-height: 37px;
    position: fixed;
    right: 15px; 
    top: 10px;
}

#stickyBurgerMenu:hover{
    transform: rotate(90deg);
    background-color: tomato;
}

#stickyBurgerMenu:active{
    transform: rotate(90deg);
    background-color: blueviolet;
}


#burgerNav {
    background-color: black;
    text-align: center;
    list-style: none;
    position: fixed;
    top: 72px;
    right: 15px;
    z-index: 21;
    padding: 0 auto;
    border-radius: 10px;
    
}

#burgerNav ul {
    list-style: none;
    border: 3px solid yellow;
    padding: 15px 25px;
    margin: 0;
}

#burgerNav ul li {
    
    font-size: 12pt;
    border-bottom: 1px dotted yellow;
    margin-bottom: 15px;

}

#burgerNav ul:last-child{
    margin-bottom: 0px;
}

#burgerMenu {
    
    visibility: hidden;

}

#divCart {
    display: grid;
    grid-template-columns: 59% 40%;
    grid-gap: 35px;
    align-items: center;
    justify-items: center;
}

#logo {
    width: 76%;
    padding-left: 15px;
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ main banner @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */


#mainBanner {
    position: relative;
    min-height: 91vh;
    background: black;
    z-index: 18;
    color: white;
}

#mainBanner h1 {
    margin-top: 35px;
}

h1 {
    font-family: "Michroma", Helvetica;
    font-size: 1.75em;
    text-align: center;
    margin: 0;
    color: white;
    letter-spacing: 2.55px;
}

.h1-fr {
    font-size: .72em;
}

h2 {
    font-size: 1.75em;
    color: white;
    font-family: "Michroma", Helvetica;
    letter-spacing: 2px;
    text-align: center;
    padding: 5px 11px;
    margin: 0;
}

p {
    font-family: "Lora", "Georgia";
    font-size: 1em;
    text-align: center;
    letter-spacing: 1.5px;
    color: white;
}

.fib-div {
    background-color: rgba(0,0,0,.5);
    position: absolute;
    bottom: 48%;
    padding: 0;
    right: 0;
}

.fib-div-2 {
    position: absolute; 
    bottom: 5px; 
    right: 5px; 
    font-size: 1.7em;
    letter-spacing: 1px;
    margin: 0;
    text-align: right;
}

#particles-js {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 91vh;
    margin: 0 auto;
    z-index: 7;
}

#particles-js-2 {
    position: relative;
    top: 0px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 7;
    
}

.particles-js-canvas-el {
    position: absolute;
    top: 0;
    min-height: 90vh;
    z-index: 7;
    overflow: hidden;
}


#divArth {
    height: auto;
    width: 100%;
    margin: 0 auto;
    z-index: 19;
}

#earthAI {
    display: block;
    margin: 15vh auto 25px auto;
    height: 42%;
}  

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ fibonacci @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

.fibonacci-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 8.3vh);
    background-color:white;
    border:black;
    margin: 0;
    padding: 0;
    
}

#fibonacci-title-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,.6);
    padding: 0;
}

#fibonacci-div-1 {
    position: relative;
    grid-column: 1/8;
    grid-row: 1/10;
    padding: 10px;
    border: 3px solid black;
    background-image: url('../images/buildings.jpg');
    background-size: auto 120%;
    background-position: center;
    background-repeat: no-repeat;

}

#fibonacci-div-2 {
    position: relative;
    grid-column: 8/13;
    grid-row: 1/8;
    padding: 10px;
    border: 3px solid black;
    background-image: url('../images/consulting.jpg');
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;

}

#fibonacci-div-3 {

    grid-column: 1/10;
    grid-row: 10/13;
    padding: 10px;
    border: 3px solid black;

    background-image: url('../images/node-3.jpg');
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;

}

#fibonacci-div-4 {

    grid-column: 10/13;
    grid-row: 8/13;
    padding: 10px;
    border: 3px solid black;
    background-image: url('../images/research-3-1.jpg');
    background-size: auto 140%;
    background-position: center;
    background-repeat: no-repeat;

}   

#fibonacci-div-5 {
    position: relative;
    grid-column: 8/10;
    grid-row: 8/10;
    border: 3px solid black;
    
}

div img {

    max-width: 100%;
    height: auto;

}

.fib-5-img {

    max-width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 1px;
    transform: translateY(-50%);
}


#fibonacci-logo {

    height: auto;
    min-width: 50%;
    display: block;
    margin: 0 auto;
    
}

#fibonacci-logo-2{

    display: none;

}

.fibonacci-grid-image {
    height: auto;
    max-width: 50%;
    display: block;
    margin: 0 auto;
}

.fibonacci-text {
    text-align: center;
    font-size: 1em;
    color:seagreen;
    font-weight: 600;
}

.font1rem {
    font-size: .7rem;
}

.fibonacci-header {
    text-align: center;
    font-size: 1.15em;
    color: black;
    font-weight: 800;
    padding: 0;
    margin: 0;
}




/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ INSTAGRAM @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

#section-3-row {
    margin: 70px auto 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
    justify-items: center;
    align-items: center;
    max-width: 90%;
}

#section-3-row h1 {
    font-size: 1.3em;
}


.divIG1 {

    width: 100%;
    overflow: hidden;
    border: white 2px solid;
    padding: 44px;
    border-collapse: collapse;    

}

.divIG2 {

    height: auto;
    width: 100%;
    overflow: hidden;
    border: white 2px solid;
    padding: 44px;
    border-collapse: collapse;
}

.divIG3 {

    width: 100%;
    overflow: hidden;
    border: white 2px solid;
    padding: 44px;
    border-collapse: collapse;
}

#two-columns-template {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 30vh 30vh;
    max-width: 70%;
    margin: 100px auto 50px auto;
    border: white 2px solid;
    
}

#two-columns-template div p {
    font-size: .83em;
    line-height: 1.5em;
}

.about-us {
    grid-column: 2/3;
    grid-row: 1/3;
    border: white, 2px, solid; 
    padding: 30px 69px;
}

.div-one {
    grid-column: 1/2;
    grid-row: 1/2;
    border: white, 2px, solid; 
    background-color: rgb(77, 77, 77);
    padding: 20px 0px 0px 5px;
}

div.div-one p {
    font-size: .8em;
}
.div-two {
    grid-column: 1/2;
    grid-row: 2/3;
    background-image: url(../images/development-1.jpg);
    background-size: 100% auto;
    background-position: center center;
    border: white, 2px, solid; 
}



.section-header {
    text-align: center;
    font-size: 24pt;    
    background-image: linear-gradient(180deg, white, orange);
    background-size: 15%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent; 
}





/******************************************** .class *********************************************/

.glowText {
    text-shadow: 0px 0px 15px orange;
}

.justify-self-left {
    justify-self: left;
}

.gradientText {
    background-color: #f3ec78;
    background-image: linear-gradient(180deg, white, orange);
    background-size: 15%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}

.fontUnicaOne {
    font-family: "Michroma", sans-serif;
    text-transform:uppercase;
    letter-spacing: .25rem;
    color: white;
    text-decoration: none;
    list-style: none;
}

.fontSize32pt {
    font-size: 32pt;
}

.fontSize24pt {
    font-size: 24pt;
}

.fontSize20pt {
    font-size: 20pt;
}

.fontSize10pt {
    font-size: 10pt;
}
.textCenterAlign {
    text-align: center;
}

.container {
    max-width: 90%;
    margin: 0 auto;
}

.static-container {
    max-width: 80%;
    margin: 0 auto;
}

.slideAdjust {
    min-width: 300px;
}

.mySlides {
    display: none;
	transition-duration: .35s;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.25s;
}

.floatRight {
    float: right;
}

.centerImage {
    display: block;
    margin: 0 auto;
    
}

.displayNone {
    display: none;
}


.hide {
    visibility: hidden;
}

.inline {
    display: inline;
}


/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ AGE VERIFICATION DIV @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */


.divButton {
    padding: 15px 25px;
    background-color: silver;
    display: inline-block;
    margin: 0 25px;
}

.divButton:hover{
    color: yellow;
    background-color:darkred;
    cursor: url(../images/cursorHover.png),auto;
}

.divButton:active{
    color: yellow;
    background-color:darkred;
    cursor: url(../images/cursorHover.png),auto;
}

#verifyButtonsDiv {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    margin: 25px auto 5px auto;
    
}





/******************************************** KEYFRAME ANIMATION *********************************************/

@keyframes slidingBanner {

    from {
      transform: translateX(0);
    }
  
    to {
      transform: translateX(100%);
    }

  }
  
  p.sliding-banner {
    animation-duration: 14s;
    animation-name: slidingBanner;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function:linear;
  }


@keyframes glowingText {

    0% {
        
            text-shadow: 0px 0px 25px orange;
        
    }

    50% {

        text-shadow: 0px 0px 3px palegoldenrod ;

    }

    100% {

        text-shadow: 2px 0px 25px orange;

    }

}

.glowingText {
    animation-duration: 2s;
    animation-name: glowingText;
    animation-iteration-count: infinite;
    animation-direction:normal;
    animation-timing-function:ease-in-out;
}

@keyframes glowingAgeVerifyText {

        0% {
            
            text-shadow:2px 2px 25px yellow;
        
    }

    50% {

        text-shadow: 0px 0px 3px red ;

    }

    100% {

        text-shadow: 2px 2px 25px yellow;

    }

}

.glowingAgeVerify {
    color: rgb(196, 196, 5);
    animation-duration: 1.5s;
    animation-name: glowingAgeVerifyText;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-timing-function: ease-in-out;
}

/******************************************** RESPONSIVITY *********************************************/
/******************************************** RESPONSIVITY *********************************************/
/******************************************** RESPONSIVITY *********************************************/
/******************************************** RESPONSIVITY *********************************************/

@media only screen and (max-width: 1750px) {

    
}

@media only screen and (max-width: 1650px) {

   

}

@media only screen and (max-width: 1500px) {

    

}

@media only screen and (max-width: 1366px) {

  

    #mainNav ul li {
        font-size: 10pt;
    }

    
}

@media only screen and (max-width: 1280px) {

    
    
    #mainNav ul li {
        font-size: 8pt;
    }


}


@media only screen and (max-width: 1152px) {

    .about-us {
        
        padding: 30px 42px;
    }

}


@media only screen and (max-width: 1000px) {

    .about-us {
        font-size: .9em;
        padding: 20px 35px;
    }

    #mainNav ul { 
        list-style: none;
        display: none;
    }

    #burgerMenu {
        visibility:visible;
    }

    #burgerMenu:hover{

        transform: rotate(90deg);
        background-color: tomato;

    }
    

    #burgerNav {
        
        top: 60px;
        right: 15px;
        padding: 0 auto;
        border-radius: 10px;
        
    }

    #burgerNav ul li {
        margin-bottom: 11px;
    }

    #logo {
        width: 95%;
        padding-left: 15px;
    }

}

@media only screen and (max-width: 786px) {

    #two-columns-template {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 33vh 33vh;
        max-width: 96%;
        border: white 2px solid;
        
    }

    

    .fib-div-2 {
        font-size: 1.25em;
    }

    #section-3-row {
        grid-template-columns: 1fr;
    }

    .particles-js-canvas-el {
        position: absolute;
        top: 0;
        z-index: 7;
    }  


    header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 50px;
        grid-gap: 5px;
        align-items: center;
        justify-items: center;
        overflow-x:hidden;
        
    }

    #mainNav ul { 
        list-style: none;
        display: none;
    }

    #mainNav {
        display: none;
    }

    #divLogo {
        
        justify-self: left;
    }

      
    .fibonacci-grid {

        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(12, 7.7vh);
        background-color:white;
        border:black;
        margin: 0;
        padding: 0;
        
    }
    
    #fibonacci-div-1 {
    
        grid-column: 1/8;
        grid-row: 1/10;
        padding: 10px;
        border: 1px solid black;
        background-image: url('../images/buildings.jpg');
        background-size: auto 120%;
        background-position: center;
        background-repeat: no-repeat;
    
    }
    
    #fibonacci-div-2 {

        grid-column: 8/13;
        grid-row: 1/8;
        padding: 10px;
        border: 1.5px solid black;
        background-image: url('../images/consulting-2.jpg');
        background-size: 120% 100%;
        background-position: center;
        background-repeat: no-repeat;
    
    }
    
    #fibonacci-div-3 {
    
        grid-column: 1/10;
        grid-row: 10/13;
        padding: 10px;
        border: 1.5px solid black;
    
    
    }
    
    #fibonacci-div-4 {
    
        grid-column: 10/13;
        grid-row: 8/13;
        padding: 10px;
        border: 1.5px solid black;
        background-image: url('../images/research-3.jpg');
        background-size: 130% 100%;
        background-position: center;
        background-repeat: no-repeat;
    
    } 

    #particles-js-2 {
        position: relative;
        top: 0px;
        width: 100%;
        height: 100%;
        margin: 0 auto;
        z-index: 7;
        
    }
}

@media only screen and (max-width: 600px) {
    
    
    .about-us {
       
        padding: 10px 7px;
    }

    section#two-columns-template p {
        text-align: left;
    }

    h1 {
        font-size: 1.2em;
        text-align: center;
    }
    
    p {
    
        font-family: "Lora", "Georgia";
        font-size: .85em;
        text-align: center;
    
    }

    .contact-us-p {
        font-size: .95em;
    }

    h2 {
        font-size: 1.15em;
        text-align:left;
    }

    .fibonacci-grid {

        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(12, 7vh);
        background-color:white;
        border:black;
        margin: 0;
        padding: 0;
        
    }
    #fibonacci-div-3 {
 
        background-image: url('../images/node-3.jpg');
        background-size: auto 100%;
        background-position: center;
        background-repeat: no-repeat;
    
    }
    #fibonacci-div-5 {

        background-color: black;

    }

    #fibonacci-logo {
        display: none;
    }

    #fibonacci-logo-2{

        display: block;

    }

    .div-two {
        background-size: auto 100%;
        background-position: center center;
        border: white, 2px, solid; 
    }

}

@media only screen and (max-width: 500px) {

    .about-us {
        font-size: .81em;
    }

    section#two-columns-template p.contact-us-p {
        font-size: .65em;
    }

    div.div-one h1 {
        font-size: 1.1em;
    }

    .div-one {
        padding-top: 10px;
    }
    
    #stickyHeader {

        position: fixed;
        max-height: 50px;
        border-bottom: white;
        z-index: 19;

    }

    #mainNav ul { 
        list-style: none;
        display: none;
    }

    #mainNav {
        display: none;
    }

    header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 5px;
        align-items: right;
        justify-items: center;
        overflow-x:hidden;
    }

    #divCart {
        
        grid-gap: 5px;
        
    }

    @keyframes slidingBanner {
        from {
          transform: translateX(0);
        }
      
        to {
          transform: translateX(200%);
        }
      }

    p.sliding-banner {
        animation-duration: 8s;
        animation-name: slidingBanner;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-timing-function:linear;
        left: -200%;
      }

    .flavorLogo {

        width: 30%;
        padding: 5px;
    
    }

}

    @media only screen and (max-width: 481px) {

        #earthAI {
            left: 16%;
        }
    
    }

    @media only screen and (max-width: 450px) {

        #earthAI {
            left: 13%;
        }
        

        .two-columns-div {

            display:inline-block;
            min-width: 48%;
            min-height: 300px;
            
            margin: 0;
            background: radial-gradient(#b6b5bd 0, #565968 50%, #31394a 75% ,#051c32 90%, #051c32 100% );
            box-sizing:border-box;
        }

         .fontSize32pt {
            font-size: 22pt;
        }
        
         

    }

    @media only screen and (max-width: 431px) {

        #earthAI {
            left: 11%;
        }

    }


    @media only screen and (max-width: 414px) {

        #earthAI {
            left: 10%;
        }

    }

    @media only screen and (max-width: 400px) {

        #earthAI {
            left: 7.5%;
        }

    }

    @media only screen and (max-width: 380px) {

        #earthAI {
            left: 5%;
        }

    }





/******************************************** ADD NEW FONTS *********************************************/

@font-face {
	font-family: "Lora";
	src: url('fonts/lora-regular-webfont.eot') format('eot');
	src:
			 url('fonts/lora-regular-webfont.woff') format('woff'),
			 url('fonts/lora-regular-webfont.otf') format('opentype'),
			 url('fonts/lora-regular-webfont.svg#filename') format('svg');
}

@font-face {
	font-family: "Unica One";
	src: url('fonts/unicaone-regular-webfont.eot') format('eot');
	src:
			 url('fonts/unicaone-regular-webfont.woff') format('woff'),
			 url('fonts/unicaone-regular-webfont.otf') format('opentype'),
			 url('fonts/unicaone-regular-webfont.svg#filename') format('svg');
}

@font-face {
	font-family: "Michroma";
	src: url('fonts/Michroma.eot') format('eot');
	src:
			 url('fonts/Michroma.woff') format('woff'),
			 url('fonts/Michroma.otf') format('opentype'),
			 url('fonts/Michroma.svg#filename') format('svg');
}

/*
    transform: rotateX(90deg);
    transform: rotateY(90deg);
    transform: rotateZ(90deg);
    transform: scaleX(100px);
    transform: scaleY(100px);
    transform: scaleZ(100px);
    transform: translateX(-100px);
    transform: translateY(50px);
    transform: translateZ(400px);

    -ms-transform:;
    -moz-transform:;
    -o-transform:;
    -webkit-transform:;
*/