/*Colors*/
/*classy pallete based on 7DA9B8*/
/*based on e99266*/
@media (min-width: 64em) {
  /*styles go here*/
}
/*create SASS map, at this point and bigger, create style x, 640px, 1024px, 1400px*/
/*at this point and smaller, create style x, 639px, 1023px, 1399px*/
.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    /*add initial styles here*/
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    /*add later style here*/
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 200ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    /*add initial styles here*/
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    /*add later style here*/
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 200ms ease-in-out forwards;
}

html {
  font-size: 100%;
  box-sizing: border-box; /*final sizes to border box*/
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Archivo", sans-serif;
  color: #FFD1DB;
  font-weight: 400;
  line-height: 1.3;
  overflow-x: hidden;
}
body.home {
  background-attachment: fixed;
  background-image: url(/Images/GOOD_BG_HOME-01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 63.9375em) {
  body.home {
    background-image: url(/images/GOOD_BG_HOME-02.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}
body.about {
  background-attachment: fixed;
  background-image: url(/Images/GOOD_BG_ABOUT-01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 63.9375em) {
  body.about {
    background-image: url(/images/GOOD_BG_ABOUT-02.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}
body.projects {
  background-attachment: fixed;
  background-image: url(/Images/GOOD_BG_PROJECTS-01-01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 63.9375em) {
  body.projects {
    background-image: url(/images/GOOD_BG_PROJECTS-02.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}
body.skills {
  background-attachment: fixed;
  background-image: url(/Images/GOOD_BG_SKILLS-01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 63.9375em) {
  body.skills {
    background-image: url(/images/GOOD_BG_SKILLS-02.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
}

a, a:visited, a:hover {
  text-decoration: none; /*remove line from beneath link text*/
}

.flex {
  display: flex;
  /*jc = justify content, sb = space between*/
  /*jc , c = center*/
  /*allign items*/
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}
.flex-ai-r {
  align-items: end;
}

button, .button {
  position: relative;
  display: inline-block;
  max-height: 3rem;
  background-color: #fcf8c5;
  font-weight: 800;
  font-style: italic;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  color: #b10500;
  font-size: 1.875rem;
  text-align: center;
  overflow: hidden;
  transition: color 150ms ease-in-out;
  transition: background-color 150ms ease-in;
}
button:hover, .button:hover {
  color: #29abe2;
  background: black;
}

.container--pall {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.container--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
.container--px {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.container--pt {
  padding-top: 4.375rem;
}
.container--pr {
  padding-right: 1.5rem;
}
.container--pb {
  padding-bottom: 4.375rem;
}
.container--pl {
  padding-left: 1.5rem;
}

/*visibility of elements depending on mobile or desktop view*/
@media (max-width: 87.4375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.header {
  position: relative;
  z-index: 1;
  /*hamburger open*/
  /*about page*/
  /*Projects page*/
  /*skills page*/
  /*contact page*/
}
@media (min-width: 64em) {
  .header {
    max-height: 5.0125rem;
  }
}
.header.open body.noscroll {
  overflow: hidden;
}
.header.open .header__toggle {
  /*if class in HTML is named open, then*/
}
.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 1;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  opacity: 0;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(#004d80, transparent);
}
.header__nav {
  position: relative;
  background-color: transparent;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.875rem;
}
@media (min-width: 64em) {
  .header__nav {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.header__cta {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.header .a__buttonHome {
  position: relative;
  background-color: #fcf8c5;
  font-weight: 800;
  border: 0;
  border-radius: 50px;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  margin-left: 28rem;
  cursor: pointer;
  color: #d9cb12;
  font-size: 1.125rem;
  text-align: center;
  overflow: hidden;
  transition: color 150ms ease-in-out;
  transition: background-color 150ms ease-in;
}
@media (min-width: 64em) {
  .header .a__buttonHome {
    font-size: 1.875rem;
  }
}
.header .a__buttonHome:hover {
  color: #29abe2;
  background: black;
}
.header__mLinksH a {
  position: relative;
  color: #d4edff;
  font-weight: 900;
  font-size: 1.375rem;
}
.header__mLinksA a {
  position: relative;
  color: #d4edff;
  font-weight: 900;
  font-size: 1.375rem;
  margin-right: 1.5rem;
}
.header .a__mButtonHome {
  position: relative;
  background-color: #fcf8c5;
  font-weight: 800;
  border: 0;
  border-radius: 50px;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  color: #d9cb12;
  font-size: 1.375rem;
  text-align: center;
  overflow: hidden;
}
.header__links a {
  position: relative;
  color: #d4edff;
  font-weight: 900;
  font-stretch: extra-condensed;
}
@media (min-width: 64em) {
  .header__links a {
    font-size: 1.875rem;
    text-shadow: none;
    transition: text-shadow 150ms ease-in-out;
  }
  .header__links a:hover {
    text-shadow: 1px 1px 8px #512334;
  }
  .header__links a:not(:last-child) {
    margin-right: 32px;
  }
}
.header__links a:not(:last-child) {
  margin-right: 40px;
}
.header__toggle {
  transform: translate(-50%) rotateZ(-90deg);
  margin-right: 1.5rem;
}
.header__toggle > span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background-color: #d9cb12;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 7px;
}
.header__menu {
  position: absolute;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  background: #fcf8c5;
  margin-top: 1.5rem;
  padding: 1.625rem;
  border-radius: 5px;
}
.header__menu a {
  display: block;
  padding: 0.625rem;
  color: #d9cb12;
  text-align: left;
  font-size: 1.375rem;
  font-weight: 900;
}
.header .a__buttonAbout {
  position: relative;
  background-color: #ffd4e5;
  font-weight: 800;
  border: 0;
  border-radius: 50px;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  cursor: pointer;
  color: #d13670;
  font-size: 1.125rem;
  text-align: center;
  overflow: hidden;
  transition: color 150ms ease-in-out;
  transition: background-color 150ms ease-in;
}
@media (min-width: 64em) {
  .header .a__buttonAbout {
    font-size: 1.875rem;
  }
}
.header .a__buttonAbout:hover {
  color: #29abe2;
  background: black;
}
.header__linksAbout {
  margin-left: 28rem;
}
.header__linksAbout a {
  position: relative;
  color: #406922;
  font-weight: 900;
  font-stretch: extra-condensed;
}
@media (min-width: 64em) {
  .header__linksAbout a {
    font-size: 1.875rem;
    text-shadow: none;
    transition: text-shadow 150ms ease-in-out;
  }
  .header__linksAbout a:hover {
    text-shadow: 1px 1px 8px #512334;
  }
  .header__linksAbout a:not(:last-child) {
    margin-right: 32px;
  }
}
.header__linksAbout a:not(:last-child) {
  margin-right: 40px;
}
.header__ctaAbout {
  background-color: #ffd4e5;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.header .a__mButtonAbout {
  position: relative;
  background-color: #ffd4e5;
  font-weight: 800;
  border: 0;
  border-radius: 50px;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  color: #d13670;
  font-size: 1.375rem;
  text-align: center;
  overflow: hidden;
}
.header__mLinksHAbout a {
  position: relative;
  color: #406922;
  font-weight: 900;
  font-size: 1.375rem;
}
.header__toggleAbout {
  transform: translate(-50%) rotateZ(-90deg);
  margin-right: 1.5rem;
}
.header__toggleAbout > span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background-color: #406922;
}
.header__toggleAbout > span:not(:last-child) {
  margin-bottom: 7px;
}
.header .a__buttonProj {
  position: relative;
  background-color: #ffd4e5;
  font-weight: 800;
  border: 0;
  border-radius: 50px;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  cursor: pointer;
  color: #d13670;
  font-size: 1.125rem;
  text-align: center;
  overflow: hidden;
  transition: color 150ms ease-in-out;
  transition: background-color 150ms ease-in;
}
@media (min-width: 64em) {
  .header .a__buttonProj {
    font-size: 1.875rem;
  }
}
.header .a__buttonProj:hover {
  color: #29abe2;
  background: black;
}
.header__linksProj {
  margin-left: 28rem;
}
.header__linksProj a {
  position: relative;
  color: #cbc5ff;
  font-weight: 900;
  font-stretch: extra-condensed;
}
@media (min-width: 64em) {
  .header__linksProj a {
    font-size: 1.875rem;
    text-shadow: none;
    transition: text-shadow 150ms ease-in-out;
  }
  .header__linksProj a:hover {
    text-shadow: 1px 1px 8px #512334;
  }
  .header__linksProj a:not(:last-child) {
    margin-right: 32px;
  }
}
.header__linksProj a:not(:last-child) {
  margin-right: 40px;
}
.header .a__mButtonProj {
  position: relative;
  background-color: #ffa6c8;
  font-weight: 800;
  border: 0;
  border-radius: 50px;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  color: #d13670;
  font-size: 1.375rem;
  text-align: center;
  overflow: hidden;
}
.header__mLinksHProj a {
  position: relative;
  color: #cbc5ff;
  font-weight: 900;
  font-size: 1.375rem;
}
.header__toggleProj {
  transform: translate(-50%) rotateZ(-90deg);
  margin-right: 1.5rem;
}
.header__toggleProj > span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background-color: #cbc5ff;
}
.header__toggleProj > span:not(:last-child) {
  margin-bottom: 7px;
}
.header .a__buttonSkills {
  position: relative;
  background-color: #def1ff;
  font-weight: 800;
  border: 0;
  border-radius: 50px;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  cursor: pointer;
  color: #f7931e;
  font-size: 1.125rem;
  text-align: center;
  overflow: hidden;
  transition: color 150ms ease-in-out;
  transition: background-color 150ms ease-in;
}
@media (min-width: 64em) {
  .header .a__buttonSkills {
    font-size: 1.875rem;
  }
}
.header .a__buttonSkills:hover {
  color: #29abe2;
  background: black;
}
.header__linksSkills {
  margin-left: 28rem;
}
.header__linksSkills a {
  position: relative;
  color: #def1ff;
  font-weight: 900;
  font-stretch: extra-condensed;
}
@media (min-width: 64em) {
  .header__linksSkills a {
    font-size: 1.875rem;
    text-shadow: none;
    transition: text-shadow 150ms ease-in-out;
  }
  .header__linksSkills a:hover {
    text-shadow: 1px 1px 8px #512334;
  }
  .header__linksSkills a:not(:last-child) {
    margin-right: 32px;
  }
}
.header__linksSkills a:not(:last-child) {
  margin-right: 40px;
}
.header .a__mButtonSkills {
  position: relative;
  background-color: #def1ff;
  font-weight: 800;
  border: 0;
  border-radius: 50px;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  color: #f7931e;
  font-size: 1.375rem;
  text-align: center;
  overflow: hidden;
}
.header__mLinksHSkills a {
  position: relative;
  color: #def1ff;
  font-weight: 900;
  font-size: 1.375rem;
}
.header__toggleSkills {
  transform: translate(-50%) rotateZ(-90deg);
  margin-right: 1.5rem;
}
.header__toggleSkills > span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background-color: #f7931e;
}
.header__toggleSkills > span:not(:last-child) {
  margin-bottom: 7px;
}
.header__ctaSkills {
  background-color: #f7931e;
  color: #5382a3;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.header__linksCont a {
  position: relative;
  color: #5382a3;
  font-weight: 900;
  font-stretch: extra-condensed;
}
@media (min-width: 64em) {
  .header__linksCont a {
    font-size: 1.875rem;
    text-shadow: none;
    transition: text-shadow 150ms ease-in-out;
  }
  .header__linksCont a:hover {
    text-shadow: 1px 1px 8px #512334;
  }
  .header__linksCont a:not(:last-child) {
    margin-right: 32px;
  }
}
.header__linksCont a:not(:last-child) {
  margin-right: 40px;
}
.header__mobile {
  min-width: 20rem;
}
.header__hue a {
  color: #5382a3;
}

.main {
  background-color: #FFD1DB;
  padding-left: 6rem;
  padding-right: 6rem;
}
.main__grid {
  display: grid;
  min-height: 20rem;
}
.main__item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.intro {
  /*about page*/
}
@media (min-width: 64em) {
  .intro .container {
    display: flex;
    align-items: left;
  }
}
@media (min-width: 64em) {
  .intro__space {
    flex: 2;
    order: 1;
    height: 41rem;
  }
}
.intro__text {
  padding-top: 10rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  color: #d4edff;
}
@media (min-width: 64em) {
  .intro__text {
    padding-top: 10rem;
    flex: 2;
    order: 2;
  }
}
.intro__text h1 {
  font-size: 1.5625rem;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
}
@media (min-width: 64em) {
  .intro__text h1 {
    font-size: 3.45rem;
    margin-bottom: 1rem;
  }
}
.intro__text h2 {
  margin-top: 0.2rem;
  font-size: 1.125rem;
}
@media (min-width: 64em) {
  .intro__text h2 {
    font-size: 1.875rem;
    margin-top: 1rem;
  }
}
.intro__text h3 {
  font-weight: 400;
  font-size: 0.75rem;
  margin-top: 3rem;
  margin-bottom: unset;
}
@media (min-width: 64em) {
  .intro__text h3 {
    font-size: 1.5625rem;
    margin-top: 7rem;
  }
}
.intro__text h4 {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: unset;
}
@media (min-width: 64em) {
  .intro__text h4 {
    font-size: 1.5625rem;
  }
}
.intro__cta {
  font-size: 1.875rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  margin-left: 1.5rem;
  margin-top: 3rem;
}
.intro__textAbout {
  padding-top: 10rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  color: #406922;
}
@media (min-width: 64em) {
  .intro__textAbout {
    padding-top: 10rem;
    flex: 2;
    order: 2;
  }
}
.intro__textAbout h1 {
  font-size: 1.5625rem;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}
@media (min-width: 64em) {
  .intro__textAbout h1 {
    font-size: 3.45rem;
    margin-bottom: 1rem;
  }
}
.intro__textAbout h2 {
  margin-top: unset;
  margin-bottom: unset;
  margin-right: 1.5rem;
  font-size: 1.125rem;
}
@media (min-width: 64em) {
  .intro__textAbout h2 {
    font-size: 1.875rem;
    margin-top: 1rem;
  }
}

.space__container {
  background-color: none;
  height: 100vh;
}
.space__two {
  background-color: #FFD1DB;
  height: 100vh;
}

.buttonCentre__item {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 40rem;
}

/* Slideshow container */
.slideshow-container {
  max-width: 62.5rem;
  position: relative;
  margin-left: 30rem;
  margin-top: 2rem;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 1rem;
  color: black;
  font-weight: 900;
  font-size: 3.45rem;
  transition: 0.6s ease;
  border-radius: 3px 3px 3px 3px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Position the "next button" to the right */
.prev {
  left: -8rem;
}

.next {
  right: -8rem;
  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(255, 255, 255, 0.5);
  border-radius: 10px;
}

.imageProj {
  height: 38rem;
  border-radius: 10px;
}

.imageProjMob {
  margin-left: 16rem;
  width: 50%;
  border-radius: 10px;
}

/* Caption text */
.text {
  background-color: rgba(222, 241, 255, 0.5);
  color: black;
  font-size: 1.5625rem;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #cbc5ff;
  font-size: 1.875rem;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dotCont {
  margin-bottom: 2rem;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 1.25rem;
  width: 1.25rem;
  margin: 0 0.125rem;
  background-color: #cbc5ff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #d13670;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.projMobArea__container {
  flex-direction: column;
  margin-top: 11.5rem;
}
.projMobArea__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(222, 241, 255, 0.5);
  border-radius: 10px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}
.projMobArea__box h1 {
  color: black;
  font-size: 1.375rem;
}
.projMobArea__box p {
  margin-top: unset;
  color: black;
  font-weight: 500;
  font-size: 1.125rem;
}
.projMobArea__imageProjM {
  border-radius: 10px;
}

.skillsArea {
  min-height: 40rem;
  width: 100%;
  margin-top: 3rem;
}
.skillsArea__container {
  width: 100%;
  min-height: 40rem;
}
@media (max-width: 87.4375em) {
  .skillsArea__container {
    display: flex;
    flex-direction: column;
  }
}
.skillsArea__box {
  background-color: rgba(222, 241, 255, 0.5);
  min-height: 40rem;
  width: 20rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  text-align: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 64em) {
  .skillsArea__box:not(:last-child) {
    margin-right: 10rem;
  }
}
.skillsArea__text {
  color: #5382a3;
}
.skillsArea__p {
  text-align: center;
  color: #5382a3;
  font-size: 1.375rem;
}

.contact {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact__heading {
  color: #d13670;
}
.contact__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 3rem;
  background-color: #5382a3;
  width: 90%;
  max-width: 35rem;
  border-radius: 10px;
}
.contact__form input, .contact__form textarea {
  border: 0;
  margin: 0.5rem 0;
  padding: 1rem;
  outline: none;
  background-color: #def1ff;
  font-size: 1.375rem;
}
.contact__CVBox {
  display: flex;
  flex-direction: row;
}
.contact__CV {
  flex-direction: row;
}
.contact p {
  font-size: 1.375rem;
  color: #def1ff;
}
.contact button {
  background-color: white;
  color: #d13670;
  width: 5rem;
  font-weight: 800;
  font-size: 1.375rem;
  font-style: normal;
}/*# sourceMappingURL=style.css.map */