@charset "UTF-8";

/* CSS Document */

/*Fonts*/
@font-face {
  font-family: MontserratBold;
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf");
}

@font-face {
  font-family: MontserratRegular;
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf");
}

@font-face {
  font-family: MontserratMedium;
  src: url("../fonts/Montserrat/Montserrat-Medium.ttf");

}


/* CSS styling General */

*{
  margin: 0;
  padding:0;
  border: 0;
}
h1 {
  font-family: MontserratBold;
  font-size: 40px;
  line-height: 45px;
  letter-spacing: 0.1em;

}
h2 {
  font-family: MontserratBold;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  padding: 20px 0px 15px 0px;
}
p {
  font-family: MontserratRegular;
  font-size: 17px;
  line-height: 21px;
}
nav {
  font-family: MontserratMedium;
  background: #081B3B;
}
main {

}
section {
  padding: 80px 60px 100px 60px;
  display: flex;
  flex-direction: column;
}
img {
  height: auto;
  width: auto;
}
form {
  font-family: MontserratRegular;
  font-size: 16px;
  line-height: 24px;

}
table {
  font-family: MontserratRegular;
  font-size: 16px;
  line-height: 20px;
}
footer {
  font-family: MontserratRegular;
  background: #FAA094;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 50px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;


}
footer li {
  color: #FFDDE2;
  font-size: 14px;
  list-style: none;
  text-decoration: none;

}
footer ul {
  display: flex;
  flex-direction: row;
  text-decoration: none;

}
footer p a{
  color: #FFDDE2;
  line-height: 16px;
  font-size: 14px;
  text-decoration: none;

}
footer a{
  color: #FFDDE2;
  font-size: 14px;
  margin-right: 10px;
  line-height: 20px;
  text-decoration: none;
}
footer div {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Classes  */


/* Styling for Nav */
.header {
  background-color: #fff;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  position: fixed;
  width: 100%;
  z-index: 3;
}
.header ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  overflow: hidden;
  background-color: #fff;

}
.header li a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  color: #081B3B;
}
.header li a:hover,
.header .menu-btn:hover {
  background-color: #f4f4f4;
  border-left: 8px solid #65D5FE;
}
.header .logo {
  position: absolute;
  font-size: 2em;
  text-decoration: none;
}
.logo img {
  position: absolute;
  height: 150px;
  width: auto;
}
.header .menu {
  padding-right: 10px;
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}
.header .menu-icon {
  cursor: pointer;
  float: right;
  padding: 45px 20px;
  position: relative;
  user-select: none;
}
.header .menu-icon .nav-icon {
  background: #65D5FE;
  display: block;
  height: 3px;
  position: relative;
  transition: background .2s ease-out;
  width: 30px;

}
.header .menu-icon .nav-icon:before,
.header .menu-icon .nav-icon:after {
  background: #65D5FE;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}
.header .menu-icon .nav-icon:before {
  top: 8px;
}
.header .menu-icon .nav-icon:after {
  top: -8px;
}
.header .menu-btn {
  display: none;
}
.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top:0;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top:0;
}

/* Main heading image and animation */

.header-content {
  padding-top:150px;
  padding-bottom: 50px;

}
.header-content h1 {
  color: #65D5FE;
  line-height: 40px;

}
.header-content h2 {
  color: #65D5FE;
  line-height: 20px;
}
.header-content p {
  color: #65D5FE;
}
.header-content img {
  max-height: 300px;
  width: auto;
  animation: slide-in 20s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes slide-in {
  0% {
    transform: scale(1);
    animation-timing-function: ease-in;
  }
  20% {
    opacity: 0.7;
    transform: scale(1.1);
    animation-timing-function: ease-in-out;

  }
  30% {
    opacity: 1;
    transform: rotateY(15deg);
    animation-timing-function: ease-in-out;

  }
  40% {
    opacity: 0.8;
    transform: rotateX(15deg);
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    transform: scale(1);
    animation-timing-function: ease-in-out;
  }
  70% {
    opacity: 0.8;
    transform: skewX(40deg);
    transform: scale(0.9);
    animation-timing-function: ease-in-out;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    animation-timing-function: ease-in;
  }
}

/* Footer */

.footer-socials img{
  width: 30px;
  height: auto;
  margin-top:20px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.footer-socials p {
  color: #FFDDE2;
  font-size: 14px;
  justify-content: space-between;
}
.footer-links {
  justify-content: space-between;
}


/* Index Page */

/* The Work Section */
.the-work {

  background: linear-gradient(158.68deg, #ABAAD6 0%, rgba(171, 170, 214, 0) 295.31%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));

}
.the-work > h1 {
  color: #5D4696 ;
}
.the-work > p {
  color: #5D4696 ;
  padding-bottom: 20px;
}
.the-work a{
  max-width: 150px;
  text-align: center;
  background-color: #5D4696 ;
  border: 1px solid #5D4696;
  color: #FFFFFF;
  font-family: MontserratMedium;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  margin: 24px 0px 24px 0px;
  padding: 13px 25px 13px 25px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  text-decoration: none;
}
.the-work a:hover{
  background: linear-gradient(158.68deg, #5D4696 0%, rgba(171, 170, 214, 0) 295.31%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border: 1px solid  #5D4696;
}

/* Component on The Work Section and The Work Page  */
.display-work-component {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFFFFF;
  padding: 30px 30px 15px 30px;
  margin: 0px 0px 30px 0px;
  /* /shadow/lg */
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
.display-work-component > h2 {
  color: #5D4696;
}
.display-work-component > p {
  color: #5D4696;
}
.display-work-component a {
  background-color: #FFFFFF ;
  border: 1px solid #5D4696;
  color: #5D4696;
  font-family: MontserratMedium;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  margin: 24px 0px 24px 0px;
  padding: 13px 25px 13px 25px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  text-decoration: none;
}
.display-work-component a:hover{
  background: linear-gradient(158.68deg, #ABAAD6 0%, rgba(171, 170, 214, 0) 295.31%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border: 1px solid #ABAAD6;
  color: #FFFFFF;
}
.display-work-component > img {
  max-width: 100%;
  height: auto;
}

/* The Work Page  */
.the-work-page h1{
  color: #5D4696 ;
}
.the-work-page p {
  color: #5D4696 ;
  padding-bottom: 20px;
}
.the-work-page a{
  max-width: 150px;
  text-align: center;
  background-color: #5D4696;
  border: 1px solid #5D4696;
  color: #FFFFFF;
  font-family: MontserratMedium;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  margin: 24px 0px 24px 0px;
  padding: 13px 25px 13px 25px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  text-decoration: none;
}
.the-work-page a:hover{
  background: linear-gradient(158.68deg, #5D4696 0%, rgba(171, 170, 214, 0) 295.31%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border: 1px solid  #5D4696;
}
.the-work-page {
  padding-top: 150px;
  background: linear-gradient(158.68deg, #ABAAD6 0%, rgba(171, 170, 214, 0) 295.31%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

/* About Me Section  */
.about-me {
  background: linear-gradient(191.45deg, #9ED9CC 3.14%, rgba(158, 217, 204, 0) 255.97%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));

}
.about-me > h1{
  color: #008C76;
  line-height: 35px;
}
.about-me > p {
  color: #008C76;
  padding-bottom: 20px;

}
.about-me a{
  max-width: 150px;
  text-align: center;
  background-color: #008C76 ;
  border: 1px solid #008C76;
  color: #FFFFFF;
  font-family: MontserratMedium;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  margin: 24px 0px 24px 0px;
  padding: 13px 25px 13px 25px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  text-decoration: none;
}
.about-me a:hover{
  background: linear-gradient(158.68deg, #008C76 0%, rgba(171, 170, 214, 0) 295.31%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border: 1px solid  #008C76;
}

/* About Me Page  */
.about-me-page {
  padding-top: 150px;
  background: linear-gradient(191.45deg, #9ED9CC 3.14%, rgba(158, 217, 204, 0) 255.97%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));

}
.about-me-text > h1{
  color: #008C76;
  line-height: 35px;
}
.about-me-text > p {
  color: #008C76;
  padding-bottom: 30px;
}
.about-me-image img {
  margin-top: 30px;
  margin-bottom: 30px;
  height: 300px;
  width: 300px;
  border-radius: 4px;
}

/* Who Ive Worked With Section  */
.logo-cloud {
  padding: 0px 0px 0px 0px;
}

.logo-cloud-div {
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  background-color: #F9FAFB ;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 8px;
  display: flex;
  flex-direction: row;

}
.logo-cloud img {
  display: flex;
  flex-direction: row;
  max-width: calc(100%/4);
  height: auto;
}

/* Contact Section and Page  */
.lets-talk {
  padding-top: 150px;
}
.lets-talk-image img {
  max-height: 300px;
  width: auto;
  display: flex;
  animation: slide-in 20s;
  justify-content: space-between;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.lets-talk-text >h1 {
  color:#FF6647;
}
.lets-talk-text >p {
  color: #FF6647;
}
.lets-talk-text img{
  width: 40px;
  height: auto;
  margin-right: 10px;

}

/* Contact Form  */
.lets-talk-form  {
  font-family: MontserratMedium;
  color: #FF6647;

}
.lets-talk-form > input {
  display: flex;
  flex-direction: row;
  border: 1px solid #FF6647;
  border-radius: 6px;
  color: #FF6647;
  margin: 24px 0px;
  padding: 13px 17px;
  box-sizing: border-box;
  /* shadow/sm */
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);

}
#msg {
  width: 300px;
  height: 150px;

}

.lets-talk-form > button{
  font-family: MontserratMedium;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  background: #FF6647;
  box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  border: 1px solid #FF6647;
  color: #FFFFFF;
  flex: none;
  margin: 24px 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 25px;
}
.lets-talk-form button :hover{
  background: linear-gradient(158.68deg, #FF6647 0%, rgba(171, 170, 214, 0) 295.31%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border: 1px solid  #FF6647;
}

/* Education Section  */
.school {
  background: linear-gradient(191.45deg, #9ED9CC 3.14%, rgba(158, 217, 204, 0) 255.97%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.school > h1{
  color: #008C76;
  line-height: 35px;
}
.school > p {
  color: #008C76;
  padding-bottom: 20px;
}
.school table{
  color: #008C76;
  background-color: #F9FAFB ;
  text-align: left;
  border-spacing: 25px;
  padding: 15px 30px 15px 30px;
  margin: 0px 0px 0px 0px;
  /* /shadow/lg */
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  display: flex;
}
.school h2 table  {
  color: #008C76;
  line-height: 35px;
}

/* Journey Section  */
.journey {
  background: linear-gradient(191.45deg, #f5daef 3.14%, rgba(158, 217, 204, 0) 255.97%);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.journey > h1 {
  color: #E033B3 ;
  margin-bottom: 30px;
}
.journey > h2 {
  color: #E033B3 ;
}
.journey p a{
  color: #E033B3;
  animation: fadeIn ease 10s;
  text-decoration: none;
}
.right-about-box{
  border-left: 3px solid #E033B3 ;
  color: #E033B3 ;
  text-align: left;
  background: #FFFFFF;
  padding: 15px 30px 15px 30px;
  margin: 0px 0px 30px 0px;
  /* /shadow/lg */
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;


}
.left-about-box  {
  border-right: 3px solid #E033B3 ;
  color: #E033B3 ;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFFFFF;
  padding: 15px 30px 15px 30px;
  margin: 0px 0px 30px 0px;
  /* /shadow/lg */
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;

}
.fade-in {
  animation: fadeIn ease 8s;
  -webkit-animation: fadeIn ease 8s;
  -moz-animation: fadeIn ease 8s;
  -o-animation: fadeIn ease 8s;
  -ms-animation: fadeIn ease 8s;
}
@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Achievements Section */
.achievements {

}
.awards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFFFFF;
  padding: 15px 30px 15px 30px;
  margin: 0px 0px 30px 0px;
  /* /shadow/lg */
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;

}
.achievements > h1{
  color: #FF6647;
}
.achievements p{
  color: #FF6647;
  padding-bottom: 40px;
  text-decoration: none;
}
.awards p a{
  color: #FF6647;
  text-decoration: none;
}
.awards > img{
  max-width: 100px;
  height: auto;
  margin: 10px ;

}


/* Responsive designs for screens over 768px */

@media only screen and (min-width:768px){
  /* Nav for Desktop  */
  .logo img{
    padding-left: 20px;
    position: absolute;
    height: 100px;
    width: auto;
  }
  .header {
    background: #081B3B;
  }
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
    color: #65D5FE;
  }
  #current-page {
    color: #FFFFFF;
  }

  .header li a:hover,
  .header .menu-btn:hover {
    background-color:#081B3B ;
    border-left: none;
    border-bottom: 4px solid #65D5FE;

  }
  .header .menu {
    background: #081B3B;
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
  .header-content {
    display: flex;
    flex-direction: row;
    max-width: 70%;

  }
  .header-content-text {
    justify-content: space-between;
    width: calc(100%/2);
  }
  .header-content-image {
    justify-content: space-between;
    width: calc(100%/2);
    padding-left: 150px;
  }
  .header-content-image img {
    justify-content: space-between;
    height: auto;
    width: auto;

  }

  /* Mostly making left align into center */
  .the-work > h1{
    text-align: center;
  }
  .the-work >p{
    text-align: center;
  }
  .the-work> a{
    margin-left: auto;
    margin-right: auto;
  }

  .the-work-page > h1 {
    text-align: center;
  }
  .the-work-page > p {
    text-align: center;
  }
  .the-work-page> a{
    margin-left: auto;
    margin-right: auto;
  }

  .work-components {
    display:flex;
    flex-direction: row;
  }
  .display-work-component {
    margin-right: 30px ;
    width: calc(100%/3);
    justify-content: space-between;
  }

  .about-me {
    margin-left: auto;
    margin-right: auto;
    height: auto;
    width: auto;
  }
  .about-me > h1 {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    width: auto;
  }
  .about-me > p {
    text-align: center;
    display: block;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;

  }
  .about-me a{
    margin-left: auto;
    margin-right: auto;
  }

  .about-me-page button{
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .about-me-page {
    display:flex;
    flex-direction: row;

  }
  .about-me-image {
    width: calc(100%/2);
    margin-left: 50px;
    margin-right: 20px;
    justify-content: space-between;

  }
  .about-me-image img {
    height: 350px;
    width: 350px;
    align-items: center;
  }
  .about-me-text {
    margin-right: 30px ;
    width: calc(100%/2);
    justify-content: space-between;
  }

  .school table p{
    text-align: left;
  }
  .school h1{
    text-align: center;
  }
  .school p{
    text-align: center;
  }

  .journey {
    display: block;
    text-align: center;
  }
  .right-about-box {
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    width: auto;
    max-width: 70%;
  }
  .left-about-box{
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    width: auto;
    max-width: 70%;
  }

  .logo-cloud-div {

    padding:10px;
    margin-bottom: 15px;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;

  }
  .logo-cloud  img {
    justify-content: space-between;
    margin-right: 10px ;
    width: calc(100%/5);
    height: auto;
    align-items: center;


  }

  .achievements {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
  }
  .achievements-elements {
    padding-top: 30px;
    columns: 3;
    max-height: 300px;
  }
  .achievements h1{
    text-align: center;
  }
  .achievements p{
    text-align: center;
  }
  .awards {
    text-align: center;
    display: inline-block;
    flex-direction: column;
    justify-content: left ;
  }
  .awards img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    width: auto;
  }

  .lets-talk {
    display: flex;
    flex-direction: row;
  }
  .lets-talk-image{
    justify-content: space-between;
    width: calc(100%/2);
  }
  .lets-talk-image img {
    max-height: 350px;
    width: auto;
    justify-content: space-between;
  }
  .lets-talk-text {
    justify-content: space-between;
    width: calc(100%/2);
  }

  .lets-talk-form {
    justify-content: space-between;
    width: calc(100%/2);
    align-items: flex-start;
    position: relative;

  }

}


