* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Rubik", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-image: url("Images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* REUSABLE */

.grid {
  display: grid;
}

.grid-2-cols {
  grid-template-columns: 1fr 1fr;
}

.grid-3-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.gradient-span {
  background: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-span2 {
  background: linear-gradient(45deg, #130f49, #c471ed, #f64f59);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Overall panel */

.background-div {
  width: 100%;
  height: 100%;
}

.panel {
  border-radius: 10px;
  margin: auto;
  margin-top: 30px;
  background-color: #dfd8f3;
  height: 700px;
  width: 1300px;
  display: flex;
  -webkit-box-shadow: 0px 0px 44px -14px rgba(19, 12, 39, 1);
  -moz-box-shadow: 0px 0px 44px -14px rgba(19, 12, 39, 1);
  box-shadow: 0px 0px 44px -14px rgba(19, 12, 39, 1);
}

.fixed-container {
  flex: 0 0 25%;
  background-color: #b197fc;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  z-index: 1;
}

.scrollable-container {
  flex: 1;
  overflow: auto;
}

.fixed-content {
  position: relative;
  height: 100%;
}

.scrollable-content {
  height: 2500px;
}

/* NAVBAR PANEL */

.navbar-logo {
  border: 5px solid #f64f59;
  border-radius: 100%;
  height: 100px;
  margin: 30px 0 0 112px;
}

.navbar-name {
  margin-top: 10px;
  font-size: 30px;
  margin-left: 92px;
  color: #111111;
  z-index: 3;
  position: relative;
  font-weight: 500;
}

.navbar-name-bg {
  z-index: 2;
  position: absolute;
  left: 67px;
  top: 130px;
  font-size: 45px;
  opacity: 50%;
  font-family: "Parisienne";
  color: #d8cbfe;
}

.navbar-items {
  margin: 75px 100px 90px 100px;
  text-align: center;
}

.navbar-element {
  margin: 15px 0;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.navbar-element:hover {
  color: #ffe066;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  fill: #301f62;
}

.footer-text {
  margin-top: 10px;
  text-align: center;
  color: #495057;
}

/* SECTION HERO */

.section-hero {
  position: relative;
}

.section-hero-occupation {
}

.section-hero-text {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 750px;
}

.section-hero-heading {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.4px;
  line-height: 45px;
  color: #301f62;
}

.section-hero-para-div {
  margin-top: 20px;
  margin-bottom: 35px;
}

.section-hero-para {
  color: #6e6291;
  font-size: 20px;
}

.section-hero-btn1 {
  color: #fff;
  font-size: 15px;
  background-color: #301f62;
  border-radius: 5px;
  padding: 14px 30px;
  border: 1.5px solid #130f49;
  text-decoration: none;
  transition: all 0.5s;
}

.section-hero-btn1:hover {
  border: 1.5px solid #130f49;
  background-color: transparent;
  color: #301f62;
}

.section-hero-btn2 {
  z-index: 1;
  margin-left: 15px;
  color: #301f62;
  background-color: transparent;
  display: inline-block;
  font-size: 15px;
  border: 1.5px solid #130f49;
  border-radius: 5px;
  padding: 14px 30px;
  text-decoration: none;
  transition: all 0.5s;
}

.section-hero-btn2:hover {
  color: #f1f1f1;
  text-decoration: none;
  background-color: #301f62;
}

.star1,
.star2,
.star3 {
  position: absolute;
  height: 50px;
  z-index: 5;
}

.star1 {
  top: 160px;
  right: 370px;
  stroke: #12c2e9;
}

.star2 {
  stroke: #c471ed;
  top: 450px;
  right: 390px;
}

.star3 {
  stroke: #f64f59;
  top: 480px;
  right: 100px;
}

.section-hero-moreinfo {
  width: 10%;
  margin-top: 50px;
  align-items: center;
}

.moreinfo {
  margin-left: 10px;
}

.moreinfo-p {
  color: #301f62;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin: 2px 0;
}

.color-line {
  background: linear-gradient(55deg, #12c2e9, #c471ed, #f64f59);
  width: 5px;
  height: 80px;
}

.hero-illustration {
  margin-right: 40px;
  height: 380px;
  position: absolute;
  top: 140px;
  right: -40px;
}

/* SECTION ABOUT */

.section-about {
  grid-template-columns: 1.5fr 2fr;
  background-color: #fff;
}

.section-aboutbg {
  height: 1515px;
  background-color: #fff;
}

.section-about-heading {
  margin-top: 80px;
  margin-left: 40px;
}

.section-about-howdy {
  letter-spacing: 1px;
  font-size: 17px;
}

.section-about-name {
  font-size: 38px;
}

.section-about-paragraph {
  margin-top: 50px;

  margin-right: 50px;
}

.section-about-paragraph p {
  margin-top: 15px;
  color: #b2adc2;
}

.section-about-occupation {
  font-weight: 500;
  font-size: 14px;
}

.section-about-boxes {
  margin-top: 55px;
  display: flex;
  margin-left: 45px;
}

.section-about-box {
  height: 200px;
  width: 250px;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 7px;
}

.section-about-box1 {
  background-color: #89e1f4;
  -webkit-box-shadow: 0px 0px 27px -7px rgba(18, 194, 233, 1);
  -moz-box-shadow: 0px 0px 27px -7px rgba(18, 194, 233, 1);
  box-shadow: 0px 0px 27px -7px rgba(18, 194, 233, 1);
}

.section-about-box1 p,
.section-about-box2 p,
.section-about-box3 p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #301f62;
}

.section-about-box1 h3,
.section-about-box2 h3,
.section-about-box3 h3 {
  margin-top: 30px;
  font-weight: 400;
  font-size: 65px;
}

.section-about-box2 {
  background-color: #e2b8f6;
  -webkit-box-shadow: 0px 0px 27px -7px rgba(196, 113, 237, 1);
  -moz-box-shadow: 0px 0px 27px -7px rgba(196, 113, 237, 1);
  box-shadow: 0px 0px 27px -7px rgba(196, 113, 237, 1);
}

.section-about-box3 {
  background-color: #fba7ac;
  -webkit-box-shadow: 0px 0px 27px -7px rgba(246, 79, 89, 1);
  -moz-box-shadow: 0px 0px 27px -7px rgba(246, 79, 89, 1);
  box-shadow: 0px 0px 27px -7px rgba(246, 79, 89, 1);
}

/* SECTION RECENT WORK */

.section-recentwork {
  margin-top: 100px;
  position: relative;
}

.section-recentwork-title {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
}

.section-recentwork-top {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.section-recentwork-top img {
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 20px;
  width: 90%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.42);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.42);
  box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.42);
}

.section-workstar1,
.section-workstar2,
.section-workstar3 {
  position: absolute;
  height: 50px;
  z-index: 5;
}

.section-workstar1 {
  top: 15px;
  right: 850px;
  stroke: #12c2e9;
  transform: rotate(-10deg);
}

.section-workstar2 {
  stroke: #c471ed;
  top: 270px;
  right: 450px;
}

.section-workstar3 {
  stroke: #f64f59;
  top: 15px;
  right: 50px;
}

.past-work-grid {
  margin: auto;
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  gap: 10px;
}

.past-work {
  width: 360px;
  height: 500px;
  text-align: center;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 25px -4px rgba(19, 15, 73, 0.65);
  -moz-box-shadow: 0px 0px 25px -4px rgba(19, 15, 73, 0.65);
  box-shadow: 0px 0px 25px -4px rgba(19, 15, 73, 0.65);

  transition: all 1s;
}

.past-work:hover {
  transform: translateY(-15px);
}

.past-work1 {
  background-color: #111111;
}

.section-work-btn {
  margin-left: 15px;
  color: #301f62;
  /* background: linear-gradient(to left, #12c2e9, #c471ed, #f64f59); */
  background-color: #f8727a;
  display: inline-block;
  font-size: 15px;
  border: 1.5px solid #130f49;
  border-radius: 5px;
  padding: 14px 30px;
  text-decoration: none;
  transition: all 0.5s;
  margin-bottom: 15px;
}

.section-work-btn:hover {
  color: #f1f1f1;
  text-decoration: none;
  background-color: #ac373e;
}

.past-work img {
  margin-top: 10px;
  height: 190px;
}

.past-work h3 {
  font-size: 30px;
  font-weight: 500;
}

.past-work p {
  padding-left: 20px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 300;
  color: #dfd8f3;
  text-align: left;
  margin-bottom: 50px;
}

/* SCROLLBAR */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0 5px 5px 0;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 0 3px 3px 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
