/*CSS für gesamtes Projekt-------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
html, body{
	margin: 0;
	padding: 0;
	font-family: "Playfair Display", serif;
	color: #554643;
}
/*Animationen--------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@keyframes fadeinboto{
	0%{bottom: 0%; opacity: 0}
	100%{bottom: 12%;opacity: 1}
}
/*Allgemeines CSS----------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.section{
	position: relative;
	z-index: 10;
	width: 100%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	padding-top: 5rem;
	padding-bottom: 5rem;
}
.sec{
	width: min(90vw, 65rem);
	display: flex;
	justify-content: space-between;
	justify-items: center;
	align-items: center;
}
.sectionheader{
	margin: 0;
	font-weight: bold;
	font-size: 2rem;
}
.centext{
	text-align: center;
}
.header_highlite{
	text-transform: uppercase;
	margin: 0;
	font-size: 1rem;
	color: #7F7F7F;
	font-weight: bold;
}
.sectionheader_colored{
	color: #A02725;
}
.normal_text{
	margin: 0;
	font-size: 1rem;
}
.headercopy{
	font-size: 1.3rem;
	vertical-align: super;
}
.debug{
	width: 100%;
	height: 100lvh;
}
/*Navbar-------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.navbarwrapper{
	width: 100%;
	height: 90px;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
}
.navbar{
	width: min(90vw, 65rem);
	position: relative;
	display: flex;
	justify-content: space-between;
	justify-items: center;
	align-items: center;
}
.navbar_socialbox{
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	gap: .6rem;
}
.navbar_socialpic{
	width: 1.6rem;
}
.navbar_linkwrapper{
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	gap: 1rem;
}
.navbar_link{
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	color: #545454 !important;
	font-size: .9rem;
}
.navbar_link:hover{
	color: black !important;
	text-decoration: underline;
}
.navbar_logo{
	width: 10rem;
}
.navbar_donobut{
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	gap: .4rem;
	background-color: #A02725;
	padding: .6rem;
	padding-left: 1rem;
	padding-right: 1rem;
}
.navbar_donobut:hover{
	cursor: pointer;
	background-color: #800705;
}
.navbar_donopic{
	width: 2rem;
}
.navbar_donotext{
	font-size: .8rem;
	color: white;
	margin: 0;
	text-transform: uppercase;
}
/*Mobile Menu--------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.menuopen {
    height: 25px;
    width: 30px;
    display: none;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}
.ham {
    width: 100%;
    height: 3px;
    background-color: #554643;
    border-radius: 2px;
}
.mobilemenu{
	z-index: 10000;
	position: fixed;
	height: 100lvh;
	width: 20rem;
	right: 0;
	transform: translateX(100%);
	transition: .4s all linear;
	display: flex;
	justify-content: flex-start;
	justify-items: center;
	align-items: flex-start;
	flex-direction: column;
	border-radius: 15px 0px 0px 15px;
	background-color: #680404;
	padding: 1rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	box-sizing: border-box;
}
.close{
	width: 100%;
	text-align: right;
	color: #dfdfdf;
	font-weight: bold;
	font-size: 1.2rem;
	cursor: pointer;
}
.mobile_link{
	text-transform: uppercase;
	width: 100%;
	color: #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
}
.mobile_link:hover{
	color: #afafaf;
	border-color: #afafaf;
	cursor: pointer;

}
/*Start Section------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.header{
	width: 100%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
}
.start_bg{
	width: 100%;
	min-height: 80lvh;
	position: relative;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	background-image: url(../bilder/start.jpg?v=1.0.3);
	background-size: cover;
	background-position: center;
}
.start_textbox{
	width: 40rem;
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 12%;
	transform: translateX(-55%);
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	animation: fadeinboto 1.6s forwards;
}
.start_header{
	margin: 0;
	font-size: 4.5rem;
	text-align: center;
	color: white;
	font-family: "Stardos Stencil";
    font-weight: 700;
    font-style: normal;
}
.start_copyright{
	font-size: 3rem;
	vertical-align: super;
}
.start_underliner{
	margin: 0;
	text-align: center;
	font-size: 1.2rem;
	color: white;
	margin-bottom: 2rem;
}
.start_but{
	color: white;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	padding: 1rem;
	padding-left: 2rem;
	padding-right: 2rem;
	background-color: #A02725;
}
.start_but:hover{
	cursor: pointer;
	background-color: #800705;
}
/*Section1-----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.sec1{
	align-items: flex-start;
}
.brick_background{
	width: 50%;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.sec1_leftbox{
	width: 40%;
	display: flex;
	justify-content: flex-start;
	justify-items: center;
	align-items: flex-start;
	flex-direction: column;
}
.sec1_rightbox{
	width: 60%;
	display: flex;
	justify-content: flex-start;
	justify-items: center;
	align-items: flex-start;
	flex-direction: column;
}
/*Section2-----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.section2{
	padding-bottom: 9rem;
}
.sec2_picwrapper{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
}
.sec2_picleft{
	width: 35%;
	position: absolute;
	left: 0;
}
.sec2_midwrapper{
	position: relative;
	z-index: 10;
	height: 35rem;
	width: 35%;
	background-image: url(../bilder/sec2_mid.jpg);
	background-size: cover;
	background-position: center;
	transform: translateY(10%);
	display: flex;
	justify-content: flex-end;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	padding-bottom: 4%;
	box-sizing: border-box;
}
.sec2_textbox{
	background-color: #A02725;
	padding: .6rem;
	padding-left: 2rem;
	padding-right: 2rem;
	color: white;
	font-size: .8rem;
}
.sec2_picright{
	width: 35%;
	position: absolute;
	right: 0;
}
/*Section3-----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.section3{
	padding-top: 0;
}
.sec3{
	flex-direction: column;
	gap: 1.4rem;
}
.sec3_headwrapper{
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
}
.sec3_conwrapper{
	width: 100%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	gap: 3rem;
}
.sec3_con{
	width: 25%;
	border: 1px solid rgba(127, 127, 127, 0.34);
	border-radius: 3px;
	padding: .8rem;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	gap: 5px;
}
.sec3_conpic{
	width: 20%;
}
.sec3_stylestripe{
	width: 20%;
	border-bottom: 1px solid #A02725;
}
.sec3_context{
	font-size: .9rem;
	text-align: center;
	margin: 0;
}
/*Section4-----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.section4{
	overflow:hidden;
}
.sec4{
	align-items: flex-start;
}
.brick_background2{
	pointer-events: none;
	position: absolute;
	transform: scaleX(-1);
	top: 0;
	z-index: 0;
	right: 0;
}
.sec4_left{
	position: relative;
	width: 50%;
	height: 25rem;
}
.sec4_picleft{
	position: absolute;
	width: 48.5%;
	top: 0;
	left: 0;
}
.sec4_picright{
	position: absolute;
	width: 48.5%;
	bottom: 0;
	right: 0;
}
.sec4_right{
	height: 100%;
	display: flex;
	justify-content: space-between;
	justify-items: center;
	align-items: flex-start;
	flex-direction: column;
	width: 45%;
}
.textfill{
	color: rgba(0, 0, 0, 0);
}
.sec4_headerwrapper{

}
/*Section5-----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.section5{
	padding-top: 2rem;
}
.sec5{
	flex-direction: column;
	gap: 1rem;
}
.slideshow-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}
.slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Anzahl der Slides * 100% */
}
.slides {
    min-width: 100%; /* Jede Slide nimmt 100% der Breite ein */
    height: 300px; /* Höhe der Boxen */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
.slide1 {
    
}
.slide2 {
    background-color: #33c1ff; /* Farbe für Slide 2 */
}
.slide3 {
    background-color: #33ff57; /* Farbe für Slide 3 */
}
.dot-container {
    text-align: center;
    padding: 10px;
}
.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #F07775;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}
.active-dot {
    background-color: #A02725;
}
.rate_con{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
}
.sec5_innerconleft{
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
}
.sec5_ratebox{
	padding: 1rem;
	box-sizing: border-box;
	height: 45%;
	width: 85%;
	position: relative;
	border: 1px solid #BFBFBF;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
}
.quotebox{
	padding-left: 1rem;
	padding-right: 1rem;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	transform: translateY(-50%);
	left: 5%;
	background-color: white;
}
.sec5_quotpic{
	width: 100%;
}
.frombox{
	padding-left: 1rem;
	padding-right: 1rem;
	box-sizing: border-box;
	position: absolute;
	background-color: white;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	gap: .4rem;
	bottom: 0;
	right: 5%;
	transform: translateY(50%);
}
.sec5_gbox{
	width: 2rem;
}
.sec5_ratefrom{
	font-weight: bold;
	font-size: 1rem;
	color: #554643;
}
.sec5_ratetext{
	font-size: .9rem;
}
.sec5_openrate{
	color: #A02725;
	font-weight: bold;
	cursor: pointer;
}
.styleboxl{
	height: 65%;
	width: 30px;
	border-bottom: 1px solid #BFBFBF;
	border-right: 1px solid #BFBFBF;
}
.sec5_innerconright{
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: row-reverse;
}
.styleboxr{
	height: 65%;
	width: 30px;
	border-left: 1px solid #BFBFBF;
	border-top: 1px solid #BFBFBF;
}
.coverrateings{
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.4);
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	opacity: 0;
	transition: .6s all linear;
	visibility: hidden;
}
.ratebox{
	position: relative;
	padding: 2rem;
	padding-bottom: 4rem;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	transition: all .6s linear;
	background-color: white;
	overflow-y: auto;
	height: auto;
	width: min(90vw,60rem);
}
.seeme{
	visibility: visible;
	opacity: 1;
}
.closerate{
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0;
	width: 90%;
	text-align: right;
	cursor: pointer;
}
.quotrate{
	position: absolute;
	top: 8%;
	left: 4%;
	width: 3rem;
}
.quotrateb{
	position: absolute;
	bottom: 8%;
	right: 4%;
	width: 3rem;
}
/*Section6-----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.section6{
	padding-top: 2rem;
}
.sec6{
	flex-direction: column;
	gap: 2rem;
}
.sec6_headerwrapper{
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
}
.sec6_wrapper{
	width: 100%;
	display: flex;
	justify-content: space-between;
	justify-items: center;
	align-items: flex-start;
}
.sec6_conleft{
	width: 48%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	gap: 1.6rem;
}
.sec6_conright{
	width: 48%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column-reverse;
	gap: 1.6rem;
}
.sec6_bigbox{
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	gap: 1rem;
}
.sec6_pic{
	width: 100%;
}
.sec6_artbox{
	gap: .6rem;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: flex-start;
	flex-direction: column;
}
.sec6_boxhighlite{
	text-transform: uppercase;
	margin: 0;
	font-size: .9rem;
	font-weight: bold;
	color: #7F7F7F;
}
.sec6_boxheader{
	font-weight: bold;
	font-size: 1.2rem;
	margin: 0;
}
.sec6_boxcolored{
	color: #A02725;
}
.sec6_arttext{
	margin: 0;
}
.sec6_but{
	width: 40%;
	background-color: #A02725;
	color: white;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	padding-top: .6rem;
	padding-bottom: .6rem;
	cursor: pointer;
}
.sec6_but:hover{
	background-color: #800705;
}
.tracer{
	margin-top:1rem;
}
/*Section7-----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.sec7{
	align-items: flex-start;
}
.sec7_leftcon{
	width: 40%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 3rem;
}
.sec7_headerwrapper{
	width: 100%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: flex-start;
	flex-direction: column;
}
.sec7_textbox{
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: flex-start;
	flex-direction: column;
}
.sec7_text{
	margin: 0;
}
.sec7_rightcon{
	width: 55%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	gap: .6rem;
}
.sec7_inputwrapper{
	width: 100%;
	display: flex;
	justify-content: space-between;
	justify-items: center;
	align-items: center;
}
.sec7_inputleft{
	width: 49%;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	gap: .4rem;
}
.sec7_input{
	padding-left: .4rem;
	width: 100%;
	height: 3rem;
	box-sizing: border-box;
	border: 1px solid #BFBFBF;
}
.sec7_textarea{
	height: 9.8rem;
	border: 1px solid #bfbfbf;
	width: 49%;
	box-sizing: border-box;
	resize: none;
	font-size: 1rem;
	padding-top: .6rem;
	padding-left: .4rem;
}
.sec7_sendbut{
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	margin-left: auto;
	padding: 1rem;
	padding-left: 2rem;
	padding-right: 2rem;
	background-color: #A02725;
	color: white;
}
.sec7_sendbut:hover{
	cursor: pointer;
	background-color: #800705;
}
/*Section8-----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.section8{
	padding-top: 0;
}
.sec8_maps{
	padding: 0;
	height: 20em;
	width: 100%;
}
/*Footer-------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.footer{
	padding-top: 1.2rem;
	padding-bottom: 1.2rem;
	background-color:  #252525;
}
.foot_linkwrapper{
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	font-size: 1rem;
	gap: 1rem;
}
.footerlink{
	color: white !important;
}
.codeleintag{
	color: white;
}
/*Responsive---------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1150px) {
	.section2{
		padding-top: 0rem;
	}
}
@media only screen and (max-width: 1100px) {
	.sec2_midwrapper{
		height: 32rem;
	}
}
@media only screen and (max-width: 1000px) {
	.sec2_midwrapper{
		height: 29rem;
	}
	.sec5_ratebox{
		height: 65%;
	}
	.styleboxr{
		height: 80%;
	}
	.styleboxl{
		height: 85%;
	}
	.quotrateb{
		display: none;
	}
	.sec6_but{
		width: 60%;
	}
}
@media only screen and (max-width: 950px) {
	.sec2_midwrapper{
		height: 26
		rem;
	}
	.sec2_textbox{
		padding-left: .6rem;
		padding-right: .6rem;
		font-size: .8rem;
	}
	.sec6break{
		display: none;
	}
}
@media only screen and (max-width: 900px) {
	.navbar_donobut{
		display: none;
	}
	.navbar_socialbox{
		display: none;
	}
	.navbar_link{
		display: none;
	}
	.menuopen{
		display: flex;
	}
	.sec1{
		flex-direction: column;
		gap: 1.4rem;
	}
	.sec1_leftbox{
		width: 100%;
		align-items: center;
	}
	.sec1_rightbox{
		width: 100%;
		text-align: center;
	}
	#sec1_headbr{
		display: none;
	}
	.sec4{
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}
	.sec4_left{
		width: 70%;
	}
	.sec4_right{
		align-items: center;
		width: 100%;
		text-align: center;
	}
	.sec4break{
		display: none;
	}
	.sec4_right{
		gap: 1.4rem;
		height: auto;
	}
	.textfill{
		display: none;
	}
	.sec7{
		flex-direction: column;
		gap: 2rem;
	}
	.sec7_leftcon{
		width: 100%;
		align-items: center;
		text-align: center;
		gap: .4rem;
	}
	.sec7_headerwrapper{
		justify-content: center;
		align-items: center;
	}
	.sec7_textbox{
		align-items: center;
	}
	.sec7_rightcon{
		width: 100%;
	}
	.sec7_sendbut{
		margin: 0 auto;
	}
	.foot{
		flex-direction: column;
	}
}
@media only screen and (max-width: 850px) {
	.start_bg{
		background-position-x: 80%;
	}
	.sec2_midwrapper{
		width: 40%;
		height: 24rem;
	}
	.sec3_con{
		width: 33%;
	}

}
@media only screen and (max-width: 750px) {
	.sec2_midwrapper{
		width: 43%;
		height: 22rem;
	}
	.sec3_con{
		width: 80%;
	}
	.sec3_conwrapper{
		flex-direction: column;
	}
}
@media only screen and (max-width: 700px) {
	.mobileslidehide{
		display: none;
	}
	.styleboxl{
		display: none;
	}
	.sec5_innerconleft{
		width: 100%;
	}
	.sec5_ratebox{
		width: 100%;
	}
	.sec6_wrapper{
		flex-direction: column;
	}
	.sec6_conleft{
		width: 100%;
	}
	.sec6_conright{
		width: 100%;
	}
	.sec6_artbox{
		align-items: center;
	}
	.sec6_wrapper{
		text-align: center;
		gap: 1rem;
	}
	.sec6_but{
		width: 40%;
		margin: 0 auto;
	}
	.sec6_boxheader{
		text-align: center;
	}
}
@media only screen and (max-width: 650px) {
	.sec2_picleft{
		display: none;
	}
	.sec2_picright{
		display: none;
	}
	.sec2_midwrapper{
		width: 100%;
		height: 25rem;
		background-position-y: 70%;
	}
	.sec4_left{
		width: 80%;
	}
	.section1{
		padding-bottom: 2rem;
	}
	.section2{
		padding-bottom: 7rem;
	}
	.section4{
		padding-top: 0rem;
	}
	.section7{
		padding-top: 0rem;
	}
}
@media only screen and (max-width: 600px) {
	.brick_background{
		width: 100%;
	}
	.start_textbox{
		width: 100%;
		transform: translateX(-50%) !important;
	}
	.start_header{
		font-size: 2.8rem;
	}
	.start_copyright{
		font-size: 1.8rem;
	}
	.start_underliner{
		font-size: .8rem;
	}
	.start_but{
		font-size: .8rem;
	}
	.sectionheader{
		font-size: 1.6rem;
	}
	.normal_text{
		font-size: .8rem;
	}
	.codeleintag{
		font-size: .8rem;
	}
	.foot_linkwrapper{
		flex-direction: row-reverse;
	}
}
@media only screen and (max-width: 550px) {
	.sec4_left{
		width: 90%;
	}
	.sec7_inputwrapper{
		flex-direction: column;
		gap: .4rem;
	}
	.sec7_inputleft{
		width: 100%;
	}
	.sec7_textarea{
		width: 100%;
	}
}
@media only screen and (max-width: 500px) {
	.sec4_left{
		width: 100%;
		height: 18rem;
	}
	.sec6_but{
		width: 55%;
	}
}
@media only screen and (max-width: 400px) {
	.sectionheader{
		font-size: 1.2rem;
	}
	.header_highlite{
		font-size: .9rem;
	}
}
@media only screen and (max-width: 350px) {
	.sec5_ratebox{
		height: 85%;
	}
}