/* root css  */
:root {
    --primary-color : #FFFEFA;
    --secondary-color : #000E18;
    --green :#B7F289;
    --darkgreen :#B2EB85;
    --skyblue:#A4CAF8;
    --lightblue:#6691C3;
    --gray:#80868B;
}
/* root css  */

/* font css  */
.main-title {
    font-family: 'Roboto';
    font-size: 80px;
    font-weight: normal;
    line-height: 92px;
    letter-spacing: 0;
    color: var(--secondary-color);
}

.main-title * {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
}

.main-details {
    font-family: 'Roboto';
    font-size: 24px;
    font-weight: normal;
    line-height: 36px;
    letter-spacing: 1.08px;
    color: var(--secondary-color);
}

.main-details * {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.section-title {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 56px;
    line-height: 66px;
    letter-spacing: normal;
    color: var(--secondary-color);
}

.section-title * {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.block-title {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 40px;
    line-height: 46px;
    letter-spacing: normal;
    color: var(--secondary-color);
}

.block-title * {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.card-title {
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: normal;
    color: var(--secondary-color);
}

.card-title * {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
}

.short-title {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.4px;
    color: var(--secondary-color);
}

.short-title * {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
}

.block-top-title {
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 24px;
    line-height: 28px;
    color: var(--lightblue);
}

.block-top-title * {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.block-details {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1.008px;
    color: var(--secondary-color);
}

.block-details * {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
}

.details {
    font-family: 'Roboto';
    font-weight: bold;
    line-height: 18px;
    letter-spacing: 1.008px;
    color: var(--secondary-color);
}

.details * {
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
}

.short-details {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1.2px;
    color: var(--secondary-color);
}

.short-details * {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
}

.fw-400 {
    font-weight: normal;
}

.fw-700 {
    font-weight: bold;
}
/* font css  */

/* button css start  */

.blue-btn {
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 16px;
    line-height: 28px;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--skyblue);
    color: var(--secondary-color);
    border: none;
    border-radius: 40px;
    padding: 13px 23px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.blue-btn:hover{
    cursor: pointer;
    background-color: var(--lightblue);
    color: var(--secondary-color);
}
/* button css end */


/* common css  */
*{ 
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1,h2, h3, h4, h5, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto';
    background-color: var(--primary-color);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

figure {
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1750px;
    margin: 0 auto;
    padding: 0 15px;
}
/* common css  */


/* header css start  */

.header-main {
    padding: 30px 0 20px 0;
    /*border-top: 10px solid var(--skyblue);*/
    background-color: var(--primary-color);
    position: relative;
    width: 100%;
    z-index: 99;
    transition: transform 0.3s ease-in-out, position 0.3s;
    -webkit-transition: transform 0.3s ease-in-out, position 0.3s;
    -moz-transition: transform 0.3s ease-in-out, position 0.3s;
    -ms-transition: transform 0.3s ease-in-out, position 0.3s;
    -o-transition: transform 0.3s ease-in-out, position 0.3s;
}

.header-main.fixed {
    position: fixed; 
    top: 0;
}

.header-main .navbar-brand {
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0;
    padding: 0;
}

.navbar-brand:focus-visible{
    outline: none;
}

.header-main .container-fluid {
    padding: 0;
}

.navbar-expand-lg {
    padding: 0;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
}

.nav-link {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.32px;
    font-weight: normal;
    color: var(--secondary-color);
    padding: 0 16px 0 0 !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.nav-item:last-child .nav-link {
    padding: 0 !important;
}

.nav-item .nav-link:hover {
    text-shadow: 0 0 var(--secondary-color);
}
/* header css end */


/* banner css start */

.banner-main {
    padding: 48px 0 48px 0;
}

.banner-wrp {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.banner-content {
    width: 100%;
    max-width: 590px;
    margin: 0 auto 80px 0;
}

.main-details {
    margin-top: 40px;
}

.banner-image {
    width: 587px;
    max-width: 900px;
    height: 100%;
    margin: 0 0 0 auto;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.banner-image img {
    border-radius: 8px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}
/* banner css end */

/* feature css start */

.feature-main {
    padding: 85px 0 48px 0;
}

.feature-wrp {
    width: 100%;
    max-width: 1302px;
    margin: 0 auto;
    align-items: center;
    background-color: #A4CAF8;
}

.feature-card {
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.feature-card .card-title {
    width: 100%;
}

.feature-icon {
    width: 96px;
    height: 96px;
    background-color: var(--skyblue);
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.feature-icon .material-icons {
    font-size: 54px;
}
/* feature css end */

/* advantage css start  */

.advantage-main {
    padding: 48px 0 160px 0;
}

.advantage-wrp {
    width: 100%;
    max-width: 1305px;
    margin: 0 auto;
}

.advantage-block-container {
    margin-top: 64px;
}

.advantage-block-container .advantage-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 64px;
}

.advantage-block-container .advantage-block:first-child{
    margin-top: 0px;
}

.advantage-block-container .advantage-block:nth-child(even) {
    flex-direction: row-reverse;
}

.advantage-block .advantage-content {
    width: 100%;
    max-width: 750px;
    text-align: left;
}

.advantage-block .block-details{
    margin-top: 40px;
}

.advantage-image {
    width: 100%;
    max-width: 528px;
    margin: 0 auto;
    border-radius: 10px;
}

.advantage-image img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.advantage-main .advantage-block:nth-child(even) .advantage-image {
    margin: 0 auto 0 0;
}
/* advantage css end */

/* contact css start */

.contact-main {
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

.contact-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background: var(--skyblue);
    z-index: -1;
}

.contact-wrp {
    width: 100%;
    max-width: 1302px;
    margin: 0 auto;
}

.contact-wrp .section-title {
    text-align: center;
}

.contact-wrp .contact-form {  
    margin-top: 95px;
    padding: 90px 0 52px 0;  
    background-color: var(--primary-color);
    box-shadow: 0px 4.184px 10.459px 10.459px rgba(2, 53, 60, 0.04);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.contact-form .block-title {
    width: 100%;
    max-width: 964px;
    margin: 0 auto;
    text-align: center;
}
  
form  {
    width: 100%;
    max-width: 770px;
    margin: 90px auto 0;    
}

.form-input{
    display: flex;
    flex-wrap: wrap;
}

.input-group {
    width: 50%;
    position: relative;
    margin-top: 24px;
} 

.contact-form label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--gray);
    transition: all 0.3s ease-in-out;
    background: var(--primary-color);
    padding: 0 5px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.form-input input {
    width: 100%;
    max-width: 361px;
    padding: 16px 14px;
    border:1px solid rgb(111, 111, 110);
    border-radius: 4px !important;
    outline: none;
    font-size: 18px;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
    -o-border-radius: 4px !important;
}

.contact-form  input:focus + label, .contact-form input:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    color: var(--secondary-color);
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;       
}

.radio-group {
    width: 100%;
    max-width: 596px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 24px;
}

.radio-list {
    width: fit-content;
    display: flex;
    align-items: center;
    margin:20px 16px 0 0;
}

.radio-list label{
    position: relative;
    top: unset !important;
    left: unset !important;
    font-size: 16px !important;
    padding: 0 9px;
    transform: translate(0%);
    -webkit-transform: translate(0%);
    -moz-transform: translate(0%);
    -ms-transform: translate(0%);
    -o-transform: translate(0%);
}

.radio-title.details {
    width: 100%;
    display: block;
    margin-top: 32px;
}

.form-button {
    width: 100%;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

form .bottom.short-title{ 
    width: 100%;
    max-width: 747px;
    margin: 16px auto 0 auto;
    text-align: center;    
}

form .bottom.short-title a{
    transition: all 0.3s ease-in-out;
    text-decoration: underline rgba(0, 14, 24, 0.4);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

form .bottom.short-title a:hover {
    text-decoration-color: var(--secondary-color);
    -moz-text-decoration-color: var(--secondary-color);
}

input[type=radio] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-top: .125em;
    margin-right: 4px;
    border: 2px solid var(--secondary-color);
}

input[type=radio]:hover {
    cursor: pointer;
    box-shadow: 0 0 0 .50rem rgba(0, 14, 24, 0.04);
}

input[type=radio]:checked {
    border:2px solid var(--secondary-color);
}

input:checked[type=radio] {
    background: url(../images/circle.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}

.form-check-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 .50rem rgba(0, 14, 24, 0.04);
}

.input-group:focus-visible {
    outline: none;
}

/* contact css end */

/* info css start  */

.info-main {
    padding: 90px 0;
}

.info-wrp {
    width: 100%;
    max-width: 1302px;
    margin: 0 auto;
}

.cardSlider__section {
    position: relative;
    margin-top: 70px;
}

.swiper-wrapper {
    justify-content: center;
}

.swiper-slide {
    width: 100%;
    max-width: 418px;
    height: 632px !important;
    margin: 0 24px 0 0;
    background-color: var(--skyblue);
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -ms-border-radius: 8px !important;
    -o-border-radius: 8px !important;
}

.swiper-slide:last-child {
    margin: 0;
}

.swiper-slide .card-image img {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-content {
    padding: 26px 24px;
}

.card-content .card-title {
    margin-top: 16px;
}

.card-content .block-details {
    margin-top: 16px;
}

.card-content .link  {
    text-decoration: underline;
    text-decoration-color: rgba(0, 14, 24, 0.4);
    display: block;
    margin-top: 16px;
    margin-bottom: 75px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.card-content .link:hover {
    text-decoration-color: var(--secondary-color);
    -moz-text-decoration-color: var(--secondary-color);
}

.swiper-pagination {
    display: none;
}
    
.swiper-button-prev,
.swiper-button-next{
    display: none;
    color: var(--secondary-color);
}

.swiper-button-prev::after,
.swiper-button-next::after{
    display: none;
}

/* info css end */

/* question css start  */

.question-main {
    padding: 80px 0;
}

.question-wrp {
    width: 100%;
    max-width: 1302px;
    margin: 0 auto;
}

.question-wrp .accordion {
    margin-top: 48px;
}

.accordion-header.main-details {
    margin-top: 0px;
}

.question-wrp .accordion-item {
    border: none;
    border-radius: 0px;
    border-top: 1px solid var(--secondary-color);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.question-wrp .accordion-item:last-child {
    border-bottom: 1px solid var(--secondary-color);
}

.accordion-button {
    padding: 12px 0;
}

.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: transparent;
    box-shadow: none;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.accordion-body {
    font-size: 18px;
    font-weight: normal;
    color: var(--secondary-color);
    padding: 8px 0 16px 0;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url(../images/down-arroaw.svg);
    transform: rotate(180deg);
    background-position: center;
    background-size: 24px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/down-arroaw.svg);
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
/* question css end */

/* footer css start  */

.footer-main {
    width: 100%;
    padding: 50px 0;
    border-top: 2px solid var(--secondary-color);
}

.footer-wrp {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
}

.footer-logo {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 0 0;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-content {
    display: flex;
    justify-content: right;
}

.footer-content .footer-list:nth-child(2) {
    margin-left: 215px;
}

.footer-content .footer-list:last-child {
    margin-left: 65px;
}

.footer-list ul {
    margin-top: 45px;
}

.footer-list ul li{ 
    margin-bottom: 7px;
}

.footer-list ul li:last-child {
    margin-bottom: 0px;
}

.footer-list ul li .linkedin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    margin-top: 15px;
    margin-left: -15px;
    transition: all 0.3s ease-in-out;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.footer-list ul li .linkedin-icon:hover {
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
/* footer css end */


/* <====== uber-uns page start ========> */

/* about banner css start  */

.about-banner-main {
    padding: 45px 0 45px 0;    
}

.about-banner-wrp {
    width: 100%;
    max-width: 1302px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-banner-content {
    width: 100%;
    max-width: 587px;
}

.about-banner-image {
    width: 100%;
    max-width: 585px;
}

.about-banner-image img  {
    width: 100%;
    border-radius: 8px;     
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

/* about banner css end */

/* location css start  */

.location-main {
    padding: 45px 0 165px 0;
}

.location-wrp {
    width: 100%;
    max-width: 1302px;  
    margin: 0 auto;
}

.location-container {
    margin-top: 70px;
}

.location-container .step-block:first-child .location-block{
    margin-top: 0px;
}

.step-block {
    position: relative;
}

.location-block {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 100px;
}

.step-block:nth-child(even) .location-block{
    flex-direction: row-reverse;
}

.location-block-content {
    width: 100%;
    max-width: 528px;
    text-align: left;
}

.location-block-content .block-top-title {
    text-transform: uppercase;
}

.location-block-content .block-title {
    margin-top: 24px;
}

.location-block-content .block-details {
    margin-top: 40px;
}

.location-block-image {
    width: 100%;
    max-width: 528px;    
    display: flex;
}

.location-block-image figure {
    display: flex;
}

.location-block-image img{
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.step-number {
    font-size: 40px;
    font-weight: bold;
}

.step-number * {
    font-size: inherit;
    font-weight: inherit;
}

.step-number {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--skyblue);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.step-number p {
    margin-bottom: 0px;
}

.step-block::before {
    content: "";
    position: absolute;
    top: -20%;
    left: 50%;
    width: 4px ;
    height: 50%;
    background-color: var(--skyblue);
}

.step-block::after {
    content: "";
    position: absolute;
    top: 69%;
    left: 50%;
    width: 4px;
    height: 50%;
    background-color: var(--skyblue);
}

.step-block:last-child:after {
    display: none;
}

.step-block:first-child::before {
    display: none;
}
/* location css end */

/* about us css start */

.about-main {
    padding: 80px 0 96px 0;
    position: relative;
}

.about-main::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--skyblue);
}

.about-wrp {
    width: 100%;
    max-width: 1302px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--primary-color);
    box-shadow: 0px 4.184px 10.459px 10.459px rgba(2, 53, 60, 0.04);
    position: relative;
    z-index: 1;
}

.about-top {
    margin: 32px 0;
}

.about-top .about-logo {
    width: 100%;
    max-width: 550px;
    float: left;
}

.about-top .about-logo span {
    font-size: 14px;
    font-weight: normal;
    color: var(--gray);
    letter-spacing: 1.008px;
}

.about-section-content {
    width: 100%;
}

.about-link {
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 1.008px;    
    margin-top: 32px;
}

.about-link .link {
    color: var(--lightblue);
    text-decoration: underline;
    text-decoration-color: rgba(102, 145, 195, 0.4);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-text-decoration-color: rgba(102, 145, 195, 0.4);
}

.about-link .link:hover {
    text-decoration-color: rgba(102, 145, 195, 1);
    -moz-text-decoration-color: rgba(102, 145, 195, 1);
}
/* about us css end */


/* <====== uber-uns page end ========> */

/* <====== impressum page css start ========> */

.imprint-main {
    padding: 80px 0 96px 0;
    position: relative;
}

.imprint-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--skyblue);
    z-index: -1;
}

.imprint-wrp {
    width: 100%;
    max-width: 1302px;
    margin: 0 auto;
}

.imprint-wrp .section-title {
    text-align: center;
}

.imprint-container {
    width: 100%;
    margin-top: 80px;
    padding: 80px 40px;
    border-radius: 4px;
    background-color: var(--primary-color);
    box-shadow: 0px 4.184px 10.459px 10.459px rgba(2, 53, 60, 0.04);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.imprint-container .section-title {
    text-align: left;
}

.imprint-container .block-details {
    margin: 32px 0 0 0;
}

.imprint-container .card-title {
    margin: 32px 0 0 0;
}

.imprint-container .link {
    color: var(--lightblue);
    text-decoration: underline;
    text-decoration-color: rgba(102, 145, 195, 0.4);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.imprint-container .link:hover {
    text-decoration-color: rgba(102, 145, 195, 1);
    -moz-text-decoration-color: rgba(102, 145, 195, 1);
}

.imprint-container h3 {
    font-size: 40px;
    font-weight: normal;
    line-height: 46px;
    letter-spacing: normal;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.imprint-container h5 {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: normal;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.imprint-container p {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1.008px;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.imprint-container strong {
    font-weight: bold;
}
/* <====== impressum page css end ========> */

/* <====== datenschutz page css start ========> */

.typography-main {
    padding: 60px 0 100px 0;
    position: relative;
    z-index: 1;
}

.typography-main:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--skyblue);
    z-index: -1;
}

.typography-wrp {
    width: 100%;
    max-width: 1302px;
    margin: 0 auto;
}

.typography-wrp .block-title {
    text-align: center;
}

.typography-container {
    width: 100%;
    padding: 90px 40px;
    margin-top: 60px;
    background-color: var(--primary-color);
    border-radius: 4px;
    box-shadow: 0px 4.184px 10.459px 10.459px rgba(2, 53, 60, 0.04);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.typography-container .link {
    color: var(--lightblue);
    text-decoration: underline;
    text-decoration-color: rgba(102, 145, 195, 0.4);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.typography-container .link:hover {
    text-decoration-color: rgba(102, 145, 195, 1);
    -moz-text-decoration-color: rgba(102, 145, 195, 1);
}

.typography-container h1 {
    font-size: 80px;
    font-weight: normal;
    line-height: 93px;
    letter-spacing: 0;
    color: var(--secondary-color);
    word-break: break-word;
    margin-bottom: 32px;
}

.typography-container h3 {
    font-size: 40px;
    font-weight: normal;
    line-height: 46px;
    letter-spacing: normal;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.typography-container h4 {
    font-size: 36px;
    font-weight: normal;
    line-height: 44px;
    letter-spacing: normal;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.typography-container h5 {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: normal;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.typography-container p {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1.008px;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.typography-container strong {
    font-weight: bold;
}

.typography-container ul {
    list-style: disc;
    padding: 0 0 0 22px;
    margin-bottom: 32px;
}

.typography-container ul li p {
    margin: 0;
    padding: 4px 0;
}

.typography-container ol {
    list-style: decimal;
    margin: 0;
    padding: 0 0 0 22px;
    margin-bottom: 32px;
}

.typography-container ol li p {
    margin: 0;
    padding: 4px 0;
}
/* <====== datenschutz page css end ========> */


label.error {
    font-size: 16px;
    color: #ff0000;
    display: block;
    width: 100%;
    left: 0;
    position: absolute;
    top: 100%;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

input:focus + label.error, input:not(:placeholder-shown) + label.error {
    top: 100%;
    font-size: 16px;
    color: #ff0000;
}

.form-radio {
    position: relative;
}

.alert {
    padding: 0;
    margin: 0;
    border: none;
}

.alert-success {
    background-color: transparent;
    color: #008000;
}

.alert-danger {
    background-color: transparent;
    color: #ff0000;
}