:root {
    /* Red */
    --red050: #FFF0F0;
    --red100: #FFE0E1;
    --red200: #FFC7C9;
    --red300: #FF9EA1;
    --red400: #FF8286;
    --red500: #E9494F;
    --red600: #D23237;
    --red700: #B22429;
    --red800: #912125;
    --red900: #7A2427;
    --red950: #400D0E;

    /* Yellow */
    --yellow050: #FFF9EB;
    --yellow100: #FFEFC6;
    --yellow200: #FFDF92;
    --yellow300: #FFC44A;
    --yellow400: #FFAC20;
    --yellow500: #F98807;
    --yellow600: #DD6302;
    --yellow700: #B74206;
    --yellow800: #94320C;
    --yellow900: #7A2A0D;
    --yellow950: #461402;

    /* Blue */
    --blue050: #EEFCFD;
    --blue100: #D4F5F9;
    --blue200: #AFE9F2;
    --blue300: #5ED1E5;
    --blue400: #38BED8;
    --blue500: #1DA1BD;
    --blue600: #1B829F;
    --blue700: #1C6982;
    --blue800: #1F576B;
    --blue900: #1E485B;
    --blue950: #0F2F3D;

    /* Tan */
    --tan050: #FBF4EB;
    --tan100: #F8ECDC;
    --tan200: #F0D6B8;
    --tan300: #E6BB8B;
    --tan400: #DB965C;
    --tan500: #D37B3C;
    --tan600: #C56531;
    --tan700: #A44F2A;
    --tan800: #834029;
    --tan900: #6A3624;
    --tan950: #391A11;

    /* Navy */
    --navy050: #F4F5FA;
    --navy100: #E6E8F3;
    --navy200: #D2D6EB;
    --navy300: #B3BBDD;
    --navy400: #8E98CC;
    --navy500: #737BBE;
    --navy600: #6163AF;
    --navy700: #5655A0;
    --navy800: #4D4A83;
    --navy900: #3B3A62;
    --navy950: #2A2942;
  }
*, html{
  scroll-behavior: smooth;
} 
body{
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: auto;
}

#container{
  width: 100%;
}

#navbar {
    width: 100%;
    height: 64px;
    box-sizing: border-box;
    margin: 0% auto;
    padding: 1%;
    text-align: left;
    background-color: var(--navy900);
    color: white;
    position: sticky;
    top:0;
    z-index: 5;
}
#navcontainer{
  width: 100%;
  height: 88px;
  position:sticky;
  top:0;
}

#content{
  width: 100%;
  height: auto;
  box-sizing: border-box;
  margin: 1% 0%;
  padding: 1% 10%;
}

#footer{
  width: 100%;
  height: auto;
  padding: 2% 3%;
  padding-bottom: 4%;
  margin-top: 1%;
  background-color: var(--navy900);
  color: white;
  box-sizing: border-box;
}

.footertext{
  width: 56%;
}
.contentbox{
  width: 49%;
  height: auto;
  box-sizing: border-box;
  float:left;
  text-align: center;
  margin: 2% 0%;
  transition: ease 0.35s;
  cursor: pointer;
}


.contentbox:hover {
  transform: scale(1.05);
}


.contentbox1{
  width: 38%;
  height: auto;
  box-sizing: border-box;
  float:left;
  text-align: center;
  margin: 2% 0%;
  transition: ease 0.35s;
  cursor: pointer;
}

.contentbox1:hover {
  transform: scale(1.05);
}

.contentbox3{
  width: 60%;
  height: auto;
  box-sizing: border-box;
  float:left;
  text-align: center;
  margin: 2% 0%;
  transition: ease 0.35s;
  cursor: pointer;
}

.contentbox3:hover {
  transform: scale(1.05);
}


.contentbox2{
  width: 100%;
  height: auto;
  box-sizing: border-box;
  float:left;
  text-align: center;
  margin: 2% 0%;
  transition: ease 0.35s;
  cursor: pointer;
}

.contentbox2:hover {
  transform: scale(1.05);
}

.logo{
  width: 48px;
  float: left;
  border-radius: 64px;
  margin-top: -4px;
  margin-right: 2%;
}

 h4, h1, .primelink{ 
  display: inline-block;
  margin-right: 5%;
}

.iconlinkedin{
  width: 56px;
  height: 56px;
  box-sizing: border-box;
  margin: 2% 0%;
  margin-right: 2%;
  padding: 1%;
  border-radius: 64px;
  float: left;
  background-image: url("Images/linkedin-in.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px;
  transition: ease 0.4s;

}

.iconlinkedin:hover{
  background-image: url("Images/linkedin-inblue.svg");
  background-color: white;
  -webkit-transform: rotateZ(360deg) scale(110%);
  -moz-transform: rotateZ(360deg) scale(110%);
  transform: rotateZ(360deg) scale(110%);
}
.iconlinkedin:active{
  transform: scale(95%);
  border-color: var(--navy300);
  background-color: var(--navy300);
  background-image: url("Images/linkedin-inblue.svg");
}

.iconinstagram{
  width: 56px;
  height: 56px;
  box-sizing: border-box;
  margin: 2% 0%;
  margin-right: 2%;
  padding: 1%;
  border-radius: 64px;
  float: left;
  background-image: url("Images/instagram.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  transition: ease 0.4s;
}

.iconinstagram:hover{
  background-image: url("Images/instagramblue.svg");
  background-color: white;
  -webkit-transform: rotateZ(360deg) scale(110%);
  -moz-transform: rotateZ(360deg) scale(110%);
  transform: rotateZ(360deg) scale(110%);
}
.iconinstagram:active{
  transform: scale(95%);
  border-color: var(--navy300);
  background-color: var(--navy300);
  background-image: url("Images/instagramblue.svg");
}

.iconemail{
  width: 56px;
  height: 56px;
  box-sizing: border-box;
  margin: 2% 0%;
  margin-right: 2%;
  padding: 1%;
  border-radius: 64px;
  float: left;
  background-image: url("Images/envelope.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  transition: ease 0.4s;
}

.iconemail:hover{
  background-image: url("Images/envelopeblue.svg");
  background-color: white;
  -webkit-transform: rotateZ(360deg) scale(110%);
  -moz-transform: rotateZ(360deg) scale(110%);
  transform: rotateZ(360deg) scale(110%);
}
.iconemail:active{
  transform: scale(95%);
  border-color: var(--navy300);
  background-color: var(--navy300);
  background-image: url("Images/envelopeblue.svg");
}
.iconresume{
  width: 56px;
  height: 56px;
  box-sizing: border-box;
  margin: 2% 0%;
  margin-right: 2%;
  padding: 1%;
  border-radius: 64px;
  float: left;
  background-image: url("Images/file-lines.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  transition: ease 0.4s;
}

.iconresume:hover{
  background-image: url("Images/file-linesblue.svg");
  background-color: white;
  -webkit-transform: rotateZ(360deg) scale(110%);
  -moz-transform: rotateZ(360deg) scale(110%);
  transform: rotateZ(360deg) scale(110%);
}
.iconresume:active{
  transform: scale(95%);
  border-color: var(--navy300);
  background-color: var(--navy300);
  background-image: url("Images/file-linesblue.svg");
}

.zoom {
  transition: ease 0.35s;
  cursor: pointer;
}
.zoom:hover {
  transform: scale(1.05);
}

.marquee{
  margin: 2% 0%;
  margin-bottom: 2%;
}
* {
  box-sizing: border-box !important;
  padding: 0;
  margin: 0;
}


.marquee--inner {
  display: block;
  width: 200%;
  position: absolute;
  animation: marquee 20s linear infinite;
  &:hover {
    animation-play-state: paused;
  }
}

.marqueetext {
  float: left;
  width: 50%;
  overflow: hidden;
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
  .DropShad{
    box-shadow:2px 2px 2px blue;
}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  z-index: 0;
}

/* 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: 16px;
  color: #683636;
  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(0,0,0,0.8);
  color: white;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #683636;
  font-size: 0.75em;
  margin: 1em 1.5em;
  position: absolute;
  top: 0;
  box-sizing: border-box;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 0.75em;
  width: 0.75em;
  margin: 0 0.25em;
  background-color: #683636;
  opacity: 0.25;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #683636;
  opacity: 0.85;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {opacity: 0.25}
  to {opacity: 1}
}

.triangle1 {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 185px 129px 134px;
    border-color: transparent transparent var(--blue300) transparent;
    transform: rotate(152deg) scale(1.5);
    position: fixed;
    top: 50px;
    left: 1050px;
    z-index: -1;
 }
 .triangle2 {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 219px 114px 145px;
    border-color: transparent transparent var(--red400) transparent;
    transform: rotate(221deg) scale(1.5);
    position: fixed;
    top: 400px;
    left: -100px;
    z-index: -1;
 }
 .triangle3 {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 249px 201px 99px;
    border-color: transparent transparent var(--yellow200) transparent;
    transform: rotate(199deg) scale(1.5);
    position: fixed;
    top: 500px;
    left: 1200px;
    z-index: -1;
 }