@charset "UTF-8";
/*
Theme Name: Trust Autolease theme
Theme URI: n/a
Author: YBOP
Author URI: https://youngbirdsofparadise.com/
Description: Trust Autolease custom theme!
Version: 1.0.0
Text Domain: trustautolease-theme
*/

/*
	Table of content
    1. GENERAL
        1.1 Headings
        1.2 Text
        1.3 Lists
            1.3.1 USPs list
        1.4 Initials
        1.5 Buttons
        1.6 Colors
        1.7 Socials
        1.8 Label
        1.9 Number
        1.10 Video
    2. HEADER
        2.1 Col-l
        2.2 Col-m
        2.3 Col-r
    3. MAIN
    4. FOOTER
        4.1 Form-section
        4.2 Footer-section
    RESIZE
*/

/* 1. GENERAL */
:root { 
    --grid-size-xl: 148rem;
    --grid-size-lg: 128rem;
    --grid-size-md: 108rem;
    --grid-size-sm: 88rem;
    --grid-size-xs: ;
    --grid-padding: 4rem;
    --color-blue: #00B0EE;
    --color-darkblue: #021337;
    --color-darkerblue: #010E29;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
    min-height: 100%;
    background:
        radial-gradient(ellipse 150% 20% at -20% 10%, rgba(30, 87, 168, 0.38), transparent 70%),
        radial-gradient(ellipse 150% 20% at 120% 35%, rgba(30, 87, 168, 0.38), transparent 70%),
        radial-gradient(ellipse 150% 20% at -20% 60%, rgba(30, 87, 168, 0.38), transparent 70%),
        radial-gradient(ellipse 150% 20% at 120% 75%, rgba(30, 87, 168, 0.38), transparent 70%),
        radial-gradient(ellipse 150% 20% at -20% 95%, rgba(30, 87, 168, 0.38), transparent 70%),        
        linear-gradient(#010E29, #010E29);
    background-repeat: no-repeat;
    background-size: cover;
	font-size: 62.5%;
}

body {
    background-color: transparent;
    font-family: "Inter", sans-serif;    
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    -webkit-font-smoothing: antialiased;    
    font-smoothing: antialiased;
    font-optical-sizing: auto;
    text-rendering: optimizeLegibility;
}

/* 1.1 Headings */
h1,
h2,
h3,
h4,
h5,
.faux-h1,
.faux-h2,
.faux-h3,
.faux-h4 {
    margin: 0 0 2rem;
    font-family: 'SF Pro Display';
    font-weight: 400;    
}

h1 .shield,
.faux-h1 .shield,
h2 .shield,
.faux-h2 .shield {
    position: absolute;
    background-image: url(assets/images/logo-badge-blue.svg);
    background-size: contain;
    background-position: right 100%;
    background-repeat: no-repeat;
}

h1,
.faux-h1,
h2.large {    
    font-size: 4.8rem;
    line-height: 1;
}

h1 .shield,
.faux-h1 .shield,
h2.large .shield {
    width: 4.8rem;
    height: 4.8rem;
}

h1.small,
h2,
.faux-h2,
h3.large {
    font-size: 3.6rem;
    line-height: 1.1;
}

h1.small .shield,
h2 .shield,
.faux-h2 .shield {
    width: 3.6rem;
    height: 3.6rem;
}

h3,
.faux-h3 {
    font-size: 2.8rem;
    line-height: 1.15;
}

h4,
.faux-h4 {
    margin: 0 0 1rem;
    font-size: 2.2rem;
    line-height: 1.3;
}

h5 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

/* 1.2 Text */
p {
	margin: 0 0 3rem;
}

p:empty {
    display: none;
}

p:last-child {
    margin: 0;
}

p > img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

a {
    color: white;
    text-decoration: underline;
    transition: .3s;
}

/* 1.3 Lists */
ul,
ol {
    margin: 0 0 3rem;
}

ul {
    padding-left: 2rem;
}

ol {
    padding-left: 3rem;
}

/* 1.3.1 USPs list */
ul.usps-list {
    list-style-type: none;
    padding-left: 3.5rem;
}

ul.usps-list li {
    position: relative;
}

ul.usps-list li:not(:first-child) {
    margin-top: 1rem;
}

ul.usps-list li::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    width: 2rem;
    height: 2.4rem;
    background-image: url(assets/images/logo-badge-blue.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* 1.4 Initials */
section {
    padding: 0 var(--grid-padding);
}

.row-fw,
.row-xl,
.row-lg,
.row-md,
.row-sm,
.row-xs {
    width: 100%;
    margin: 0 auto;
}

.row-xl {
    max-width: var(--grid-size-xl);
}

.row-lg {
    max-width: var(--grid-size-lg);
}

.row-md {
    max-width: var(--grid-size-md);
}

.row-sm {
    max-width: var(--grid-size-sm);
}

.row-xs {
    max-width: var(--grid-size-xs);
}

.mt-xl {
    margin-top: 16rem;
}

.mt-lg {
    margin-top: 12rem;
}

.mt-md {
    margin-top: 8rem;
}

.mt-sm {
    margin-top: 4rem;
}

.mt-none {
    margin-top: 0;
}

.mb-xl {
    margin-bottom: 16rem;
}

.mb-lg {
    margin-bottom: 12rem;
}

.mb-md {
    margin-bottom: 8rem;
}

.mb-sm {
    margin-bottom: 4rem;
}

.mb-none {
    margin-bottom: 0;
}

.pt-xl {
    padding-top: 16rem;
}

.pt-lg {
    padding-top: 12rem;
}

.pt-md {
    padding-top: 8rem;
}

.pt-sm {
    padding-top: 4rem;
}

.pt-none {
    padding-top: 0;
}

.pb-xl {
    padding-bottom: 16rem;
}

.pb-lg {
    padding-bottom: 12rem;
}

.pb-md {
    padding-bottom: 8rem;
}

.pb-sm {
    padding-bottom: 4rem;
}

.pb-none {
    padding-bottom: 0;
}

.mobile {
    display: none;
}

/* 1.5 Buttons */
.btn,
.menu-btn a {
	display: inline-block;
    padding: .8rem .8rem .8rem 2rem;
    border: .1rem solid white;
    border-radius: .7rem;
    background-color: white;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    color: var(--color-darkerblue);
    text-decoration: none;
    white-space: nowrap;
	transition: .3s;
}

.btn {
    margin: 1.5rem 1.5rem 0 0;
}

.btn::after,
.menu-btn a::after {
    content: '\f061';
    margin-left: 1.6rem;
    font-family: 'Font Awesome 6 Pro';
    width: 2.6rem;
    height: 2.6rem;
    border-radius: .3rem;
    background-color: var(--color-darkerblue);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: white;    
    transition: .3s;
}

.btn:hover,
.menu-btn a:hover {
    border-color: var(--color-blue);
    background-color: var(--color-blue);
}

.btn.transparent,
.menu-btn.transparent a {
    background-color: transparent;
    color: white;
}

.btn.transparent::after,
.menu-btn.transparent a::after {
    background-color: white;
    color: var(--color-darkerblue);
}

.btn.transparent:hover,
.menu-btn.transparent a:hover {
    background-color: var(--color-blue);
    color: var(--color-darkerblue);
}

.btn.transparent:hover::after,
.menu-btn.transparent a:hover::after {
    background-color: var(--color-darkerblue);
    color: white;
}

/* 1.6 Colors */
.blue {
    color: var(--color-blue);
}

.bgcolor-frosted {
    background-color: rgba(255,255,255,.1);
    backdrop-filter: blur(.75rem);
    -webkit-backdrop-filter: blur(.75rem);
}

/* 1.7 Socials */
.socials {
    display: flex;
    gap: 2rem;
    font-size: 2.2rem;
}

.socials a:hover {    
    color: var(--color-blue);
    text-decoration: none;
}

/* 1.8 Label */
.label {
    position: relative;
    display: inline-block;
    margin-bottom: .5rem;
    padding-left: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1rem;
    white-space: nowrap;
}

.label::before {
    content: '';
    position: absolute;
    left: 0;
    width: .1rem;
    height: 80%;
    background-color: var(--color-blue);
}

/* 1.9 Number */
.number {
    width: 3.4rem;
    height: 3.4rem;
    margin-bottom: 1rem;
    border-radius: .3rem;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;    
    color: var(--color-darkerblue);
}

/* 1.10 Video */
.video {
    position: relative;
    aspect-ratio: 16/9;
    margin-bottom: 3rem;
    border-radius: 1rem;
    overflow: hidden;
}

.video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* 2. HEADER */
header {
    position: fixed;
    z-index: 5;
    width: 100%;
    padding: 0 var(--grid-padding);
    transition: .3s;
}

header.scrolled {
    background-color: rgba(1, 14, 41, .88);
    backdrop-filter: blur(.75rem);
    -webkit-backdrop-filter: blur(.75rem);
}

header .container {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    gap: 3rem;
}

header ul.menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 3rem;
}

header ul.menu a {
    text-decoration: none;
}

header ul.sub-menu {
    display: none;
}

/* 2.1 Col-l */
header .col-l {
    flex: 1 1 auto;
}

header .col-l ul.menu li:nth-child(n+5) {
    display: none;
}

header .col-l ul.menu a {
    display: inline-block;
    padding: .1rem 0;
    border-top: .1rem solid transparent;
    border-bottom: .1rem solid transparent;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1rem;
}

header .col-l ul.menu a:hover {
    border-bottom-color: white;
}

/* 2.2 Col-m */
header .col-m {
    flex: 0 0 25.3rem;
}

header .logo-wrapper {    
    width: 25.3rem;
    height: 4.4rem;
    display: flex;
}

header .logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* 2.3 Col-r */
header .col-r {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

header .col-r ul.menu {
    gap: 1.5rem;  
}

header .col-r ul.menu li:nth-child(n+3) {
    display: none;
}

header .hamburger {
    padding: 1.2rem 2rem 1rem;
    border: .1rem solid white;
    border-radius: .7rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .1rem;
    cursor: pointer;
    transition: .3s;
}

header .hamburger:hover,
header .hamburger.active {
    background-color: white;
    color: var(--color-darkerblue);
}

header .hamburger i {
    position: relative;
    top: .1rem;
    margin-right: .5rem;
    font-size: 1.6rem;
}

/* 3. MAIN */

/* 4. FOOTER */
/* 4.1 Form-section */
footer .form-section {
    position: relative;
    margin-top: 16rem;
    padding: 0 var(--grid-padding);
    font-size: 1.6rem;
}

footer .bgimage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    mask-size: 100% 100%;
    mask-repeat: no-repeat;

    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
}

footer .bgimage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-darkerblue);
    background: linear-gradient(90deg,rgba(1, 14, 41, 1) 0%, rgba(1, 14, 41, 0) 100%);
    opacity: .5;
}

footer .form-section .container {
    position: relative;
    z-index: 1;
    padding: 9rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10rem;
}

footer .form-section .content-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .form-section .title-wrapper {
    max-width: 35rem;
    padding-top: 3rem;
}

footer .cta-text-wrapper { 
    margin-top: 5rem;
    max-width: 50rem;
}

footer .cta-wrapper {
    max-width: 30rem;
    display: inline-block;
    padding: 2.5rem;
    border-radius: 1rem;
}

footer .cta-wrapper h3,
footer .cta-wrapper .faux-h3 {
    margin-bottom: 1rem;
}

footer .cta-wrapper .btn {
    margin-top: 2rem;
}

footer .form-section .text {
    margin-top: 3rem;
}

footer .form-inner {
    padding: 3rem;
    border-radius: 1rem;
    background-color: var(--color-darkerblue);
}

/* 4.2 Footer-section */
footer .footer-section {
    position: relative;
    padding: 0 var(--grid-padding);
    font-size: 1.6rem;
    line-height: 2;
    overflow: hidden;
}

footer .footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(assets/images/logo-badge-white.svg);
    background-size: contain;
    background-position: calc(100% + 20rem) center;
    background-repeat: no-repeat;
    opacity: .0175;
}

footer .footer-section a {
    text-decoration: none;
}

footer .footer-section a:hover {
    text-decoration: underline;
}

footer .footer-section .container {
    position: relative;
    z-index: 1;
    padding: 12rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10rem;
}

footer .footer-section .col-l {
    max-width: 55rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .logo-wrapper {    
    width: 25.3rem;
    height: 4.4rem;
    display: flex;
}

footer .logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

footer .footer-section .faux-h2 {
    margin-top: 3rem;
}

footer .socials-wrapper {
    margin-top: 3rem;
}

footer .legal {
    margin-top: 3rem;
    font-size: 1.5rem;
}

footer .footer-section .col-r {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5rem;
}

/* RESIZE */
@media (max-width: 1560px) {
    /* 2. HEADER */
    /* 2.1 Col-l */
    header .col-l ul.menu li:nth-child(-n+1) {
        display: none;
    }

    /* 2.3 Col-r */
    header .col-r ul.menu li:nth-child(-n+1) {
        display: none;
    }
}

@media (max-width: 1280px) {
    /* 1. GENERAL */
    /* 1.4 Initials */
    .mt-xl {
        margin-top: 12rem;
    }

    .mt-md {
        margin-top: 6rem;
    }

    .mb-xl {
        margin-bottom: 12rem;
    }

    .mb-md {
        margin-bottom: 6rem;
    }

    .pt-xl {
        padding-top: 12rem;
    }

    .pt-md {
        padding-top: 6rem;
    }

    .pb-xl {
        padding-bottom: 12rem;
    }

    .pb-md {
        padding-bottom: 6rem;
    }

    /* 1.5 Buttons */
    .btn,
    .menu-btn a {
        display: inline-block;
        padding: .7rem .7rem .7rem 1.3rem;
    }

    .btn::after,
    .menu-btn a::after {
        margin-left: 1rem;
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.2rem;
    }

    /* 2. HEADER */
    header {
        position: absolute;
    }

    /* 2.1 Col-l */
    header .col-l {
        display: none;
    }

    /* 2.3 Col-r */
    header .menu-main-menu-rechts-container {
        margin-right: 11.4rem;
    }

    header .hamburger {
        position: fixed;
        top: 2.3rem;
        padding: .9rem 1.7rem .7rem;
        background-color: white;
        color: var(--color-darkerblue);
    }

    /* 4. FOOTER */
    /* 4.1 Form-section */
    footer .form-section {
        margin-top: 12rem;
    }
}

@media (max-width: 1100px) {
    /* 1. GENERAL */
    /* 1.1 Headings */
    h1,
    .faux-h1,
    h2.large {
        font-size: 4rem;
    }

    h1 .shield,
    .faux-h1 .shield,
    h2.large .shield {
        width: 4rem;
        height: 4rem;
    }

    h1.small,
    h2,
    .faux-h2,
    h3.large {
        font-size: 3.3rem;
    }

    h1.small .shield,
    h2 .shield,
    .faux-h2 .shield {
        width: 3.3rem;
        height: 3.3rem;
    }

    h3,
    .faux-h3 {
        font-size: 2.4rem;
    }

    h4,
    .faux-h4 {
        font-size: 2rem;
    }

    /* 4. FOOTER */
    /* 4.1 Form-section */
    footer .form-section .container {
        grid-template-columns: 3fr 5fr;
    }
}

@media (max-width: 1024px) {
    /* 4. FOOTER */
    /* 4.1 Form-section */
    footer .form-section .container {
        grid-template-columns: 1fr 1fr;
        grid-gap: 8rem;
    }

    footer .cta-wrapper {
        padding: 2rem;
    }

    /* 4.2 Footer-section */
    footer .footer-section .container {
        padding: 12rem 0 8rem;
        grid-gap: 8rem;
    }

    footer .footer-section .col-r {
        grid-gap: 3rem;
    }
}

@media (max-width: 899px) {
    /* 1. GENERAL */
    /* 1.4 Initials */
    .mt-xl,
    .mt-lg {
        margin-top: 8rem;
    }

    .mb-xl,
    .mb-lg {
        margin-bottom: 8rem;
    }

    .pt-xl,
    .pt-lg {
        padding-top: 8rem;
    }

    .pb-xl,
    .pb-lg {
        padding-bottom: 8rem;
    }

    /* 4. FOOTER */
    /* 4.1 Form-section */
    footer .form-section {
        margin-top: 8rem;
    }

    footer .form-section .container {
        grid-gap: 6rem;
    }

    /* 4.2 Footer-section */
    footer .footer-section {
        font-size: 1.5rem;
    }

    footer .footer-section .container {
        padding: 8rem 0;
        grid-gap: 6rem;
    }

    footer .footer-section .col-l {
        justify-content: inherit;
    }

    footer .footer-section .col-r {
        grid-template-columns: 1fr;
        grid-gap: 3rem;
    }
}

@media (max-width: 767px) {
    /* 1. GENERAL */
    /* 1.4 Initials */
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    /* 2. HEADER */
    /* 2.3 Col-r */
    header .menu-main-menu-rechts-container {
        display: none;
    }

    header .hamburger {
        top: 2.5rem;
        width: 3.4rem;
        height: 3.4rem;
        padding: 0;
        border: 0;
        border-radius: .3rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header .hamburger i {
        top: inher0it;
        margin-right: inherit;
    }

    header .hamburger span {
        display: none;
    }

    /* 4. FOOTER */
    /* 4.1 Form-section */
    footer .form-section .container {
        padding: 6rem 0;
        grid-template-columns: 1fr;
        grid-gap: 4rem;
    }

    footer .form-section .title-wrapper {
        padding-top: inherit;
    }

    footer .cta-text-wrapper {
        margin-top: 1rem;
    }

    footer .form-inner {
        padding: 3rem 2rem;
    }

    /* 4.2 Footer-section */
    footer .footer-section .container {
        padding: 6rem 0;
        grid-template-columns: 1fr;
        grid-gap: 3rem;
    }

    footer .socials-wrapper {
        margin-top: 2rem;
    }

    footer .legal {
        margin-top: 1rem;
    }
}

@media (max-width: 599px) {
    /* 1. GENERAL */
    :root {
        --grid-padding: 2rem;
    }

    /* 1.2 Text */
    p {
        margin: 0 0 2rem;
    }

    /* 1.3 Lists */
    ul,
    ol {
        margin: 0 0 2rem;
    }

    /* 1.10 Video */
    .video {
        margin-bottom: 2rem;
    }
}

/* ANIMATION */
@media (min-width: 768px) {
    .animated {
        opacity: 0;
        transform: translateY(-1rem);
        transition: all 0.5s ease-out;
    }

    .animated.animate {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FONT FACE */
@font-face {
    font-family: 'SF Pro Display';
    src: url('assets/fonts/SFProDisplay/700/SFProDisplay-Bold.woff2') format('woff2'),
        url('assets/fonts/SFProDisplay/700/SFProDisplay-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('assets/fonts/SFProDisplay/400/SFProDisplay-Regular.woff2') format('woff2'),
        url('assets/fonts/SFProDisplay/400/SFProDisplay-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}