/* albert-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Albert Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/albert-sans-v1-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* albert-sans-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Albert Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/albert-sans-v1-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  /* kiester - Bold */
  @font-face {
    font-family: 'kiesterbold';
    src: url('../fonts/kiester-bold-webfont.woff2') format('woff2'),
         url('../fonts/kiester-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
  
:root {
    --clr-white: white;
    --clr-black: black;
    --clr-blue: #12548D;
	--clr-blue-dark: #033D5A;
	--clr-gray: #4A4A4A;
	--clr-gray-light: #F2F2F2;

    --clr-burger: var(--clr-black);
    --clr-burger-open: var(--clr-white);
    --clr-navbarMobileBackground: var(--clr-gray);    

    --clr-navLink: var(--clr-white);
    --clr-navLinkActive : #b47800;
    --clr-navLinkHover : var(--clr-navLinkActive);

    --clr-tableBorder: black;

    --ff-kiesterbold: 'kiesterbold';
	--ff-albert_sans: 'Albert Sans';

    --fs-h1: clamp(40px,5vw,107px);
    --fs-h2: clamp(32px,4vw,53px);
    --fs-h3: clamp(28px,4vw,37px);
    --fs-h4: clamp(18px,4vw,20px);
    --fs-p: clamp(15px,2vw,19px);
}

/* GLOBAL STYLES
-------------------------------------------------- */

html {
   /* font-size: 18px;*/
}

body {
    font-family: var(--ff-albert_sans), sans-serif;
    color: var(--clr-white);
    background-color: #001f4d;
    line-height: 1.9rem;
	margin: 0;
	padding: 0;
	min-height: 100vh;
	background: radial-gradient(ellipse at top center, #00ccff 0%, #0066cc 30%, #001f4d 100%);
	background-attachment: fixed;
	font-family: sans-serif;
	color: white;
	display: flex;
	justify-content: center;
	text-align: center;
}
body.noScroll {
    overflow-y: hidden;
}
h1{
    font-family: var(--ff-kiesterbold);
    font-size: var(--fs-h1);
    line-height: clamp(35px,5vw,90px);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}
h2{
    font-family: var(--ff-kiesterbold);
    font-size: var(--fs-h2);
    font-weight: bold;
    margin: 30px 0 25px 0 !important;
}
h3{
    font-family: var(--ff-kiesterbold);
    font-size: var(--fs-h3);
    font-weight: bold;
    margin: 20px 0 23px 0 !important;
}
h4{
    font-family: var(--ff-kiesterbold);
    font-size: var(--fs-h4);
}

p{
    font-size: var(--fs-p);
    max-width: 100ch;
}

.btn,
.wp-block-file .wp-block-file__button {
    position: relative;
    background: transparent;
    color: var(--clr-black);
    border-radius: 0;
    border-top: 2px solid var(--clr-black);
    border-bottom: 2px solid var(--clr-black);
    border-left: 2px solid var(--clr-black);
}
.btn::after,
.wp-block-file .wp-block-file__button::after {
    position: absolute;
    content: '';
    background-image: url(/wp-content/themes/wptheme/assets/img/ts_button_arrow.png);
    background-repeat: no-repeat;
    background-size: 18px 40px;
    top: -2px;
    right: -18px;
    width: 18px;
    height: 40px;
}
.btn:hover {
    color: var(--clr-black);
    background-color: transparent;
    border-color: var(--clr-black);
    border-right: 0;
}

background img{
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 80px;
}


/* HEADER
-------------------------------------------------- */
header {
	margin:20px;
}
header .fullWidth{
    --contentMaxWidth: 1640px;
    --padding: 18px;
}
body:not(.home) header {
    background-color: transparent;
}
header {

    /* background: var(--clr-gray); */
    /* border-bottom-right-radius: 300px 20px; */
    /* background-color: #F5F1EC; */
}
.site-header > .container {
    position: relative;
}
.site-branding img {
    width: 70px;
    padding: 0 0;
}
.head-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}
.head-2 {
    position: absolute;
    width: 70%;
    top: 0;
    right: 15px;
    display: flex;
    justify-content: flex-end;
}




/* START
-------------------------------------------------- */
/* ################# CONTAINER ###################### */
main .container{
    /* max-width: 964px; */
}
.entry-content,
.fullWidth{
    --contentMaxWidth: 1280px;
    --breakoutWidth: 45px;
    --padding: 18px; 
    
    position: relative;
    display: grid;
    grid-template-columns: [full-width-start] 1fr var(--padding) [content-start] minmax(1px ,var(--contentMaxWidth)) [content-end] var(--padding) 1fr [full-width-end];
    /* justify-items: center; */
}

.site-header .entry-content{
    --contentMaxWidth: 1460px;
}

.entry-content > .fullWidth{
    grid-column: full-width;
    
}
.entry-content > *,
.fullWidth > *{
    grid-column: content;
}
.entry-content > .breakout{
    display: grid;
    grid-column: breakout;
    grid-template-columns: [full-width-start] 1fr var(--padding) [content-start] minmax(1px ,var(--contentMaxWidth)) [content-end] var(--padding) 1fr [full-width-end];
}
.breakout > *{
    grid-column: breakout;
}

@media (max-width: 1000px){
    .entry-content{
        grid-template-columns: [full-width-start] 1fr var(--padding) [content-start] minmax(1px ,var(--contentMaxWidth)) [content-end] var(--padding) 1fr [full-width-end];
    }
    /* .entry-content > .fullWidth{
        grid-template-columns: var(--padding) 1fr var(--padding);
    } */
    /* .entry-content > .fullWidth > *{
        grid-column: 2;
    } */
}

/* #################################################### */

.has-text-align-center {
	text-align:center;
}



/* CONTENT STYLES
-------------------------------------------------- */
.swiper.mySwiper .swiperImage img{
    width: 464px;
    height: 468px;
    object-fit: cover;
    object-position: center center;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* HEADER SUBPAGE
-------------------------------------------------- */
.section-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-block: 50px;
}
.section-header img{
    margin-bottom: 20px;
}
.section-header span{
    font-family: var(--ff-albert_sans);
    text-transform: uppercase;
    font-size: 14px;
}




/* WP-BUTTON
-------------------------------------------------- */
.wp-block-button__link{
    position: relative;
    text-decoration: none;
    border-radius: unset;
    border-top: 3px solid black;
    border-left: 3px solid black;
    border-bottom: 3px solid black;
    padding: 10px 20px;
    color: black;
}
.wp-block-button__link::after{
    content: '';
    position: absolute;
    background-image: url(/wp-content/themes/wptheme/assets/img/btn_arrow.svg);
    background-repeat: no-repeat;
    background-size: 35px 54px;
    right: -28px;
    top: -2px;
    width: 35px;
    height: 54px;    
}
.wp-block-button__link:hover{
    color: #F5F1EC;
    background-color: black;
}
.wp-block-button__link:hover::after{
    background-image: url(/wp-content/themes/wptheme/assets/img/btn_arrow_hover.svg);  
}









/* VIDEO
-------------------------------------------------- */
video{
    margin-bottom: 70px;
    grid-column: content !important;
}




/* COOKIE BANNER
-------------------------------------------------- */
.cookie-notice{
    top: unset !important;
    left: unset !important;
    bottom: 10px !important;
    right: 10px !important;
    max-width: 500px !important;
    max-height: 250px;
}
.klaro .cookie-modal .cm-btn, .klaro .context-notice .cm-btn, .klaro .cookie-notice .cm-btn {
    font-size: 14px !important;
    padding: 10px 20px !important;
}
.klaro .cookie-modal .cm-modal .cm-footer-buttons {
    flex-wrap: wrap !important;
    justify-content: space-around !important;
    gap: 20px;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body span{
    font-size: 14px;
}
.klaro .cookie-modal .cm-list-input:checked + .cm-list-label .slider, .klaro .context-notice .cm-list-input:checked + .cm-list-label .slider, .klaro .cookie-notice .cm-list-input:checked + .cm-list-label .slider {
    background-color: var(--clr-blue) !important;
}
.klaro .cookie-modal .cm-list-input.only-required + .cm-list-label .slider, .klaro .context-notice .cm-list-input.only-required + .cm-list-label .slider, .klaro .cookie-notice .cm-list-input.only-required + .cm-list-label .slider {
    background-color: var(--clr-blue) !important;
}
.klaro .cookie-modal a, .klaro .context-notice a, .klaro .cookie-notice a {
    color: var(--clr-blue) !important;
}
.klaro .cookie-modal .cm-btn.cm-btn-success, .klaro .context-notice .cm-btn.cm-btn-success, .klaro .cookie-notice .cm-btn.cm-btn-success {
    background-color: var(--clr-blue) !important;
}



.single main .entry-content{
    --contentMaxWidth: 760px;
    justify-items: flex-start;

    margin-top: 160px;
}
.single main .fullWidth {
    --contentMaxWidth: 1280px;
    margin-inline: auto;
}
.single main .post-thumbnail{
    position: relative;
    display: flex;
    justify-content: center;
    margin-inline: auto;
    max-width: 1460px;
}
.single main .post-thumbnail img{
    object-fit: cover;
    object-position: center center;
    width: 100%;
    max-height: 500px;
    max-width: 1460px;
}
.single .thumb_title{
    position: absolute;
    bottom: -70px;
    left: clamp(20px,5vw,150px);
    background-color: var(--clr-blue);
    padding: 45px 120px 78px 45px;
    color: white;
    font-family: var(--ff-bebas);
    font-size: clamp(30px,5vw,65px);
}
.single_head{
    display: flex;
    flex-direction: column;
}
.single_date{
    font-family: var(--ff-spline);
    font-size: clamp(18px,3vw,21px);
    margin-top: clamp(10px,3vw,21px);
}

.single .category {
    display: flex;
    gap: 15px;
    top: 50px;
    right: 50px;
    margin-bottom: 20px;
}
.single .category span {
    font-size: 14px;
    font-family: var(--ff-spline);
    border: 1px solid var(--clr-blue);
    color: var(--clr-blue);
    border-radius: 100vmax;
    padding: 0 15px;
}

.single h1{
    font-weight: bold;
    font-family: var(--ff-albert_sans);
}

.navigation.post-navigation{
    max-width: 1460px;
    margin-inline: auto;
}




/* CONTENT
-------------------------------------------------- */


.site-main {
    padding: 50px 0;
}
.home .site-main {
    padding-top: 0;
}
.full-width {
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    left: 50%;
    padding: 25px 0 10px 0;
}
.full-width .row > * {
    padding-left: 0;
    padding-right: 0;
}
.full-width.background {
    background: #EBEBEB;
}


/* FOOTER
-------------------------------------------------- */

.footer-2 {
    background: var(--clr-black);
    color: #fff;
    padding: 25px 0;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer .menu {
    display: flex;
    margin: 0;
    padding: 0;
    margin-left: 30px;
    list-style: none;
}
footer .menu a {
    display: inline-block;
    padding: 0 10px;
}



/* SPACES
-------------------------------------------------- */





/* RESPONSIVE
-------------------------------------------------- */
@media only screen and (min-width: 1600px) {

}
@media only screen and (max-width: 1400px) {

}
@media only screen and (max-width: 1280px) {

}
@media only screen and (max-width: 990px) {

}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 650px) {

}








/* ADMINBAR */
#wpadminbar {
    position: relative;
}
@media only screen and (max-width: 600px){
    #wpadminbar {
        position: relative;
    }
}
@media screen {
    html {
        margin-top: 0 !important;
    }
}

@media screen and ( max-width: 782px ) {
    html {
        margin-top: 0 !important;
    }
}

@media print {
    #wpadminbar {
        display: none;
    }
}



