@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=Roboto:wght@300;400;500&display=swap");

/* * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
} */
* {
  box-sizing: border-box;
}

:root {
  --text-color: #000000;
  --header-color: rgba(14, 24, 95, 0.88);
  --c-dark: #212529;
  --c-brand: #4e58d4;
  --c-brand-light: #697edd;
  --c-brand-rgb: 78, 87, 212;
  --c-body: #727272;
  --c-background: #e9eef3;
  --font-base: "Roboto", sans-serif;
  --box-shadow: 0 5px 5px -2px rgba(0, 0, 0, 0.2);
  --transition: all 0.5s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  line-height: 1.8;
  color: var(--c-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 500;
}

a {
  text-decoration: none;
  color: var(--c-brand);
  transition: var(--transition);
}

.navbar a:hover {
  color: var(--c-brand-light);
}

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

h1 {
  color: var(--header-color);
}

h4,
.subtitle {
  color: #193498;
}

h5 {
  color: #4e58d4;
}

h6 {
  color: #697edd;
}

#hi-fi1 {
  background-color: #eeeeee;
}

/* NAV BAR */
.navbar {
  box-shadow: var(--box-shadow);
}

.navbar .nav-link {
  font-weight: 450;
  color: var(--c-dark);
}

/* HOME PAGE */
#banner3 h3 {
  color: #eeeeee;
  line-height: 1.8;
}

/* ECHOES OF THE OCEAN */
#banner {
  background-image: url(../images/EchoesofOcean/banner.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 90vh;
}

#banner1 {
  background-image: url(../images/BrisbaneOdysee/banner.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 90vh;
}

#banner2 {
  background-image: url(../images/ExploreBlue/banner\ 1.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 90vh;
}

#banner3 {
  background-image: url(../images/Homepage/banner1.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 90vh;
}

#banner4 {
  background-image: url(../images/JTF/Data\ Visualization.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 90vh;
}

#banner5 {
  background-image: url(../images/Shadowplay/banner.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 90vh;
}

#banner6 {
  background-image: url(../images/Roommate/banner.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 90vh;
}

.title {
  color: #347cc0;
}

/* DESIGN PROCESS */
#process,
#feature,
#sketches,
#evaluation,
#learned,
#discovery,
#ethic,
#Challenges {
  background-color: var(--c-background);
}

/* Problem Statement */
#problem .row,
#goals .row,
#direction .row {
  border-style: solid;
  border-width: 1px;
  border-color: var(--c-brand);
}

/* USER FLOW */
#flow .image {
  width: 400px;
  height: 600px;
}

/* Ideation */
#ideation .image {
  width: 500px;
  height: 200px;
}

/* SKETCHES*/
/* Slideshow container */

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides1,
.mySlides2,
.mySlides3 {
  display: none;
}

.mySlides1 img {
  vertical-align: middle;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(94, 113, 198, 0.8);
  color: white;
}

/* shadow play */
/* Next & previous buttons */
.prev1,
.next1 {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 15px;
  background-color: rgba(165, 220, 223, 0.8);
  color: white;
  font-weight: bold;
  font-size: 15px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next1 {
  right: 13px;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev1:hover,
.next1:hover {
  background-color: rgba(106, 174, 213, 0.8);
  color: white;
}

/* ABOUT ME */
#about img {
  width: 200px;
  height: 200px;
  border-radius: 100px;
}

/* ICONBOX */
.iconboxe {
  width: 55px;
  height: 55px;
  border-radius: 20%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d9d9d9;
  color: #fff;
  font-size: 30px;
}

.iconboxe :hover {
  cursor: pointer;
  width: 55px;
  height: 55px;
  border-radius: 20%;
  background: #347cc0;
}

.iconboxe1 {
  width: 200px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d9d9d9;
  color: #fff;
  font-size: 20px;
}

.iconboxe1 :hover {
  cursor: pointer;
  width: 200px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4a32ae;
  color: #fff;
  font-size: 20px;
}

#about {
  background-image: url(../images/Homepage/banner2.gif);
  background-size: cover;
}
