@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;600&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 48px;
}

body {
  background: #C4EFFF;
  color: black;
  margin: auto;
  font-family: "Raleway", sans-serif;
}

p {
  line-height: 1.75em;
}

.THISISATEST {
  width: 100%;
  background: black;
  color: white;
  font-weight: bold;
  text-align: center;
  z-index: 99999;
  position: absolute;
}

.backgroundImage {
  min-height: 100%;
}

.hero {
  width: 100vw;
  height: 100vh;
  position: relative;
  min-height: 600px;
}

.hero__container {
  width: 100vw;
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 0;
}

.hero__container svg {
  position: relative;
  bottom: -4px;
}

@media only screen and (max-width: 768px) {
  .hero__title {
    position: relative;
    top: 25%;
    z-index: 1;
    text-align: center;
  }
  .hero__container__desktop {
    display: none;
  }
  .hero__title__header1 {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 30px black;
  }
  .hero__title__header1__intro {
    font-size: 1.5rem;
    text-shadow: 2px 5px 30px black;
  }
  .hero__title__btnContainer {
    margin-top: 70px;
  }
  .hero__title__btnContainer__btn {
    /* Positioning and sizing */
    display: block;
    width: 200px;
    /* Padding and margins */
    padding: .5em;
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    /* Text styles */
    color: white;
    text-decoration: none;
    font-size: 1em;
    /* Border styles */
    border-radius: 20px;
    -webkit-box-shadow: 2px 5px 20px grey;
            box-shadow: 2px 5px 20px grey;
    /* Backgrounds */
    background-color: #2A5A3F;
  }
  /* Change the color of links on hover */
  .hero__title a:hover {
    background-color: white;
    color: black;
  }
}

@media only screen and (min-width: 769px) {
  .hero__title {
    position: relative;
    top: 30%;
    z-index: 1;
    text-align: center;
  }
  .hero__container__mobile {
    display: none;
  }
  .hero__container__desktop {
    position: relative;
    left: auto;
    right: auto;
  }
  .hero__title__header1 {
    font-size: 6rem;
    color: white;
    text-shadow: 2px 5px 50px gray;
  }
  .hero__title__header1__intro {
    font-size: 3rem;
    text-shadow: 2px 5px 30px gray;
  }
  .hero__title__btnContainer__btn {
    /* Positioning and sizing */
    display: inline-block;
    width: 150px;
    /* Padding and margins */
    padding: .5em;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    /* Text styles */
    color: white;
    text-decoration: none;
    font-size: 1em;
    /* Border styles */
    border-radius: 20px;
    -webkit-box-shadow: 2px 5px 20px grey;
            box-shadow: 2px 5px 20px grey;
    /* Backgrounds */
    background-color: #2A5A3F;
  }
  /* Change the color of links on hover */
  .hero__title a:hover {
    background-color: white;
    color: black;
  }
  .hero--buttons {
    position: absolute;
    top: 80%;
    z-index: 1;
    text-align: center;
    width: 100%;
  }
}

/* Add a black background color to the top navigation */
@media only screen and (min-width: 769px) {
  .topnav {
    position: fixed;
    width: 100vw;
    background-color: #2A5A3F;
    overflow: hidden;
    z-index: 20;
    -webkit-transition: top 0.3s;
    transition: top 0.3s;
    top: 0;
    -webkit-box-shadow: rgba(17, 12, 46, 0.8) 0px 0px 10px 0px;
            box-shadow: rgba(17, 12, 46, 0.8) 0px 0px 10px 0px;
    height: 48px;
  }
  .topnav__logo {
    position: absolute;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 38px;
    width: 38px;
    margin-left: 5px;
    z-index: 20;
  }
  .topnav__logo svg {
    position: absolute;
    width: 38px;
    margin: auto;
  }
  .topnav__desktop {
    z-index: 20;
  }
  .topnav__hamburger {
    display: none;
  }
  /* Style the links inside the navigation bar */
  .topnav .topnav__desktop__link {
    float: right;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  .topnav__desktop__linkedIn {
    height: 48px;
    float: right;
    display: block;
    color: #f2f2f2;
    text-align: center;
    text-decoration: none;
  }
  .topnav__desktop__linkedin_img {
    height: 48px;
    width: 48px;
  }
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: white;
    color: black;
  }
  /* Add an active class to highlight the current page */
  .topnav a.active {
    background-color: #F7DB84;
    color: black;
  }
  .hamburger__menu {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .topnav {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    background-color: #2A5A3F;
    overflow: hidden;
    z-index: 20;
    -webkit-transition: top 0.3s;
    transition: top 0.3s;
    top: 0;
    -webkit-box-shadow: rgba(17, 12, 46, 0.8) 0px 0px 10px 0px;
            box-shadow: rgba(17, 12, 46, 0.8) 0px 0px 10px 0px;
    height: 48px;
  }
  .topnav__logo {
    position: absolute;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 38px;
    width: 100%;
    margin-left: calc(50vw - 19px);
  }
  .topnav__logo svg {
    position: absolute;
    width: 38px;
    margin: auto;
  }
  .topnav__desktop {
    display: none;
  }
  .topnav__hamburger {
    cursor: pointer;
    color: white;
    font-size: 35px;
  }
  .topnav__mobile_overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    background-color: #2a5a3f;
    background-color: rgba(42, 90, 63, 0.9);
    overflow-x: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .overlay-content {
    position: relative;
    top: 48px;
    width: 100%;
    text-align: center;
  }
  .topnav__mobile_overlay a {
    text-decoration: none;
    font-size: 36px;
    color: white;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .topnav__mobile_overlay__linkedIn {
    height: 48px;
    float: left;
    display: inline;
    color: #f2f2f2;
    text-align: center;
    text-decoration: none;
    padding-top: 25px;
    padding-left: 25px;
  }
  .topnav__mobile_overlay__linkedin_img {
    height: 48px;
    width: 48px;
  }
  .hamburger__menu {
    margin-top: 48px;
    width: 100%;
    height: 100%;
    z-index: 3;
  }
  .hamburger__menu__item {
    padding: 15px 0 15px 0;
    padding-left: 25px;
    width: 100%;
  }
  .topnav__mobile_overlay .hamburger__menu__item:hover, .topnav__mobile_overlay .hamburger__menu__item:focus {
    color: #000000;
    background-color: white;
  }
  a.active {
    background-color: #F7DB84;
    color: black;
  }
  .topnav__mobile_overlay .hamburger__menu__closebtn {
    position: absolute;
    top: 0px;
    right: 25px;
    font-size: 70px;
    height: 48px;
    justify-items: center;
    vertical-align: middle;
  }
}

/* Hide the link that should open and close the topnav on small screens 
  .topnav .icon {
    display: none;
  }*/
.myMainContent {
  width: 100vw;
  position: absolute;
  top: 100vh;
  background-color: white;
}

.break__section {
  width: 100vw;
  height: 10px;
  background-color: white;
}

@media only screen and (max-width: 768px) {
  .contentSection {
    padding: 15px;
  }
}

@media only screen and (min-width: 769px) {
  .contentSection {
    padding: 30px;
  }
}

.contentSection {
  background-color: #FBFBFD;
  margin: auto;
  border-radius: 25px;
}

.contentSection .contentSection__container__header {
  padding-bottom: 10px;
  text-align: center;
}

.contentSection .contentSection__container__headerLine {
  border-radius: 5px;
  width: 50px;
  margin-left: auto;
  margin-right: auto;
}

.contentSection .headerLine_white {
  border: 1px solid white;
}

.contentSection .headerLine_black {
  border: 1px solid black;
}

.contentSection .content--para {
  text-align: justify;
  text-justify: inter-word;
  padding-top: 30px;
}

.section_journey {
  background-color: white;
  width: 100%;
  border-radius: 0;
  color: black;
}

@media only screen and (max-width: 768px) {
  .section_journey__container {
    width: 100%;
    background-color: #FBFBFD;
    margin: auto;
    border-radius: 25px;
  }
  .section_journey__container__professionalExperience__container__company__picture {
    width: 65px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: left;
  }
  .section_journey__container__professionalExperience__container__timeline {
    width: 65px;
    float: left;
    height: 100%;
    position: relative;
  }
  .section_journey__container__professionalExperience__container__company__picture__img {
    height: 55px;
    width: 55px;
    border-radius: 15px;
    float: left;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .section_journey__container__professionalExperience__container__companyDetails__name {
    font-weight: bold;
  }
  .section_journey__container__professionalExperience__container__company {
    width: 100%;
    margin: auto;
    height: 60px;
    margin-top: 25px;
  }
  .section_journey__container__professionalExperience__container__companyDetails {
    float: left;
    width: 200px;
    margin: auto;
    padding-bottom: 2px;
    font-size: 0.9rem;
    margin-left: 5px;
  }
  .section_journey__container__professionalExperience__container__roleHistory__responsibleTitle h2 {
    font-size: 1rem;
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .section_journey__container__professionalExperience__container__roleHistory__officialTitle h3 {
    font-size: 0.9rem;
    padding-bottom: 5px;
    color: grey;
    font-weight: normal;
  }
  .section_journey__container__professionalExperience__container__roleHistory__department {
    font-size: 0.9rem;
    color: grey;
    font-weight: lighter;
  }
  .section_journey__container__professionalExperience__container__roleHistory__duration {
    font-size: 0.7rem;
    padding-top: 15px;
    font-weight: lighter;
    color: grey;
  }
  .section_journey__container__professionalExperience__container__roleHistory__location {
    font-size: 0.7rem;
    font-weight: lighter;
    padding-bottom: 20px;
    color: grey;
  }
  .section_journey__container__professionalExperience__container__roleHistory__responsibilities__para {
    text-align: justify;
    text-justify: inter-word;
    font-size: 0.9rem;
  }
  .written_accomplishments h4 {
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .written_accomplishments {
    text-align: justify;
    text-justify: inter-word;
  }
  .written_accomplishments--list {
    margin-left: 20px;
  }
  .written_accomplishments--list li {
    margin-bottom: 10px;
    padding-left: 40px;
  }
}

@media only screen and (min-width: 769px) {
  .section_journey__container {
    max-width: 1920px;
    background-color: #FBFBFD;
    padding: 30px;
    margin: auto;
    width: 80%;
    border-radius: 25px;
  }
  .section_journey__container__professionalExperience__container {
    width: 100%;
    padding-top: 25px;
  }
  .section_journey__container__professionalExperience__container__company__picture {
    width: 100px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: left;
  }
  .section_journey__container__professionalExperience__container__timeline {
    width: 100px;
    float: left;
    height: 100%;
  }
  .section_journey__container__professionalExperience__container__company__picture__img {
    height: 75px;
    width: 75px;
    border-radius: 15px;
    float: left;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .section_journey__container__professionalExperience__container__companyDetails__name {
    font-weight: bold;
  }
  .section_journey__container__professionalExperience__container__companyDetails__padding {
    padding: 5px 0px 5px;
  }
  .section_journey__container__professionalExperience__container__company {
    background-color: #FBFBFD;
    width: 100%;
    margin: auto;
    height: 75px;
    margin-top: 25px;
  }
  .section_journey__container__professionalExperience__container__companyDetails {
    float: left;
    width: 250px;
    margin: auto;
    padding-bottom: 10px;
    margin-left: 5px;
  }
  .section_journey__container__professionalExperience__container__roleHistory__responsibleTitle h2 {
    font-size: 1.5rem;
    padding-bottom: 3px;
    padding-top: 1px;
  }
  .section_journey__container__professionalExperience__container__roleHistory__officialTitle h3 {
    font-size: 1.1rem;
    padding-bottom: 5px;
    color: grey;
    font-weight: normal;
  }
  .section_journey__container__professionalExperience__container__roleHistory__department {
    font-size: 1rem;
    color: grey;
    font-weight: lighter;
  }
  .section_journey__container__professionalExperience__container__roleHistory__duration {
    font-size: 0.9rem;
    padding-top: 15px;
    font-weight: lighter;
    color: grey;
  }
  .section_journey__container__professionalExperience__container__roleHistory__location {
    font-size: 0.9rem;
    font-weight: lighter;
    padding-bottom: 20px;
    color: grey;
  }
  .section_journey__container__professionalExperience__container__roleHistory__responsibilities__para {
    text-align: justify;
    text-justify: inter-word;
  }
  .written_accomplishments h4 {
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .written_accomplishments {
    text-align: justify;
    text-justify: inter-word;
  }
  .written_accomplishments--list {
    margin-left: 20px;
  }
  .written_accomplishments--list li {
    margin-bottom: 10px;
    padding-left: 40px;
  }
}

.company_name {
  color: gray;
  font-weight: bold;
}

.duration {
  color: gray;
  font-weight: 100;
  font-size: 0.9rem;
  margin-top: 5px;
}

.section_journey__container__professionalExperience__container__roleDetails {
  width: 100%;
  margin: auto;
  overflow: hidden;
  height: 100%;
}

.section_journey__container__professionalExperience__container__roleHistory {
  float: left;
  margin: auto;
  padding-top: 10px;
}

.section_journey__container__professionalExperience__container__timeline__vLine {
  position: inherit;
  width: 2px;
  height: 100%;
  background: lightgrey;
  margin: 10px auto 0 auto;
}

.section_journey__container__professionalExperience__container__timeline__circle {
  width: 10px;
  height: 10px;
  background: lightgray;
  border-radius: 10px;
  position: relative;
  margin: 20px auto 0 auto;
}

.white_line_break {
  border-radius: 5px;
  width: 50px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  border: 1px solid white;
  z-index: 1;
}

.section_aboutme {
  background-color: black;
  width: 100%;
  border-radius: 0;
  color: white;
}

.section_aboutme .section_aboutme__container {
  max-width: 1920px;
  margin: auto;
}

@media only screen and (min-width: 769px) {
  .section_aboutme__container {
    width: 80%;
  }
  .contentSection__container__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contentSection__container__content__picture {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    text-align: center;
  }
  .contentSection__container__content__picture .contentSection__container__content__picture__img {
    border-radius: 500px;
    width: 50%;
    margin: 1% 0 1% 0;
  }
}

@media only screen and (max-width: 768px) {
  .section_aboutme__container {
    width: 100%;
  }
  .contentSection__container__content__picture {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    text-align: center;
  }
  .contentSection__container__content__picture .contentSection__container__content__picture__img {
    border-radius: 500px;
    height: 30%;
    width: 30%;
    margin: 1% 0 1% 0;
  }
  .contentSection__container__content__body {
    text-align: center;
  }
  .contentSection__container__content__body .contentSection__container__content__body__inlinePara, .contentSection__container__content__body .contentSection__container__content__body__openingPara {
    text-align: center;
  }
}

.contentSection__container__content__body__inlinePara_url {
  color: white;
}

.contentSection__container__content__body {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  margin: 1% 1% 1% 0;
}

.contentSection__container__content__body p {
  text-align: justify;
  text-justify: inter-word;
}

.contentSection__container__content__body__inlinePara {
  margin-top: 1rem;
}

.contentSection__container__content__body__list {
  margin-top: .5rem;
  list-style: none;
}

.contentSection__container__content__picture__img {
  width: 100%;
}

/*.content--full-banner{
    background-color: white;
}*/
.myProjects_section {
  background-color: black;
  width: 100%;
  border-radius: 0;
  color: white;
}

.myProjects_section__container {
  width: 80%;
  max-width: 1920px;
  margin: auto;
}

.myInterests_section {
  position: relative;
  width: 100%;
  border-radius: 0;
  color: black;
  background-color: white;
  padding: 0;
}

.myInterests_section .myInterests_section__background {
  position: absolute;
  background: url(../img/background_abstract_bright.jpg) no-repeat center center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  margin: auto;
  padding: 0;
}

.myInterests_section .myInterests__header {
  position: relative;
  z-index: 3;
  margin: auto;
  text-align: center;
}

.myInterests_section .myInterests__header h1 {
  padding-top: 25px;
}

.myInterests_section .myInterests {
  height: 100%;
  width: 80%;
  max-width: 1920px;
  margin: auto;
}

.myInterests_section .myInterests_section__container {
  margin: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  padding-top: 25px;
  padding-bottom: 25px;
}

.button.large {
  margin: 0;
  text-align: center;
}

.button.large a {
  color: white;
  font-size: 1.75rem;
  font-weight: 100;
  text-decoration: none;
}

.card-front {
  position: relative;
}

.card-front .card-front__text {
  position: absolute;
  bottom: 50%;
  width: 100%;
}

.flip-cards {
  float: left;
  width: 100%;
  height: 100%;
}

.flip-cards li {
  float: left;
  width: 33.3%;
  height: 180px;
  position: relative;
  padding: 0;
  list-style: none;
}

.card-back {
  padding: 20px;
}

.card-back .hub-info {
  height: 100%;
}

.flip-cards li:hover .card-front {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform: perspective(1000) rotateY(180deg);
  transform: perspective(1000) rotateY(180deg);
}

.flip-cards li:hover .card-back {
  z-index: 9;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform: perspective(1000) rotateY(0deg);
  transform: perspective(1000) rotateY(0deg);
}

.flip-cards .card-front,
.flip-cards .card-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}

.flip-cards .card-front {
  -webkit-transform: perspective(1000) rotateY(0);
  transform: perspective(1000) rotateY(0);
  z-index: 10;
}

.flip-cards .card-back {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  z-index: 10;
}

.flip-cards .panel {
  border: none;
}

.flip-cards .panel p,
.flip-cards .panel a {
  color: white;
}

.flip-cards li:first-child > .button {
  background-color: rgba(40, 57, 77, 0.8);
}

.flip-cards li:first-child > .panel {
  background-color: #28394d;
}

.flip-cards li:nth-child(2) > .button {
  background-color: rgba(109, 193, 202, 0.8);
}

.flip-cards li:nth-child(2) > .panel {
  background-color: #6dc1ca;
}

.flip-cards li:nth-child(3) > .button {
  background-color: rgba(211, 81, 45, 0.8);
}

.flip-cards li:nth-child(3) > .panel {
  background-color: #d3512d;
}

.flip-cards li:nth-child(4) > .button {
  background-color: rgba(235, 167, 36, 0.8);
}

.flip-cards li:nth-child(4) > .panel {
  background-color: #eba724;
}

.flip-cards li:nth-child(5) > .button {
  background-color: rgba(75, 135, 150, 0.8);
}

.flip-cards li:nth-child(5) > .panel {
  background-color: #4b8796;
}

.flip-cards li:last-child > .button {
  background-color: rgba(100, 66, 87, 0.8);
}

.flip-cards li:last-child > .panel {
  background-color: #644257;
  color: white;
}

@media only screen and (max-width: 40em) {
  .flip-cards li {
    width: 50%;
    /*height: 160px;*/
  }
}

.mySection_section {
  width: 100%;
  background-color: white;
  border-radius: 0px;
}

.mySystem_container {
  background-color: gray;
  width: 80%;
  margin: auto;
  border-radius: 25px;
  max-width: 1920px;
}

.mySystem__list {
  margin: 50px;
  text-decoration: none;
  list-style: none;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
}

.mySystem__list .mySystem__list__item {
  margin: 25px;
}

.mySystem-title-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 320px;
  /* Padding and margins */
  padding: 1em;
  margin: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  /* Text styles */
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  /* Border styles */
  border-radius: 2em;
  -webkit-box-shadow: 2px 5px 20px grey;
          box-shadow: 2px 5px 20px grey;
  /* Backgrounds */
  background-color: #2A5A3F;
}

.mySystem-title-btn a {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  margin: auto;
  font-weight: bold;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], input[type=email], select, textarea {
  width: 100%;
  /* Full width */
  padding: 12px;
  /* Some padding */
  border: 1px solid #ccc;
  /* Gray border */
  border-radius: 4px;
  /* Rounded borders */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* Make sure that padding and width stays in place */
  margin-top: 6px;
  /* Add a top margin */
  margin-bottom: 16px;
  /* Bottom margin */
  resize: vertical;
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #2A5A3F;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: medium;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.myConnect__container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  margin: 20px;
  max-width: 1536px;
}

.myConnect__container input, .myConnect__container textarea {
  font-size: 1rem;
}

.contact_reason {
  font-size: medium;
  width: 100%;
}

.myConnect__connectTiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.myConnect__connectTiles img {
  margin-top: 25px;
  margin-bottom: 25px;
}

.myConnect__intro {
  margin: 25px;
}

.myConnect__intro .myConnect__intro__paragraph {
  font-weight: bold;
  text-align: center;
}

.myConnect__intro .myConnect_connect_line {
  font-size: large;
  padding-top: 30px;
  color: gray;
}

.content--subheader {
  text-align: center;
  margin-top: 30px;
}

.myConnect {
  background-color: white;
  width: 100%;
  border-radius: 0px;
}

.myConnect_content_container {
  width: 80%;
  margin: auto;
  max-width: 1920px;
}

@media only screen and (max-width: 768px) {
  .myConnect {
    width: 100%;
    border-radius: 0px;
  }
  .myConnect_intro_line {
    margin: auto;
    font-size: larger;
    padding-top: 25px;
    text-align: center;
  }
  .myConnect__connectTiles a {
    width: 70px;
    margin: auto;
  }
  .myConnect__connectTiles {
    width: 70%;
    margin: auto;
  }
  .myConnect__connectTiles__linkedin__image, .myConnect__connectTiles__goodreads__image {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin: auto;
  }
  .myConnect__connectTiles__linkedin__image:hover, .myConnect__connectTiles__goodreads__image:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .myConnect__container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    margin: auto;
    margin-top: 25px;
    width: 100%;
  }
  .myConnect__container input, .myConnect__container textarea {
    font-size: 1rem;
  }
  .g-recaptcha {
    -webkit-transform: scale(0.65);
            transform: scale(0.65);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .rc-anchor-checkbox-label {
    font-size: 14px;
  }
}

@media only screen and (min-width: 769px) {
  .myConnect__connectTiles {
    width: 50%;
    margin: auto;
  }
  .myConnect_intro_line {
    width: 100%;
    margin: auto;
    font-size: larger;
    padding-top: 25px;
    text-align: center;
  }
  .myConnect__connectTiles a {
    width: 150px;
    margin: auto;
  }
  .myConnect__connectTiles__linkedin__image, .myConnect__connectTiles__goodreads__image {
    width: 150px;
    height: 150px;
    border-radius: 25px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin: auto;
  }
  .myConnect__connectTiles__linkedin__image:hover, .myConnect__connectTiles__goodreads__image:hover {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  .myConnect__container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    margin: auto;
    margin-top: 25px;
    width: 80%;
  }
  .myConnect__container input, .myConnect__container textarea {
    font-size: 1rem;
  }
}

.footer {
  width: 100vw;
  height: 48px;
  background-color: #2A5A3F;
  overflow: hidden;
  z-index: 2;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  bottom: 0;
  -webkit-box-shadow: rgba(17, 12, 46, 0.8) 0px 0px 10px 0px;
          box-shadow: rgba(17, 12, 46, 0.8) 0px 0px 10px 0px;
}

@media only screen and (max-width: 768px) {
  .myProjects_section__container__body {
    text-align: center;
  }
  .myProjects_section__container__body__card {
    width: 270px;
    position: relative;
    margin: 10px;
    margin-top: 25px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 5px;
  }
  .myProjects_section__container__body__card__img {
    width: 270px;
    height: 146px;
    border-radius: 5px;
  }
  .myProjects_section__container__body__card__tint {
    width: 100%;
    height: 146px;
    background-color: black;
    z-index: 2;
    position: absolute;
    top: 0;
    opacity: 50%;
  }
  .myProjects_section__container__body__card__splash {
    background-color: black;
    width: 100%;
    height: 70px;
    position: absolute;
    z-index: 2;
    top: 76px;
    opacity: 60%;
  }
  .myProjects_section__container__body__card__splash__title {
    position: absolute;
    z-index: 2;
    margin: 0;
    width: 100%;
    text-align: center;
    top: 10%;
    opacity: 100%;
    color: white;
  }
  .myProjects_section__container__body__card__splash__title__header {
    font-size: medium;
  }
  .myProjects_section__container__body__card__splash__description__para {
    font-size: smaller;
  }
  .myProjects_section__container__body__card__splash__description {
    position: absolute;
    z-index: 2;
    margin: 0;
    width: 100%;
    text-align: center;
    bottom: 10%;
    color: white;
    left: 0;
  }
  .myProjects_section__container__body__card__details {
    width: 100%;
    background-color: white;
    z-index: 3;
    position: absolute;
    bottom: 0px;
    border-radius: 0 0 5px 5px;
  }
  .myProjects_section__container__body__card__details__content {
    color: black;
    text-align: left;
    margin: 5px;
  }
  .hidden {
    display: none;
  }
  .show {
    display: inline;
  }
  .collapse {
    height: 146px;
  }
  .expand {
    height: 650px;
  }
  .myProjects_section__container__body__card__details__content__para {
    text-align: justify;
    text-justify: inter-word;
    padding-bottom: 5px;
  }
  .myProjects_section__container__body__card__details__content__header {
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .myProjects_section__container__body__card__details__content__list {
    padding-bottom: 10px;
    list-style: inside;
  }
  .myProjects_section__container__body__card__splash__description p:hover {
    cursor: pointer;
  }
  .myProjects_section__container__body__card__details__content__topics {
    left: auto;
    right: auto;
    text-align: center;
    padding-top: 10px;
  }
  .myProjects_section__container__body__card__details__content__topics__skillimg {
    height: 50px;
    width: 50px;
    border-radius: 5px;
  }
}

@media only screen and (min-width: 769px) {
  .myProjects_section__container__body {
    text-align: center;
  }
  .myProjects_section__container__body__card {
    width: 470px;
    position: relative;
    margin: 10px;
    margin-top: 25px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 5px;
  }
  .myProjects_section__container__body__card__img {
    width: 470px;
    height: 300px;
    border-radius: 5px;
  }
  .myProjects_section__container__body__card__tint {
    width: 100%;
    height: 300px;
    background-color: black;
    z-index: 2;
    position: absolute;
    top: 0;
    opacity: 50%;
  }
  .myProjects_section__container__body__card__splash {
    background-color: black;
    width: 100%;
    height: 70px;
    position: absolute;
    z-index: 2;
    top: 230px;
    opacity: 60%;
  }
  .myProjects_section__container__body__card__splash__title {
    position: absolute;
    z-index: 2;
    margin: 0;
    width: 100%;
    text-align: center;
    top: 10%;
    opacity: 100%;
    color: white;
  }
  .myProjects_section__container__body__card__splash__description {
    position: absolute;
    z-index: 2;
    margin: 0;
    width: 100%;
    text-align: center;
    bottom: 10%;
    color: white;
    left: 0;
  }
  .myProjects_section__container__body__card__details {
    width: 100%;
    height: 350px;
    background-color: white;
    z-index: 3;
    position: absolute;
    bottom: 0px;
    border-radius: 0 0 5px 5px;
  }
  .myProjects_section__container__body__card__details__content {
    color: black;
    text-align: left;
    margin: 5px;
  }
  .hidden {
    display: none;
  }
  .show {
    display: inline;
  }
  .collapse {
    height: 300px;
  }
  .expand {
    height: 650px;
  }
  .myProjects_section__container__body__card__details__content__para {
    text-align: justify;
    text-justify: inter-word;
    padding-bottom: 5px;
  }
  .myProjects_section__container__body__card__details__content__header {
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .myProjects_section__container__body__card__details__content__list {
    padding-bottom: 10px;
    list-style: inside;
  }
  .myProjects_section__container__body__card__splash__description p:hover {
    cursor: pointer;
  }
  .myProjects_section__container__body__card__details__content__topics {
    left: auto;
    right: auto;
    text-align: center;
    padding-top: 10px;
  }
  .myProjects_section__container__body__card__details__content__topics__skillimg {
    height: 50px;
    width: 50px;
    border-radius: 5px;
  }
}

.hiddendiv {
  display: none;
}

.myConnect__container__form__successfulNotification {
  width: 75%;
  background-color: #45a049;
  border-radius: 10px;
  text-align: center;
  margin: auto;
}

.myConnect__container__form__successfulNotification__content {
  text-align: center;
  margin: 15px;
  padding: 5px;
  color: white;
}

.myConnect__container__message-success {
  width: 75%;
  background-color: #45a049;
  border-radius: 10px;
  text-align: center;
  margin: auto;
}

.myConnect__container__message-success__content {
  text-align: center;
  margin: 15px;
  color: white;
}

.myConnect__container__message-error {
  width: 75%;
  background-color: #C2000B;
  border-radius: 10px;
  text-align: center;
  margin: auto;
}

.myConnect__container__message-error__content {
  text-align: center;
  margin: 15px;
  color: white;
}

.headOf_role_only {
  padding-top: 5px;
  padding-bottom: 5px;
}

.hero__title__berightback {
  color: white;
  text-shadow: 5px 5px 30px gray;
  font-weight: bold;
  font-size: large;
}
/*# sourceMappingURL=main.css.map */