/** Widths and Height **/
/** Typhography **/
:root {
  --app-grid-gutter-width: $grid-gutter-width;
}

* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

html, body {
  overflow: auto;
}

/** Bootstrap color convention ( naming ) ***/
/** Start of Start of Grid.scss **/
.row {
  --grid-gutter-x: 1.5rem;
  --grid-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  /** For Flex Item ( columns ) Gutters **/
  margin-top: calc(-0.5 * var(--grid-gutter-y));
  margin-bottom: calc(-0.5 * var(--grid-gutter-y));
  margin-left: calc(-0.5 * var(--grid-gutter-x));
  margin-right: calc(-0.5 * var(--grid-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--grid-gutter-x) * 0.25);
  padding-left: calc(var(--grid-gutter-x) * 0.25);
  margin-top: calc(0.5 * var(--grid-gutter-y));
  margin-bottom: calc(0.5 * var(--grid-gutter-y));
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}

.col-1 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 8.3333333333%;
}

.col-2 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 16.6666666667%;
}

.col-3 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 25%;
}

.col-4 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 33.3333333333%;
}

.col-5 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 41.6666666667%;
}

.col-6 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 50%;
}

.col-7 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 58.3333333333%;
}

.col-8 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 66.6666666667%;
}

.col-9 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 75%;
}

.col-10 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 83.3333333333%;
}

.col-11 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 91.6666666667%;
}

.col-12 {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 100%;
}

@media (min-width: 0) {
  .col-xs-auto {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  .col-xs-1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 8.3333333333%;
  }
  .col-xs-2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 16.6666666667%;
  }
  .col-xs-3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 25%;
  }
  .col-xs-4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 33.3333333333%;
  }
  .col-xs-5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 41.6666666667%;
  }
  .col-xs-6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 50%;
  }
  .col-xs-7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 58.3333333333%;
  }
  .col-xs-8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 66.6666666667%;
  }
  .col-xs-9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 75%;
  }
  .col-xs-10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 83.3333333333%;
  }
  .col-xs-11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 91.6666666667%;
  }
  .col-xs-12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 100%;
  }
}
@media (min-width: 576px) {
  .col-sm-auto {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  .col-sm-1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 25%;
  }
  .col-sm-4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 50%;
  }
  .col-sm-7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 75%;
  }
  .col-sm-10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  .col-md-1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 25%;
  }
  .col-md-4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 50%;
  }
  .col-md-7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 75%;
  }
  .col-md-10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  .col-lg-1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 25%;
  }
  .col-lg-4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 50%;
  }
  .col-lg-7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 75%;
  }
  .col-lg-10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  .col-xl-1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 25%;
  }
  .col-xl-4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 50%;
  }
  .col-xl-7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 75%;
  }
  .col-xl-10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl-auto {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
  }
  .col-xxl-1 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 100%;
  }
}
/** End of Grid.scss **/
/** Start of Layout **/
.content-wrapper {
  min-height: calc(100vh - 4.75rem - 4rem);
}

.container {
  width: 100%;
  padding-left: 7.5px;
  padding-right: 7.5px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 720px) {
  .container {
    width: 80%;
  }
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

@media (min-width: 720px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
/** End of Layout **/
/** Navbar / Topbar **/
.nav {
  display: flex;
  flex-wrap: wrap;
  background-color: #212529;
  width: 100%;
}

.nav .nav__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-basis: 100%;
  height: 4.75rem;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 720px) {
  .nav .nav__container {
    justify-content: space-between;
  }
}

.nav .brand {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
}
@media screen and (max-width: 720px) {
  .nav .brand {
    order: 2;
  }
}

.nav .brand__image {
  padding: 0.125rem;
  margin-right: 5px;
  border-radius: 50%;
  width: 50px;
}

.nav .brand__name {
  font-weight: 700;
  font-size: 2rem;
}

.nav .nav-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 2px;
  margin-left: 2rem;
  order: 2;
}
@media screen and (max-width: 720px) {
  .nav .nav-links {
    order: 1;
    margin-left: 0px;
  }
}

.nav .nav-links__item {
  border-radius: 0.5rem;
  transition: 0.2s ease all;
  padding: 1rem 1rem;
}

.nav .nav-links__item:hover {
  background-color: #fff;
  color: #212529;
}
.nav .nav-links__item:hover a {
  color: #212529;
}

.nav .nav-links__item a {
  text-decoration: none;
  color: #fff;
}

.nav .nav-links-dropdown {
  width: 100%;
  max-height: 0px;
  overflow: hidden;
  transition: 0.5s ease all;
}
.nav .nav-links-dropdown .nav-links {
  flex-direction: column;
  margin-left: 0px;
}
.nav .nav-links-dropdown .nav-links .nav-links__item {
  margin-bottom: 0.5rem;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
@media (min-width: 720px) {
  .nav .nav-links-dropdown {
    max-height: 0px !important;
  }
}

.nav .nav-links-dropdown.expand {
  display: block;
  max-height: 500px;
}

.nav .nav-links-dropdown.collapse {
  display: none;
}

.nav .control-buttons {
  display: flex;
  margin-left: auto;
  list-style: none;
  order: 3;
}
@media screen and (max-width: 720px) {
  .nav .control-buttons {
    margin: initial;
  }
}

.nav .control-buttons__item button,
.nav .control-buttons__item a {
  --button-padding-y: 0.375rem;
  --button-padding-x: 0.75rem;
  transition: 0.2s ease all;
  color: #fff;
  padding: var(--button-padding-x) var(--button-padding-x);
  background: transparent;
  border: none;
  border-radius: 50%;
  margin: 0.25rem 0.125rem;
}

.nav .control-buttons__item a {
  text-decoration: none;
}

.nav .control-buttons__item button:hover,
.nav .control-buttons__item a:hover {
  cursor: pointer;
  color: #212529;
  background-color: #fff;
}

/** Start of Footer **/
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  background-color: #e9ecef;
}

.footer .copyright {
  font-family: sans-serif;
  color: #212529;
  font-size: 0.825rem;
}

/** End of Footer **/
.breadcrumb {
  list-style: none;
  display: flex;
}

.breadcrumb .breadcrumb-item:not(.active)::after {
  content: "/";
}

/** Components **/
/** Header 01 **/
.header-01 .header-01__container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.header-01 > .header-01__wrapper {
  color: #fff;
  position: relative;
  min-height: calc(100vh - 4.75rem);
  width: 100%;
  display: flex;
  align-items: center;
}
.header-01 > .header-01__wrapper::before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  background-image: url("../img/aydzz-hero.png");
  background-size: cover;
  background-position: 50% 25%;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
}
.header-01 > .header-01__wrapper::after {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.3;
  box-shadow: inset 0 0 120px #000, inset 0 0 80px #000, inset 0 0 40px #000;
}
.header-01 .header-01__content-container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.header-01 .header-01__divider-short {
  margin: auto;
  background-color: white;
  height: 2px;
  width: 60px;
  margin-bottom: 60px;
  margin-top: 20px;
}
.header-01 .header-01__cta-button {
  padding: 0.75rem 3rem;
  background-color: transparent;
  color: #fff;
  border-radius: 5px;
  border: 3px solid #fff;
  font-weight: 300;
  transition: background-color 0.1s ease-in, color 0.1s ease-in;
  text-decoration: none;
}
.header-01 .header-01__cta-button:hover {
  cursor: pointer;
  background-color: #fff;
  color: #000;
  border-color: #f8f9fa;
}

/** Card 01: Card with Title and Text content and Image overlay **/
.card-01__wrapper {
  border-radius: 1rem;
  z-index: 10;
}
.card-01__container {
  cursor: pointer;
  background-color: #495057;
  margin-bottom: 1rem;
  position: relative;
  padding: 5rem 2rem;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  flex-direction: column;
}
.card-01__container:hover .card-01__image-overlay {
  opacity: 1;
}
.card-01__container:hover img {
  opacity: 1;
}
.card-01__container:hover h6, .card-01__container:hover p {
  color: white;
}
.card-01__image-overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  transition: opacity 0.1s ease-in;
  z-index: 5;
}
.card-01__image {
  position: absolute;
  top: 0;
  opacity: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.1s ease-in;
}
.card-01__header-container {
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
}
.card-01__header-container > h6 {
  color: #f8f9fa;
  font-size: 1.5rem;
}
.card-01__desc-container {
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
}
.card-01__desc-container > p {
  color: #ced4da;
  font-size: 1rem;
}

/** Card 02: Numbered Card with Title and Text content **/
.card-02__wrapper {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  padding: 3rem 1rem;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.06);
  margin-bottom: 1rem;
}
@media (max-width: 1200px) {
  .card-02__wrapper {
    display: block;
    text-align: center;
  }
}
.card-02__number-container {
  padding: 0 1rem;
  flex-grow: 0;
  flex-shrink: 0;
}
.card-02__number {
  font-weight: 800;
  font-size: 3rem;
  color: #00a6fb;
  padding: 0px 0px;
  line-height: 0.9;
}
.card-02__header {
  font-weight: 700;
}

/** Card 03: Card with Title and Text content and Image overlay **/
.card-03__container {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 250px;
  width: 100%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.06);
  background-color: #fff;
}
.card-03__container h3 {
  color: #00a6fb;
}
.card-03__container h3, .card-03__container p {
  transition: color 0.2s ease-in-out;
  position: relative;
  z-index: 10;
}
.card-03__container:hover .card-03__image-overlay, .card-03__container:hover .card-03__color-overlay {
  opacity: 1;
}
.card-03__container:hover h3, .card-03__container:hover p {
  color: #fff;
}
.card-03__color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.card-03__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-image: url("'../img/aydzz-hero.png'");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.card-03__content {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 2rem;
  text-align: center;
}

.input-group {
  margin-bottom: 0.75rem;
}

input.form-control,
textarea.form-control {
  border-radius: 0.25rem;
  line-height: 2rem;
  height: 3rem;
  font-size: 1rem;
  background-color: #ced4da;
  color: #6c757d;
  padding: 0.25rem 0.325rem;
  border: 1px solid #adb5bd;
}
input.form-control:focus-visible,
textarea.form-control:focus-visible {
  outline: none;
}
textarea.form-control {
  padding: 0.25rem 0.325rem;
  font-size: 1rem;
  height: 225px;
  resize: none;
}

/** Mixins **/
.about-me {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  margin: 2.5rem 0rem 2.5rem 0rem;
}

.about-me__left {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-me__left__photo-container__photo {
  width: 100%;
  max-width: 600px;
  border-radius: 1rem;
}

.about-me__right {
  flex-basis: 50%;
  padding: 2.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-me__right h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 100;
}
.about-me__right p {
  color: #adb5bd;
}

.my-collection {
  display: block;
  margin-bottom: 2.5rem;
}
.my-collection__header-container {
  color: #fff;
  text-align: center;
}
.my-collection__header-container h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 100;
}
.contact-me {
  margin-bottom: 5rem;
}
.contact-me__header-container {
  text-align: center;
  color: #fff;
}
.contact-me__header-container h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 100;
}
.contact-me__container {
  margin: auto;
  width: 75%;
}
.contact-me__container__send-message h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 100;
}
.contact-me__container__contact-details {
  padding-left: 3rem;
}
.contact-me__container__contact-details h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 100;
}
.contact-me__container__contact-details__info-container .contact-info-list {
  list-style: none;
}
.contact-me__container__contact-details__info-container .contact-info-list .contact__info-list__item {
  margin-bottom: 1rem;
}
.contact-me__container__contact-details__info-container .contact-info-list .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #0073af;
}
.contact-me__container__contact-details__info-container .contact-info-list .value {
  color: #adb5bd;
}
.contact-me .send-container {
  display: block;
}
.contact-me button {
  border-radius: 0.25rem;
  transition: 0.2s ease-in-out all;
  cursor: pointer;
  border: none;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  background-color: #0073af;
  color: #f8f9fa;
}
.contact-me button:hover {
  background-color: #00527c;
}

/*** Mobile Behavior **/
@media (max-width: 720px) {
  /** .about-me **/
  .about-me {
    flex-direction: column;
  }
  .about-me__left {
    flex-basis: revert;
    flex-grow: 1;
  }
  .about-me__left__photo-container__photo {
    max-width: 100%;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .about-me__right {
    flex-basis: revert;
    flex-grow: 1;
    padding-left: 5rem;
    padding-right: 5rem;
  }
  /** .contact-me **/
  .contact-me__container {
    width: 100% !important;
  }
  .contact-me__container__contact-details,
  .contact-me__container__send-message {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .send-container {
    text-align: right;
  }
}
.sample {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #495057;
  border-radius: 3px;
}
.sample__image-container {
  background-color: #6c757d;
  box-sizing: border-box;
  padding: 1rem;
  overflow: hidden;
  height: calc(250px + 2rem);
}
.sample__image-container img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 250px;
  max-width: 100%;
  object-fit: cover;
}
.sample__details {
  min-height: 200px;
  max-height: 200px;
  overflow: hidden;
  padding: 1rem 1rem 1.5rem 1rem;
}
.sample__details__title {
  color: #fff;
}
.sample__details__category {
  color: #0073af;
}
.sample__details__description {
  margin-top: 0.5rem;
  color: #ced4da;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
}

.sample:hover {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  outline: 2px solid #fff;
}

/** Collection Filter **/
.collection-filter-container {
  display: block;
  margin: auto;
  text-align: center;
}

.collection-filter {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collection-filter__item {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  color: #0073af;
}

.collection-filter__item a {
  color: #0073af;
  text-decoration: none;
}

.collection-filter__item.active a {
  color: #00a6fb;
}

/** BEM Format src=https://getbem.com/naming/**/
* {
  box-sizing: border-box;
}

body {
  background-color: #343a40;
}

/** Content Header **/
.content-header {
  display: flex;
  justify-content: space-between;
}

.content-header h1 {
  font-size: 1.8rem;
  margin: 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 500;
}

/*# sourceMappingURL=application.css.map */
