*{
  margin: 0;
  padding: 0;
	box-sizing: border-box;
}

html,body{
  min-width: 100%;
  overflow-x: hidden;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

/* header */

.header {
  background-color: #2ebfce;
  box-shadow: 0px;
  position: fixed;
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: #2ebfce;
}

.header li a {
  margin-top: 20px;
  display: block;
  font-size: 20px;
  font-style: 'Raleway';
  padding: 20px 30px 10px 10px;
  border-right: 0px;
  text-decoration: none;
  color: white;
}

.header li a:hover,
.header .menu-btn:hover {
  color: #b1d4e0;
}

.header .logo {
  display: block;
  float: left;
  font-size: 6em;
  padding: 10px 20px 20px;
  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: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: white;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: white;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.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: 768px) {
  .header li {
    float: left;
  }
  .header li a {
    margin-top: 0px;
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
    
  }
  .header .menu-icon {
    display: none;
  }
}

.logo {
      width: 90px;
    height: 100px;
    padding: 30px;
    
    
}




/* ====================
  Intro Section
=======================*/
.intro-section {
  height: 100vh;
  padding-top: 50px;
  position: relative;
  background: white;
}

.intro-section .intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.intro-section .intro-content h1 {
  color: #b1d4e0;
text-align: center;
font-family: 'Fredoka One', cursive;
  font-size: 5rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-top: 80px;
}

.intro-section .intro-content h6{
  margin-top: 5px;
  color: #b1d4e0;
  font-size: 2.5rem;
  font-weight: 300;
}

.intro-section .intro-content p {
  margin-top: 40px;
  color: #b1d4e0;
}

.intro-content .tagline {
  margin-top:80px;
}

.intro-section .intro-content .tagline .change-container{
	position: relative;
  display: inline-block;
  width: 560px;
  margin-bottom: 55px;
	margin-top: 30px;
}

.intro-section .intro-content .changing {
	position: absolute;
	overflow: hidden;
  width: 100%;
  left:0;
  bottom:0;
  height:0;
  opacity:0;
  color: #b1d4e0;
  text-transform: uppercase;
  word-spacing: 5px;
	text-align: center;
	font-size: 2.5rem;
}

.changing:nth-child(1) {
  animation: revealNextWord 6s cubic-bezier(0.57, 1.52, 0.9, 1.08) 1.5s infinite;
}

.changing:nth-child(2) {
  animation: revealNextWord 6s cubic-bezier(0.57, 1.52, 0.9, 1.08) 3s infinite;
}

.changing:nth-child(3) {
  animation: revealNextWord 6s cubic-bezier(0.57, 1.52, 0.9, 1.08) 4.5s infinite;
}

@keyframes revealNextWord {
  0% { 
    opacity: 0.3; 
    height: 0.0; 
  }
  10% { 
    opacity: 1; 
    height:1.2em; 
  }
  20% { 
    opacity: 1; 
    height:1.2em; 
  }
  28% { 
    opacity: 0; 
    height:2em; 
  }
  
}

.intro-section .intro-content .header-btn a{
  text-decoration: none;
  font-size: 1.5rem;
  color: #3498db;
  background-color: #b1d4e0;
  padding: 15px;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.intro-section .intro-content .header-btn a:before{
	position: absolute;
  
  top: 0px;
  height: 100%;
  left: -25%;
  width: 0%;
  background-color: white;
  transform: skew(50deg);
  transition-duration: 1s;
  z-index: 1;
}

.intro-section .intro-content .header-btn a:hover{
  color: #b1d4e0;
}

.intro-section .intro-content .header-btn a:hover:before{
  width: 170%;

}

.intro-section .intro-content .header-btn a span{
	position: relative;
	z-index: 9;
}

/* ====================
  Responsive Section
=======================*/

/* Tablet desktop :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .navigation .menu-list {
    width: 60%;
  }

  header .navigation .menu-list li a{
    font-size: 1rem;
  }

}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {

  header .navigation .menu-list {
    position: absolute;
    top: 12vh;
    min-width: 100%;
      margin-left: auto;
    background: #2ebfce;
    text-align: center;
    display: none;
  }

  header .navigation .menu-list li {
    display: block;
  }

  header .navigation .menu-list li a {
    display: block;
    padding: 20px;
    transition: color 1s ease, padding 1s ease, background-color 1s ease;

  }

  header .navigation .menu-list li a:hover{
    color: #b1d4e0;
    background: #2ebfce;
  }


  header .navigation .humbarger{
    display: block;
  }

  .intro-section .intro-content h1 {
    font-size: 2.8rem;
    font-family: 'Fredoka One', cursive;
  }

  .intro-section .intro-content h6 {
    font-size: 1.4rem;
  }

  .intro-section .intro-content .changing {
    font-size: 1.5rem;
  }

  .intro-section .intro-content .header-btn a{
    font-size: 1.25rem;
  }

}


/* small mobile :320px. */

@media only screen and (max-width: 479px) {

  .intro-inner .intro-content h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .intro-inner .intro-content p {
    margin-top: 10px;
  }

}




/* callouts */



 .callouts  {
  flex-grow: 1;
  display: fixed;
  align-items: left;
  justify-content: center;
  font-family: sans-serif;
  font-size: 18px;
 background-color: #b1d4e0;
}



.callouts, .news {
  color: white;
    text-align: center;
    line-height: 1.5em;
  position: relative;
    padding: 70px 200px 20px 200px;
      z-index: 1;

}

.callouts p{  

    font-size: 1.5em;
    line-height: 1.45em;
    

}


svg {
  position: absolute;
  top: -8rem;
  left: 0;
  height: calc(100% + 15rem);
  width: 100%;
  z-index: -1;
}

.news {
  color: white;
  background-color: #b1d4e0;
text-align: left;
}

/* avatar */

   .avatar { 
    height: 415px;
    width: 400px;
    float:left; 
    padding-left: 0em;
    margin-left: 0%;
    margin-bottom: 2em;
    transition-property: all ;
    transition-duration: .7s;
    transition-timing-function: ease;
            
}

.avatar:hover{
    height: 435px;
    width: 420px;
    
}

/* avatar end */

/* bouncing arrow */

.downArrow{
	position: relative;
	bottom: 45%;
	left: 50%;
    padding-bottom: 40px;
    margin-top: -50px;
}
.bounce {
	-moz-animation: bounce 3s infinite;
	-webkit-animation: bounce 3s infinite;
	animation: bounce 3s infinite;
}

.downArrow2{
    text-align: right;
	position: relative;
	bottom: 45%;
	left: 50%;
    padding-bottom: 40px;
    margin-top: -50px;
}
.bounce {
	-moz-animation: bounce 3s infinite;
	-webkit-animation: bounce 3s infinite;
	animation: bounce 3s infinite;
}


@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
/* Demo Purpose Only*/
.demo {
  font-family: 'Raleway', sans-serif;
	color:#fff;
    display: block;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
}
.demo a{
  font-family: 'Raleway', sans-serif;
color: #2ecc71;		
}



/* arrow end */


.shark {
    width: 100px;
    float: right;
   -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;

    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;

    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
    @-ms-keyframes spin { 
        from { 
            -ms-transform: rotate(0deg); 
        } to { 
            -ms-transform: rotate(360deg); 
        }
    }
    @-moz-keyframes spin { 
        from { 
            -moz-transform: rotate(0deg); 
        } to { 
            -moz-transform: rotate(360deg); 
        }
    }
    @-webkit-keyframes spin { 
        from { 
            -webkit-transform: rotate(0deg); 
        } to { 
            -webkit-transform: rotate(360deg); 
        }
    }
    @keyframes spin { 
        from { 
            transform: rotate(0deg); 
        } to { 
            transform: rotate(360deg); 
        }
    }
}




 h2 {
    letter-spacing: .15em;
    font-family: 'Fredoka One', cursive;
    font-size: 4em;
    margin-top: auto;
    margin-bottom: 30px;
    color: white;
   }


 h3 {
    text-align: left;
    letter-spacing: .05em;
    font-family: 'raleway';
    font-size: 2em;
    line-height: 1em;
      
}

u {
    
    color: white;
}


hr {
    
    border-top: 3px solid white;
    
    
}


.work p {
    font-family: 'raleway' bold;
    font-size: 40px;
    text-align: right;
    
}


/*DESIGN PAGE*/


.section2 {
    display: flex;
    position: relative;
    padding-top: 100px;
    padding-left: 100px;
    padding-right: 100px;
   
}


.section3 {
    display: flex;
    position: relative;
    padding-top: 100px;
    padding-left: 100px;
    padding-right: 100px;
   background-color: #2ebfce;
}



.section3 h1 {
    
    font-size: 75px;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    line-height: 1em;
    color: white;
    
}


.section3 li {
    
    color: white;
}


.section2 h1 {
    
    font-size: 75px;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    line-height: 1em;
    
    
}

.column3 {
    padding-top: 100px;
    float: left;
 
  margin-bottom: 40px;
  width: 35%;
}

.column4 {
    
    float: left;
 padding: 0px;
  margin-bottom: 40px;
  width: 65%;
}

.column3 p{ 
 padding: 40px;
  
}


.section2 li {
    
    color: #2ebfce;
}

.column2 {
    width: 100%;
    
    position: relative;
   
    
}




.column2 .image-item{ 

padding-top: 20px;

}

.column2 p {
    
    padding: 20px;
}

.column2 h2 {
    
    padding: 30px;
    color: gray;
}

.column3{
    position: relative;
    margin-top: -50px;
}


//*bootstrap*//



@media only screen and (max-width: 767px) {
    
    .section2 {
    display: flex;
    position: relative;
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 50px;
   
}
    
    
  .section3 {
    display: flex;
    position: relative;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
   background-color: #2ebfce;
}  
    
    
    
}



/* COMICS PAGE */


.section4 {
    
    padding: 100px;
}


.section4 h1 {
    
    font-family: 'Raleway';
    font-weight: 600;
   text-align: center;
    padding-top: 20px
    
}


.img2{
    float: center;
    text-align: center;
    padding: 30px
}


.section4 p {
    text-align: center;
    padding: 10px 40px 20px 40px;
}


.content{
    
    padding-top: 100px;
    padding-bottom: 100px;
}

.content2{
    
    padding-top: 100px;
    padding-bottom: 100px;
}

.img3{
    text-align: center;
    width: 50%;
     display: block;
  margin-left: auto;
  margin-right: auto;
}

.comic-title {
    
    font-family: 'Fredoka One';
    letter-spacing: .1em;
    font-size: 70px;
    text-align: center;
    

}

h1 {
    
    font-size: 25px;
}


.button {
  background: #2ebfce;
  border: 1px;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 16px;
margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  letter-spacing: .1em;
}


.button:hover{
    
    background: #F05023;
}

.content a{
   text-decoration: none; 
    
}


.button4 {border-radius: 12px;}


/* column responsive */

.column li {
    
    margin-left: 0px;
    font-size: 20px;
    padding-bottom: 8px;
}

.experience { 
    z-index: 2;
    background-color:#b1d4e0; }

/* Create two equal columns that floats next to each other */
.column {
  float: left;
 padding: 10px;
  margin-bottom: 50px;
  width: 33.33%;
}



/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


/* movement of text */


.container {
  position: relative;
  width: 100vw;
}

.scrolling-text {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
  will-change: transform;
  backface-visibility: hidden;
}

.scrolling-text .scrolling-text-content {
  color: #fff;
  font-family: 'fredoka one';
  letter-spacing: .05em;
  font-size: 120px;
  white-space: nowrap;
  transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
  line-height: 1em;
  margin: 50px 0;
}


/* faded */

/*** Portfolio Section ***/

/* Filters */
#portfolio > .filters {
	text-align: right;
	padding: 0 20px;
}

.filters__title {
	font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

.filters__title,
.filters__list {
	display: inline-block;
	vertical-align: baseline;
}

.filters__label,
.filters__label:not(:first-child)::before {
	color: #dcd5b2;
}

.filters__label {
	display: inline-block;
	position: relative;
	margin-left: .8em;
	cursor: pointer;
}

.filters__label.is-active {
	color: inherit;
}

.filters__label:not(:first-child)::before {
	content: "/";
	margin-right: .8em;
}

/* Projects */

.portfolio__project-wrapper {
	padding: 0 10px;
}

.portfolio__project {
	position: relative;
	height: auto;
	padding: 0;
	background-color: #f7fbde;
	background-clip: padding-box;
	border: 10px solid transparent;
	overflow: hidden;
}
.portfolio__project__preview {
	position: relative;
	top: 0;
	height: auto;
}

.portfolio__project__preview > img {
	width: 100%;
	height: auto;
}

.portfolio__project__description {
	position: absolute;
	top: 100%;
	width: 100%;
	padding: 1.8em 1.3em;
	text-align: center;
	background: #fff;
}

.portfolio__project__name {
	font-family: 'Raleway', sans-serif;
	font-size: 1.1em;
	margin: 0;
	margin-bottom: .2em;
}

.portfolio__project__category {
	font-size: .9em;
	color: #dcd5b2;
	margin-bottom: .6em;
}

.portfolio__project__preview,
.portfolio__project__description {
	transition: all 600ms ease;
}

.portfolio__project:hover .portfolio__project__description {
	transform: translateY(-100%);
}
.portfolio__project:hover .portfolio__project__preview {
	transform: translateY(-2.5em);
}

/* end portfolio */

/* Responsive image gallery rules begin*/

.image-gallery {
  /* Mobile first */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-gallery .column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-item img {
  width: 100%;
  border-radius: 5px;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 768px) {
  .image-gallery {
    flex-direction: row;
  }
}

.section-header {
    padding-top: 200px;
    background-color: #2ebfce;
}

.section-header h1 {
    text-align: left;
    padding-left: 100px;
    color: white;
    font-style: 'fredoka one' cursive;
}

.section-header p {
    
    color: white;
    font-size: 25px;
    padding-left: 50px;
}



/* portfolio */ 





/* overlay styles */

.image-item {
  position: relative;
  cursor: pointer;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.502);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.2s 0.1s ease-in-out;
  color: #fff;
  /* center overlay content */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover */
.image-item:hover .overlay {
  transform: scale(1);
}



/* footer*/

.footer ul {
  display: inline-grid;
  grid-auto-flow: row;
  grid-gap: 24px;
  justify-items: center;
  margin: auto;
  
}

@media (min-width: 500px) {
  .footer ul {
    grid-auto-flow: column;
    
  }
    
    .footer{
         display: block;
 text-align: center;
  padding: 10px 10px 10px 10px;
  height: auto;
  width: 100%;
  background-color: #F05023;
  line-height: 1.3;
  font-family: 'raleway';
    }
    
    

}

.footer a {
  color: white;
  text-decoration: none;
}


.footer li:last-child {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

. footer li:hover ~ li p {
  animation: wave-animation 0.3s infinite;
}

/* below is just for demo styling */

.footer {
  display: block;
 text-align: center;
  padding: 50px 50px 50px 50px;
  height: auto;
  width: 100%;
  background-color: #F05023;
  line-height: 1.3;
  font-family: 'raleway';
  
}

@keyframes wave-animation {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-15deg);
  }
}



/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1200px) {
  .column {
    width: 100%;
    
  }
    
 h2 {
    letter-spacing: .15em;
    font-family: 'Fredoka One', cursive;
    font-size: 4em;
    margin-top: auto;
    margin-bottom: 50px;
    color: white;
   } 
    
   .callouts p{  

    font-size: 1em;
    line-height: 1.45em;

}

    
    
     .column2 h2 {
        
        font-family: 'Raleway';
        color: grey;
    }  
    
}


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    
  }
    
    
    .news {
        
        background-color: #b1d4e0;
  padding: 50px;
        
    }
    
 .callouts  {
  flex-grow: 0;
  display: fixed;
  align-items: left;
  justify-content: center;
  font-family: sans-serif;
  font-size: 16px;
  background-color: #b1d4e0;
  padding: 20px;
}
    
    svg {
    
        
    }


    
.scrolling-text .scrolling-text-content {
  color: #fff;
  font-size: 40px;
  white-space: nowrap;
  transition: transform 0.5s cubic-bezier(0.23, 0.36, 0.28, 0.83);
  line-height: 1em;
  margin: 0px 0;
  margin-left: -30px;
}
    
 h2 {
    letter-spacing: .15em;
    font-family: 'Fredoka One', cursive;
    font-size: 2em;
    margin-top: 50px;
    margin-bottom: 20px;
    color: white;
   } 
    
   .callouts p{  
   padding: auto;
    font-size: 1em;
    line-height: 1.45em;
    margin: auto;
}
    
    
svg {
  position: absolute;
  top: -5rem;
  bottom: 2rem;
  left: 0;
  height: calc(100% + 15rem);
  width: 100%;
  z-index: -1;
}
 
    
    .column2 h2 {
        
        font-family: 'Raleway';
        color: grey;
    }    

 
}
