/*------------------------------------------------------------------
    IMPORT FONTS
-------------------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;900&display=swap");

/*------------------------------------------------------------------
IMPORT FILES
-------------------------------------------------------------------*/

@import url(global.css);

/*------------------------------------------------------------------
    SKELETON
-------------------------------------------------------------------*/

body {
  color: var(--basic-gray);
  background-color: #e1e2e8;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  line-height: 1.7;
}
html, body { scroll-padding-top: 100px; }

/*=== General ===*/
.col-md-3 {
  margin-bottom: 15px;
}
img {
  max-width: 100%;
}

/*=== Text Sizes ===*/
h1 {
  font-size: 35px;
  font-weight: 700;
}
h2 {
  font-size: 26px;
  font-weight: 600;
}
h3 {
  font-size: 23px;
}
h4 {
  font-size: 20px;
}
h3,
h4 {
  font-weight: 500;
}

h2.heading {
  position: relative;
  padding-bottom: 15px;
  line-height: 2em;
}
h2.heading:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  border-radius: 10px;
  background-color: var(--primary-colour);
}

p,
a,
li {
  font-size: 16px;
  font-weight: 300;
}

blockquote {
  font-size: 40px;
  font-weight: 300;
  line-height: 50px;
}

.text-small {
  font-size: 15px;
}
.text-medium {
  font-size: 20px;
}
.text-large {
  font-size: 40px;
}
.text-caps {
  text-transform: uppercase;
}
.size-square {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
strong {
  font-weight: 600;
}
.btn {
  position: relative;
  display: block;
  width: fit-content;
  overflow: hidden;
  border: 1px solid var(--primary-colour);
  transition: all 0.65s ease-in-out;
  border-radius: 3em;
  padding: 5px 20px;
  z-index: 1;
}
.btn:before,
.btn.white:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3em;
  background-color: var(--primary-colour);
  z-index: -1;
  transition: width 0.65s ease-in-out;
}
.btn:hover {
  color: var(--basic-white);
}
.btn:hover:before {
  width: 100%;
}

.btn.white {
  border: 1px solid var(--basic-white);
  color: var(--basic-white);
}
.btn.white:hover {
  color: var(--primary-colour);
}
.btn.white:before {
  background-color: var(--basic-white);
  color: var(--primary-colour);
}

/*Icon*/
.icon {
  position: relative;
  padding: 20px;
  width: 50px;
  height: 50px;
  text-align: center;
  display: inline-block;
  color: var(--basic-white);
  background-size: contain;
  background-repeat: no-repeat;
}
.icon.html {
  background-image: url("../images/html.svg");
}
.icon.css {
  background-image: url("../images/css.svg");
}
.icon.js {
  background-image: url("../images/javascript.svg");
}
.icon.code {
  background-image: url("../images/code.svg");
}
.icon.sql {
  background-image: url("../images/sql.svg");
}
.icon.azure {
  background-image: url("../images/azure.svg");
}

/*Header*/
#page-wrapper {
  position: relative;
}

/*SideBar*/
#sidebar {
  position: fixed;
  width: 100%;
  left: 0;
  background: var(--basic-black);
  padding: 15px;
  z-index: 9;
}
/*Logo*/
#sidebar .logo img {
  width: 50px;
  background-color: var(--basic-white);
  border-radius: 50%;
}

/*Navigation*/
#sidebar ul.navigation {
  list-style: none;
  display: none;
  margin: 0;
  padding: 0;
}
#sidebar ul.navigation.active {
  display: block;
  margin-top: 15px;
}
#sidebar ul.navigation li {
  width: 100%;
  list-style: none;
  padding: 5px 0;
  margin-left: 0;
  position: relative;
  transition: margin-left 0.3s ease-in-out;
}
#sidebar ul.navigation li:hover {
  margin-left: 10px;
}
#sidebar ul.navigation li:before,
#sidebar ul.navigation li:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  width: 20px;
  height: 20px;
  padding-right: 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#sidebar ul.navigation li.home:before {
  background-image: url("../images/home.svg");
}
#sidebar ul.navigation li.about:before {
  background-image: url("../images/about.svg");
}
#sidebar ul.navigation li.technology:before {
  background-image: url("../images/technology.svg");
}
#sidebar ul.navigation li.experience:before {
  background-image: url("../images/experience.svg");
}
#sidebar ul.navigation li.portfolio:before {
  background-image: url("../images/portfolio.svg");
}
#sidebar ul.navigation li.contact:before {
  background-image: url("../images/phone-white.svg");
}
#sidebar ul.navigation li:after {
  width: 0;
  height: 5px;
  position: absolute;
  transition: width 0.65s ease-in-out;
  left: 0;
  bottom: 0;
  background-color: var(--primary-colour);
  border-radius: 20px;
}
#sidebar ul.navigation li:hover:after {
  width: 150px;
  transform: translateX(0);
}
#sidebar ul.navigation li a {
  color: var(--basic-white);
  text-decoration: none;
}

#sidebar #side-panel-trigger {
  width: 53px;
  height: 50px;
  position: absolute;
  top: 10px;
  right: 3px;
  z-index: 2;
}
#sidebar #side-panel-trigger a.cross {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#sidebar #side-panel-trigger a.cross .bar {
  width: 26px;
  height: 3px;
  background: #fff;
  display: block;
  position: absolute;
  top: calc(50% - 15px);
  right: 15px;
  -webkit-transition: all 0.65s ease;
  -moz-transition: all 0.65s ease;
  -o-transition: all 0.65s ease;
  transition: all 0.65s ease;
}
#sidebar #side-panel-trigger a.cross .bar.two {
  top: calc(50% - 8px);
}
#sidebar #side-panel-trigger a.cross .bar.three {
  top: calc(50% - 1px);
}
/* Active */
#sidebar #side-panel-trigger.active a.cross span.bar.one {
  -ms-transform: rotate(-45deg);
  -ms-transform-origin: top right;
  -moz-transform: rotate(-45deg);
  -moz-transform-origin: top right;
  -webkit-transform: rotate(-45deg);
  -webkit-transform-origin: top right;
  transform: rotate(-45deg);
  transform-origin: top right;
}
#sidebar #side-panel-trigger.active a.cross span.bar.two {
  width: 0px;
}
#sidebar #side-panel-trigger.active a.cross span.bar.three {
  top: calc(50% + 3px);
  -ms-transform: rotate(45deg);
  -ms-transform-origin: bottom right;
  -moz-transform: rotate(45deg);
  -moz-transform-origin: bottom right;
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: bottom right;
  transform: rotate(45deg);
  transform-origin: bottom right;
}

#sidebar .profile {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
#sidebar .profile p {
  margin: 0;
}

ul.social-media {
  display: none;
  position: relative;
  padding: 15px 0;
}
ul.social-media.footer{
    display:block;
}
ul.social-media.active {
  display: inline-block;
}
ul.social-media li {
  display: inline-block;
  margin-right: 10px;
}
ul.social-media li:hover a {
  background-color: var(--primary-colour);
}
ul.social-media li a {
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  background-color: #000000;
  border-radius: 50%;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}
ul.social-media li a.gmail {
  background-image: url("../images/google.svg");
}
ul.social-media li a.facebook {
  background-image: url("../images/facebook.svg");
}
ul.social-media li a.twitter {
  background-image: url("../images/twitter.svg");
}
ul.social-media li a.linkedin {
  background-image: url("../images/linkedin.svg");
  background-size: 16px;
}
ul.social-media li a.orcide {
  background-image: url("../images/orcide.svg");
}
ul.social-media li a.gmail {
  background-image: url("../images/google.svg");
}

#page-content {
  padding-top: 100px;
  z-index:3;
  overflow:visible;
}

/*section*/
section {
  position: relative;
  background-color: var(--tertiary-colour);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 5px 10px 5px rgb(0 0 0 / 10%);
  margin-top: 30px;
}
section:last-child{
    margin-bottom:50px;
}
section * {
  color: var(--basic-black);
}
section.hero {
  background-color: var(--basic-black);
  color: var(--basic-white);
}
section.hero * {
  color: var(--basic-white);
}

/* Technology */

.tech {
  position: relative;
  transition: all ease 0.65s;
}
.tech:hover .icon.html {
  background-image: url("../images/html-white.svg");
}
.tech:hover .icon.css {
  background-image: url("../images/css-white.svg");
}
.tech:hover .icon.js {
  background-image: url("../images/javascript-white.svg");
}
.tech:hover .icon.code {
  background-image: url("../images/code-white.svg");
}
.tech:hover .icon.sql {
  background-image: url("../images/sql-white.svg");
}
.tech:hover .icon.azure {
  background-image: url("../images/azure-white.svg");
}
.progress-bars {
  list-style: none;
  padding-left: 0;
}
.circular-progress-bar {
  position: relative;
  transform: rotate(-90deg);
  background-color: transparent;
  max-height: 250px;
  max-width: 250px;
}
.percentage,
.progress-text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  text-align: center;
  padding: 0px 60px;
}
.percentage {
  font-size: 50px;
  left: 60%;
}
.progress-percentage {
  display: none;
}
.progress-text {
  left: 35%;
  font-weight: 600;
}

.skills-bar-container {
  position: relative;
  width: 95%;
  list-style: none;
  margin-bottom: 25px;
}
.skills-bar-container .skill:last-child{
    padding-bottom:15px;
}
.skills-bar-container h3 {
  padding-bottom: 15px;
}
.skills-bar-container .bar {
  background: lightgrey;
  position: relative;
  width: 100%;
  height: 6px;
  margin-bottom: 20px;
  margin-top: 8px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.skills-bar-container label {
  position: relative;
  margin-left: 0px;
  font-size: 16px;
  font-weight: 500;
}
.progressbar {
  position: absolute;
  width: 0%;
  height: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#progress-html {
  -webkit-animation-name: progress-html;
  animation-name: progress-html;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-js {
  -webkit-animation-name: progress-js;
  animation-name: progress-js;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-bootstap {
  -webkit-animation-name: progress-bootstap;
  animation-name: progress-bootstap;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-sass {
  -webkit-animation-name: progress-sass;
  animation-name: progress-sass;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-tailwind {
    -webkit-animation-name: progress-tailwind;
    animation-name: progress-tailwind;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
#progress-rd {
  -webkit-animation-name: progress-rd;
  animation-name: progress-rd;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-testing {
  -webkit-animation-name: progress-testing;
  animation-name: progress-testing;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

#progress-csharp {
  -webkit-animation-name: progress-csharp;
  animation-name: progress-csharp;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-sql {
  -webkit-animation-name: progress-sql;
  animation-name: progress-sql;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-net {
  -webkit-animation-name: progress-net;
  animation-name: progress-net;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-netcore {
    -webkit-animation-name: progress-netcore;
    animation-name: progress-netcore;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
#progress-vs {
  -webkit-animation-name: progress-vs;
  animation-name: progress-vs;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-iisexpress {
  -webkit-animation-name: progress-iisexpress;
  animation-name: progress-iisexpress;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-java {
  -webkit-animation-name: progress-java;
  animation-name: progress-java;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

#progress-umbraco {
  -webkit-animation-name: progress-umbraco;
  animation-name: progress-umbraco;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-wp {
  -webkit-animation-name: progress-wp;
  animation-name: progress-wp;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-seo {
  -webkit-animation-name: progress-seo;
  animation-name: progress-seo;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

#progress-azure {
  -webkit-animation-name: progress-azure;
  animation-name: progress-azure;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-gcloud {
  -webkit-animation-name: progress-gcloud;
  animation-name: progress-gcloud;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-filezilla {
  -webkit-animation-name: progress-filezilla;
  animation-name: progress-filezilla;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#progress-dns {
  -webkit-animation-name: progress-dns;
  animation-name: progress-dns;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.progressblue {
  background-color: rgba(249, 107, 7, 0.6);
  height: 6px;
}

/*@-webkit-keyframes progress-htmlcss { 0% { width: 0%; } 100% { width: 100%; }}
@-webkit-keyframes progress-jsjq { 0% { width: 0%; } 100% { width: 85%; }}
@-webkit-keyframes progress-php { 0% { width: 0%; } 100% { width: 25%; }}
@-moz-keyframes progress-htmlcss { 0% { width: 0%; }100% { width: 100%; }}
@-moz-keyframes progress-jsjq {0% { width: 0%; }  100% { width: 85%; }}
@-moz-keyframes progress-php { 0% { width: 0%; } 100% { width: 25%; }}*/

@keyframes progress-html {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress-js {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
@keyframes progress-bootstap {
  0% {
    width: 0%;
  }
  100% {
    width: 98%;
  }
}
@keyframes progress-sass {
  0% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}
@keyframes progress-tailwind {
    0% {
        width: 0%;
    }

    100% {
        width: 80%;
    }
}
@keyframes progress-rd {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes progress-testing {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
@keyframes progress-csharp {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
@keyframes progress-sql {
  0% {
    width: 0%;
  }
  100% {
    width: 75%;
  }
}
@keyframes progress-net {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}
@keyframes progress-netcore {
    0% {
        width: 0%;
    }

    100% {
        width: 50%;
    }
}
@keyframes progress-vs {
  0% {
    width: 0%;
  }
  100% {
    width: 95%;
  }
}
@keyframes progress-iisexpress {
  0% {
    width: 0%;
  }
  100% {
    width: 95%;
  }
}
@keyframes progress-java {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}
@keyframes progress-umbraco {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
@keyframes progress-wp {
  0% {
    width: 0%;
  }
  100% {
    width: 60%;
  }
}
@keyframes progress-seo {
  0% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}
@keyframes progress-azure {
  0% {
    width: 0%;
  }
  100% {
    width: 85%;
  }
}
@keyframes progress-gcloud {
  0% {
    width: 0%;
  }
  100% {
    width: 60%;
  }
}
@keyframes progress-filezilla {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
@keyframes progress-dns {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Experience */
.timeline-wrapper,
.timeline-wrapper > li {
  position: relative;
  list-style: none;
  padding-left: 0;
}
.timeline-wrapper > li {
  padding-left: 45px;
  padding-bottom: 15px;
}
.timeline-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 2px;
  height: calc(100% - 50px);
  border-radius: 20px;
  background-color: #adadb3;
}
.timeline-wrapper > li:before,
.timeline-wrapper > li:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-image: url("../images/timeline.svg");
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: contain;
}
.timeline-wrapper > li:before {
  width: 20px;
  height: 3px;
  left: 18px;
  top: 18px;
  background-color: var(--basic-black);
  background-image: none;
  border: 0;
}
.timeline-wrapper > li .year {
  font-weight: 700;
  margin-bottom: 0;
}
.timeline-wrapper p span {
  font-size: 0.9em;
  color: var(--primary-colour);
}

/*portfolio*/
.portfolio-item {
  position: relative;
  border: 0.2px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 5px 10px 5px rgb(0 0 0 / 20%);
}
.portfolio-item .image {
  position: absolute;
  content: "";
  top: -6px;
  left: -6px;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
  transition: all 0.5s;
}
.portfolio-item .panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--primary-colour);
  opacity: 0;
  transition: all 0.65s ease-in-out;
  color: var(--basic-white);
  padding: 20px;
}
.portfolio-item .panel p,
.portfolio-item .panel h3 {
  color: var(--basic-white);
}
.portfolio-item:hover .panel {
  opacity: 1;
}
.portfolio-item:hover .image {
  transform: scale(1.2);
}

/*Contact*/

.phone,
.email,
.social {
  position: relative;
  padding-left: 50px;
  padding-bottom:15px;
}
.phone h3,
.email h3,
.social h3{ 
    margin-bottom:0;

}
.social .social-media{
    padding-top:10px;
}
.phone:before,
.email:before,
.social:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/phone.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.email:before {
  background-image: url("../images/email.svg");
}
.social:before {
  background-image: url("../images/share.svg");
}

@media (min-width: 570px) {
  section {
    padding: 30px;
  }
  /* Side panel trigger */
  #side-panel-trigger {
    width: 56px;
    height: 58px;
  }
  #side-panel-trigger a.cross .bar {
    width: 27px;
    top: calc(50% - 15px);
  }
  #side-panel-trigger a.cross .bar.two {
    top: calc(50% - 7px);
  }
  #side-panel-trigger a.cross .bar.three {
    top: calc(50% + 1px);
  }
  #side-panel-trigger a.cross .title {
    bottom: 7px;
  }
}
@media (min-width: 768px) {
  h2.heading {
    padding-bottom: 30px;
  }

  /* Side panel trigger */
  #side-panel-trigger {
    width: 60px;
    height: 61px;
  }
  #side-panel-trigger a.cross .bar {
    width: 30px;
  }
  #side-panel-trigger a.cross .bar.one {
    top: calc(50% - 18px);
  }
  #side-panel-trigger a.cross .bar.two {
    top: calc(50% - 10px);
  }
  #side-panel-trigger a.cross .bar.three {
    top: calc(50% - 1px);
  }
  #side-panel-trigger a.cross .title {
    bottom: 8px;
  }
  #sidebar .logo img {
    width: 100px;
  }
  #sidebar .profile {
    top: 30px;
  }
}
@media (min-width: 992px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 30px;
    font-weight: 600;
  }
  h2.heading {
    padding-bottom: 30px;
  }
  h3 {
    font-size: 23px;
  }
  h4 {
    font-size: 20px;
  }
  p,
  a,
  li {
    font-size: 18px;
  }
  #page-wrapper {
    position: relative;
  }
  #sidebar {
    position: fixed;
    width: 300px;
    left: auto;
    right: 15px;
    padding: 30px;
    margin-top: 30px;
    border-radius: 20px;
  }
  #sidebar ul.navigation {
    display: block;
    padding: 30px 0;
  }
  #sidebar ul.navigation li {
    padding: 8px 0;
  }
  #sidebar .profile {
    position: relative;
    left: 0;
    transform: none;
  }
  #sidebar .logo img {
    width: 135px;
  }
  ul.social-media {
    display: block;
  }
  #side-panel-trigger {
    display: none;
  }
  #page-content {
    padding-top: 0;
    max-width: calc(100% - 300px);
    float: left;
    margin: 0 15px;
  }
  section {
    padding: 50px;
  }
  section.hero {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px;
  }
    .skills-bar-container h3 { padding-bottom: 15px; }

  .timeline-wrapper > li {
    padding-left: 0;
    padding-bottom: 5em;
  }
  .timeline-wrapper > li:last-child{
      padding-bottom:0;
  }
  .timeline-wrapper > li .panel {
    display: flex;
  }
  .timeline-wrapper > li .panel .year {
    width: 25%;
    padding-right: 2em;
  }
  .timeline-wrapper > li .panel .exp-details {
    width: 65%;
    float: right;
    margin-left: 2em;
  }
  .timeline-wrapper:before {
    left: 25%;
    transform: translateX(-75%);
    height: calc(100% - 25px);
  }
  .timeline-wrapper > li:before {
    display: none;
  }
  .timeline-wrapper > li:after {
    left: calc(25% + 10px);
    transform: translateX(-75%);
  }
}
@media (min-width: 1200px) {
  #page-content {
    scroll-snap-type: y mandatory;
    scroll-padding-top: center;
  }
  section {
    padding: 80px;
    scroll-snap-align: center;
    margin-top: 50px;
  }
  section:last-child {
    margin-bottom: 50px;
  }
  section.hero {
    height: calc(100vh - 100px);
    padding: 150px;
  }
  #sidebar {
    height: calc(100vh - 100px);
    margin-top: 50px;
    border-radius: 20px;
    right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
    .timeline-wrapper:before {
        height: calc(100% - 15px);
    } 

}
@media (min-width: 1920px) {
  #page-content {
    max-width: calc(100% - 400px);
  }
  #sidebar {
    width: 350px;
    padding: 65px;
    right: 300px;
  }
}
@media (min-width: 1920px) {
}
