@import url('https://fonts.cdnfonts.com/css/typewriter-condensed');

            
:root {
    --font:'Typewriter_Condensed_Demi', sans-serif;;
    --primaryColor: #1881e4;
    --whiteColor: #fff;
    --blackColor: #000;
}

html {
    scroll-behavior: smooth;
}

body {	
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;    
	background: var(--whiteColor);
	color: #333333;	
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover{
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0; 
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor); 
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

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

/*======= header-area design =======*/


.video-bg {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: 100% 0%;
    z-index: -1;
 }

 .page-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
 }

 .page-wrapper .content-box {
    background-color: #011A3C8A;
    padding: 40px 40px 40px 40px;
    transition: 0.3s;
    max-width: 845px;
    margin-inline: auto;
    margin-top: 180px;
}

.page-wrapper .content-box h4 {
    font-weight: 400;
    color: #fff;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0.8px;
}


.button-group {
  margin-top: 30px;
  display: none;
  text-align: center;
}

.button-group a {
    display: inline-block;
    margin: 0 15px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    background-color: #1C1C2B;
    padding: 15px 50px 15px 50px;
    color: #fff;
}

.button-group a:last-child {
    background-color: #97A9C2;
}

.button-group a:hover {
    opacity: 0.8;
}

.modal-form {
    position: absolute;
    left: 0;
    background-color: #1F75BB;
    border-bottom: 1px solid #5659C7;
    max-width: 700px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 100%;
    padding: 85px 70px;
    bottom: -650px;
    transition: 0.8s all cubic-bezier(.9,.16,.72,.61);
    height: 645px;
    z-index: 999;
    opacity: 0;
}

.modal-form.active {
    bottom: calc(100% - 645px);
    opacity: 1;
}

.modal-form h3 {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 45px;
    text-align: center;
}

.single-input input,
.single-input textarea {
    background-color: #FFFFFF00;
    border-color: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    border: 1px solid #f0eeee;
    padding: .7rem 1rem;
    min-height: 40px;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.single-input textarea {
    min-height: 100px;
}

.input-agree-with {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    padding-bottom: 35px;
}

.input-agree-with label {
    color: #fff;
}

.submit-button button {
    background-color: #FFFFFF;
    color: #1F75BB;
    font-size: 21px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
    padding: 16px 32px 16px 32px;
    transition: 0.2s;
}

.submit-button button:hover {
    background-color: #f4f4f4;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 99;
}

.impressum-wrapper {
    padding-block: 90px;
    color: #fff;
    font-size: 19px;
}

.impressum-wrapper .single-pera {
   padding-bottom: 15px;
}

.impressum-wrapper h3 {
    font-size: 46px;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding-bottom: 46px;
    color: #fff;
}

.impressum-wrapper h4 {
    font-size: 20px;
    color: #fff;
}


/*
====================================
Xtra Small Screen - Small Mobile
====================================
*/
@media screen and (max-width: 767px) {
.gap-x-40 {
    row-gap: 38px;
}
.page-wrapper {
	align-items: flex-start;
}
.page-wrapper .content-box {
	padding: 30px 22px 30px 22px;
	margin-top: 83px;
}
.page-wrapper .content-box h4 {
	font-size: 28px;
}
.modal-form {
	padding: 40px 25px;
}
.modal-form h3 {
	font-size: 30px;
}
.input-agree-with {
	padding-bottom: 24px;
    padding-top: 10px;
}
.input-agree-with label {
    font-size: 15px;
}
.modal-form {
	height: 610px;
}
.modal-form.active {
	bottom: calc(100% - 610px);
}
.impressum-wrapper {
    padding-block: 60px;
    font-size: 18px;
}
.impressum-wrapper h3 {
	font-size: 42px;
	padding-bottom: 35px;
}

}