/******* GENERAL *******/

:root {
  --black: #1A1A1A;
  --blue: #0000ff;
  --gray: #F8F8F8;
  --pink: #FF006C;
}

#browser-alert .modal-content {
  border: none;
  background: #0000ff;
  color: #fff;
  padding: 1rem;
}

html {
  scroll-behavior: smooth;
}

@media (min-width: 1580px){
  .container {
    max-width: 1500px;
  }
}

body {
  color: var(--black);
  font-family: 'PT Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.bg-black {
  background: var(--black) !important;
}

.bg-blue {
  background: var(--blue) !important;
}

.bg-gray {
  background: var(--gray) !important;
}

.bg-white {
  background: #fff !important;
}

.section {
  padding: 60px 0 ;
}

.card.collapsed-card {
  border: none;
}
/****** END GENERAL ******/




/********** TYPOGRAPHY **********/

.title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.is-44 {
  font-size: 44px !important;
}

.is-36 {
  font-size: 36px !important;
}

.is-22 {
  font-size: 22px !important;
  line-height: 1.8;
}

.is-18 {
  font-size: 18px !important;
  line-height: 1.6;
}

.txt-black {
  color: var(--black) !important;
}

.txt-gray {
  color: var(--gray) !important;
}

.txt-blue {
  color: var(--blue) !important;
}

.txt-white {
  color: #fff !important;
}

@media screen and (max-width: 991px) {

  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  h1 {
    font-size: 30px;
  }

  .project-card.middle {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .skill-list li.is-22 {
    font-size: 20px!important;
  }
}

/********** END TYPOGRAPHY **********/




/******** NAVBAR ********/

.navbar-nav .nav-link:not(.list-item) {
  color: var(--black);
  opacity: .6;
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.navbar-nav .nav-link:hover {
  color: var(--pink) !important;
  opacity: 1;
}

.navbar-nav .nav-item.active .nav-link {
  font-weight: 400;
  color: var(--black) !important;
  opacity: 1;
}

.dropdown-toggle::after {
  display: none;
}

.navbar {
  padding: 1.4rem 1rem;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}


@media screen and (max-width: 991px) {
  .navbar {
    padding: .6rem 2.3rem;
  }

  .navbar .container {
    align-items: center;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .navbar-collapse.show {
    overflow-y: auto;
    max-height: 100vh;
  }

  .navbar-toggler {
    position: relative;
    border: none;
    width: 24px;
    height: 20px;
  }

  .navbar-toggler:focus {
    outline: none;
  }

  .navbar-toggler span {
    width: 24px;
    height: 2px;
    background: #2c2c2c;
    position: absolute;
    right: 0;
  }

  .navbar-toggler span:first-child {
    top: 0;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
  }

  .navbar-toggler span:nth-child(2) {
    top: calc(50% - 1px);
  }

  .navbar-toggler span:last-of-type {
    bottom: 0;
  }

  .navbar-toggler[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
    transform-origin: 0 2px;
    right: -6px;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
  }

  .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    width: 0;
  }

  .navbar-toggler[aria-expanded="true"] span:last-of-type {
    transform: rotate(-45deg);
    transform-origin: 0 0;
    right: -6px;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
  }

  .navbar-nav {
    padding: 2rem 0;
  }

  .navbar-nav .nav-link {
    margin: 0;
    width: 100%;
    font-size: 26px;
    padding: 18px 0 !important;
    text-align: center;
  }
}



/******** END NAVBAR ********/



/****** BUTTONS ******/

a {
  color: var(--blue);
  -webkit-transition: color 200ms, background-color 200ms, background-position 200ms ease-in-out !important;
  -moz-transition: color 200ms, background-color 200ms, background-position 200ms ease-in-out !important;
  -ms-transition: color 200ms, background-color 200ms, background-position 200ms ease-in-out !important;
  -o-transition: color 200ms, background-color 200ms, background-position 200ms ease-in-out !important;
  transition: color 200ms, background-color 200ms, background-position 200ms ease-in-out !important;
}

a:hover {
  color: var(--pink);
  text-decoration: none;
  -webkit-transition: color 200ms, background-color 200ms, background-position 200ms ease-in-out !important;
  -moz-transition: color 200ms, background-color 200ms, background-position 200ms ease-in-out !important;
  -ms-transition: color 200ms, background-color 200ms, background-position 200ms ease-in-out !important;
  -o-transition: color 200ms, background-color 200ms, background-position 200ms ease-in-out !important;
  transition: color 200ms, background-color 200ms, background-position 200ms ease-in-out !important;
}

.btn {
  border: 0;
  border-radius: .75rem;
  font-size: 22px;
  font-weight: bold;
  padding: 3px 40px 4px;
  letter-spacing: .2px;
}

.btn-outline {
  background-color: transparent;
  color: var(--blue);
  border: 2.5px solid var(--blue);
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline:active:focus {
  color: #fff;
  background-color: var(--pink);
  border-color: var(--pink);
}


/****** END BUTTONS ******/


/******** PROJECT CARDS ********/

.project-card .card-img, .project-card .card-img img{
  border-radius: .75rem;
  
}

.project-card .card-title,
.project-card .card-description {
  color: var(--black);
}

.project-card, .project-card .card-img {
  -webkit-transition: all .2s ease-in !important;
  -moz-transition: all .2s ease-in !important;
  -ms-transition: all .2s ease-in !important;
  -o-transition: all .2s ease-in !important;
  transition: all .2s ease-in !important;
}



.project-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.project-card:hover .card-img {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

/******** END PROJECT CARDS ********/






/******** ABOUT ********/

.naz {
  border-radius: 50%;
}

.resume-cta {
  padding: 30px !important;
  margin: auto;

  background: linear-gradient(90deg, #ff006c 50%, transparent 50%), linear-gradient(90deg, #ff006c 50%, transparent 50%), linear-gradient(0deg, #ff006c 50%, transparent 50%), linear-gradient(0deg, #ff006c 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 15px 4px, 15px 4px, 4px 15px, 4px 15px;
  padding: 10px;
  animation: border-dance 4s infinite linear;
}

@keyframes border-dance {
  0% {
    background-position: 0 0, 100% 100%, 0 100%, 100% 0;
  }
  100% {
    background-position: 100% 0, 0 100%, 0 0, 100% 100%;
  }
}

/******** END ABOUT ********/




/******** PROJECTS ********/

.project-cover {
  background-position: center center; 
  background-size: cover;
  background-repeat: no-repeat;
} 

.project-cover.csi-cover {
  background-position: bottom center; 
}

.project-title {
  padding: 200px 0;
}

.csi-cover .project-title {
  padding: 150px 0 250px;
}

.bg-techemotion {
  background-color: #3d0f57; 
}

.bg-csi {
  background-color: #0F3664; 
}

.project-video {
  border-radius: 20px;
  max-width: 100%;
}


/******** ENDPROJECTS ********/




/******** FOOTER ********/

#linkedin-in {
  fill: var(--blue);
}

#envelope{
  fill: var(--blue);
  stroke: var(--blue);
}

.footer-links a:hover #linkedin-in {
  fill: var(--pink);
}


.footer-links a:hover #envelope {
  fill: var(--pink);
  stroke: var(--pink);
}

/******** END FOOTER ********/



