/*----------------------ALL PAGES------------------------*/
/*
a really lit green: rgba(0,184,142,1)
papaya: #E24E42 rbga(245,40,43,1)
mustard: #E9B000 rgba(240,177,0,1)
blush: #EB6E8D #E24E42
aqua: #008595 #008595
*/


h1 {
    font-size: 100px;
}

h2{
    font-size: 55px;
}

h3 {
    font-size: 30px;
}
h5{
    font-size: 0.83em;
}

p
{
    margin:0;
    padding:0;
}

.words {
    padding: 10px 50px 10px 50px;
    text-align: center;
}

.title{
    font-size: 55px;
    text-align: center;
}

.content{
    background-color: #fdfdfd;
    margin-left: 5%;
    margin-right: 5%;
    height: 100%;

    align-items: center;
    justify-content: center;
}

.odd-bg{
    background-color: #fdfdfd;
}

.even-bg{
    background-color: #001f3f;
}


.inner-content {
    padding-top: 80px;
    padding-bottom: 30px;
}

a:focus, a:hover{
    text-decoration: none;
    color: #fdfdfd;
}

a{
    font-size: inherit !important;
}

.page-footer img{
    width: 101%;
    /* margin-left: 2px;
    margin-bottom: -10px; */
    margin-top: 1%;
    margin-bottom: 1%;
}

/*----------------- NAVBAR -------------------------------*/

.navbar{
    background-color: #001f3f;
    min-height: 60px;
}

.nav.navbar-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
    width: 100%;
}

.nav-link{
    font-size: 20px !important;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fdfdfd;
}
.navbar-dark .navbar-nav .nav-link {
    color: #AAAAAA;;
}


/*-------------------------HOME PAGE---------------------------------*/

#home {
    text-align: center;
    display: table;
    background-image: url('../img/bgs/poppy.jpg');
    background-color: #001f3f;
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.home-cont{
    display: table-cell;
    vertical-align: middle;
    color: #fdfdfd;
}

/*ANIMATIONS*/

#first-sub{
    animation:myfirst 5s;
    -moz-animation:myfirst 5s infinite;
    -webkit-animation:myfirst 5s infinite;
}

#sec-sub{
    animation:mysec 5s;
    -moz-animation:mysec 5s infinite;
    -webkit-animation:mysec 5s infinite;
}

#third-sub{
    animation:mythird 5s;
    -moz-animation:mythird 5s infinite;
    -webkit-animation:mythird 5s infinite;
}


@-moz-keyframes myfirst
{
33% {color: #fdfdfd;}
66% {color: #333;}
100% {color: #333;}

}

  @-webkit-keyframes myfirst
{
33% {color: #fdfdfd;}
66% {color: #333;}
100% {color: #333;}
}


@-moz-keyframes mysec /* Firefox */
{
33% {color: #333;}
66% {color: #fdfdfd;}
100% {color: #333;}

}

  @-webkit-keyframes mysec /* Firefox */
{
33% {color: #333;}
66% {color: #fdfdfd;}
100% {color: #333;}
}

@-moz-keyframes mythird /* Firefox */
{
33% {color: #333;}
66% {color: #333;}
100% {color: #fdfdfd;}

}

  @-webkit-keyframes mythird /* Firefox */
{
33% {color: #333;}
66% {color: #333;}
100% {color: #fdfdfd;}
}


/*-------------------------ABOUT PAGE---------------------------------*/
#about{
    background-color: #fdfdfd;
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.about-row{
    margin-left: 2% !important;
    margin-right: 2% !important;
}

#self-pic{
    height: 200px;
    border-radius: 100px;
    margin-left: auto;
    display: block;
    margin-right: auto;
}

.about-links, .about-links a{
    font-weight: bold;
    color: #001f3f;
    font-size: 18px !important;
    margin: 1%;
}

.about-links a:hover{
    color: #AAAAAA;;
}

.hvr-forward,.hvr-backward{
    display: flex;
}

.about-row p b {
    color: #001f3f;
}

/*-------------------------PROJECTS---------------------------------*/
#projects{
    background-color: #001f3f;
    overflow: hidden;
    color: #fdfdfd;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.sub-proj{
    text-align: center;
    font-size: 15px;
}

.proj{
    width: 100%;
}


.proj-title{
    font-weight: bold;
    font-size: 20px;
}

.proj-title a{
    color: #fdfdfd;
}

.proj-text{
    text-align: left;
}

.proj-role{
    font-size: 16px;
}

.proj-desc{
    text-align: left;
    font-size: 14px;
}

.page-content {
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 2%;
}

.row{
    margin-left: 0;
    margin-right: 0;

}

.proj-img{
    background-size: cover;
    min-height: 350px;
}

.home-div{
    display: flex;
}

.proj-text a{
    color: #AAAAAA;
}

/* @media (max-width: 576px){
.col-xs-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
} */

@media (max-width: 786px){
    .home-div{
        display: block;
    }

    .proj-img{
        height: 40%;
    }
}

.proj-cont {
    position: relative;
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
}

.proj-cont:hover .image {
  opacity: 0.2;
}

.proj-cont:hover .middle {
  opacity: 1;
}

.proj-title a{
    font-size: initial;
}

.proj-title a:hover{
    color: #212529;
}

.text {
  background-color: #4CAF50;
  color: #AAAAAA;
  font-size: 16px;
  padding: 16px 32px;
}


/*------------------------SKILLS-----------------------------*/
#skills{
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #fdfdfd;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#wrapper{
    overflow: auto;
}

.skills-sub{
    font-weight: bold;
    color: #001f3f;
}

.skills-cont img{
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 20px;
    -webkit-transition: margin 0.3s ease-out;
    -moz-transition: margin 0.3s ease-out;
    -o-transition: margin 0.3s ease-out;
}

.skills-cont img:hover {
    margin-top: 0px;
}

/*-------------------------CLUBS---------------------------------*/
#experience {
    color: #fdfdfd;
    background-color: #001f3f;
    width: 100%;
    overflow: hidden;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.cl-sec{
    padding-bottom: 2%;
    padding-top: 2%;
    text-align: left;
}

.cl-sec ul{
    margin:0px;
    font-size: 14px;
}

.logo{
    height: 50px;
    margin-left: auto;
    display: block;
    margin-right: auto;
}

.sub-cl{
    text-align: center;
    font-size: 20px;
}


/*-------------------------CONTACT---------------------------------*/
#contact{
    background-image: url('../img/bgs/poppy.jpg');
    /* background-color: lightcoral; */
    color:#fff;
    min-height: 100%;
    width: 100%;
    overflow: hidden;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#contact .content{
    background-color: transparent;
}

.contact-links{
    text-align: center;
    font-size: 24px;
}

.contact-links a{
    color: #fdfdfd;
}
.contact-links a:hover{
    color: #001f3f;

}

form{
    width: 100%;
    border-radius: 10px;
    padding-top: 2%;
    padding-bottom: 2%;
}

input{
    display: block;
    margin: 1%;
    width: 30%;
    height: 40px;
    border-radius: 10px;
    border-color: transparent;
}

textarea{
    margin: 1%;
    width: 50%;
    height: 200px;
    border-radius: 10px;
    border-color: transparent;
}

button{
    display: block;
    border-color: #fdfdfd;
    background-color: #fdfdfd;
    color: #001f3f;;
    border-radius: 10px;
}


.cnt-sec{
    width: 50%;
    float: left;
}

.logo{
    height: 50px;
    margin-left: auto;
    display: block;
    margin-right: auto;
}

.sub-cnt{
    text-align: center;
    font-size: 40px;
}

.sub-cnt a{
    font-size: inherit;
    color: #212529;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Karla', sans-serif;
}

.active {
    /* font-family: 'Roboto Mono', monospace; */
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}
a {
    /* font-family: 'Roboto Mono', monospace; */
    font-size: 14px;
    color: #AAAAAA;;
    text-decoration: none;
}

/* HECKIN GRID SYSTEM */
.grid, .grid-strict {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.grid-strict:after, .grid:after {
    content: "";
    display: block;
    clear: both;
}
.grid.align-start {
    align-items: flex-start;
}
.grid>.col {
    padding: 8px;
}
.col {
}
.col.xs-1 {
    width: 4.16667%}
.col.xs-2 {
    width: 8.33333%}
.col.xs-3 {
    width: 12.5%}
.col.xs-4 {
    width: 16.66667%}
.col.xs-5 {
    width: 20.83333%}
.col.xs-6 {
    width: 25%}
.col.xs-7 {
    width: 29.16667%}
.col.xs-8 {
    width: 33.33333%}
.col.xs-9 {
    width: 37.5%}
.col.xs-10 {
    width: 41.66667%}
.col.xs-11 {
    width: 45.83333%}
.col.xs-12 {
    width: 50%}
.col.xs-13 {
    width: 54.16667%}
.col.xs-14 {
    width: 58.33333%}
.col.xs-15 {
    width: 62.5%}
.col.xs-16 {
    width: 66.66667%}
.col.xs-17 {
    width: 70.83333%}
.col.xs-18 {
    width: 75%}
.col.xs-19 {
    width: 79.16667%}
.col.xs-20 {
    width: 83.33333%}
.col.xs-21 {
    width: 87.5%}
.col.xs-22 {
    width: 91.66667%}
.col.xs-23 {
    width: 95.83333%}
.col.xs-24 {
    width: 100%;
    float: left;
}
@media (min-width:768px) {
    .col.sm-1 {
    width: 4.16667%}
.col.sm-2 {
    width: 8.33333%}
.col.sm-3 {
    width: 12.5%}
.col.sm-4 {
    width: 16.66667%}
.col.sm-5 {
    width: 20.83333%}
.col.sm-6 {
    width: 25%}
.col.sm-7 {
    width: 29.16667%}
.col.sm-8 {
    width: 33.33333%}
.col.sm-9 {
    width: 37.5%}
.col.sm-10 {
    width: 41.66667%}
.col.sm-11 {
    width: 45.83333%}
.col.sm-12 {
    width: 50%}
.col.sm-13 {
    width: 54.16667%}
.col.sm-14 {
    width: 58.33333%}
.col.sm-15 {
    width: 62.5%}
.col.sm-16 {
    width: 66.66667%}
.col.sm-17 {
    width: 70.83333%}
.col.sm-18 {
    width: 75%}
.col.sm-19 {
    width: 79.16667%}
.col.sm-20 {
    width: 83.33333%}
.col.sm-21 {
    width: 87.5%}
.col.sm-22 {
    width: 91.66667%}
.col.sm-23 {
    width: 95.83333%}
.col.sm-24 {
    width: 100%}
.team-container {
    max-width: 720px;
}
.team-container.constrained {
    max-width: 1024px;
}
}@media (min-width:1152px) {
    .col.md-1 {
    width: 4.16667%}
.col.md-2 {
    width: 8.33333%}
.col.md-3 {
    width: 12.5%}
.col.md-4 {
    width: 16.66667%}
.col.md-5 {
    width: 20.83333%}
.col.md-6 {
    width: 25%}
.col.md-7 {
    width: 29.16667%}
.col.md-8 {
    width: 33.33333%}
.col.md-9 {
    width: 37.5%}
.col.md-10 {
    width: 41.66667%}
.col.md-11 {
    width: 45.83333%}
.col.md-12 {
    width: 50%}
.col.md-13 {
    width: 54.16667%}
.col.md-14 {
    width: 58.33333%}
.col.md-15 {
    width: 62.5%}
.col.md-16 {
    width: 66.66667%}
.col.md-17 {
    width: 70.83333%}
.col.md-18 {
    width: 75%}
.col.md-19 {
    width: 79.16667%}
.col.md-20 {
    width: 83.33333%}
.col.md-21 {
    width: 87.5%}
.col.md-22 {
    width: 91.66667%}
.col.md-23 {
    width: 95.83333%}
.col.md-24 {
    width: 100%}
.team-container {
    max-width: 1080px;
}
.team-container.constrained {
    max-width: 1024px;
}
}@media (min-width:1728px) {
    .col.lg-1 {
    width: 4.16667%}
.col.lg-2 {
    width: 8.33333%}
.col.lg-3 {
    width: 12.5%}
.col.lg-4 {
    width: 16.66667%}
.col.lg-5 {
    width: 20.83333%}
.col.lg-6 {
    width: 25%}
.col.lg-7 {
    width: 29.16667%}
.col.lg-8 {
    width: 33.33333%}
.col.lg-9 {
    width: 37.5%}
.col.lg-10 {
    width: 41.66667%}
.col.lg-11 {
    width: 45.83333%}
.col.lg-12 {
    width: 50%}
.col.lg-13 {
    width: 54.16667%}
.col.lg-14 {
    width: 58.33333%}
.col.lg-15 {
    width: 62.5%}
.col.lg-16 {
    width: 66.66667%}
.col.lg-17 {
    width: 70.83333%}
.col.lg-18 {
    width: 75%}
.col.lg-19 {
    width: 79.16667%}
.col.lg-20 {
    width: 83.33333%}
.col.lg-21 {
    width: 87.5%}
.col.lg-22 {
    width: 91.66667%}
.col.lg-23 {
    width: 95.83333%}
.col.lg-24 {
    width: 100%}
.team-container {
    max-width: 1620px;
}
.team-container.constrained {
    max-width: 1024px;
}
}
