*{
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
}

body{
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

:root{
  --color1: #333F48;
  --color2: #BD9B60;
  /* --color2: #A7A8A9; */
}

.container{
  width: 100%;
  padding: 0px 100px;
}

.container.paddingTop{
  margin-top: 70px;
  padding-bottom: 30px;
}

.pc-none{
  display: none;
  visibility: hidden;
}

h1.headline.hlBlue{
  font-family: "Raleway Black", sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color1);
  position: relative;
}

h1.headline.hlBlue::before{
  content: '';
  position: absolute;
  top: 50%;
  left: -80px;
  width: 45px;
  height: 3px;
  background: var(--color2);
}

h1.headline.hlBlue::after{
  content: '';
  position: absolute;
  top: 50%;
  right: -80px;
  width: 45px;
  height: 3px;
  background: var(--color2);
}

h1.headline.hlWhite{
  font-family: "Raleway Black", sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}

h1.headline.hlWhite::before{
  content: '';
  position: absolute;
  top: 50%;
  left: -80px;
  width: 45px;
  height: 3px;
  background: var(--color2);
}

h1.headline.hlWhite::after{
  content: '';
  position: absolute;
  top: 50%;
  right: -80px;
  width: 45px;
  height: 3px;
  background: var(--color2);
}

header{
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  z-index: 2000;
}

header nav{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav a.logo-nav{
  width: auto;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

header nav a.logo-nav img{
  width: 110px;
}

header nav ul{
  width: auto;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header nav ul li{
  line-height: 50px;
  width: auto;
  height: 100%;
  list-style: none;
  margin: 0px 20px;
  border-bottom: 2.5px solid transparent;
}

header nav ul li.active{
  border-bottom: 2.5px solid var(--color1);
}

header nav ul li a{
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color1);
  transition: 0.2s;
}

header nav ul li a:hover{
  color: var(--color2);
}

header nav ul li .lang-img{
  width: 22px;
}

#startWallpaper{
  width: 100%;
  height: 650px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#startWallpaper .switchImgIcon{
  position: absolute;
  top: 90px;
  right: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#startWallpaper .switchImgIcon i{
  position: absolute;
  color: #fff;
  font-size: 24px;
  transition: 0.4s;
  cursor: pointer;
}

#startWallpaper.day .switchImgIcon i.nightIcon{
  visibility: hidden;
  opacity: 0;
}

#startWallpaper.day .switchImgIcon i.dayIcon{
  visibility: visible;
  opacity: 1;
}

#startWallpaper.night .switchImgIcon i.nightIcon{
  visibility: visible;
  opacity: 1;
}

#startWallpaper.night .switchImgIcon i.dayIcon{
  visibility: hidden;
  opacity: 0;
}

#startWallpaper .fullscreenImg{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#startWallpaper .fullscreenImg img{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s ease;
  opacity: 1;
}

#startWallpaper.day .fullscreenImg .imgDay{
  opacity: 1;
}

#startWallpaper.day .fullscreenImg .imgNight{
  opacity: 0;
}

#startWallpaper.night .fullscreenImg .imgDay{
  opacity: 0;
}

#startWallpaper.night .fullscreenImg .imgNight{
  opacity: 1;
}

#startWallpaper .animatedText{
  width: 400px;
  height: 70px;
  position: absolute;
  bottom: 50px;
  left: 0;
  background: #fff;
  padding: 40px 70px 40px 70px;
  z-index: 100;
}

#startWallpaper .animatedText.animationOn{
  animation: animatedStartText 2s ease;
}

@keyframes animatedStartText {
  0%{
    left: -600px;
  }
  50%{
    left: -600px;
  }
  100%{
    left: 0;
  }
}

#startWallpaper .animatedText::before{
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background: none;
  border: 3px solid #fff;
  z-index: 99;
}

#startWallpaper .animatedText::after{
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 100%;
  height: 100%;
  background: none;
  border: 3px solid #fff;
  z-index: 99;
}

#startWallpaper .animatedText h1{
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 2px;
}

#startWallpaper .animatedText h1 img{
  width: 150px;
  position: relative;
  bottom: -2px;
}

#startWallpaper .animatedText h3{
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 23px;
  letter-spacing: 1px;
}

#startProjects{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 40px 0;
  background: #fff;
}

#startProjects .container{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

#startProjects .container .headerBox{
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

#startProjects .container .headerBox form{
  width: auto;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
}

#startProjects .container .headerBox form button{
  width: 30px;
  height: auto;
  outline: none;
  border: none;
  background: none;
  font-size: 18px;
  color: #151515;
  cursor: pointer;
}

#startProjects .container .headerBox form input{
  width: 180px;
  height: 25px;
  border: none;
  border-bottom: 1px solid #151515;
  border-radius: 0px;
  outline: none;
  background: none;
  font-size: 14px;
  color: #151515;
  margin-left: 5px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}
#startProjects .container .headerBox ul{
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#startProjects .container .headerBox ul li{
  list-style: none;
  padding: 0px 20px;
}

#startProjects .container .headerBox ul li:nth-last-child(){
  padding-right: 0px;
}

#startProjects .container .headerBox ul li a{
  color: #151515;
  font-size: 15px;
  text-transform: uppercase;
}

#startProjects .container .headerBox .sortDropdown{
  width: auto;
  height: auto;
  position: relative;
  z-index: 1000;
}

#startProjects .container .headerBox .sortDropdown span{
  width: auto;
  height: auto;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
}

#startProjects .container .headerBox .sortDropdown span i{
  transition: 0.2s;
}

#startProjects .container .headerBox .sortDropdown.active span i{
  transform: rotateZ(180deg);
}

#startProjects .container .headerBox .sortDropdown ul{
  width: 180px;
  height: auto;
  position: absolute;
  bottom: -200px;
  right: 0px;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 10px;
  transition: 0.2s;
  visibility: hidden;
  opacity: 0;
}

#startProjects .container .headerBox .sortDropdown.active ul{
  position: absolute;
  bottom: -160px;
  right: 0px;
  visibility: visible;
  opacity: 1;
}

#startProjects .container .headerBox .sortDropdown ul::before{
  content: '';
  position: absolute;
  top: -10px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotateZ(-45deg);
}

#startProjects .container .headerBox .sortDropdown ul li{
  width: 100%;
  height: auto;
  margin: 2px 0px;
  padding: 3px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#startProjects .container .headerBox .sortDropdown ul li:nth-child(1){
  border-top: none;
}

#startProjects .container .headerBox .sortDropdown ul li a{
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: none;
  color: #000;
}

#startProjects .container .headerBox .sortDropdown ul li.active a{
  font-weight: 800;
  color: var(--color1);
  pointer-events: none;
}

#startProjects .projectList{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

#startProjects .projectList .notFoundPage{
  width: 80%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
}

#startProjects .projectList .notFoundPage .notFound{
  font-family: "Raleway Black", sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color1);
}

#startProjects .projectList .notFoundPage .otherInserts{
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 1px;
  color: #000;
  margin-top: 30px;
}

#startProjects .projectList .notFoundPage .notFoundPageSort{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

#startProjects .projectList .projectItem{
  width: 380px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  margin: 20px;
}

#startProjects .projectList .projectItem img{
  min-height: 100%;
  max-width: 110%;
}

#startProjects .projectList .projectItem .blackscreen{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}

#startProjects .projectList .projectItem .blackscreen .newInsert{
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: "Raleway ExtraBold", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--color1);
  padding: 3px 7px;
  background: var(--color2);
  border-radius: 5px;
}

#startProjects .projectList .projectItem .blackscreen .title{
  position: absolute;
  bottom: 47px;
  left: 20px;
  font-family: "Raleway Black", sans-serif;
  font-size: 19px;
  letter-spacing: 1px;
  color: #fff;
}

#startProjects .projectList .projectItem .blackscreen .location{
  position: absolute;
  bottom: 32px;
  left: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

#startProjects .projectList .projectItem .blackscreen ul{
  position: absolute;
  bottom: 10px;
  left: 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#startProjects .projectList .projectItem .blackscreen ul li{
  list-style: none;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin: 0 20px;
}

#startProjects .projectList .projectItem .blackscreen ul li i{
  padding-right: 5px;
}

.contactList{
  width: 80%;
  height: 400px;
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}

.contactList ul{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  border-right: 2px solid var(--color2);
}

.contactList ul li{
  height: auto;
  width: 90%;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin: 10px 0;
}

.contactList ul li span{
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--color1);
  letter-spacing: 0px;
  padding-bottom: 1px;
}

.contactList ul li a{
  height: auto;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: var(--color1);
  letter-spacing: 4px;
}

.contactList ul p{
  margin-top: 35px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--color1);
  letter-spacing: 1px;
  width: 90%;
}

.contactList ul p span{
  font-weight: 600;
}

.contactList .rightBox{
  width: 50%;
  padding-left: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.contactList .rightBox iframe{
  width: 90%;
  height: 400px;
}

#startbulletPoint{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 40px 0;
  background: var(--color1);
  box-shadow: 0px 0px 20px rgba(60, 93, 150, 0.3);
}

#startbulletPoint .container{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

#startbulletPoint .bulletList{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

#startbulletPoint .bulletList .bulletItem{
  width: 250px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  margin: 0px 20px;
}

#startbulletPoint .bulletList .bulletItem i{
  font-size: 40px;
  color: #fff;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
}

#startbulletPoint .bulletList .bulletItem:hover i{
  opacity: 0;
  visibility: hidden;
}

#startbulletPoint .bulletList .bulletItem h3{
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-top: 10px;
  transition: 0.3s;
}

#startbulletPoint .bulletList .bulletItem:hover h3{
  transform: translateY(-80px);
}

#startbulletPoint .bulletList .bulletItem p.text{
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: -100px;
  transition: 0.3s;
}

#startbulletPoint .bulletList .bulletItem p a{
  font-family: "Raleway ExtraBold", sans-serif;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

#startbulletPoint .bulletList .bulletItem:hover p.text{
  bottom: 25px;
}

#inprint{
  width: 80%;
  margin-top: 30px;
}

#inprint h2{
  text-align: left;
  font-family: "Raleway Black", sans-serif;
  font-weight: 900;
  font-size: 23px;
  color: var(--color1);
}

#inprint p{
  text-align: left;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000;
}

#inprint p strong{
  color: var(--color1);
}

#inprint a{
  text-align: left;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color1);
}

#inprint h3{
  text-align: center;
  font-family: "Raleway Black", sans-serif;
  font-weight: 1000;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color1);
  padding-bottom: 10px;
}

#inprint li{
  text-align: left;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #000;
  margin: 2px 0;
  margin-left: 20px;
}

.imobilienPopup{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
}

.imobilienPopup .blackscreen{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 3000;
}

.imobilienPopup .blackscreen .innerBox{
  width: 700px;
  max-height: 90%;
  overflow-y: scroll;
  overflow-x: hidden;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  background: #fff;
  border-radius: 5px;
  z-index: 4000;
}

.imobilienPopup .blackscreen .innerBox .imgBox .newInsert{
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: "Raleway ExtraBold", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--color1);
  padding: 3px 7px;
  background: var(--color2);
  border-radius: 5px;
  z-index: 3000;
}

.imobilienPopup .blackscreen .innerBox .imgBox{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imobilienPopup .blackscreen .innerBox .imgBox .slider{
  min-width: 100%;
  height: auto;
}

.imobilienPopup .blackscreen .innerBox .imgBox .slider .images {
  display: flex;
  width: auto;
  height: 400px;
  overflow: hidden;
}

.imobilienPopup .blackscreen .innerBox .imgBox .slider .images .imagesSingleBox{
  min-width: 700px;
  height: 400px;
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.imobilienPopup .blackscreen .innerBox .imgBox .slider .images .imagesSingleBox img {
  width: auto;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.imobilienPopup .blackscreen .innerBox .imgBox .slider .images input {
  display: none;
}

.imobilienPopup .blackscreen .innerBox .imgBox .slider .dots {
    display: flex;
    justify-content: center;
    margin: 5px;
    margin-top: 2px;
    width: 98.5%;
    overflow-x: scroll;
}

.imobilienPopup .blackscreen .innerBox .imgBox .slider .dots label {
    height: 40px;
    width: 60px;
    cursor: pointer;
    transition: all 0.15s ease;
    margin: 1px;
    margin-top: 0px;
    overflow: hidden;
    position: relative;
}

.imobilienPopup .blackscreen .innerBox .imgBox .slider .dots label img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  height: 100%;
}

.imobilienPopup .blackscreen .innerBox .imgBox .slider .dots label:hover {
  background: #fff;
}

.imobilienPopup .blackscreen .innerBox .imgBox .slider #img1:checked ~ .m1 {
    margin-left: 0;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img2:checked ~ .m2 {
    margin-left: -100%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img3:checked ~ .m3 {
    margin-left: -200%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img4:checked ~ .m4 {
    margin-left: -300%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img5:checked ~ .m5 {
    margin-left: -400%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img6:checked ~ .m6 {
    margin-left: -500%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img7:checked ~ .m7 {
    margin-left: -600%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img8:checked ~ .m8 {
    margin-left: -700%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img9:checked ~ .m9 {
    margin-left: -800%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img10:checked ~ .m10 {
    margin-left: -900%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img11:checked ~ .m11 {
    margin-left: -1000%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img12:checked ~ .m12 {
    margin-left: -1100%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img13:checked ~ .m13 {
    margin-left: -1200%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img14:checked ~ .m14 {
    margin-left: -1300%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img15:checked ~ .m15 {
    margin-left: -1400%;
}
.imobilienPopup .blackscreen .innerBox .imgBox .slider #img16:checked ~ .m16 {
    margin-left: -1500%;
}

.imobilienPopup .blackscreen .innerBox .imgBox a{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.imobilienPopup .blackscreen .innerBox .imgBox a i{
  font-size: 18px;
  color: #fff;
}

.imobilienPopup .blackscreen .innerBox .textBox{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 10px;
}

.imobilienPopup .blackscreen .innerBox .textBox .informations{
  width: 100%;
  height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
}

.imobilienPopup .blackscreen .innerBox .textBox .informations h3.title{
  font-family: "Raleway Black", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #000;
  letter-spacing: 1px;
}

.imobilienPopup .blackscreen .innerBox .textBox .informations h3 span.location{
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.imobilienPopup .blackscreen .innerBox .textBox .informations ul{
  position: relative;
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
}

.imobilienPopup .blackscreen .innerBox .textBox .informations ul li{
  list-style: none;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000;
  margin: 0 10px;
}

.imobilienPopup .blackscreen .innerBox .textBox .informations ul li:nth-child(3){
  margin-right: 20px;
}

.imobilienPopup .blackscreen .innerBox .textBox .informations ul li i{
  padding-right: 5px;
  font-size: 13px;
}

.imobilienPopup .blackscreen .innerBox .textBox .action{
  width: 100%;
  height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.imobilienPopup .blackscreen .innerBox .textBox .action p.price{
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  letter-spacing: 1px;
}

.imobilienPopup .blackscreen .innerBox .textBox .action ul{
  width: auto;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
}

.imobilienPopup .blackscreen .innerBox .textBox .action ul li{
  list-style: none;
}

.imobilienPopup .blackscreen .innerBox .textBox .action ul li a{
  padding: 8px 15px;
  border: 2px solid var(--color1);
  background: none;
  outline: none;
  cursor: pointer;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--color1);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.2s;
}

.imobilienPopup .blackscreen .innerBox .textBox .action ul li a:hover{
  border: 2px solid var(--color1);
  background: var(--color1);
  color: #fff;
}

.imobilienPopup .blackscreen .innerBox .textBox h4{
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #000;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.imobilienPopup .blackscreen .innerBox .textBox ul{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.imobilienPopup .blackscreen .innerBox .textBox ul li{
  list-style: none;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #000;
  margin: 5px 10px;
}

.imobilienPopup .blackscreen .innerBox .textBox ul li i.fa-check{
  font-size: 14px;
  color: #00CC00;
}

.imobilienPopup .blackscreen .innerBox .textBox p{
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #000;
  width: 96%;
}

.imobilienPopup .blackscreen .innerBox .textBox iframe{
  margin-top: 30px;
  width: 97%;
  height: 200px;
}

footer{
  width: 100%;
  position: relative;
  height: auto;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
}

footer .container,
footer .row{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

footer .row img{
  width: 135px;
  padding-bottom: 5px;
}

footer .row ul{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 10px;
}

footer .row ul li{
  list-style: none;
  margin: 0px 10px;
}

footer .row ul li a{
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--color1);
  text-transform: uppercase;
}

footer .row.socials ul{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: 10px;
}

footer .row.socials ul li{
  list-style: none;
  margin: 0px 10px;
  width: 28px;
  height: 28px;
  background: var(--color1);
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

footer .row.socials ul li a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .row.socials ul li a i{
  font-size: 14px;
  color: #fff;
}

footer .row p.copyright{
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 1px;
  color: #000;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 991px) {
  .container{
    width: 100%;
    padding: 0px;
  }
  .container.paddingTop{
    margin-top: 70px;
    padding-bottom: 30px;
  }
  .pc-none{
    display: flex;
    visibility: visible;
  }
  .mobile-none{
    display: none;
    visibility: hidden;
  }
  h1.headline.hlBlue{
    font-family: "Raleway Black", sans-serif;
    font-weight: 900;
    font-size: 23px;
  }
  h1.headline.hlBlue::before{
    left: -40px;
    width: 25px;
  }
  h1.headline.hlBlue::after{
    right: -40px;
    width: 25px;
  }
  h1.headline.hlWhite{
    font-family: "Raleway Black", sans-serif;
    font-weight: 900;
    font-size: 23px;
  }
  h1.headline.hlWhite::before{
    left: -40px;
    width: 25px;
  }
  h1.headline.hlWhite::after{
    right: -40px;
    width: 25px;
  }
  header{
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;
  }
  header nav a.logo-nav{
    padding-left: 20px;
  }
  header nav a.logo-nav img{
    width: 150px;
    z-index: 2001;
  }
  header nav .menu{
    width: 32px;
    height: 32px;
    position: relative;
    right: 20px;
    z-index: 2001;
  }
  header nav .menu #line-top{
    width: 85%;
    height: 2px;
    background: var(--color1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -5px;
    transition: 0.3s;
  }
  header nav .menu #line-bottom{
    width: 85%;
    height: 2px;
    background: var(--color1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 5px;
    transition: 0.3s;
  }
  header nav.active .menu #line-top{
    transform: translate(-50%, -50%) rotate(-45deg);
    margin-top: 0;
  }
  header nav.active .menu #line-bottom{
    transform: translate(-50%, -50%) rotate(45deg);
    margin-top: 0;
  }
  header nav ul{
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    border-top: 2.5px solid var(--color2);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }
  header nav.active ul{
    position: absolute;
    top: 70px;
    left: 0;
    visibility: visible;
    opacity: 1;
  }
  header nav ul li{
    line-height: 20px;
    width: auto;
    height: auto;
    list-style: none;
    margin: 12px 0px;
    border-bottom: 2.5px solid transparent;
  }
  header nav ul li a{
    font-size: 16px;
  }
  header nav ul li .lang-img{
    width: 26px;
  }
  #startWallpaper{
    width: 100%;
    height: 80vh;
  }
  #startWallpaper .switchImgIcon{
    position: absolute;
    top: 110px;
    right: 30px;
  }
  #startWallpaper .fullscreenImg img{
    height: 100%;
    width: auto;
  }
  #startWallpaper .animatedText{
    width: 70%;
    height: 60px;
    position: absolute;
    bottom: 70px;
    left: 0;
    background: #fff;
    padding: 25px 35px 25px 25px;
    z-index: 100;
  }
  #startWallpaper .animatedText h1{
    font-family: "Raleway Black", sans-serif;
    font-weight: 900;
    font-size: 25px;
    letter-spacing: 2px;
  }
  #startWallpaper .animatedText h1 img{
    width: 150px;
  }
  #startWallpaper .animatedText h3{
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
  }
  #startProjects .container .headerBox{
    width: 90%;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 20px;
  }
  #startProjects .container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
  }
  #startProjects .container .headerBox form{
    width: 45%;
    height: 100%;
    margin-top: 0;
  }
  #startProjects .container .headerBox form button{
    font-size: 16px;
  }
  #startProjects .container .headerBox form input{
    font-size: 13px;
  }
  #startProjects .container .headerBox .sortDropdown span{
    font-size: 13px;
  }
  #startProjects .projectList .notFoundPage{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #startProjects .projectList .notFoundPage .notFound{
    font-family: "Raleway Black", sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color1);
    text-align: center;
    padding: 30px 0;
  }
  #startProjects .projectList .notFoundPage .otherInserts{
    font-family: "Raleway", sans-serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 1px;
    color: #000;
    margin-top: 30px;
    text-align: center;
  }
  #startProjects .projectList .notFoundPage .notFoundPageSort{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #startProjects .projectList{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    overflow: hidden;
  }
  #startProjects .projectList .projectItem{
    width: 90%;
    height: 190px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    margin: 12px;
  }
  #startProjects .projectList .projectItem img{
    min-height: 100%;
    max-width: 110%;
  }
  #startProjects .projectList .projectItem .blackscreen .title{
    font-family: "Raleway Black", sans-serif;
    font-weight: 800;
  }
  .imobilienPopup .blackscreen .innerBox{
    width: 96%;
    max-height: 88vh;
  }
  .imobilienPopup .blackscreen .innerBox .imgBox{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .imobilienPopup .blackscreen .innerBox .imgBox .slider .images {
    height: 300px;
  }
  .imobilienPopup .blackscreen .innerBox .imgBox .slider .images .imagesSingleBox{
    min-width: 100%;
    height: 300px;
  }
  .imobilienPopup .blackscreen .innerBox .imgBox .slider .dots {
      padding-bottom: 10px;
  }
  .imobilienPopup .blackscreen .innerBox .imgBox .slider .dots label {
      height: 20px;
      width: 30px;
  }
  .imobilienPopup .blackscreen .innerBox .imgBox a{
    position: fixed;
    top: 10px;
    right: 15px;
  }
  .imobilienPopup .blackscreen .innerBox .textBox .informations{
    width: 100%;
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
  }
  .imobilienPopup .blackscreen .innerBox .textBox .informations h3.title{
    font-size: 18px;
    width: 60%;
  }
  .imobilienPopup .blackscreen .innerBox .textBox .informations h3 span.location{
    font-size: 14px;
    width: 60%;
  }
  .imobilienPopup .blackscreen .innerBox .textBox .informations ul{
    position: relative;
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    padding-right: 10px;
    text-align: right;
  }
  .imobilienPopup .blackscreen .innerBox .textBox .informations ul li{
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: row-reverse;
    padding-bottom: 5px;
  }
  .imobilienPopup .blackscreen .innerBox .textBox .informations ul li:nth-child(3){
    margin-right: 15px;
  }
  .imobilienPopup .blackscreen .innerBox .textBox .informations ul li i{
    padding-left: 5px;
    padding-right: 0px;
    font-size: 15px;
    width: 20px;
  }
  .imobilienPopup .blackscreen .innerBox .textBox .action{
    margin-top: 15px;
  }
  .imobilienPopup .blackscreen .innerBox .textBox h4{
    font-family: "Raleway Black", sans-serif;
    font-weight: 800;
  }
  .imobilienPopup .blackscreen .innerBox .textBox ul{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .imobilienPopup .blackscreen .innerBox .textBox ul li{
    list-style: none;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #000;
    margin: 5px 10px;
  }
  .imobilienPopup .blackscreen .innerBox .textBox ul li i.fa-check{
    font-size: 14px;
    color: #00CC00;
    padding-right: 5px;
  }
  .imobilienPopup .blackscreen .innerBox .textBox p{
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #000;
    width: 96%;
  }
  .imobilienPopup .blackscreen .innerBox .textBox iframe{
    margin-top: 30px;
    width: 97%;
    height: 200px;
  }
  .contactList{
    width: 90%;
    height: auto;
    padding: 50px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .contactList ul{
    width: 100%;
    height: 100%;
    border-right: none;
  }
  .contactList ul li{
    height: auto;
    width: 100%;
  }
  .contactList ul p{
    width: 100%;
    text-align: justify;
  }
  .contactList .rightBox{
    width: 100%;
    padding-left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    border-top: 2px solid var(--color2);
    padding-top: 50px;
  }
  .contactList .rightBox iframe{
    width: 100%;
    height: 300px;
  }
  #startbulletPoint .bulletList{
    flex-direction: column;
  }
  #startbulletPoint .bulletList .bulletItem{
    width: 80%;
  }
  #startbulletPoint .bulletList .bulletItem i{
    font-size: 50px;
  }
  #startbulletPoint .bulletList .bulletItem:hover i{
    opacity: 0;
    visibility: hidden;
  }
  #startbulletPoint .bulletList .bulletItem:hover h3{
    transform: translateY(-80px);
  }
  #startbulletPoint .bulletList .bulletItem p{
    font-size: 18px;
  }
  #startbulletPoint .bulletList .bulletItem:hover p.text{
    bottom: 50px;
  }
}
