html, body, 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, i, strike, strong, sub, sup, tt, var,
b, u, center,
dl, dt, dd, ol, 
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-size: 100%;
	font: inherit;
	vertical-align: baseline;
}


body{
    text-align: center;
    font-family: monospace;
    margin: auto;
    font-family: Roboto Mono;
    line-height: 1.7;
    font-weight: 200;
}

/*header animation - creating*/

.brenda{
  position: relative;
  right: 0;
  bottom: 0;
  width: 100%; 
  height:100% ;
}

#welcome{
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    height: 150px;
    align-items: center;
    justify-content: center;
    letter-spacing: 1em;
  }

  p{
    margin:  0;
    display: inline-block;
    padding: 30px;
    text-align: left;
}

/*Navigation*/

.hamburger{
  float: left;
  margin: 2%;
}

.navi-btn{
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 2rem;
}

.intro.visible{
  transform: translateX(+50%);
  transition:transform 0.4s ease-in-out;
}

.intro{
  transition:transform 0.4s ease-in-out;
  transform: translateX(0);
  margin-bottom: 30px;
}

.lead.visible{
  transform: translateX(+50%);
  transition:transform 0.4s ease-in-out;
}

.lead{
  transition:transform 0.4s ease-in-out;
  transform: translateX(0);
  }

@media (max-width: 1024px) {
  .lead {
    font-size: 1.1rem;
  }
}

/* iPhone and small screens (up to ~600px wide) */
@media (max-width: 600px) {
  .lead {
    font-size: 0.8rem;
  }
}











.jumbotron{
    padding-top: 10px;
    text-align: left;
}




.navi{
  position: fixed;
  bottom:0px;
  height: 50vh;
  transform: translateX(-100%);
  transition:transform 0.4s ease-in-out;
  z-index:2;

  @media only screen and (max-width: 850px) {
    /* For mobile phones: */
   
    top: 20px;
  }

}

.navi.visible{
  transform: translateX(0);
}

.navi-black{
  background-color: rgba(24, 24, 24,0.5);
  width: 60% ;
  max-width: 480px;
  min-width: 320px;
  transition-delay: .4s;
  border-radius:45%;

}
.navi-black.visible{
  transition-delay: 0.1s;
}
.navi-red{
width: 95%;
background-color:rgb(255, 208, 55,0.5);
position: absolute;
transition-delay: .2s;
  border-radius:47%;


}

.navi-red.visible{
  transition-delay: 0.1s;
}

.navi-white{
  background-color: rgb(151, 151, 148);;
  width: 95%;
  padding: 15%;
  border-radius:45%;


}

.navi-white.visible{
  transition-delay: 0.2s;
}





.close-btn{
  position: absolute;
  right: 30px;
  top:20px;
}

.close-btn:hover{
    transform: rotate(90deg);
    transition: 0.5s ease-in-out;
    color: rgb(255, 208, 55);
}


.menu{
  list-style-type:none;
  padding: 0;

  @media only screen and (max-width: 550px) {
    /* For mobile phones: */
    top: 20px;
    padding-top:10px  
}
}
.menu li{
  margin:20px 0;
  padding: 10px;
}

.menu li a{ 
  color:black;
  font-size: 18px;
  z-index: 1; 
}

.my-4.visible{
  transition:transform 0.4s ease-in-out;
  transform: translateX(+50%);
}
.my-4{
  transform: translateX(0);
  transition:transform 0.4s ease-in-out;
}




a {
  display: inline-block;
  position:relative;
  text-decoration: none;
  margin-left: 35px;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-weight: 400;  
}

a:before {
content:"";
position:absolute;
display: inline;
transition: 0.5s;
box-sizing: border-box;
border-spacing: 10px;
border-top:2px solid rgb(255, 208, 55);
border-left:2px solid rgb(255, 208, 55);
width: 40%;
height: 100%;
padding-left: 10px;
transform-origin: left;
}


a:hover:before {
  width: 10px;
  height: 10px;
  transform: rotate(360deg);
}

a{
  text-decoration: none;
  color: black;
}

.text-pa{
  padding: 10px;
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: lowercase;

  @media only screen and (max-width: 550px) {
    /* For mobile phones: */
   
    font-size: 1rem;
  }

}

.text-pa:hover{
  color: rgb(255, 208, 55);
  font-size: 1.5rem;

  @media only screen and (max-width: 550px) {
    /* For mobile phones: */
   
    font-size: 1rem;
  }



}





/*Carousel*/

.slides {
  height: 600px;
  overflow:hidden;
  max-width: 500px;
  margin: 3%;
}
.img-container{
  display: flex;
  transform: translateX(0);
  transition: transform 0.7s ease-in-out;
  
}

.img-container img {
min-width: 500px;
height: 500px;
object-fit: cover;
padding: 14px;
padding-bottom: 30px;
}

.button-container{
  width: 500px;
  display: flex;
  justify-content: space-between;
  padding-right: 14px;
  padding-bottom: 100px;
  margin-bottom: 30px;
}
.btn-slide{
  width: 140px;
  height: 50px;
  background-color: white;
  border: white;
  color:rgb(145, 145, 145);
  line-height: 50px;
  text-align: center;
  font-size: 14px;
  position: relative;
  transition: all 0.2s;
  overflow: hidden;

}

.btn-slide .banim{
  position: absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background-color:transparent;
  border:1px solid rgb(145, 145, 145);
}

.btn-slide:hover {
  color:white;
  z-index: 1;
}


.banim:before{
  content:"";
  position: absolute;
  width:8%;
  height:500%;
  background-color:white;
  top:50%;
  left:50%;
  transition: all 0.2s;
  transform: translate(-50%,-50%) rotate(-60deg);
  z-index: -2;
}

.btn-slide:hover .banim:before {
  width: 100%;
  background-color: black;
  z-index: -1;
  transform: translate(-50%,-50%) rotate(60deg);
}

.btn:focus{
  outline: none;
}



/*Text content*/




.pieces {
  padding-left: 4rem;
  padding-right: 4rem;
  font-weight: 400;
  text-align: justify;
  margin: 3%;


@media (max-width: 1024px) {
    font-size: 1.1rem;
  }


/* iPhone and small screens (up to ~600px wide) */
@media (max-width: 600px) {
   
    font-size: 0.8rem;
     padding-left: 2rem;
  padding-right: 2rem;
  
}


}

.describtion{
  margin: 3%;
}



.liminal {
  font-size: 1rem;
  font-weight: 400;

  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;




@media (max-width: 1024px) {
    font-size: 1.1rem;
  }


/* iPhone and small screens (up to ~600px wide) */
@media (max-width: 600px) {
   
    font-size: 0.9rem;
     padding-left: 2rem;
  padding-right: 2rem;
  
}
}


.liminal2 {
  font-size: 1rem;
  font-weight: 300;
  text-decoration: wavy;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;




@media (max-width: 1024px) {
    font-size: 1.1rem;
  }


/* iPhone and small screens (up to ~600px wide) */
@media (max-width: 600px) {
   
    font-size: 0.9rem;
     padding-left: 2rem;
  padding-right: 2rem;
  
}
}











.display-4{
  font-weight: 400;
  letter-spacing: 0.5rem;

  @media screen and (max-width: 768px) {
  
      font-size: 1.5rem; /* Adjust the font size for smaller screens */
    
    }


}

.comp-title{
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.5rem;


@media (max-width: 1024px) {
    font-size: 1.1rem;
  }


/* iPhone and small screens (up to ~600px wide) */
@media (max-width: 600px) {
   
    font-size: 1rem;
  
}

}








/*Contact*/

.social{
  height: 100px;
  padding-top: 50px;
  padding: 3%;
  text-align: center;
}


i.fa.fa-linkedin::before{
  color: black;
  font-size: 1.7rem;
}

i.fa.fa-instagram::before{
color: black;
font-size: 1.7rem;
}

i.fa.fa-envelope::before{
color: black;
font-size: 1.7rem;
}

.copy{

text-align: center;
padding-top: 20px;
padding-left: 10px;



@media (max-width: 1024px) {
    font-size: 1.1rem;
  }


/* iPhone and small screens (up to ~600px wide) */
@media (max-width: 600px) {
   
    font-size: 0.5rem;
     padding-left: 2rem;
  padding-right: 2rem;
  
}
}







/*Copyright*/


.scroll{
  height: 10px;
}