: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: auto;
    margin: 0;
    padding: 0;
    height: auto;
}

#container{
  width: 100%;
}

#navbar {
    width: 100%;
    height: 148px;
    box-sizing: border-box;
    margin: 0% auto;
    padding: 2%;
    text-align: center;
    background-color: var(--navy900);
    color: white;
    position: sticky;
    top:0;
    z-index: 5;
    transition: top 0.3s;
}
#navcontainer{
  width: 100%;
  height: 128px;
  position:sticky;
  top:0;
}
h1{
    font-size: 2em;
    margin: 0% auto;
    letter-spacing: 1px;
    margin-bottom: 0.25em;
}

#content{
  width: 95%;
  height: auto;
  box-sizing: border-box;
  margin: auto;
  padding: 1%;
}
#column{
  width: 42%;
  height: 2450px;
  box-sizing: border-box;
  float: right;
  background-color: none;
}

#footer{
  width: 100%;
  height: auto;
  padding: 5%;
  padding-bottom: 4%;
  margin-top: 1%;
  background-color: var(--navy900);
  color: white;
  box-sizing: border-box;
}

.footertext{
  width: 90%;
}
.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);
}

.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;
  border-radius: 64px;
}

 h4, h1, .primelink{ 
  display: inline-block;
}

h4{
  font-size: 1.25em;
}
h3{
  font-size: 1.5em;
}
h1{
  font-size: 1.75em;
}

.infobox{
  background-color: var(--tan050);
  box-sizing: border-box;
  padding-top: 1%;
  padding-bottom: 1%;
  width: 95%;
}

.primelink{
    font-size: 1.25em;
}

.seclink{
  font-size: 1em;
  letter-spacing: 0px;
  line-height: 1.25em;
}
.seclink:hover{
  letter-spacing: -1px;
}
.seclink:active{
  letter-spacing: -1px;
}

.iconlinkedin{
  width: 56px;
  height: 56px;
  box-sizing: border-box;
  margin: 2% 0%;
  margin-right: 2%;
  padding: 1%;
  border: 3px solid white;
  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;
  background-size: 65%;

}

.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: 3px solid white;
  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;
  background-size: 70%;
}

.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: 3px solid white;
  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;
  background-size: 70%;
}

.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: 3px solid white;
  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;
  background-size: 50%;
}

.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);
}

.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(2);
    position: fixed;
    top: 400px;
    left: 20px;
    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(2);
    position: fixed;
    top: 1500px;
    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(2);
    position: fixed;
    top: 700px;
    left: 800px;
    z-index: -1;
 }


#Default{
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#PKG{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#HOL{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#WTR{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#BRND{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#BRCH{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#PXL{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#TYP{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#BOOK{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#CONT{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#SKB1{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#SKB2{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#SKB3{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#SKB4{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}

#SPL1{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#SPL2{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#SPL3{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#SPL4{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#SPL5{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
#SPL6{
  display: none;
  width: 375px;
  position: fixed;
  bottom: -10px;
  right:-55px;
  z-index: 3;
  pointer-events: none;
}
