:root{
  --primary-color: #ec5f34;
  --second-color: rgb(79, 83, 85);
  --light-color:  rgb(204, 204, 204);

}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body{
  font-family: 'source sans pro', arial;
  line-height: 1.5;
  color:rgb(99, 99, 99);
  
}

a{
  color: rgb(99, 99, 99);
  text-decoration: none;
}

ul{
  list-style: none;
}

p{
  margin: 0.5rem
}

img{
  width: 100%;
}


/* Utilitys */

.bg-dark{
background: #336979;
}

.bg-light{
background: #66aabe;
}

.btn{
  background: #fff;
  color: #fff;
  padding: 0.8rem 3rem;
  font-weight: bold;
  border-radius: 4px;
  -webkit-appearance: none;
}

.btn-prime{
background: var(--primary-color);
}

.btn-Sm{
  padding: 0.6rem 2.6rem;

}

.btn:hover{
  opacity: .75;
}

.btn-dark{
  background: #333;
  color: #fff;
}

.btn-outline{
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover{
  background: #ffe7e0;
  color: #ce3507;
}

.text-color{
  color: var(--primary-color);
}

.secondary-text{
  font-size: 1.4rem;
  color:rgb(187, 187, 187);
  font-weight: lighter;
}

.vertical-seperator {
  border-left: 2px solid rgba(99, 99, 99, 0.65);
  height: 20px;
  align-self: center;
}

.container-row{
  display: flex;
  /* flex-wrap: wrap; */
  /* width: 100%; */
}

.column{
  display: flex;
  flex-direction: column;
  flex:1;
  justify-content: center;
}

.split55{
  max-width: 55%;
}

/* NavBar */

#main-nav{
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2;
}

#main-nav #nav-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 3rem;
  background: var(--second-color);
  border-bottom: 3px solid rgb(53, 53, 53);
  transition: 0.5s ease-in-out;
}

#main-nav #nav-container.top{
background: transparent;
border-bottom: 3px solid rgba(119, 119, 119, 0.3);
}

#main-nav .front-name{
  display: flex;
  flex-direction: row;
  align-items: center;
}

#main-nav .front-name h2{
  color:rgb(79, 83, 85);
  color: #fff;
}
#main-nav .front-name .logo-icon{
  height: 35px;
  width: 35px;
  background: var(--light-color);
  border-radius: 2px;
  border: solid 2px rgb(99, 99, 99);
  margin-right: 20px;
}

#main-nav .menu-items{
  display: flex;
  justify-self: end;
  align-items: center;
}

.menu-items li a{
padding: 0.8rem 1rem;
font-weight: bold;
font-size: 1.1rem;
color: #fff;
transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.menu-items li a.current,
.menu-items li a:hover{
  color: var(--primary-color);
}

/* nav menu button */
.menu-btn{
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 1;
}

.menu-btn_lines,
.menu-btn_lines:before,
.menu-btn_lines:after{
  width: 1.5rem;
  height: 0.13rem;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}

.menu-btn_lines:before,
.menu-btn_lines:after{
  content: '';
  position: absolute;
}

.menu-btn_lines:before{
  transform: translateY(-0.5rem);
}
.menu-btn_lines:after{
  transform: translateY(0.5rem);
}

/* animation */
.menu-btn.open .menu-btn_lines{
transform: translateX(2rem);
background-color: transparent;
}

.menu-btn.open .menu-btn_lines:before{
  transform: rotate(45deg) translate(-1.5rem, 1.5rem);
}
.menu-btn.open .menu-btn_lines:after{
  transform: rotate(-45deg) translate(-1.5rem, -1.5rem);
}


/* Showcase */

#showcase{
  color: #fff;
  position: relative;
  overflow-y: hidden;
  
}

#showcase:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
    height: 100%;
    width: 100%;
    font-weight: 100;
    /* background: radial-gradient(#336979,#12232e); */
    background: radial-gradient( rgb(105, 108, 110),#1f2529);
    -webkit-overflow-Y: hidden;
    -moz-overflow-Y: hidden;
    -o-overflow-Y: hidden;
    overflow-Y: hidden;
    -webkit-animation: fadeIn 1 1s ease-out;
    -moz-animation: fadeIn 1 1s ease-out;
    -o-animation: fadeIn 1 1s ease-out;
    animation: fadeIn 1 1s ease-out;
    z-index: -1;
}

#showcase .showcase-content,
#showcase .showcase-banner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 65vh;
}

#showcase .showcase-banner{
  height: 28vh;
}

#showcase h2{
  font-size: 3.5rem;
  margin-bottom: .5rem;
}


#showcase p{
  margin-bottom: 20px;
  font-size: 1.2rem;
}

/* Floating showcase */
.light {
  position: absolute;
  width: 0px;
  opacity: .75;
  background-color: white;
  box-shadow: #e9f1f1 0px 0px 20px 2px;
  opacity: 0;
  top: 80vh;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  
}

.light-banner{
  top: 25vh;
}

.x1{
-webkit-animation: floatUp 4s infinite linear;
-moz-animation: floatUp 4s infinite linear;
-o-animation: floatUp 4s infinite linear;
animation: floatUp 4s infinite linear;
 -webkit-transform: scale(1.0);
 -moz-transform: scale(1.0);
 -o-transform: scale(1.0);
transform: scale(1.0);
}

.x2{
-webkit-animation: floatUp 7s infinite linear;
-moz-animation: floatUp 7s infinite linear;
-o-animation: floatUp 7s infinite linear;
animation: floatUp 7s infinite linear;
-webkit-transform: scale(1.6);
-moz-transform: scale(1.6);
-o-transform: scale(1.6);
transform: scale(1.6);
left: 15%;
}

.x3{
-webkit-animation: floatUp 2.5s infinite linear;
-moz-animation: floatUp 2.5s infinite linear;
-o-animation: floatUp 2.5s infinite linear;
animation: floatUp 2.5s infinite linear;
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-o-transform: scale(.5);
transform: scale(.5);
left: -15%;
}

.x4{
-webkit-animation: floatUp 4.5s infinite linear;
-moz-animation: floatUp 4.5s infinite linear;
-o-animation: floatUp 4.5s infinite linear;
animation: floatUp 4.5s infinite linear;
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
left: -34%;
}

.x5{
-webkit-animation: floatUp 8s infinite linear;
-moz-animation: floatUp 8s infinite linear;
-o-animation: floatUp 8s infinite linear;
animation: floatUp 8s infinite linear;
-webkit-transform: scale(2.2);
-moz-transform: scale(2.2);
-o-transform: scale(2.2);
transform: scale(2.2);
left: -57%;
}

.x6{
-webkit-animation: floatUp 3s infinite linear;
-moz-animation: floatUp 3s infinite linear;
-o-animation: floatUp 3s infinite linear;
animation: floatUp 3s infinite linear;
-webkit-transform: scale(.8);
-moz-transform: scale(.8);
-o-transform: scale(.8);
transform: scale(.8);
left: -81%;
}

.x7{
-webkit-animation: floatUp 5.3s infinite linear;
-moz-animation: floatUp 5.3s infinite linear;
-o-animation: floatUp 5.3s infinite linear;
animation: floatUp 5.3s infinite linear;
-webkit-transform: scale(3.2);
-moz-transform: scale(3.2);
-o-transform: scale(3.2);
transform: scale(3.2);
left: 37%;
}

.x8{
-webkit-animation: floatUp 4.7s infinite linear;
-moz-animation: floatUp 4.7s infinite linear;
-o-animation: floatUp 4.7s infinite linear;
animation: floatUp 4.7s infinite linear;
-webkit-transform: scale(1.7);
-moz-transform: scale(1.7);
-o-transform: scale(1.7);
transform: scale(1.7);
left: 62%;
}

.x9{
-webkit-animation: floatUp 4.1s infinite linear;
-moz-animation: floatUp 4.1s infinite linear;
-o-animation: floatUp 4.1s infinite linear;
animation: floatUp 4.1s infinite linear;
-webkit-transform: scale(0.9);
-moz-transform: scale(0.9);
-o-transform: scale(0.9);
transform: scale(0.9);
left: 85%;
}

@-webkit-keyframes floatUp{
0%{top: 80vh; opacity: 0;}
25%{opacity: 1;}
50%{top: 0vh; opacity: .8;}
75%{opacity: 1;}
100%{top: -80vh; opacity: 0;}
}
@-moz-keyframes floatUp{
0%{top: 80vh; opacity: 0;}
25%{opacity: 1;}
50%{top: 0vh; opacity: .8;}
75%{opacity: 1;}
100%{top: -80vh; opacity: 0;}
}
@-o-keyframes floatUp{
0%{top: 80vh; opacity: 0;}
25%{opacity: 1;}
50%{top: 0vh; opacity: .8;}
75%{opacity: 1;}
100%{top: -80vh; opacity: 0;}
}
@keyframes floatUp{
0%{top: 80vh; opacity: 0;}
25%{opacity: 1;}
50%{top: 0vh; opacity: .8;}
75%{opacity: 1;}
100%{top: -80vh; opacity: 0;}
}

/* Tease Projects */

#tease-projects{
  margin: 70px 0;
}

#tease-projects .tease-container{
  margin: 40px 120px;
  display: flex;
  flex-direction: column;
}
#tease-projects .tease-container h2{
  font-size: 1.9rem;
  margin-bottom: 30px;
}

#tease-projects .tease-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

#tease-projects .square{
  width: 100%;
  height: 100%;
}

#tease-projects .square img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

#tease-projects .tease-row p{
  text-align: center;
}

.tease-container .btn-more{
  margin-top: 80px;
  text-align: center;
}


/* About Me */

#about-me{
  background: rgb(235, 235, 235);
}

#about-me .container{
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 120px;
  justify-content: center;
  align-items: center;
}

#about-me h2{
  font-size: 2.5rem;
  position: relative;
}

#about-me .about-content{
  padding: 70px 0;
  max-width:1200px;
}


#about-me .containerSkill-row{
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  width: 100%;
  padding: 20px 40px 0 40px;
  justify-content: center;
  align-items: center;
}

#about-me .containerSkill-row .col-1{
  flex: 1;
  display: flex;

}

.about-info .headshot{
  position: absolute;
  visibility:hidden;
  display:none;
}

 .headshot{
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.headshot img{
border-radius: 50%;
object-fit: cover;

}

#about-me .skill-column{
  justify-content: flex-end;
  text-align: center;
}

#about-me .skill-column ol{
  list-style: disc;
  text-align: left;
  line-height: 2rem;
  list-style-position: inside;
  line-height: 2.2;
}

/* Skills */

#main-skills .skill-filter{
  display: flex;
  justify-content: center;

}

#main-skills .toggles{
  text-align: center;
  background: var(--primary-color);
}

#main-skills .toggles input[type='checkbox']{
width: 50px;
height: 50px;
}

/* Form */

#connect-form .container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 120px;
}

#connect-form .container-content h2{
font-weight: lighter;
font-size: 2.5rem;
margin-bottom: 20px;
}

#connect-form .container-content{
margin-bottom: 25px;
}

#connect-form .container-form form{
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 30px;
  
}

#connect-form .container-form #message{
  grid-column: 1 / 5;
  padding: 15px;
  font-family: 'source sans pro', arial;
  font-size: 1.1rem;
  border-radius: 5px;
  border: 1px solid rgb(204, 204, 204);
  
}

#connect-form .container-form input[type=text],
#connect-form .container-form input[type=email]{
  padding: 15px;
  font-family: 'source sans pro', arial;
  font-size: 1.1rem;
  border-radius: 5px;
  border: 1px solid rgb(204, 204, 204);
  width: 100%;

}

#connect-form .container-form input[type=text]{
  grid-column: 1/3;
  
}

#connect-form .container-form input[type=email]{
  grid-column: 3/5;
}

#connect-form .container-form .submitBtn{
  grid-column: 2/4;
  border: none;
}

#connect-form input[type=submit]{
  border: none;
  
}

form{
  justify-content: center;
  width: auto;
  max-width: 700px;
}

/* Portfolio Page */

/* portfolio selectors */


#main-portfolio {
  margin: 50px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio-container .portfolio-selectors{
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  margin-bottom: 50px;
}

.portfolio-content-row{
  overflow: hidden;
 padding: 30px 120px;
 max-width: 1600px;
} 

.portfolio-content-row.decoration-spacing{
  padding: 10px 120px 30px 120px;
}

.galleryPretext{
  justify-content: center;
  text-align: center;
}

.galleryPretext p{
  margin: 0px 0px 15px 0px;

}

.portfolio-content-row .imgGrid-container img{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 8px;
}

.portfolio-content-row .column-1 img:hover{
  transform: rotateY(4deg);
}

.portfolio-content-row .imgGrid-container{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 9px;
  max-width: 100%;
}

.portfolio-content-row .imgGrid-container a{
  line-height: 1;
}

.portfolio-content-row .imgGrid-container img:hover{
  transform: scale(1.05);
  z-index: 2;
  opacity: .85;
}

.portfolio-content-row .column-2{
  padding: 0 0px 0 40px;
  justify-content: center;
}

.portfolio-content-row .column-2 p{
margin: 20px 0px 30px 0px;
}

.catagoryTitle {
  text-align: center;
  justify-content: center;
  margin: 15px 118px;
}

.titleDeco{
  overflow: hidden;
}

.titleDeco > span{
  position: relative;
}

.titleDeco > span:before,
.titleDeco > span:after{
  content: '';
  position: absolute;
  top: 50%;
  border-bottom: 1px solid;
  width: 100vw;
  margin: 0 40px
}

.titleDeco > span:before{
  right: 100%;
}

.titleDeco > span:after{
  left: 100%;
}

/* New Slideshow */

.swiper {
  width: 100%;
  height: 100%;
  max-width: 1000px;
  position: relative;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.mySwiper{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 4px;
}

.swiper-button-prev::after,
.swiper-button-next::after{
  color: rgb(214, 214, 214);
}

.swiper-wrapper{
  perspective: 1000px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  border: rgba(223, 223, 223,0.90) solid 1px;
  background-color: rgba(71, 71, 69, 0.5);
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/* Footer */

#main-footer{
  margin-top: 1rem;
}

#main-footer .footer-container{
  display: flex;
  flex-direction: column;
  background: var(--second-color);
  color: #fff;
  height: 100px;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
} 


#main-footer i{
  color: var(--primary-color);
  position: absolute;
  top:-25px;
  z-index: 1;
}

#main-footer i:hover{
  cursor: pointer;
  color: #cf3f14;
}

#main-footer .square-up-background{
background: #fff;
height: 30px;
width: 30px;
position: absolute;
top:-15px;
z-index: 0;
}

/* Media quaires */
           
@media screen and (max-width: 900px){
  #about-me .about-info p{
    font-size: 0.93rem;
  }
}

@media screen and (max-width: 868px){
  #about-me .skill-column ol{
    font-size: 0.85rem;
    line-height: 1.6rem;
  }
  #about-me h2{
    font-size: 2.2rem;
    padding-bottom: 15px;
  }
  #main-nav #nav-container{
    padding: 0.6rem 1.8rem;
  }
  #main-nav ul li a{
    padding: 0.8rem 0.7rem;
  }
}

@media screen and (max-width: 980px){
  .catagoryTitle {
    font-size: 0.85rem;
  }

  .portfolio-content-row .column-2 p{
    margin: 10px 0px 20px 0px;
    font-size: 0.9rem;
  }

  .portfolio-content-row .column-2.webShrink{
    justify-content: start;
  }

  .portfolio-content-row .btn{
      padding: 0.5rem 2rem;
      font-weight: bold;
      border-radius: 4px;
      font-size: 0.9rem;
  }

  #about-me .skill-column{
    max-width: 180px;
  }
}

@media screen and (max-width: 880px){
  .portfolio-content-row .column-2 p{
    margin: 3px 0px 5px 0px;
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .portfolio-content-row .btn{
      padding: 0.4rem 1.5rem;
      font-weight: bold;
      border-radius: 4px;
      font-size: 0.8rem;
  }

  #about-me .containerSkill-row{
    padding: 10px 20px;
  }


 
}



