@charset "UTF-8";
/* THEME MODES STYLES */
.dark-mode {
  background-color: #212A31;
  color: #fff;
}

.light-mode {
  background-color: #fff;
  color: #212A31;
}

/*
CSS Sıfırlama Başlangıcı
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #748D92;
  box-sizing: border-box;
}

ul {
  font-size: 2rem;
}

/* Utilities */
/* padding definitions */
/* ------------------- */
.p-0 {
  padding: 0;
}

.p-1 {
  padding: 2rem;
}

.p-2 {
  padding: 5rem;
}

.p-3 {
  padding: 10rem;
}

/* top paddings */
.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 2rem;
}

.pt-2 {
  padding-top: 5rem;
}

.pt-3 {
  padding-top: 10rem;
}

/* bottom paddings */
.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 2rem;
}

.pb-2 {
  padding-bottom: 5rem;
}

.pb-3 {
  padding-bottom: 10rem;
}

/* left paddings */
.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 2rem;
}

.pl-2 {
  padding-left: 5rem;
}

.pl-3 {
  padding-left: 10rem;
}

/* right paddings */
.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 2rem;
}

.pr-2 {
  padding-right: 5rem;
}

.pr-3 {
  padding-right: 10rem;
}

/* left-right paddings */
.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.px-1 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-2 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.px-3 {
  padding-left: 10rem;
  padding-right: 10rem;
}

/* top-bottom paddings */
.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-3 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

/* margin definitions */
/* ------------------ */
/* no margin */
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 2rem;
}

.m-2 {
  margin: 5rem;
}

.m-3 {
  margin: 10rem;
}

/* top margins */
.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 2rem;
}

.mt-2 {
  margin-top: 5rem;
}

.mt-3 {
  margin-top: 10rem;
}

/* bottom margins */
.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 2rem;
}

.mb-2 {
  margin-bottom: 5rem;
}

.mb-3 {
  margin-bottom: 10rem;
}

/* left margins */
.ml-0 {
  margin-left: 0;
}

.ml-1 {
  margin-left: 2rem;
}

.ml-2 {
  margin-left: 5rem;
}

.ml-3 {
  margin-left: 10rem;
}

/* right margins */
.mr-0 {
  margin-right: 0;
}

.mr-1 {
  margin-right: 2rem;
}

.mr-2 {
  margin-right: 5rem;
}

.mr-3 {
  margin-right: 10rem;
}

/* left-right margins */
.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mx-1 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mx-2 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.mx-3 {
  margin-left: 10rem;
  margin-right: 10rem;
}

/* top-bottom margins */
.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-2 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.my-3 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

/* Height and Width Classes */
/* ------------------------ */
.halfHeight {
  height: 50vh;
}

.fullHeight {
  height: 100vh;
}

/* Background Colors */
/* ----------------- */
.bg-primary {
  background-color: #2E3944;
}

.bg-primary-dark {
  background-color: #212A31;
}

.bg-primary-light {
  background-color: #124E66;
}

.bg-secondary {
  background-color: #748D92;
}

.bg-tertiary {
  background-color: #D3D9D4;
}

.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

.bg-success {
  background-color: #28a745;
}

.bg-info {
  background-color: #17a2b8;
}

.bg-warning {
  background-color: #ffc107;
}

.bg-danger {
  background-color: #dc3545;
}

/* Scroll */
/* ------ */
.scroll-v {
  overflow-y: scroll;
}

.scroll-h {
  overflow-x: scroll;
}

.scroll {
  overflow: visible;
}

/* FLEX SETTINGS */
.flex-center {
  justify-content: center;
  align-items: center;
}

/* ***************** **
** TYPEGRAPHY STYLES **
** ***************** */
.heading--elegant {
  display: grid;
  grid-template-columns: minmax(5rem, 1fr) auto minmax(5rem, 1fr);
  align-items: baseline;
  text-align: center;
  gap: 4rem;
  font-size: 2rem;
  font-weight: 400;
  color: #748D92;
  margin-bottom: 2.5rem;
}
.heading--elegant::before, .heading--elegant::after {
  content: "";
  border-top: 0.6rem double;
}

p.normal {
  display: block;
  margin-bottom: 5rem;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 300;
  text-align: justify;
}

h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
}

address {
  font-size: 2rem;
  line-height: 3rem;
}
@media only screen and (max-width: 56.25em) {
  address {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  address {
    font-size: 1.6rem;
  }
}

/* BUTTON DEFINITIONS */
.btn {
  padding: 2rem;
  color: whitesmoke;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.9s ease-in;
  border: 0.1rem solid darkslategray;
  box-sizing: border-box;
}
@media only screen and (max-width: 37.5em) {
  .btn {
    margin: 2rem auto;
    width: 100%;
  }
}
.btn::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn:hover .btn::after {
  color: black;
  border: 0.1rem solid black;
}
.btn__get-in-touch {
  padding: 2rem;
  background-color: #dc3545;
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .btn__get-in-touch {
    width: 80%;
  }
}
.btn__get-in-touch a {
  text-decoration: none;
  color: #ababab;
}
.btn__get-in-touch a:hover {
  color: #fff;
}
.btn__more {
  position: relative;
  background-color: rgba(33, 42, 49, 0.9);
  transition: all 0.2s ease-out;
  overflow: hidden;
}
.btn__more::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  color: white;
  line-height: 5rem;
  background-color: rgba(96, 96, 96, 0.4) !important;
  transition: all 0.4s ease-in;
}
.btn__more:hover {
  background: linear-gradient(#124E66 0%, #2E3944 25%, #212A31 50%, #2E3944 75%, #124E66 100%);
}
.btn__more:hover::after, .btn__more:focus {
  left: 100%;
}
.btn:hover {
  color: white;
  background-color: rgba(40, 167, 69, 0.4);
  border: 0.1rem solid black;
  cursor: pointer;
}

.go-to-top {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  line-height: 5rem;
  border-radius: 50%;
  color: #2E3944;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  transition: all 0.2s;
  visibility: hidden;
  z-index: 3;
  animation: flashButton 1s ease-in-out infinite;
}
.go-to-top:hover {
  cursor: pointer;
  color: #2E3944;
  background-color: #748D92;
  animation: none;
}

.btn-view {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem;
  text-align: center;
  font-size: 1.8rem;
  color: #2E3944;
  transition: all 0.5s;
}
.btn-view:before {
  content: "View Project";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 4rem;
  background-color: #dc3545;
  color: #fff;
  transition: all 0.5s;
  font-weight: bold;
  cursor: pointer;
  opacity: 0.9;
}
.btn-view:hover {
  opacity: 1;
}
.btn-view:hover:before {
  background-color: #28a745;
  width: 100%;
  height: 100%;
}

/* E-CATALOG BUTTONS */
.ecatalog {
  position: fixed;
  display: flex;
  top: 8rem;
  width: 15rem;
  background-color: orangered;
  color: white;
  transition: all 0.5s ease-in;
  text-wrap: nowrap;
  z-index: 3;
  cursor: pointer;
}
.ecatalog--left {
  left: -12rem;
  flex-direction: row-reverse;
  writing-mode: vertical-lr;
}
.ecatalog--left:hover {
  left: 0;
}
.ecatalog--right {
  right: -12rem;
  writing-mode: vertical-rl;
}
.ecatalog--right:hover {
  right: 0;
}
.ecatalog--top {
  top: -17.5rem;
  width: 12rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column-reverse;
  align-items: center;
  writing-mode: horizontal-tb;
}
.ecatalog--top:hover {
  top: 0;
}
.ecatalog__text {
  width: 3rem;
  right: 0;
  text-transform: capitalize;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.ecatalog__text:hover {
  color: #808080;
}
.ecatalog img {
  float: left;
  width: 12rem;
  left: 0;
}

/* GALLERY */
.gallery {
  width: 100%;
  height: auto;
  box-sizing: inherit;
}
.gallery__items {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  padding-left: 5rem;
  width: 100%;
  padding: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .gallery__items {
    flex-direction: row;
    padding: 2rem 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .gallery__items {
    flex-direction: column;
    padding: 0 2rem;
  }
}
.gallery__item {
  width: 30rem;
  height: 30rem;
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .gallery__item {
    width: 45%;
  }
}
@media only screen and (max-width: 37.5em) {
  .gallery__item {
    width: 100%;
  }
}
.gallery__item__img {
  height: 22rem;
  transition: all 0.5s;
  overflow: hidden;
  border: 2px solid #ababab;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .gallery__item__img {
    height: 80%;
  }
}
.gallery__item__img img {
  width: 100%;
}
.gallery__item__caption {
  text-wrap: nowrap;
  text-align: center;
  font-family: Abel, sans-serif;
  font-size: 1.2rem;
  height: 4rem;
  padding: 1rem 0;
  overflow: hidden;
}
.gallery__item__detail {
  text-align: center;
  font-size: 1.2rem;
  color: #748D92;
}
.gallery__item:hover .gallery__item__img {
  height: 17rem;
  filter: brightness(40%);
  cursor: pointer;
}

/* IMAGE BUTTON */
.imagebutton {
  position: relative;
  float: left;
  width: 32rem;
  height: 20rem;
  margin: 4rem;
  background-color: #748D92;
}
@media only screen and (max-width: 37.5em) {
  .imagebutton {
    width: 80%;
  }
}
.imagebutton__button {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  overflow: none;
}
.imagebutton__button__title {
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0.5rem;
}
.imagebutton__button__img {
  width: 100%;
  height: 100%;
  border: 1px solid #2E3944;
}
.imagebutton__button__img::before {
  content: "No Image!";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 42, 49, 0.75);
  line-height: 24rem;
  font-size: 2.4rem;
  color: gray;
  transition: all 1s;
}
.imagebutton__button__img:hover .imagebutton__button__img::before {
  background-color: rgba(33, 42, 49, 0.5);
}
.imagebutton:hover {
  background-color: #2E3944;
  color: #fff;
  opacity: 0.9;
}

/* TAB MENU   
----------------------------------------------------------*/
.topmenu {
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60rem;
  height: 5rem;
  font-size: 1.6rem;
  box-sizing: border-box;
  z-index: 4;
}
@media only screen and (max-width: 56.25em) {
  .topmenu {
    width: 100%;
    top: 2rem;
  }
}
.topmenu__checkbox {
  display: none;
}
.topmenu__button {
  display: none;
  position: fixed;
  top: 0;
  right: 4rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.2s;
}
@media only screen and (max-width: 56.25em) {
  .topmenu__button {
    display: block;
  }
}
@media only screen and (max-width: 37.5em) {
  .topmenu__button {
    display: block;
  }
}
.topmenu__button:hover {
  color: #212A31;
}
.topmenu__checkbox:checked ~ .topmenu__checkbox {
  margin-right: 2rem;
}
.topmenu__checkbox:checked ~ .topmenu__menuBar {
  display: block;
  margin-top: 1.7rem;
  width: 100%;
}
.topmenu__icon {
  position: absolute;
  top: 1.8rem;
  left: 0.5rem;
}
.topmenu__icon, .topmenu__icon::before, .topmenu__icon::after {
  display: inline-block;
  width: 3rem;
  height: 2px;
  background-color: #404040;
  transition: all 0.2s;
}
.topmenu__icon::before, .topmenu__icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.topmenu__icon::before {
  top: -0.8rem;
}
.topmenu__icon::after {
  top: 0.8rem;
}
.topmenu__button:hover .topmenu__icon::before {
  top: -1rem;
}
.topmenu__button:hover .topmenu__icon::after {
  top: 1rem;
}
.topmenu__checkbox:checked + .topmenu__button .topmenu__icon {
  background-color: transparent;
}
.topmenu__checkbox:checked + .topmenu__button .topmenu__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.topmenu__checkbox:checked + .topmenu__button .topmenu__icon::after {
  top: 0;
  transform: rotate(-135deg);
}
.topmenu__menuBar {
  display: relative;
  width: 100%;
  height: 4rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 56.25em) {
  .topmenu__menuBar {
    display: none;
    position: fixed;
    top: 4.5rem;
    left: 0;
    margin: 0;
    padding: 4rem;
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(#748D92, #2E3944);
    font-size: 1.6rem;
    text-align: center;
    z-index: 4;
  }
}
@media only screen and (max-width: 37.5em) {
  .topmenu__menuBar {
    width: 100%;
  }
}
.topmenu__menu {
  position: absolute;
  top: 1.75rem;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 56.25em) {
  .topmenu__menu {
    position: fixed;
    margin-top: 10rem;
  }
}
.topmenu__menu__group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  list-style: none;
  width: 100%;
  z-index: 3;
}
@media only screen and (max-width: 56.25em) {
  .topmenu__menu__group {
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }
}
.topmenu__menu__item {
  position: relative;
  display: block;
  padding: 0.6rem auto;
  font-size: 1.6rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 56.25em) {
  .topmenu__menu__item {
    width: 100%;
    text-transform: uppercase;
    color: #202020;
    font-weight: bold;
    border-bottom: 1px solid #ababab;
    text-align: left;
    padding: 0 2rem;
    margin: 2rem 0;
  }
}
.topmenu__menu__item a:link,
.topmenu__menu__item a:visited {
  color: #212A31;
  display: block;
  line-height: 1.5em;
  font-weight: 400;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  white-space: nowrap;
}
.topmenu__menu__item a:hover,
.topmenu__menu__item a:focus {
  background-color: #212A31;
  color: #fff;
  text-decoration: none;
}
.topmenu__menu__item a:active {
  background-color: #2E3944;
  color: #fff;
  text-decoration: none;
}
.topmenu__menu__item:active {
  border: 1px solid #2E3944;
}
.topmenu__menu__item__sub-group {
  position: absolute;
  top: 3.5rem;
  left: 0;
  display: none;
  width: max-content;
  padding: 2rem;
  padding-top: 0;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  background-color: #212A31;
  border-radius: 0 0.5rem 0.5rem 0.5rem;
  z-index: 4;
}
@media only screen and (max-width: 56.25em) {
  .topmenu__menu__item__sub-group {
    width: calc(100% - 4rem);
    margin-left: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .topmenu__menu__item__sub-group {
    width: calc(100% - 10rem);
    margin-left: 5rem;
  }
}
.topmenu__menu__item__sub-group__item {
  border-bottom: #fff;
  text-transform: initial;
  font-weight: 300;
  border-bottom: thin solid #606060;
  z-index: 4;
}
.topmenu__menu__item__sub-group__item a:link,
.topmenu__menu__item__sub-group__item a:visited {
  color: #D3D9D4;
}
.topmenu__menu__item__sub-group__item a:hover,
.topmenu__menu__item__sub-group__item a:focus {
  color: #fff;
}
.topmenu__menu__item__sub-group__item:hover > .topmenu__menu__item__sub-group__item__sub-group {
  display: block;
  border-radius: none;
}
.topmenu__menu__item__sub-group__item:last-child {
  border-bottom: none;
}
.topmenu__menu__item:hover > .topmenu__menu__item__sub-group {
  display: block;
  border: 1px solid #eeeeee;
}

/* MIDDLE MENU 
----------------------------------------------------------*/
.middlemenu {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  border-top: 1px solid #ababab;
  border-bottom: 1px solid #ababab;
  box-sizing: border-box;
}
@media only screen and (max-width: 37.5em) {
  .middlemenu {
    height: auto;
  }
}
.middlemenu__items {
  position: relative;
  margin: 0.5rem auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2.5rem;
  align-items: center;
}
.middlemenu__items--item {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 200;
  font-style: normal;
  text-transform: uppercase;
  text-wrap: nowrap;
  color: #748D92;
}
@media only screen and (max-width: 37.5em) {
  .middlemenu__items--item {
    font-size: 1.4rem;
    line-height: 3rem;
  }
}
.middlemenu__items--item:hover, .middlemenu__items--item:focus {
  color: #212A31;
}

/*  IMAGE COMPONENTS DETAILS */
.noimage {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  cursor: pointer;
  overflow: hidden;
}
.noimage::before {
  content: "No Image!";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 42, 49, 0.75);
  line-height: 24rem;
  font-size: 2.4rem;
  color: gray;
  transition: all 1s;
}
.noimage:hover::before {
  background-color: rgba(33, 42, 49, 0.85);
  line-height: 18rem;
  color: white;
}
.noimage:hover .noimage--text {
  font-weight: 300;
  letter-spacing: 5px;
  text-align: center;
}
.noimage img {
  width: 100%;
}
.noimage--text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
}

/* SLIDES STYLING */
.slide {
  width: 100%;
  height: 36rem;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 19px 38px, rgba(0, 0, 0, 0.5) 0px 15px 12px;
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .slide {
    width: 100vw;
  }
}
.slide__items {
  position: absolute;
  box-sizing: border-box;
}
.slide__item {
  float: left;
  width: 48rem;
  height: 36rem;
  box-sizing: border-box;
}
.slide__item img {
  width: 100%;
  height: 100%;
  border: 2px solid silver;
}
.slide__item:hover {
  cursor: pointer;
  filter: brightness(40%);
}
.slide__button {
  position: absolute;
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 2.8rem;
  font-size: 3em;
  font-weight: 400;
  z-index: 4;
}
.slide__button--prev, .slide__button--next {
  background-color: #000;
  color: #ababab;
  padding: 2rem;
  border-radius: 50%;
  font-weight: 700;
}
.slide__button--prev:hover, .slide__button--next:hover {
  color: #fff;
  cursor: pointer;
}
.slide__button--prev {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.slide__button--next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.slide__dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4.7rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 4;
}
.slide__dots--dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  font-size: 1em;
  background-color: #748D92;
  margin: 0.5rem;
}
.slide__dots--dot:hover {
  background-color: #2E3944;
}

.dot-active {
  background-color: #2E3944;
}

.slidingtext {
  position: relative;
  display: inline-flex;
  width: 100%;
  margin: 2rem 0;
  box-sizing: border-box;
}
@media only screen and (max-width: 37.5em) {
  .slidingtext {
    display: inline-block;
  }
}
.slidingtext__caption {
  font-size: 4rem;
  color: #748D92;
  text-align: left;
  padding-right: 2rem;
  border-right: 2px solid #fff;
}
@media only screen and (max-width: 37.5em) {
  .slidingtext__caption {
    width: 100%;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}
.slidingtext__caption span {
  transition: all 10s ease-in;
}
.slidingtext__text {
  height: 7rem;
  font-size: 3rem;
  line-height: 6rem;
  padding-left: 2rem;
  color: #fff;
  text-align: left;
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .slidingtext__text {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
.slidingtext__text span {
  display: inline-block;
  width: 48rem;
  transition: all 10s ease-in;
  animation: slidetextLeftAndRight 10s ease-in infinite;
}

@keyframes slidetextLeftAndRight {
  0% {
    margin-left: 200%;
  }
  15% {
    margin-left: 0;
  }
  35% {
    margin-left: 0%;
  }
  50% {
    margin-left: -200%;
  }
  65% {
    margin-left: 0%;
  }
  85% {
    margin-left: 0%;
  }
  100% {
    margin-left: 200%;
  }
}
@keyframes slidetexUpAndDown {
  0% {
    margin-top: -200%;
  }
  40% {
    margin-top: 0;
  }
  60% {
    margin-top: 0;
  }
  100% {
    margin-top: 200%;
  }
}
/* ************* **
** FOOTER STYLES **
** ************* */
.footer {
  width: 100%;
  padding: 2.5rem;
  background-color: #202020;
  box-sizing: border-box;
}
.footer__container {
  width: 90%;
  margin: 5rem auto;
  padding: 0 10rem;
  padding: 0 0 1.5rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__container {
    width: 100%;
  }
}
.footer__links {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1.8rem;
  margin: 1rem auto;
  border-bottom: 1px solid #ababab;
}
@media only screen and (max-width: 56.25em) {
  .footer__links {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer__links {
    flex-direction: column;
  }
}
.footer__link {
  list-style: none;
  text-align: left;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__link {
    min-width: 24rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer__link {
    text-align: center;
    margin: 1rem auto 2rem;
  }
}
.footer__link li {
  padding-bottom: 1.5rem;
}
.footer__linktitle {
  font-size: 1.3rem;
  height: 3.5rem;
  line-height: 1;
  text-align: left;
  padding: 1rem;
  text-transform: uppercase;
  color: #ababab;
  border: 1px solid #eeeeee;
  background-color: rgba(96, 96, 96, 0.1);
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 37.5em) {
  .footer__linktitle {
    text-align: center;
  }
}
.footer__linkitem {
  color: #606060;
}
@media only screen and (max-width: 56.25em) {
  .footer__linkitem {
    text-align: initial;
  }
}
.footer__linkitem:hover {
  color: #fff;
}

.copyright {
  float: left;
  font-size: 1.4rem;
  color: #ababab;
}
@media only screen and (max-width: 56.25em) {
  .copyright {
    display: block;
    text-align: center;
    width: 100%;
    color: #ababab;
  }
}

.designer {
  font-size: 1.4rem;
  text-align: right;
  color: #ababab;
}
@media only screen and (max-width: 56.25em) {
  .designer {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}

/* ***************** **
** HEADER CSS STYLES **
** ***************** */
.header {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 100vw;
  background-color: #fff;
  border-bottom: 1px solid #2E3944;
  box-sizing: border-box;
  z-index: 3;
  opacity: 0.9;
}
@media only screen and (max-width: 56.25em) {
  .header {
    position: fixed;
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .header {
    position: fixed;
    width: 100%;
  }
}
.header__toplinks {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  text-align: right;
  float: right;
  z-index: 4;
}
@media only screen and (max-width: 56.25em) {
  .header__toplinks {
    display: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .header__toplinks {
    display: none;
  }
}
.header__toplinks a:link, .header__toplinks a:visited {
  text-decoration: none;
  color: #606060;
  font-size: 1.4rem;
  padding: 0 0.5rem;
}
.header__toplinks a:link:not(:last-child), .header__toplinks a:visited:not(:last-child) {
  border-right: 1px solid #2E3944;
}
@media only screen and (max-width: 37.5em) {
  .header__toplinks a:link, .header__toplinks a:visited {
    padding: 0 0.5rem;
  }
}
.header__toplinks a:hover, .header__toplinks a:focus {
  color: #000;
}
.header__toplinks a:last-child {
  padding-right: 0;
}
.header__top {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  box-sizing: border-box;
}
.header__top::after {
  content: "";
  clear: both;
  display: table;
}
@media only screen and (max-width: 56.25em) {
  .header__top {
    padding: 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .header__top {
    padding: 0;
  }
}
.header__top__logo {
  margin-bottom: 1rem;
}
.header__top__logo a {
  height: 7.2rem;
  display: block;
  text-decoration: none;
}
.header__top__logo a img {
  width: 100%;
  height: 100%;
}
.header__top__language {
  float: right;
  margin: 0;
  margin-top: 5.4rem;
}
@media only screen and (max-width: 56.25em) {
  .header__top__language {
    margin-top: 0.5rem;
    margin-right: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .header__top__language {
    margin-top: 0.5rem;
    margin-right: 0;
  }
}
.header__top__language img {
  width: 40px;
  margin-left: 10px;
}

.container {
  position: relative;
  width: 100vw;
}
.container::after {
  content: "";
  clear: both;
  display: table;
}

.main {
  position: relative;
  width: 100vw;
  border-bottom: 1px solid #eeeeee;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
}
@media only screen and (max-width: 56.25em) {
  .main {
    border: 1px solid #202020;
  }
}
@media only screen and (max-width: 37.5em) {
  .main {
    border: 1px solid #202020;
  }
}
.main::after {
  content: "";
  clear: both;
  display: table;
}

/* ---------------------------- */
/*  SECTION STYLES              */
/* ---------------------------- */
section {
  position: relative;
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media only screen and (max-width: 37.5em) {
  section {
    padding-top: 7.5rem;
  }
}
section .flex-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  gap: 2rem;
  overflow: scroll;
}
section .flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-content: flex-start;
  gap: 2rem;
}

/* -------------------
   PAGE DEFAULT STYLES
------------------- */
.background-picture {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 8rem;
  margin: 0;
}
@media only screen and (max-width: 56.25em) {
  .background-picture {
    padding-top: 0;
  }
}
.background-picture__title {
  position: absolute;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: 1rem;
  text-wrap: nowrap;
  text-transform: uppercase;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 56.25em) {
  .background-picture__title {
    font-size: 6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .background-picture__title {
    font-size: 4rem;
  }
}
.background-picture img {
  width: 100%;
  height: auto;
}

.center-flexitems {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.default-page-layout {
  position: relative;
  display: block;
  width: 96rem;
  margin: 0 auto;
  padding: 2rem 0;
}
@media only screen and (max-width: 56.25em) {
  .default-page-layout {
    width: 60rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .default-page-layout {
    padding: 0 0;
    width: 100%;
  }
}

.services {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32rem;
  height: 20rem;
  border: 2px solid #202020;
  margin-top: 4rem;
  padding: 2rem;
  margin-top: 2rem 0;
}
.services--one {
  background-color: #ababab;
}
.services--two {
  background-color: #eeeeee;
}
.services--three {
  background-color: #ababab;
}
.services h1 {
  font-size: 24px;
  color: #748D92;
}
.services p {
  font-size: 16px;
}

/* PROJECT PAGE DEFINITIONS */
.projects {
  position: relative;
  display: block;
  width: 100vw;
  color: black;
  padding: 2rem 10rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 56.25em) {
  .projects {
    padding: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .projects {
    padding: 0;
  }
}
.projects__items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 2rem;
  box-sizing: inherit;
}
@media only screen and (max-width: 56.25em) {
  .projects__items {
    flex-direction: row;
    justify-content: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .projects__items {
    flex-direction: column;
    justify-content: center;
  }
}
.projects__item {
  position: relative;
  width: 30%;
  margin-top: 8rem;
  margin-right: 2rem;
  margin-bottom: 4rem;
  padding: 1rem;
  background-color: silver;
  box-sizing: border-box;
}
@media only screen and (max-width: 56.25em) {
  .projects__item {
    width: 40%;
  }
}
@media only screen and (max-width: 37.5em) {
  .projects__item {
    width: 100%;
  }
}
.projects__item__text {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 5ms;
  color: #606060;
  width: 100%;
  height: 1rem;
  font-family: Abel, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 3rem 0;
  text-align: center;
  word-wrap: nowrap;
  vertical-align: top;
}
@media only screen and (max-width: 37.5em) {
  .projects__item__text {
    font-size: 2rem;
  }
}
.projects__item:hover .projects__item__text {
  color: #fff;
}
.projects__item__image {
  width: 100%;
}
.projects__item__image::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.85);
}
.projects__item .btn {
  position: relative;
  min-width: 50%;
}
.projects__item .btn__viewproject {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 1rem;
  opacity: 0;
  border: 1px solid white;
  transition: all 0.5s ease-in-out;
}
.projects__item .btn__viewproject:hover {
  background-color: rgba(46, 57, 68, 0.99);
  cursor: pointer;
}
.projects__item:hover .btn__viewproject {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  opacity: 1;
}
.projects__item__details {
  width: 50%;
  text-transform: initial;
  color: #606060;
  line-height: 3rem;
  text-align: justify;
  font-size: 1.6rem;
}

/*  PROJECT DETAILS */
.project {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  color: #fff;
  padding: 5rem;
  overflow: hidden;
  z-index: 3;
}
.project::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #212A31;
  opacity: 0.75;
  z-index: -1;
}
.project__details {
  position: absolute;
  display: block;
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 90vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  border: 3px solid silver;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 1;
}
@media only screen and (max-width: 56.25em) {
  .project__details {
    width: 80%;
    height: auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .project__details {
    width: 95%;
    height: auto;
  }
}
.project__details h3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: rgba(33, 42, 49, 0.6);
  color: #ababab;
  border-bottom: thin solid silver;
  font-size: 2rem;
  font-weight: 600;
  line-height: 5rem;
  text-align: center;
  text-wrap: nowrap;
  margin: 0;
  z-index: 1;
}
@media only screen and (max-width: 56.25em) {
  .project__details h3 {
    top: 0;
    height: 3.7rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project__details h3 {
    top: 0;
    height: 3.7rem;
  }
}
.project__details img {
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 56.25em) {
  .project__details img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .project__details img {
    width: 100%;
    height: auto;
  }
}
.project__details__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 16rem;
  background-color: rgba(46, 57, 68, 0);
  color: #ababab;
  border-top: thin solid silver;
  font-size: 2rem;
  font-weight: 500;
  text-align: justify;
  padding: 1rem 2rem;
  box-sizing: border-box;
  visibility: hidden;
  overflow-y: auto;
}
@media only screen and (max-width: 56.25em) {
  .project__details__info {
    bottom: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .project__details__info {
    bottom: 0;
  }
}
.project__details__info p {
  text-transform: lowercase;
}
.project__details__info p span {
  font-weight: 200;
}
.project__details__close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid silver;
  background-color: rgba(96, 96, 96, 0.5);
  color: gray;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
}
.project__details__close-button:hover {
  color: white;
  border-width: 2px;
  background-color: rgba(0, 0, 0, 0.8);
}
@media only screen and (max-width: 56.25em) {
  .project__details__close-button {
    top: 0.25rem;
    right: 0.25rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .project__details__close-button {
    top: 0.25rem;
    right: 0.25rem;
  }
}
.project__details__nav {
  position: absolute;
  border-color: transparent;
}
.project__details__nav--prev, .project__details__nav--next {
  top: 50%;
  transform: translateY(-50%);
  border-width: 2rem;
  border-top-width: 6rem;
  border-bottom-width: 6rem;
  border-right-width: 2rem;
  border-style: solid;
  cursor: pointer;
}
.project__details:hover .project__details__nav--prev {
  left: -0.5rem;
  border-color: transparent #000 transparent transparent;
}
@media only screen and (max-width: 37.5em) {
  .project__details:hover .project__details__nav--prev {
    left: -4rem;
  }
}
.project__details:hover .project__details__nav--prev:hover {
  border-color: transparent #fff transparent transparent;
}
.project__details:hover .project__details__nav--next {
  right: -0.5rem;
  border-color: transparent transparent transparent #000;
}
@media only screen and (max-width: 37.5em) {
  .project__details:hover .project__details__nav--next {
    right: -4rem;
  }
}
.project__details:hover .project__details__nav--next:hover {
  border-color: transparent transparent transparent #fff;
}
.project__details:hover h3, .project__details:hover .project__details__info {
  background-color: rgba(46, 57, 68, 0.9);
  color: #fff;
}
.project__details:hover .project__details__info {
  visibility: visible;
}
.project__details:hover .project__details__close-button {
  background-color: rgba(0, 0, 0, 0.9);
}

input[type=checkbox].show-project-item:checked + .project {
  display: block;
}

/* REFERENCES PAGE DEFINITIONS */
.references {
  width: 100%;
  padding: 2rem;
}
.references__list {
  display: flex;
  width: 100%;
  flex-direction: column;
  font-size: 1.6rem;
  font-weight: 300;
}
.references__list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  line-height: 4rem;
  margin: 2rem 10rem;
}
@media only screen and (max-width: 37.5em) {
  .references__list__item {
    margin: 2rem;
  }
}
.references__list__item::after {
  position: absolute;
  left: 0;
  bottom: -2rem;
  content: "";
  width: 100%;
  height: 1px;
  border: 1px solid #cccccc;
}
.references__list__item__logo {
  width: 100%;
}
.references__list__item__name {
  font-weight: 700;
  width: 100%;
}
.references__list__item__reference {
  width: 100%;
}
.references__list__item__projects-count {
  width: 100%;
}

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