@charset "UTF-8";
/* CSS Document */

/*

 Theme Name: Rudolf Carree

 Theme URI: http://rudolf-carree.de
 
 Description: Ein responsives Design, optimiert für 1920x1080p.

 Author: Denny Nordmann

 Author URI: http://eilinghoff.de

 */

html,
body {
  margin: 0;
  padding: 0;
  font-family: "KlavikaWebBasicRegular";
  font-weight: normal;
  font-style: normal;
  line-height: 1.5em;
  overflow-x: hidden;
}

/* Intro Styles */
#site-intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Use viewport height for better mobile support */
  background-color: #537697; /* Fallback background color */
  background-image: url("img/intro.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  /* Prevent scrolling while intro is showing */
  overflow: hidden;
  display: none;
}

#site-intro.fade-out {
  opacity: 0;
}

#site-intro.hidden {
  display: none;
}

/* Fixed Download Button Styles */
#fixed-download-btn {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#fixed-download-btn a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #6a7d9d 0%, #5a6d8d 100%);
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-family: "KlavikaWebBasicRegular", Arial, sans-serif;
  box-shadow: 0 8px 25px rgba(106, 125, 157, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#fixed-download-btn:hover a {
  background: linear-gradient(135deg, #5a6d8d 0%, #4a5d7d 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(106, 125, 157, 0.4);
}

#fixed-download-btn .download-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
  transform: rotate(180deg);
}

#fixed-download-btn:hover .download-icon {
  background: rgba(255, 255, 255, 0.25);
  /* transform: scale(1.1); */
}

#fixed-download-btn .download-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

#fixed-download-btn .download-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

#fixed-download-btn .download-label {
  font-size: 11px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  font-family: "KlavikaWebBasicLight", Arial, sans-serif;
}

#fixed-download-btn .download-title {
  font-size: 16px;
  font-weight: bold;
  font-family: "KlavikaWebBasicBold", Arial, sans-serif;
  line-height: 1;
}

.clear {
  clear: both;
}

.wrap {
  width: 80%;
  margin: 0 auto;
}

h2 {
  color: #6f6f6e;
  font-size: 60px;
  padding-bottom: 5px;
  margin: 0;
  font-family: "KlavikaWebBasicLight";
  font-weight: normal;
  font-style: normal;
	line-height:1.2;
}
/* *{
	border:1px solid red;
} */
h3 {
  color: #6f6f6e;
  font-size: 30px;
  margin: 0;
  padding-top: 20px;
  font-family: "KlavikaWebBasicLight";
  font-weight: normal;
  font-style: normal;
	line-height:1.2;
}

img {
  width: 100%;
  height: auto;
}

p ,strong{
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #706d70;
}

a {
  color: #796d70;
}

#startscreen {
  position: relative;
  height: 100vh;
  width: 100%;
  /* background-image: url(img/bg.jpg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#startscreen h1 {
  position: absolute;
  color: white;
  left: 0;
  right: 0;
  top: 35%;
  font-size: 120px;
  text-align: center;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 1);
  opacity: 0;
}

header {
  height: 8vh;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  background: rgb(82 118 150 / 80%);
	z-index:11200;
}

nav {
  float: right;
  margin-top: 25px;
}

nav ul {
  padding: 0;
  margin: 0;
}

nav ul li {
  list-style-type: none;
  display: inline;
  margin-right: 15px;
  padding-bottom: 10px;
}

nav ul li:last-child {
  margin-right: 0;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 25px;
  text-transform: uppercase;
  font-family: "KlavikaWebBasicLight";
  font-weight: normal;
  font-style: normal;
}

nav ul li:hover {
  border-bottom: solid 2px white;
}
/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
	margin-top:20px;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
}
.hero-slider{
	margin-top:0;
}
/* Responsive: show burger on mobile */
@media (max-width: 991px) {
	.hero-slider{
	margin-top:100px;
}
  nav {
    display: none;
    position: absolute;
    top: 5vh; /* نفس ارتفاع الهيدر */
    right: 0;
    background: rgb(82 118 150 / 95%);
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  nav ul li {
    display: block;
    margin: 15px 0;
  }

  .burger {
    display: flex;
  }

  nav.active {
    display: block;
  }
}
#eigentumswohnungen_zum_kauf {
  padding-top: 125px;
  padding-bottom: 125px;
}

.projektuebersicht {
  margin-top: 100px;
}

.projektuebersicht h3 {
  padding-left: 0;
  font-size: 40px;
  padding-bottom: 25px;
}

.projektuebersicht ul {
  margin: 0;
  padding: 0;
}

.projektuebersicht ul li {
  border-top: solid thin black;
  list-style-type: none;
  font-size: 20px;
  color: #706d70;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

#lageplan_muenster {
  position: relative;
}

#lageplan_muenster a {
  position: absolute;
  z-index: 9;
  bottom: 20px;
  left: 10px;
  background-color: white;
  color: black;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
}

#lageplan_muenster a:hover {
  background-color: black;
  color: white;
}

#lageplan_muenster img {
  width: 100%;
  height: auto;
}

#willkommen_im_mauritzviertel {
  padding-top: 150px;
  padding-bottom: 150px;
  font-weight: 300;
}

#willkommen_im_mauritzviertel h3 {
  font-size: 60px;
  margin: 0;
  padding: 0;
}

#willkommen_im_mauritzviertel h4 {
  margin: 0;
  padding: 0;
  font-size: 40px;
  color: #6f6f6e;
  padding-bottom: 50px;
  padding-top: 30px;
  font-family: "KlavikaWebBasicLight";
  font-weight: normal;
  font-style: normal;
}

#willkommen_im_mauritzviertel .mauritz {
  padding-top: 50px;
}

.content {
  padding-top: 50px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  column-gap: 50px;
  text-align: justify;
}

.content p {
  padding: 0;
  margin: 0;
}

#rc_haus_01 {
  background-color: #537697;
  padding-top: 125px;
  padding-bottom: 125px;
}

#rc_haus_02 {
  padding-top: 125px;
  padding-bottom: 125px;
}

#rc_haus_03 {
  background-color: #d1cecb;
  padding-top: 125px;
  padding-bottom: 125px;
}

#rc_haus_01 h3 {
  color: white;
  font-size: 67px;
  padding-top: 50px;
  padding-bottom: 100px;
  line-height: 1.1;
}
#rc_haus_01 h4 {
  color: white !important;
  font-size: 40px !important;
  line-height: 1.1 !important;
}
#rc_haus_02 h3 {
  font-size: 80px;
  padding-top: 50px;
  padding-bottom: 100px;
}

#rc_haus_03 h3 {
  color: white;
  font-size: 80px;
  padding-top: 50px;
  padding-bottom: 100px;
}

.slideshow_nav ul {
margin: 0;
    padding: 0;
    width: 100%;
    display: table;
    margin-top: 30px;
    display: flex;
	flex-wrap:wrap;
    align-items: baseline;
    gap: 10px;
}

.slideshow_nav ul li {
  list-style-type: none;
  display: table-cell;
  text-align: center;
}

.slideshow_nav ul li:first-child {
  text-align: left;
}

.slideshow_nav ul li:last-child {
  text-align: right;
}

.slideshow_nav ul li p:hover {
  border-bottom: solid 2px white;
}

.slideshow_nav ul li p {
  text-decoration: none;
  color: white;
  font-size: 25px;
  padding-bottom: 10px;
  margin: 0;
  font-family: "KlavikaWebBasicLight";
  font-weight: normal;
  font-style: normal;
}

.slideshow_nav ul li a:hover {
  border-bottom: solid 2px white;
}

.slideshow_nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 25px;
  padding-bottom: 0;
  cursor: pointer;
  margin: 0;
  font-family: "KlavikaWebBasicLight";
  font-weight: normal;
  font-style: normal;
}

.active {
  border-bottom: solid 2px white;
}

.active_grey {
  border-bottom: solid 2px #706d70;
}

#rc_haus_02_nav li:hover a {
  border-bottom: solid thick #706d70;
}

#rc_haus_02 .slideshow_nav ul li a {
  text-decoration: none;
  color: #706d70;
  font-size: 25px;
  padding-bottom: 10px;
}

.rc_haus_content {
  margin-top: 50px;
  padding-bottom: 50px;
  font-weight: 300;
}
.rc_haus_content p strong{
	color:#fff !important;
}
.rc_haus_content .left {
  float: left;
  width: 30%;
}

.rc_haus_content .right {
  float: right;
  width: 64%;
  padding-left: 25px;
}

.border_white {
  border-left: solid 3px white;
}

.border_grey {
  border-left: solid 3px #706d70;
}

.rc_haus_content p {
  margin: 0;
  padding: 0;
}

.rc_haus_content h4 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  padding-bottom: 5px;
  font-family: "KlavikaWebBasicLight";
  font-weight: normal;
  font-style: normal;
}

.white {
  color: white;
}

.grey {
  color: #706d70;
}

.rc_haus_content ul {
  margin: 0;
  padding: 0;
}

.rc_haus_content ul li {
  padding-top: 5px;
  padding-bottom: 5px;
  list-style-type: none;
  border-bottom: solid #fff thin;
}

.rc_haus_content ul li:first-child {
  border-top: solid thin #fff;
}

.rc_haus_content .links {
	display:none;
  width: 20%;
  float: left;
}

.rc_haus_content .left .links p {
  font-size: 12px;
}

.rc_haus_content .links ul {
  margin-top: 32px;
}

.rc_haus_content .links ul li {
  border: none;
}

.rc_haus_content .rechts {
  width: 100%;
  float: right;
}

#anordnung_im_carree {
  padding-top: 150px;
}

#anordnung_im_carree h3 {
  font-size: 60px;
  padding-bottom: 50px;
}

#referenzen .slideshow {
  width: 100%;
  height: 600px;
  background-image: url(img/grimm-hotel.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo {
  width: 10%;
  height: auto;
  padding-right: 5px;
  padding-left: 5px;
}

#referenzen .slideshow {
  position: relative;
}

#referenzen .slideshow .headlines {
  position: absolute;
  left: 0;
  right: 0;
  top: 35%;
}

#referenzen .slideshow h3 {
  color: white;
  text-align: center;
  font-family: "KlavikaWebBasicRegular";
  font-weight: normal;
  font-style: normal;
  font-size: 40px;
  padding: 0;
  margin: 15px;
}

#referenzen .slideshow h4 {
  color: white;
  text-align: center;
  font-family: "KlavikaWebBasicRegular";
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  padding: 0;
  margin: 15px;
}

.referenzen_content {
  padding-top: 150px;
  padding-bottom: 150px;
  margin-top: -10px;
  font-weight: 300;
}

.referenzen_content h3 {
  font-size: 60px;
  padding-left: 0;
  margin: 0;
  padding-bottom: 25px;
}

.fragen_oder_interesse_content ul {
  margin: 0;
  padding: 0;
  display: table;
  width: 100%;
}

.fragen_oder_interesse_content ul li {
  display: inline;
  padding-right: 15px;
  color: #fff;
}

.fragen_oder_interesse_content ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.fragen_oder_interesse_content {
  background-color: #537697;
  margin-top: -10px;
  padding-top: 150px;
  padding-bottom: 150px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
.fragen_oder_interesse_content p {
  color: #fff;
}
.fragen_oder_interesse_content h3 {
  color: white;
  margin: 0;
  padding-left: 0;
  font-size: 60px;
  padding-bottom: 25px;
}

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

.fragen_oder_interesse_content a.datenschutz {
  color: white;
  text-decoration: underline;
}

.unser_unternehmen_content {
  padding-top: 150px;
  padding-bottom: 200px;
}

.unser_unternehmen_content h3 {
  font-size: 60px;
  padding-bottom: 50px;
}
#fragen_oder_interesse h3 {
	  font-size: 60px;
}
.unternehmen_col {
  column-count: 2;
  column-gap: 50px;
  text-align: justify;
}

.unternehmen_col p {
  margin: 0;
  padding: 0;
}

.logo_rechts {
  float: right;
  width: 30%;
  height: auto;
  margin-top: 50px;
}

footer {
  background: rgb(82 118 150 / 100%);
}

footer .wrap {
  padding-top: 50px;
  padding-bottom: 50px;
}

footer p {
  text-align: center;
  margin: 0;
  padding: 5px;
  color: #fff !important;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
footer p strong {
	color: #fff !important;}
footer a {
  color: #fff;
  text-decoration: none;
}

#slideshow_rc_01_grundrisse {
  display: none;
}

#slideshow_rc_01_wohnungsbeispiele {
  display: none;
}

#slideshow_rc_02_grundrisse {
  display: none;
}

#slideshow_rc_02_wohnungsbeispiele {
  display: none;
}

#slideshow_rc_03_grundrisse {
  display: none;
}

#slideshow_rc_03_wohnungsbeispiele {
  display: none;
}

#preisliste {
  background-color: #d1cecb;
  padding-top: 50px;
  padding-bottom: 125px;
  margin-top: -5px;
}

#preisliste h1 {
  color: white;
  font-size: 50px;
}

.preise_links {
  float: left;
}

.preise_rechts {
  float: right;
}

.preise_rechts a {
  color: white;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: solid 3px white;
  font-size: 18px;
}

.preise_col_01 {
  float: left;
  min-width: 20%;
  text-align: right;
  min-height: 1px;
}

.preise_col_02 {
  float: left;
  min-width: 20%;
  min-height: 1px;
  text-align: right;
}

.preise_col_03 {
  float: left;
  min-width: 20%;
  text-align: right;
  min-height: 1px;
}

.preise_col_04 {
  float: left;
  min-width: 20%;
  min-height: 1px;
  text-align: right;
}

.preise_col_05 {
  float: left;
  min-width: 20%;
  text-align: right;
  min-height: 1px;
}

.preisliste_spalte {
  margin: 0;
  padding: 0;
}

.preisliste_spalte p {
  margin: 0;
  padding: 0;
}

.geschoss {
  padding-top: 20px;
}

.sold {
  color: white;
  background-color: #009ad9;
  width: 50%;
  text-align: center;
  float: right;
  font-weight: bolder;
}

.reserved {
  color: white;
  background-color: #aa7c6c;
  width: 50%;
  text-align: center;
  float: right;
  font-weight: bolder;
}

.rc_haus_content ul li {
  color: #fff;
}
ul li p {
  color: #706d70;
}
ul li {
	  color: #706d70;
}
h4 {
	color:#706d70;
text-shadow: 0 0 black;
}
.klavika_bold {
  font-family: "KlavikaWebBasicBold";
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
}
.rc_haus_content p {
  color: #fff;
	text-align:justify;
}
.open_sans_light {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.flex-prev {
  background: url(img/bg_direction_nav_left.png) no-repeat 0 0 !important;
}

.flex-next {
  background: url(img/bg_direction_nav_right.png) no-repeat 0 0 !important;
}

@media screen and (min-width: 1630px) {
  .wrap {
    width: 60%;
  }
}

@media screen and (max-width: 1150px) {
  .wrap {
    width: 95%;
  }
}

@media screen and (max-width: 960px) {
	.unternehmen_col {
  column-count: 1;
}
  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 22px;
  }

  .projektuebersicht h3 {
    font-size: 30px;
  }

  .projektuebersicht ul li {
    font-size: 16px;
  }

  #willkommen_im_mauritzviertel h3 {
    font-size: 45px;
  }

  #willkommen_im_mauritzviertel h4 {
    font-size: 25px;
  }

  #rc_haus_01 h3 {
    font-size: 45px;
  }

  #rc_haus_02 h3 {
    font-size: 45px;
  }

  #rc_haus_03 h3 {
    font-size: 45px;
  }

  #anordnung_im_carree h3 {
    font-size: 45px;
  }

  .referenzen_content h3 {
    font-size: 45px;
  }

  .fragen_oder_interesse_content h3 {
    font-size: 45px;
  }
}

@media screen and (max-width: 800px) {
  #startscreen h1 {
    font-size: 80px;
  }

  .content {
    column-count: 1;
    -webkit-column-count: 1;
    -moz-column-count: 1;
  }

  .rc_haus_content .left {
    float: none;
    width: 100%;
  }

  .rc_haus_content .rechts {
    float: none;
    width: 100%;
  }

  .rc_haus_content .right {
    float: none;
    width: 100%;
    border-left: none;
    padding-left: 0;
    padding-top: 25px;
  }

  #eigentumswohnungen_zum_kauf {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .projektuebersicht {
    margin-top: 25px;
  }

  #willkommen_im_mauritzviertel {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  #rc_haus_01 {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  #rc_haus_01 h3 {
    padding-bottom: 25px;
  }

  #rc_haus_02 {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  #rc_haus_02 h3 {
    padding-bottom: 25px;
  }

  #rc_haus_03 {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  #rc_haus_03 h3 {
    padding-bottom: 25px;
  }

  #anordnung_im_carree {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .referenzen_content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .fragen_oder_interesse_content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .referenzen_content ul li:first-child {
    text-align: center;
  }

  .referenzen_content ul li {
    display: block;
    text-align: center;
  }

  .referenzen_content ul li:last-child {
    text-align: center;
  }
}

@media screen and (max-width: 685px) {
  .preise_col_01 {
    text-align: center;
  }
  .preise_col_02 {
    text-align: center;
  }
  .preise_col_03 {
    text-align: center;
  }
  .preise_col_04 {
    text-align: center;
  }
  .preise_col_05 {
    text-align: center;
  }

  .sold {
    float: none;
    width: 100%;
  }
}

@media screen and (max-width: 610px) {
  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 18px;
    padding-top: 10px;
  }

  .projektuebersicht h3 {
    font-size: 24px;
  }

  .projektuebersicht ul li {
    font-size: 12px;
  }

  #willkommen_im_mauritzviertel h3 {
    font-size: 35px;
  }

  #willkommen_im_mauritzviertel h4 {
    font-size: 24px;
    padding-top: 12px;
  }

  #anordnung_im_carree h3 {
    font-size: 35px;
  }

  .fragen_oder_interesse_content h3 {
    font-size: 35px;
  }

  #preisliste p {
    font-size: 12px;
  }
}

@media screen and (max-width: 540px) {
  #startscreen h1 {
    font-size: 55px;
  }

  nav ul li a {
    font-size: 18px;
  }

  .slideshow_nav ul li a {
    font-size: 18px;
  }

  #rc_haus_02 .slideshow_nav ul li a {
    font-size: 18px;
  }

  .rc_haus_content h4 {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 16px;
  }

  #willkommen_im_mauritzviertel h3 {
    font-size: 25px;
  }

  #willkommen_im_mauritzviertel h4 {
    font-size: 20px;
  }

  .rc_haus_content .links {
    width: 30%;
  }
  .fragen_oder_interesse_content h3 {
    font-size: 25px;
  }

  #preisliste p {
    font-size: 10px;
  }
}

@media screen and (max-width: 410px) {
  #startscreen h1 {
    font-size: 45px;
  }

  nav ul li a {
    font-size: 14px;
  }

  .slideshow_nav ul li a {
    font-size: 16px;
  }

  #rc_haus_02 .slideshow_nav ul li a {
    font-size: 16px;
  }

  .preise_col_01 {
    text-align: left;
  }

  #preisliste p {
    font-size: 8px;
  }
}

@media screen and (max-height: 640px) {
  nav {
    margin-top: 10px;
  }
}

@media screen and (max-height: 470px) {
  nav {
    margin-top: 5px;
  }
}
.wpforms-required-label {
  display: none !important;
}

/* Intro Responsive Styles */
@media screen and (max-width: 1150px) {
  #site-intro {
    background-size: cover;
    background-position: center center;
  }
}

@media screen and (max-width: 800px) {
  #site-intro {
    background-size: contain;
    background-position: center center;
    background-attachment: scroll;
  }
}

@media screen and (max-width: 610px) {
  #site-intro {
    background-size: contain;
    background-position: center center;
    background-attachment: scroll;
  }
}

@media screen and (max-width: 480px) {
  #site-intro {
    background-size: contain;
    background-position: center center;
    background-attachment: scroll;
  }
}

@media screen and (max-width: 410px) {
  #site-intro {
    background-size: contain;
    background-position: center center;
    background-attachment: scroll;
  }
}

/* Intro orientation support */
@media screen and (orientation: landscape) and (max-height: 640px) {
  #site-intro {
    background-size: contain;
    background-position: center center;
  }
}

@media screen and (orientation: landscape) and (max-height: 470px) {
  #site-intro {
    background-size: contain;
    background-position: center center;
  }
}

/* Fixed Download Button Responsive Styles */
@media screen and (max-width: 800px) {
  #fixed-download-btn {
    right: 20px;
    top: auto;
    bottom: 30px;
    transform: none;
  }

  #fixed-download-btn a {
    padding: 12px 16px;
    gap: 10px;
  }

  #fixed-download-btn .download-icon {
    width: 35px;
    height: 35px;
    transform: rotate(180deg);
  }

  #fixed-download-btn .download-icon svg {
    width: 20px;
    height: 20px;
  }

  #fixed-download-btn .download-label {
    font-size: 10px;
  }

  #fixed-download-btn .download-title {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  #fixed-download-btn {
    right: 15px;
    bottom: 20px;
  }

  #fixed-download-btn a {
    padding: 10px 14px;
    gap: 8px;
  }

  #fixed-download-btn .download-icon {
    width: 30px;
    height: 30px;
    transform: rotate(180deg);
  }

  #fixed-download-btn .download-icon svg {
    width: 18px;
    height: 18px;
  }

  #fixed-download-btn .download-label {
    font-size: 9px;
  }

  #fixed-download-btn .download-title {
    font-size: 13px;
  }
}

@media screen and (max-width: 410px) {
  #fixed-download-btn {
    right: 10px;
    bottom: 15px;
  }

  #fixed-download-btn a {
    padding: 8px 12px;
  }

  #fixed-download-btn .download-label {
    font-size: 8px;
  }

  #fixed-download-btn .download-title {
    font-size: 12px;
  }
}
