.content {
  padding-top: 100px;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
}
@media (max-width: 600px) {
  .content {
    display: block;
  }
}
.content h1 {
  text-align: center;
  font-size: 50px;
}
@media (max-width: 600px) {
  .content .desktopHeading {
    display: none;
  }
}
.content .contentLeft {
  width: 40%;
  height: 100%;
  position: fixed;
}
@media (max-width: 600px) {
  .content .contentLeft {
    position: static;
    width: 100%;
  }
}
.content .contentLeft .imageWrapper {
  display: flex;
}
.content .contentLeft .imageWrapper .desktopImage {
  width: 80%;
  max-width: 300px;
  max-height: 300px;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .content .contentLeft .imageWrapper .desktopImage {
    display: none;
  }
}
.content .contentLeft .imageWrapper .mobileImage {
  display: none;
  width: 90%;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .content .contentLeft .imageWrapper .mobileImage {
    display: inline;
  }
}
.content .contentLeft .desktopHeading {
  font-size: 30px;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .content .contentLeft .desktopHeading {
    display: none;
  }
}
.content .contentLeft .desktopDesription {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: normal;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .content .contentLeft .desktopDesription {
    display: none;
  }
}
.content .contentLeft .mobileHeading {
  display: none;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .content .contentLeft .mobileHeading {
    display: block;
  }
}
.content .contentRight {
  width: 60%;
  margin-left: 40%;
}
@media (max-width: 600px) {
  .content .contentRight {
    width: 100%;
    margin-left: 0px;
    margin-top: 0px;
  }
}
.content .contentRight h3 {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  float: inherit;
  clear: both;
}

.cvLine {
  width: 5px;
  height: 30px;
  margin: 0 auto;
  z-index: -1;
  background-color: rgba(226, 224, 205, 0.8) !important;
}

.cvLineVertical {
  width: 50%;
  height: 5px;
  margin: 0 auto;
  z-index: -1;
  background-color: #e2e0cd;
  position: absolute;
  left: -15%;
  top: 50%;
}
@media (max-width: 600px) {
  .cvLineVertical {
    left: -14%;
  }
}

.cvTimeSpacer {
  height: 30px;
  width: 100%;
}

.greenLine2 {
  width: 5px;
  background-color: #81B29A;
  height: 30px;
  margin: 0 auto;
  z-index: -1;
}

.redLine2 {
  width: 5px;
  background-color: #E07A5F;
  height: 30px;
  margin: 0 auto;
  z-index: -1;
}

.cvBlockHeadingBlock {
  min-height: 35px;
  margin-bottom: 10px;
  border-radius: 15px 15px 0 0;
  padding-bottom: 5px;
  padding-top: 5px;
  padding-left: 5px;
}
.cvBlockHeadingBlock p {
  color: white;
  font-size: 17px;
  padding-top: 8px;
  margin-left: 10px;
  text-align: center;
}

@keyframes openMoreLarge {
  100% {
    margin-left: -45%;
    width: 900px;
    min-height: 300px;
  }
}
@keyframes closeMoreLarge {
  0% {
    margin-left: -45%;
    width: 900px;
    min-height: 300px;
  }
  100% {
    margin-left: 15%;
    width: 70%;
    min-height: none;
  }
}
@keyframes openMoreSmall {
  100% {
    padding-bottom: 200px;
  }
}
@keyframes closeMoreSmall {
  0% {
    padding-bottom: 200px;
  }
  100% {
    padding-bottom: 60px;
  }
}
.cvBlock {
  width: 70%;
  margin-left: 16%;
  min-height: 60px;
  padding-bottom: 10px;
  border-radius: 20px;
  background-color: white;
  transition: 300ms;
  position: relative;
  padding-bottom: 60px;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  animation-fill-mode: forwards;
  transition: box-shadow 600ms, opacity 300ms !important;
}
.cvBlock .cvBlockContentWrapper {
  display: flex;
}
.cvBlock .cvBlockContentWrapper .cvBlockContentWrapper_Left {
  width: 15%;
}
.cvBlock .cvBlockContentWrapper .cvBlockContentWrapper_Left img {
  width: 80%;
  margin-left: 20%;
}
.cvBlock .cvBlockContentWrapper .cvBlockContentWrapper_Right {
  width: 85%;
}
.cvBlock .cvBlockContent {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
.cvBlock .cvBlockContent.hidden {
  opacity: 0;
}
.cvBlock .cvBlockContent .dateString {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 5px;
  font-style: italic;
  padding-top: 0 !important;
  text-align: center;
}
.cvBlock .cvBlockContent p {
  margin-bottom: 20px;
}
.cvBlock p {
  margin-left: 10px;
  margin-right: 10px;
  padding: 5px;
  padding-bottom: 0;
}
.cvBlock.cvBlockOpen p {
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 10px;
}
.cvBlock.cvBlockOpen .cvBlockHeadingBlock p {
  padding-left: 5px;
  margin-top: 0px;
}
.cvBlock.cvBlockOpen .cvMoreButton p {
  margin-top: 0px;
}
.cvBlock.cvBlockOpen2 {
  z-index: 100;
}
.cvBlock .moreContent {
  visibility: hidden;
  transition: visibility 0s, opacity 0.5s linear;
  opacity: 0;
}
.cvBlock .moreContent.visible {
  visibility: visible;
  opacity: 1;
  transition: visibility 1s, opacity 0.5s linear;
}
.cvBlock .cvMoreButton {
  width: 130px;
  background-color: rgba(226, 224, 205, 0.4);
  height: 30px;
  border-radius: 100px;
  text-align: center;
  font-size: 15px;
  transition: 300ms;
  padding: 0;
  padding-top: 10px;
  margin-left: 0;
  position: absolute;
  right: 10px;
  bottom: 1px;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.cvBlock .cvMoreButton p {
  padding: 0;
}
.cvBlock .cvMoreButton:hover {
  color: white;
  cursor: pointer;
}
.cvBlock .buttonMoreContent {
  background-color: rgba(226, 224, 205, 0.4);
  position: relative;
  clear: both;
  display: block;
  float: none;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-bottom: 20px;
  transition: 300ms;
  cursor: pointer;
}
.cvBlock .buttonMoreContent:hover {
  color: white;
}

.cvRed .cvHeading {
  background-color: #B8285F;
}
.cvRed + .cvLine {
  background-color: #B8285F;
}
.cvRed .cvLineVertical {
  background-color: #B8285F;
}
.cvRed .cvMoreButton:hover {
  background-color: #B8285F;
}

.cvRedHeading {
  background-color: #E07A5F;
}

.cvGreen .cvHeading {
  background-color: #3E5C41;
}
.cvGreen + .cvLine {
  background-color: #3E5C41;
}
.cvGreen .cvLineVertical {
  background-color: #3E5C41;
}
.cvGreen .cvMoreButton:hover {
  background-color: #3E5C41;
}
.cvGreen .buttonMoreContent:hover {
  background-color: #3E5C41;
}

.cvGreenHeading {
  background-color: #81B29A;
}

.cvBlue .cvHeading {
  background-color: #3D405B;
}
.cvBlue + .cvLine {
  background-color: #3D405B;
}
.cvBlue .cvLineVertical {
  background-color: #3D405B;
}
.cvBlue .cvMoreButton:hover {
  background-color: #3D405B;
}

.cvDescrip {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 5px;
  margin-bottom: 0 !important;
  font-style: italic;
  padding-top: 0 !important;
}

.cvTime {
  margin-bottom: 0 !important;
}

.cvContentHeading {
  font-size: 17px;
  margin-bottom: 0 !important;
  text-decoration: underline;
}

.cvContentSpacer {
  height: 30px;
}

.scrollFade {
  opacity: 0;
  transition: 100ms;
  transition: box-shadow 100ms, opacity 300ms !important;
}

.languageCard {
  border: 3px solid #3D405B;
  height: 120px;
  width: calc(50% - 10px);
  border-radius: 20px;
  margin-bottom: 10px;
  background-color: #3D405B;
  text-align: center;
  color: white;
  padding-top: 25px;
  font-size: 20px;
}
@media (max-width: 600px) {
  .languageCard {
    width: calc(50% - 10px);
  }
}
.languageCard .languageCardImage {
  width: 30%;
  margin-top: -20px;
}

#languageCardsDiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  margin-bottom: 35px;
  width: 70%;
  margin-left: 15%;
}

.languageDescrip {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
}

.languageCardHeading {
  min-height: 26px;
  max-height: 40px;
  width: 100%;
  background-color: #3D405B;
  border-radius: 15px 15px 0 0;
  text-align: center;
  color: white;
  padding-top: 4px;
}

#spacer {
  height: 150px;
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .cvBlock {
    width: 90%;
    margin-left: 5%;
  }

  .sortedByTime .cvBlock {
    width: 80%;
  }

  #languageCardsDiv {
    width: 90%;
    margin-left: 5%;
  }
}
.cvSwitch {
  display: flex;
  width: 70%;
  background-color: rgba(226, 224, 205, 0.4);
  text-align: center;
  margin-left: 15%;
  border-radius: 20px;
  position: relative;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .cvSwitch {
    width: 90%;
    margin-left: 5%;
  }
}
.cvSwitch .switchItem {
  padding: 10px;
  width: calc(50% - 10px);
  z-index: 2;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cvSwitch .switchItem {
    padding: 10px;
    width: calc(50% - 10px);
  }
}
.cvSwitch .switchMover {
  width: 50%;
  position: absolute;
  left: 0;
  height: 100%;
  border-radius: 20px;
  z-index: 0;
  background-color: #3D405B;
  transition: 300ms;
}
.cvSwitch.switchLeft .switchItemLeft {
  color: white;
}
.cvSwitch.switchRight .switchItemRight {
  color: white;
}
.cvSwitch.switchRight .switchMover {
  left: 50%;
}

.cvSortedByCategory {
  display: none;
}

.sortedByTime {
  display: none;
  margin-top: 75px;
}
.sortedByTime .blockYear {
  display: flex;
  position: relative;
}
@media (max-width: 600px) {
  .sortedByTime .blockYear {
    margin-top: 18px;
  }
}
.sortedByTime .blockYear .yearPart {
  width: 10%;
  text-align: right;
  font-size: 30px;
  position: relative;
}
.sortedByTime .blockYear .yearPart.border {
  border-right: 3px solid #e2e0cd;
}
.sortedByTime .blockYear .yearPart p {
  padding: 5px;
  border: 3px solid #e2e0cd;
  border-radius: 20px;
  margin-right: -45px;
  background-color: white;
  width: 115px;
  position: absolute;
  right: -85px;
  text-align: center;
  top: -31px;
}
.sortedByTime .blockYear .cvPart {
  width: 90%;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  .sortedByTime .blockYear .cvPart {
    padding-top: 40px;
  }
}
.sortedByTime .blockYear .cvPart .cvBlock {
  position: relative;
  margin-bottom: 20px;
  margin-left: 10%;
}
@media (max-width: 600px) {
  .sortedByTime .blockYear .cvPart .cvBlock {
    margin-left: 11%;
  }
}
.sortedByTime .blockYear .cvPart .cvBlock .cvTimeLine {
  position: absolute;
  height: 300px;
  width: 7px;
  top: 50%;
  left: -30%;
}
.sortedByTime .blockYear .cvPart .cvBlock .cvTimeLine.Blue {
  background-color: #3D405B;
}
.sortedByTime .blockYear .cvPart .cvBlock .cvTimeLine.Green {
  background-color: #3E5C41;
}
.sortedByTime .blockYear .cvPart .cvBlock .cvTimeLine.Red {
  background-color: #B8285F;
}

.visible {
  display: block;
}

.blackBackground {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  z-index: 99;
  top: -100%;
  transition: opacity 600ms;
  -webkit-transition: opacity 600ms ease-in-out;
  opacity: 0;
}
.blackBackground.visible {
  top: 0;
  opacity: 1;
}

/*# sourceMappingURL=cv-style.css.map */
