/*
Theme Name: Blickwinkel
Author: Portalworks
Version: 1.0
*/

/****************************
           GENERAL
****************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

/* html {
    scroll-padding: 102.533px;
}

body{
	padding-top: 136.933px;
} */

img {
    width: 100%;
}

a {
    color: var(--text-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.primary-bg {
    background-color: var(--primary-color);
}

.secondary-bg {
    background-color: var(--secondary-color);
}

.custom-container {
    padding-inline: 20px;
    max-width: unset;
}

.title, .data-privacy h1 {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 29px;
    line-height: 38px;
    color: var(--primary-color);
}

.animate.title {
    opacity: 0;
    transform: translate3d(0px, 50px, 0px) scale3d(0.9, 0.9, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transition: all 0.5s ease-out;
    transform-style: preserve-3d;
}

.animate[animation='true'].title {
	opacity: 1;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}

.animate.hero-title span{
	opacity: 0;
    transition: all 0.5s ease-out;
}

.animate[animation='true'].hero-title span {
	opacity: 1;
}

section.animate-section {
	opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

section.animate-section[animation="true"] {
	opacity: 1;
    transform: translateY(0px);
}

.title p {
    margin-bottom: 0;
}

.section-title {
    font-size: 16px;
    line-height: 1;
    color: white;
    background-color: var(--primary-color);
    width: fit-content;
    padding: 5px 14px;
}

.text {
    font-family: var(--text-font);
    font-weight: 200;
    font-size: 16px;
    line-height: 120%;
    color: var(--text-color);
}

/****************************
            HEADER
****************************/
.navbar-nav {
    gap: 41px;
}

#navbar-main{
	transition: 0.3s all;
}

#navbar-main .navbar-brand img{
	transition: 0.3s all;
}

.offcanvas.offcanvas-top {
    opacity: 0;
    visibility: hidden;
    transform: unset;
    transition: all 0.5s ease-in-out;
}

.offcanvas.show:not(.hiding), .offcanvas.showing, .offcanvas.hiding, .offcanvas.show, .offcanvas.showing {
    opacity: 1;
    visibility: visible;
}

.offcanvas {
    padding-top: 45px;
    padding-bottom: 45px;
}

.offcanvas-header {
    position: absolute;
    right: 20px;
}

.btn-close {
    background-image: url("assets/images/close-icon.svg");
    width: 20px;
    height: 20px;
    background-size: 20px;
    opacity: 1;
}

.btn-close:focus, .btn-close:focus-visible {
    outline: 0;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: unset;
}

.burger-line {
    display: block;
    height: 3px;
    width: 20px;
    background-color: var(--primary-color);
}

.burger-line:nth-child(1) {
    margin-bottom: 5px;
}

.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
}

.navbar-toggler, .navbar-toggler:focus, .navbar-toggler:focus-visible {
    border: 0;
    box-shadow: none;
    outline: 0;
}

.navbar-brand img {
    max-width: 100px;
}

.menu-item a {
    font-family: var(--title-font);
    font-size: 2.5rem;
    line-height: 120%;
    color: white;
    text-decoration: none;
    font-weight: 200;
    letter-spacing: 3.2px;
    transition: all 0.3s ease-in-out;
}

.menu-item a:hover {
    font-weight: bold;
}

.footer-container {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-inline: 20px;
    max-width: unset;
}

.footer-info.text {
    font-size: 16px;
    line-height: 20px;
}

.footer {
    gap: 15px;
}

.wincasa-logo img {
    max-width: 150px;
}

@media only screen and (min-width: 768px) {
    .custom-container, .footer-container {
        padding-inline: 45px;
    }
	
/* 	html {
		scroll-padding: 128.533px;
	}
	
	body{
		padding-top: 162.933px;
	} */

    .navbar-brand img {
        max-width: 200px;
    }

    .navbar {
        padding-top: 33px;
        padding-bottom: 33px;
    }

    .burger-line {
        height: 4px;
        width: 45px;
    }

    .burger-line:nth-child(1) {
        margin-bottom: 10px;
    }

    .offcanvas-header {
        right: 45px;
    }

    .menu-item a {
        font-size: 3rem;
    }

    .footer {
        gap: unset;
    }
	
	.footer-info.text {
		font-size: 18px;
		line-height: 32px;
	}
	
	.wincasa-logo img {
		max-width: 211px;
	}
}

@media only screen and (min-width: 992px) {
/* 	body{
		padding-top: 257.367px;
	}
	html {
		scroll-padding: 162.933px;
	} */
}

@media only screen and (min-width: 1200px) {
    .custom-container {
        padding-inline: 95px;
    }

    .offcanvas-header {
        right: 67px;
    }

    .menu-item a {
        font-size: 4.5rem;
    }

    .burger-line {
        width: 77px;
    }

    .burger-line:nth-child(1) {
        margin-bottom: 19px;
    }

    .footer-container {
        padding-top: 99px;
        padding-bottom: 146px;
        padding-inline: 95px;
    }
}

@media only screen and (min-width: 1400px) {
    .title, .data-privacy h1 {
        font-size: 52px;
        line-height: 60px;
    }

    .text {
        font-size: 18px;
        line-height: 150%;
    }

    .section-title {
        font-size: 21px;
        line-height: 28px;
        letter-spacing: 1.82px;
    }
	
	.footer-info.text {
		font-size: 20px;
		line-height: 32px;
	}
	
}

@media only screen and (min-width: 1600px) {
    .offcanvas {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .menu-item a {
        font-size: 5rem;
    }

    .navbar-brand {
        padding-right: 92px;
    }

    .navbar-brand img {
        max-width: 306px;
    }

    .title, .data-privacy h1 {
        font-size: 70px;
        line-height: 80px;
    }

    .text {
        font-size: 22px;
        line-height: 150%;
    }

    .text p {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 26px;
        line-height: 34px;
        letter-spacing: 1.82px;
    }

    .footer-container {
        padding-inline: 239px;
    }

    .footer-info {
        width: 290px;
    }
}

