/***************************/
/***** GLOBAL SETTINGS *****/
/***************************/
* {
  box-sizing: border-box;
  color: #f6f6f6;
  font-family: 'Yu Gothic UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /* background-color: #222222 !important; */
}

section {
  /* background: radial-gradient(circle at center, #222222, #111111); */
  background-color: #222222;
}

.section {
  height: 100vh !important;
}

.uppercase {
  text-transform: uppercase;
}

.fa-caret-right {
  color: #ee5100;
}

.section-nav {
  width: 100%;
  height: 937px;
}

.line-separate-section {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ee5100;
  position: relative;
  z-index: 1;
}

/* FLEX */
.flex {
  display: flex;
}

.flex-justify-center {
  justify-content: center;
}

.flex-align-center {
  align-items: center;
}

.flex-direction-column {
  flex-direction: column;
}

/* titles */
.content-title-vt {
  display: flex;
  align-items: end;
}

.title-h2 {
  position: absolute;
  z-index: 100;
  text-transform: uppercase;
  color: #f6f6f6;
  left: 5%;
  padding: 50px 0 5px 10px;
  letter-spacing: 8px;
}

.title-h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  border-bottom-color: #ee5100;
  border-left-color: #ee5100;
}
/*******************************/
/***** END GLOBAL SETTINGS *****/
/*******************************/

#section-projects {
  position: relative;
  z-index: 1;
}

/********************************/
/***** MEDIA QUERIES 1380px *****/
/********************************/
@media screen and (max-width: 1380px) {
  .title-h2 {
    position: relative;
    width: 250px;
  }
}
/************************************/
/***** END MEDIA QUERIES 1380px *****/
/************************************/

/*******************************/
/***** MEDIA QUERIES 800px *****/
/*******************************/
@media only screen and (max-device-width: 800px) and (orientation: portrait) {
  .title-h2 {
    letter-spacing: 5px;
  }
}
/***********************************/
/***** END MEDIA QUERIES 800px *****/
/***********************************/
