body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 62.5%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Josefin Sans', sans-serif;
}

p {
  font-size: 1rem;
}

/* HEADER SECTION CSS */

#titlePlaceholder {
  position: relative;
  height: 100vh;
  width: 100%;
}
@media (max-width: 991px) {
  #titlePlaceholder {
    display: none;
  }
}

#insidePlaceholder {
  padding-top: 10%;
  padding-left: 50%;
  font-size: 3.0rem;
}

.widthOfSidebar {
  padding-left: 250px;
}

body {
  overflow-x: hidden;
}

@media (max-width: 991px) {
  body {
    margin: 0;
  }
}

a {
  color: rgba(34, 187, 238, 1);
}
a:hover {
  color: #A2DFF5;
}
a:active, a:focus {
  color: #fff;
}

a.lightBG {
  color: rgba(34, 187, 238, 1);
  transition: 0.2s ease-in-out;
  box-shadow: inset 0 0 0 0 rgba(34, 187, 238, 0.1);
  text-decoration: none;
}
a.lightBG:hover {
  color: #fff;
  box-shadow: inset 0 20px 0 0 rgba(34, 187, 238, 1), 0px 0px 0px 3px rgba(34, 187, 238, 1);
}
a.lightBG:active, a.lightBG:focus {
  color: #fff;
  box-shadow: inset 0 20px 0 0 rgba(34, 187, 238, 1), 0px 0px 0px 3px rgba(34, 187, 238, 1);
}

.code {
  font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New;
}

h3 {
  font-size: 1.5rem;
}

hr {
  border-color: #cfcfcf;
}

.btn {
  text-transform: uppercase;
  border: 3px solid rgba(34, 187, 238, 1);
  font-size: 1.4rem;
  color: rgba(34, 187, 238, 1);
  border-radius: 0px;
  box-shadow: inset 0 0 0 0 rgba(34, 187, 238, 1);
  box-shadow: 0px rgba(34, 187, 238, 0.1);
  padding: 10px;
  padding-left: 30px;
  padding-right: 30px;
  transition: 0.2s ease-in-out;
}

.btn:hover, .btn:active, .btn:focus {
  box-shadow: inset 0 200px 0 0 rgba(34, 187, 238, 1), 0px 0px 0px 6px rgba(34, 187, 238, 1);
  color: #fff;
  border: 3px solid rgba(34, 187, 238, 1);
}

.buttonSkip {
  width: 100%;
  min-width: 300px;
  padding-top: 15px !important;
}

img {
  max-width: 100%;
  object-fit: contain;
}

.btnSkip {
  font-size: 1.1rem;
}
@media (max-width: 991px) {
  .btnSkip {
    width: 100%;
    max-width: 9000px;
  }
  .buttonSkip {
    width: 60%;
    min-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .buttonSkip {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.btnSkip:hover, .btnSkip:active, .btnSkip:focus {
  color: #0d0d0d;
}

.buttonCenter {
  padding-top: 20px;
  padding-bottom: 20px;

  /*display: flex;
  justify-content: center;
  flex-direction: column;*/

  text-align: center;
}

.buttonCenter h2 {
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  font-weight: 700;
}



#titleContainer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;

  transition: 0.3s ease-in-out;
  background-color: #0d0d0d;

  /* background: linear-gradient(150deg, #131313 45%, #111111 45%); */

  color: #fff;

  border-right: 2px solid #fff;
  z-index: 999;
}
@media (max-width: 991px) {
  #titleContainer {
    display: none;
    /*position: relative;
    height: auto;*/
  }
}

#titleContainerContent1 {
  background-color: #161616;
  width: 100%;

  height: 50vh;
  min-height: 00px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

.titleContainerContent1Flex {
  padding: 10px;
  padding-left: 0px;
  padding-right: 0px;
  transition: 0.3s ease-in-out;
}
@media (max-height: 900px) {
  .titleContainerContent1Flex {
    padding: 0px;
  }
}

.titleName {
  font-size: 3.0rem;
  letter-spacing: 1.14em;
  font-weight: 300;
  transition: 0.3s ease-in-out;
}

.titlehr {
  width: 300px;
  border-color: white;
  border-width: 2px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .titlehr {
    width: 200px;
  }
}

.scrollArrowContainer {
  padding-top: 20px;
  transition: 0.3s ease-in-out;
}

.scrollArrow {
  transition: 0.3s ease-in-out;
  opacity: 1;
  width: 20px;
  display: inline-block;
}
@media (min-width: 992px) {
  .scrollArrow {
    animation: bounceArrow 2s infinite;
  }
}
@media (max-width: 991px) {
  .scrollArrow {
    margin-bottom: -20px;
  }
}

@keyframes bounceArrow {
    0% {
      opacity: 1;
      transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
    }
    50% {
      opacity: 0;
      transform: scale3d(0.8, 0.8, 1) translate3d(0px, -10px, 0px);
    }
    100% {
      opacity: 1;
      transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
    }
}

.scrollDown {
  display: inline-block;
  padding-left: 10px;
  padding-right: 2px;
  margin-top: 5px;
}
@media (min-width: 992px) {
  .scrollDown {
    animation: bounceText 2s infinite;
  }
}

@keyframes bounceText {
    0% {
      opacity: 0;
      transform: scale3d(1,1, 1) translate3d(0px, 0px, 0px);
    }
    50% {
      opacity: 1;
      transform: scale3d(1, 1, 1) translate3d(0px, -8px, 0px);
    }
    100% {
      opacity: 0;
      transform: scale3d(1,1, 1) translate3d(0px, 0px, 0px);
    }
}

.scrollDown h2 {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.6em;
  color: #2bb5e9;
}

#titleContainerContent1Inner {
  border: 2px solid white;
  border-radius: 50%;
  width:  180px;
  height:  180px;
  margin:  0 auto;
  transition: 0.3s ease-in-out;
}

#titleContainerContent1InnerIMG {
  width: 159px;
  transition: 0.3s ease-in-out;
}

#titleContainerContent1Name {
  padding-top: 30px;
}

#titleContainerContent1Scroll {
  padding-bottom: 0px;
  margin-bottom: -40px;
}

#titleContainerContent1Desc {
  margin-top: 50px;
  height: 60px;
}

#titleContainerContent1Desc p {
  margin: 0px;
}

#titleContainerContent2 {
  width: 100%;
  height: 45vh;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;

  border-bottom: 2px solid white;
  transition: 0.3s ease-in-out;
}

.titleContainerContent2Image {
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: -2px;

  user-select: none;
  transition: 0.3s ease-in-out;
  opacity: 1;
}


#titleContainerContent3 {
  height: 5vh;
  background-color: #161616;
}

.title2desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-left: 2px solid rgba(42, 181, 232, 0);
  border-right: 2px solid rgba(42, 181, 232, 0);
  letter-spacing: 0.4em;
  transition:  0.2s ease-in-out;
  cursor: pointer;

  padding-top: 10px;
  padding-bottom: 10px;
}

.title2desc:hover {
  border-left: 2px solid #2bb5e9;
  border-right: 2px solid #2bb5e9;
  letter-spacing: 0.6em;
}

#title2descGD {
}

#title2descWD {
  margin-top: 50px;
}

#title2desc3D {
}

.title2desc h2 {
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  margin-bottom: 0;
  margin-left: 40px;
  margin-right: 40px;
}

/* MOBILE TITLE PAGE/NAV CSS */

#titleMobile {
  display: none;

  text-align: center;
  flex-direction: column;
  justify-content: flex-start;

  background-color: #0d0d0d;

  color: #fff;

  border-right: 2px solid #fff;
  z-index: 999;
}
@media (max-width: 991px) {
  #titleMobile {
    display: flex;
    border-right: 0px solid #fff;
  }
}







.titleMobileContent1 {
  background-color: #161616;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.titleMobileName {
  margin-top: 30px;
  font-size: 1.5rem;
  letter-spacing: 1.14em;
  font-weight: 300;
}
@media (max-width: 991px) {
  .titleMobileName {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}

.titleMobileContent1Inner {
  border: 2px solid white;
  border-radius: 50%;
  width:  180px;
  height:  180px;
  margin:  0 auto;
}

.titleMobileProfpic {
  padding-top: 50px;
}

.titleMobileBottom {
  padding-top: 20px;
  padding-bottom: 30px;
}

.titleMobileContent1InnerIMG {
  width: 159px;
}

.titleMobileContent1Name {
  padding-top: 30px;
}

.titleMobileContent1Scroll {
  padding-bottom: 0px;
  margin-bottom: -40px;
}

.titleMobileContent2 {
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-bottom: 2px solid white;
}

.titleMobileContent3 {
  height: 10vh;
  background-color: #161616;
}

.titleMobileSidebarContainer {
  width: 90%;
  text-align: center;
  display:  flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  padding-top: 30px;
  padding-bottom: 30px;
}

.titleMobileSidebarNavItem {
  max-width: 600px;
  width: 100%;
  
  /*border-top: 2px solid rgba(255,255,255,0.1);*/
  padding-top: 10px;
  padding-bottom: 8px;

  text-transform: uppercase;
  font-family: 'Josefin Sans';

  text-align: center;
}

.titleMobileSidebarNavItem a {
  border-right: 2px solid #2bb5e9;
  border-left: 2px solid #2bb5e9;
  border-radius: 2px;
  width: 100%;
  display: block;

  padding-top: 12px;
  padding-bottom: 8px;
  margin: 0 auto;
  padding-left: 1px;

  color: white;
  font-size: 1rem;

  transition: 0.1s ease-in-out;

  letter-spacing: 0.1em;
}

.titleMobileSidebarNavItem a:hover {
  text-decoration: none;

  background-color: #2bb5e9;
  border-right: 0px solid #2bb5e9;
  border-left: 0px solid #2bb5e9;
  color: #000;

  font-weight: 700;

  letter-spacing: 0.2em;
}

.activeNavItem {
  text-decoration: none;

  background-color: #2bb5e9;
  border-right: 0px solid #2bb5e9;
  border-left: 0px solid #2bb5e9;
  color: #000 !important;

  font-weight: 700 !important;

  letter-spacing: 0.2em !important;

  box-shadow: inset 0 50px 0 0 rgba(34, 187, 238, 0.2), 0px 0px 0px 4px rgba(34, 187, 238, 0.2);
}

.titleMobileSidebarNavItem a:active, .titleMobileSidebarNavItem a:visited, .titleMobileSidebarNavItem a:focus {
  text-decoration: none;
}

.titleMobilehr {
  width: 70vw;
  max-width: 400px !important;
  border-color: white;
  border-width: 2px;
}











/* BODY CONTENT DIVS */

.contentDiv {
  padding-left: 250px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .contentDiv {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.contentHeaderHR {
  border-width: 2px;
  width: 486px;
}
@media (max-width: 600px) {
  .contentHeaderHR {
    width: 80vw;
  }
}

/* TITLE SIDEBAR NAV */

#titleSidebarContainer {
  display: none;
  opacity: 0;

  transition: 0.3s ease-in-out;
  height: 63vh;
}

.titleSidebarNavItem {
  width: 200px;
  
  /*border-top: 2px solid rgba(255,255,255,0.1);*/
  padding-top: 10px;
  padding-bottom: 8px;

  text-transform: uppercase;
  font-family: 'Josefin Sans';

  text-align: center;
}

.titleSidebarNavItem a {
  border-right: 2px solid #2bb5e9;
  border-left: 2px solid #2bb5e9;
  border-radius: 2px;
  width: 200px;
  display: block;

  padding-top: 12px;
  padding-bottom: 8px;
  margin: 0 auto;
  padding-left: 1px;

  color: white;
  font-size: 0.8rem;

  transition: 0.1s ease-in-out;

  letter-spacing: 0.1em;
}

.titleSidebarNavItem a:hover {
  text-decoration: none;

  background-color: #2bb5e9;
  border-right: 0px solid #2bb5e9;
  border-left: 0px solid #2bb5e9;
  color: #000;

  font-weight: 700;

  letter-spacing: 0.2em;
}
@media (max-width: 992px){
  .titleSidebarNavItem a:hover {
    text-decoration: inherit;

    background-color: inherit;
    border-right: 2px solid #2bb5e9;
    border-left: 2px solid #2bb5e9;
    color: white;

    font-weight: inherit;

    letter-spacing: 0.1em;
  }
}

.titleSidebarNavItem a:active, .titleSidebarNavItem a:visited, .titleSidebarNavItem a:focus {
  text-decoration: none;
}

/* BODY CSS */

@media (min-width: 1200px){
  .container {
      width: 96%;
  }
}

.contentDivHeader {
  color: #fff;

  background: linear-gradient(to right, #0d0d0d 0%, #0d0d0d 75%, #161616 75%, #161616 100%);

  padding-top: 280px;
  padding-left: 330px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .contentDivHeader {
    padding-top: 100px;
    padding-left: 0px;
    background: #0d0d0d;

    min-height: 0px;
  }
}

.contentDivHeaderStack {
  min-height: 557px;
}

.contentDivMobileImage {
  display: none;
  background-color: #161616;

  align-content: center;
  justify-content: center;

  padding-top: 60px;
  padding-bottom: 60px;

  border-top: 2px solid white;
}
@media (max-width: 991px) {
  .contentDivMobileImage {
    display: flex;
  }
}



.contentDivHeader h2 {
  text-transform: uppercase;
  font-size: 2.0rem;
  letter-spacing: 0.35em;
  font-weight: 300;
}
.contentDivHeader h2.modelTitle {
    margin-left: 15px;
  }
@media (max-width: 991px) {
  .contentDivHeader h2 {
    letter-spacing: 0.2em;
    margin-left: 100px;
  }
  .contentDivHeader h2.modelTitle {
    margin-left: 115px;
  }
}
@media (max-width: 991px) {
  .contentDivHeader h2 {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-left: 100px;
  }
  .contentDivHeader h2.modelTitle {
    margin-left: 115px;
  }
  .contentDivHeader p {
    text-align: justify !important;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.contentDivHeaderLeftPanel {
  max-width: 1000px;
}

.contentDivHeaderImage {
  width: calc( 100vw );
  text-align: right;
}
@media (max-width: 991px) {
  .contentDivHeaderImage {
    display: none;
  }
}

.contentDivHeaderImageContainer {
  padding-top: 120px;
  width: 27vw;
  text-align: center;
  float: right;
}

.contentDivTitle {
  background-color: #cfcfcf;
  color: #000;
  border-top: 2px solid white;
  padding-top: 90px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .contentDivTitle {
    padding-top: 40px;
  }
}

.contentDivTitle h2 {
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.35em;
  font-weight: 700;
}

.contentTitleIcon {
  float: left;
  margin-top: -9px;
  margin-left: 60px;
  margin-right: 10px;
}
@media (max-width: 991px) {
  .contentTitleIcon {
    margin-left: 20px;
  }
}

.contentDivTitle p {
  letter-spacing: 0.01em;
  font-weight: 700;
}
@media (max-width: 991px) {
  .contentDivTitle p {
    margin-top: 20px;
  }
}

.gridBG {
  position: absolute;
  user-select: none;
  margin-top: -263px;
  margin-left: -68px;
  opacity: 0.3;
}
@media (max-width: 991px) {
  .gridBG {
    display: none;
  }
}

.barHeader {
  display: block;
  margin-top: -92px;
  margin-left: -100px;
  user-select: none;
}
@media (max-width: 991px) {
  .barHeader {
    margin-left: 0px;
  }
}
@media (max-width: 991px) {
  .barHeader {
    display: none;
  }
}
.barHeaderMobile {
  display: none;
  margin-top: -92px;
  margin-left: 0px;
}
@media (max-width: 991px) {
  .barHeaderMobile {
    display: block;
  }
}

.contentRightCol {
  border: 2px solid #cfcfcf;
  border-radius: 2px;

  padding: 20px;
  margin: 0px;
  margin-bottom: 20px;
}

.contentPaddingDiv {
  height: 40px; 
  width: 100%;
}

.contentPaddingDivBottom {
  height: 400px; 
  width: 100%;
}

.miniAppImage {
  padding-right: 5px;
  padding-bottom: 4px;
}

/* WHAT I DO (WID) FLEXBOX */

.wid {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  flex-wrap: wrap;

  width: 30vw;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .wid {
    min-width: 100px;
    width: 90vw;
  }
}

.widInner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  text-align: center;
  font-weight: 700;

  width: 120px;
  height: 120px;
  border: 3px solid #111;
  border-radius: 5px;

  margin: 20px;

  color: #111;
  transition: 0.2s ease-in-out;

  user-select: none;
}

.widInner:hover {
  cursor: pointer;
}

.widInnerP {
  position: absolute;
  margin-top: 10px;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease-in-out;
}

.widIMG {
  transition: 0.2s ease-in-out;
}

.widInner:hover .widInnerP {
  opacity: 1;
}

.widInner:hover .widIMG {
  opacity: 0.2;
}

/* MODAL STYLING */

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 900px;
  }
}

.modal-content {
  width: 900px;
  border: none;
}
@media (max-width: 991px) {
  .modal-content {
    width: 98vw;

  }
}
@media (max-width: 576px) {
  .modal-content {
    width: 96vw;
  }
}

.modal-title {
  color:  #2bb5e9;
  padding-left: 30px;
  margin-top: 10px;
}

.modal-footer {
  justify-content: center;
}



.contentDivExperienceList li {
  padding-top: 40px;
}

.contentDivExperienceList li h3 {
  padding-left: 30px;
  padding-top: 20px;
  color:  #2bb5e9;
}

.contentDivExperienceList li ul {

  /* list-style: none; */
}

.contentDivExperienceList li ul li {
  margin-left: 30px;
  padding-top: 0px;
}

.programListType {
  font-weight: 700;
}

.portfolioGridImage {
  width: 100%;
  height: 100%;
}

/*

.portfolioContainer{
  margin: 0;
  padding: 0;
}

.portfolioDiv {
  padding-top: 0px !important;
}

*/



.portfolioPadding {
  height: 50px;
}

.portfolioHR {
  width: auto;
}

.portfolioP {
  max-width: 300px;
  margin: 0 auto;
  text-align: justify;
}

.portfolioRow {
  padding-left: 20px;
  padding-right: 20px;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;

}

.portfolioImageContainer {
  background-color: #1b1f22;
  width: 300px;
  height: 200px;
  overflow: hidden;
  border: 2px rgba(0,0,0, 0.2) solid;
  margin: 20px;
  transition: 0.2s ease-in-out;
}

.portfolioImageContainer img {
  width: 300px;
  height: 200px;
}

.portfolioItem {
  padding-top: 30px;
  padding-bottom: 30px;

  text-align: center;
  border: 2px solid rgba(0,0,0, 0.1);

  border-radius: 2px;
  margin: 5px;
  background-color: #fff;

  box-shadow: 0px rgba(0,0,0,0);

  transition: 0.2s ease-in-out;
}



.portfolioItem:hover {
  cursor: pointer;
  box-shadow: 0px 0px 0px 6px rgba(42, 181, 232, 0.5);
  background-color: rgba(0,0,0,0.9);

  color: #fff;
}

.portfolioItem .portfolioImageContainer img {
  transition: 0.2s ease-in-out;
}

.portfolioItem:hover .portfolioImageContainer img {
  opacity: 1;
  border-color: #fff;
  transform: scale3d(1.8, 1.8, 1);
}

.portfolioItem hr {
  transition: 0.2s ease-in-out;
}

.portfolioItem:hover hr {
  border-color: #fff;
}









.portfolioGDImageContainer {
  background-color: #1b1f22;
  overflow: hidden;
  transition: 0.2s ease-in-out;
  border-radius: 2px;
  border:1px solid transparent;
}

.portfolioGDImageContainer img {
  transition: 0.2s ease-in-out;
}

.portfolioGDItem {
  text-align: center;
  border-radius: 2px;
  margin: 10px;
  background-color: #1b1f22;

  box-shadow: 0px rgba(0,0,0,0);

  transition: 0.2s ease-in-out;
  text-decoration: none;
}

.portfolioGDItem:hover {
  cursor: pointer;
  box-shadow: 0px 0px 0px 6px rgba(42, 181, 232, 0.5);

  color: rgba(42, 181, 232, 1);
  text-decoration: none;
}

.portfolioGDItem:hover .portfolioGDImageContainer img {
  opacity: 0.1;
  transform: scale3d(1.8, 1.8, 1);
}

.portfolioGDText {
  opacity: 0;
  color: #fff;
  border-color: #fff;
  transition: 0.2s ease-in-out;
  position: relative;
  
}

.portfolioGDHR {
  width: 200px;
}

.portfolioGDItem:hover .portfolioGDText {
  opacity: 1;
}



.GDRow1 {
  width: 300px;
  height: 200px;
}
.GDRow1 .portfolioGDImageContainer {
  width: 300px;
  height: 200px;
}
.GDRow1 img {
  width: 300px;
  height: 200px;
}
.GDRow1 .portfolioGDText {
  margin-top: -130px;
}
@media (max-width: 991px) {
  .GDRow1 {
    width: 466px;
    height: 305px;
  }
  .GDRow1 .portfolioGDImageContainer {
    width: 450px;
    height: 300px;
  }
  .GDRow1 img {
    width: 450px;
    height: 300px;
  }
  .GDRow1 .portfolioGDText {
    margin-top: -180px;
  }
}


.GDRow2 {
  width: 466px;
  height: 305px;
}
.GDRow2 .portfolioGDImageContainer {
  width: 466px;
  height: 311px;
}
.GDRow2 img {
  width: 466px;
  height: 311px;
}
.GDRow2 .portfolioGDText {
  margin-top: -180px;
}

@media (max-width: 768px) {
  .GDRow1, .GDRow2 {
    width: 98vw;
    height: auto;
  }
  .GDRow1 .portfolioGDImageContainer, .GDRow2 .portfolioGDImageContainer {
    width: 100%;
    height: auto;
  }
  .GDRow1 img, .GDRow2 img {
    width: 100%;
    height: auto;
  }
  .GDRow1 .portfolioGDText, .GDRow2 .portfolioGDText {
    margin-top: 0;
    padding-top: 20px;
    border-top: 2px solid white;
    position: static;
    opacity: 1;
  }
  .portfolioGDHR {
    display:none;
  }
}

.portfolioSectionHR {
  margin-top: 60px;
  margin-bottom: 60px;
}

/*
@keyframes kenburns_GD_1 {
    0% {
      opacity: 0;
      transform: scale3d(0.4, 0.4, 1) translate3d(-2200px, -1600px, 0px);
    }
    5% {
      opacity: 1;
    }
    95% {
        transform: scale3d(0.2, 0.2, 1) translate3d(-7350px, -4480px, 0px);
        animation-timing-function: ease-in;
        opacity: 1;
    }
    100% {
        transform: scale3d(0.2, 0.2, 1) translate3d(-7350px, -4480px, 0px);
        opacity: 0;
    }
}
*/

.backToTopMobile {
  display: none;

  height: 0px;
  width: 100%;
  top: 0;

  position: fixed;
  z-index: 10;

  background-color: #161616;
  border-bottom: 2px solid white;

  text-align: center;
  transition: 0.2s ease-in-out;
}
@media (max-width: 991px) {
  .backToTopMobile {
    display: block;
  }
}

.backToTopMobile .titleSidebarNavItem{
  margin: 0 auto;
  width: 90vw;
}

.backToTopMobile .titleSidebarNavItem a {
  width: 100%;
  
}

#backToTopMobileInner {
  transition: .2s ease-in-out;
  margin-top: -100px;
}

.backToTopCarat {
  font-weight: 700; 
  font-size: 1.8rem; 
  line-height: 18px;
  display: inline-block;

  position: relative;
  top: 10px;
}