
@import url('../css/fonts.css');


html, body{
    margin: 0%;
    box-sizing: border-box;
    overflow-x: hidden;
	scroll-behavior: smooth;
}

:root{

    /*      Theme colors        */
    --ourBlue:rgb(42, 92, 133);
	--text-gray: #3f4954;
    --text-light : #686666da;
    --bg-color: #0f0f0f;
    --white: #ffffff;
    --midnight: #104f55;

    /* gradient color   */
    --sky: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
	--dark-sky: linear-gradient(to right, #243949 0%, #517fa4 100%);
    --light-sky: linear-gradient(45deg, #93a5cf 0%, #e4efe9 100%);
    --extra-light-sky: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

    /*      theme font-family   */
    --Montserrat: 'Montserrat', cursive;
	--Roboto: 'Roboto', cursive;
	--WaitingForTheSunrise: "WaitingForTheSunrise", cursive;
	--Abel: 'Abel', cursive;
    --Anton: 'Anton', cursive;
    --Josefin : 'Josefin', cursive;
    --Lexend: 'Lexend', cursive;
    --Livvic : 'Livvic', cursive;
}


/* ---------------- Global Classes ---------------*/

a{
    text-decoration: none;
    color: var(--text-gray);
}

.flex-row{
    display: flex;
    flex-direction: row;    
    flex-wrap: wrap;
}

ul{
    list-style-type: none;
}

.list-style{
    list-style-type: circle;
    font-family: var(--Montserrat);
}

h1{
    font-family: var(--Montserrat);
    font-size: 2.5rem;
}

h2{
    font-family: var(--Montserrat);
}

h3{
    font-family: var(--Montserrat);
    font-size: 1.3rem;
}

button.btn{
    border: none;
    border-radius: 2rem;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-family: var(--Montserrat);
    cursor: pointer;
}

span{
    font-family: var(--Montserrat);
}

.container{
    padding-top: 1rem;
    margin: 0 5vw;
}

.text-gray{
    color: var(--text-gray);
}

p{
    font-family: var(--Montserrat);
    color: var(--text-light);
}

/* ------x------- Global Classes -------x-------*/

/* --------------- navbar ----------------- */

.nav{
    background: white;
    opacity: 0.85;
    padding: 0 2rem;
    height: 9vh;
    min-height: 9vh;
    width: 100%;
    position: fixed;
    z-index: 100;
    overflow: hidden;
    transition: 0.5s ease-in-out 0.4s;
}

.nav .nav-menu{    
    justify-content: space-between;
}

.nav .toggle-collapse{
    position: absolute;
    top: 0%;
    width: 90%;
    cursor: pointer;
    display: none;
}

.nav .toggle-collapse .toggle-icons{
    display: flex;
    justify-content: flex-end;
    padding: 1.7rem 0;
}

.nav .toggle-collapse .toggle-icons i{
    display: none;
    font-size: 1.4rem;
    color: var(--text-gray);
}

.collapse{
    height: 35rem;
    width: 20rem;
    border-radius: 0 0 3rem 0;
    transition: 0.5s ease-in-out 0.4s;
}

/* Hamburger */
.bar {
    width: 1.9rem;
    height: 1.5px;
    border-radius: 2px;
    background-color: black;
    transition: 0.5s;
    position: relative;
  }
  
  .bar:before,
  .bar:after {
    content: "";
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: black;
    transition: 0.5s;
  }
  
  .bar:before {
    transform: translateY(-9px);
  }
  
  .bar:after {
    transform: translateY(9px);
  }

  /* Animation des Hamburgers */
  .toggle-collapse.active .bar {
    transform: rotate(360deg);
    background-color: transparent;
  }
  
  .toggle-collapse.active .bar:before {
    transform: translateY(0) rotate(45deg);
  }
  
  .toggle-collapse.active .bar:after {
    transform: translateY(0) rotate(-45deg);
  }

.nav .nav-items{
    display: flex;
    margin: 0;
}

.nav .nav-items .nav-link{
    padding: 1.6rem 1rem;
    font-size: 1.1rem;
    position: relative;
    font-family: var(--Montserrat);
    font-size: 1.1rem;
}

.nav-link a::before{
    content: '';
    display: block;
    height: 4px;
    background: var(--ourBlue);
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform ease-in-out 300ms;
}

.nav-link a:hover::before{
    transform: scale(1, 1);
    transform-origin: left;
}

.nav .nav-items .nav-link:hover a{
    color: black;
}
 
.nav .nav-brand a{
    font-size: 2.5rem;
    padding: 1rem 0;
    display: block;
	color:var(--ourBlue);
    font-family: var(--WaitingForTheSunrise);
	font-weight: bolder;
}

.nav .social{
    margin-right: 4rem;
    padding: 1.4rem 0;
}

.nav .social i{
    padding: 0 .2rem;
}

.nav .social i:hover{
    color: #a1c4cf;
}

/* -------x------- navbar ---------x------- */


/* ----------------- Main Content----------- */

/* --------------- Site title ---------------- */
main .site-title{
    background: url('../media/main1.jpg');
    background-size: cover;
    position: relative;
    height: 90vh;
    margin-top: 6rem;
    /* display: flex; */
    justify-content: center;
}

main .site-title .site-background{
    padding-top: 17rem;
    text-align: left;
    color: var(--ourBlue);
}

main .site-title h1{
    margin: 2rem;
    font-family: var(--Montserrat);
    line-height: 50%;
}

main .site-title h3{
    margin: 2rem;
    font-family: var(--Montserrat);
}

main .site-title .btn{
    margin: 1.8rem;
    background: var(--light-sky);
}

main .site-title .btn:hover{
    background: transparent;
    border: 1px solid var(--ourBlue);
    color: var(--ourblue);
}

main .logo{
    margin-left: 2rem;
    width: 15%;
}
  
/* --------x------ Site title --------x------- */

/* --------------- Blog Carousel ------------ */

main .blog{
    background: url('../media/backgroundLogo1.jpg');
    background-repeat: no-repeat;
    background-position: left;
    height: 100vh;
    width: 100%;
    background-size: 21%;
}

main .blog .blog-post{
    padding-top: 6rem;
}

main .blog-post .blog-content{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 80%;
    margin: 3rem 2rem;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
	border-radius: 1rem;
}

main .blog-content  img{
    border-radius: .5rem;
}

main .blog-content .blog-title{
    padding: 2rem 0;
}

main .blog-content .btn-blog{
    padding: .7rem 2rem;
	color: white;
    background: var(--dark-sky);
    margin: 3rem;
}

main .blog-content .btn-blog:hover{
    background: transparent;
    border: 1px solid var(--ourBlue);
    color: var(--ourBlue);
}

main .blog-content span{
    display: block;
}

section .container .owl-nav{
    position: absolute;
    top: 0%;
    margin: 2rem auto;
    width: 100%;
}

.owl-nav .owl-prev .owl-nav-prev,
.owl-nav .owl-next .owl-nav-next{
	margin: 2rem;
    color: var(--text-gray);
    background: transparent;
    font-size: 2rem;
}

.owl-theme .owl-nav [class*='owl-']:hover{
    background: transparent;
    color: var(--midnight);
}

.owl-theme .owl-nav [class*='owl-']{
    outline: none;
}


/* -------x------- Blog Carousel -----x------ */

/* ---------------- Site Content ----------------*/

main .site-content{
    display: grid;
    grid-template-columns: 70% 30%;
}

main .post-content{
    width: 100%;
    margin-top: 4rem;
}

main .site-content .post-content > .post-image, .post-title{
    padding: 1rem 2rem;
    position: relative;
}

main .site-content .post-content > .post-image .post-info{
    background: var(--extra-light-sky);
    padding: 1rem;
    position: absolute;
    bottom: 0%;
    left: 20vw;
    border-radius: 3rem;
}

main .site-content .post-content > .post-image > div{
    overflow: hidden;
}

main .site-content .post-content > .post-image .img{
    width: 100%;
    transition: all 1s ease;
}

main .site-content .post-content > .post-image .img:hover{
    transform: scale(1.3);
}

main .site-content .post-content > .post-image .post-info span{
    margin: 0 .5rem;
}

main .post-content .post-title a{
    font-family: var(--Anton);
    font-size: 1.5rem;
}

.site-content .post-content .post-title .post-btn{
    padding: .7rem 1.5rem;
	color: white;
    background: var(--dark-sky);
}

main .site-content .post-content .post-title .post-btn:hover{
    background: transparent;
    border: 1px solid var(--ourBlue);
    color: var(--ourBlue);
}

.site-content .pagination{
    justify-content: center;
    color: var(--text-gray);
    margin: 4rem 0;
}

.site-content .pagination a{
    padding: .6rem .9rem;
    border-radius: 2rem;
    margin: 0 .3rem;
    font-family: var(--Montserrat);
}

.site-content .pagination .pages{
    background: var(--text-gray);
    color: var(--white);
}

.faq{
    padding-top: 4rem;
    padding-right: 2.1rem;
    margin-bottom: 4rem;
}

.panel .img{
    width: 100%;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background: whitesmoke;
    color: var(--ourBlue);
    cursor: pointer;
    padding: 20px;
    width: 100%;
    font-size: 1.2rem;
    text-align: left;
    border: solid 1px white;
    outline: none;
    transition: 0.4s;
  }

  .accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
  }
  
  .accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
    color: white;
  }

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion .active, .accordion:hover {
    font-weight: bold;
    background: white;
    color: var(--ourBlue);
  }
  
  /* Style the accordion panel. Note: hidden by default */
 .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
  }

/* -------x-------- Site Content --------x-------*/


/* --------------- Sidebar ----------------------- */

.site-content > .sidebar .category-list{
    font-family: var(--Montserrat);   

}

.site-content > .sidebar .category-list .list-items{
    background: var(--light-sky);
    padding: .4rem 1rem;
    margin: .8rem 0;
    border-radius: 3rem;
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.site-content > .sidebar .category-list .list-items div{
    font-size: .8rem;
    color:  black;
    padding: 0 .5rem;
}

.site-content .sidebar .popular-post .post-content{
    padding: 1rem 0;
}

.site-content .sidebar .popular-post h2{
    padding-top: 8rem;
}

.site-content .sidebar .popular-post .post-info{
    padding: .4rem .1rem !important;
    bottom: 0rem !important;
    left: 1.5rem !important;
    border-radius: 0rem !important;
    background: white !important;
}

.site-content .sidebar .popular-post .post-title a{
    font-size: 1rem;
}

.site-content .sidebar .newsletter{
    padding-top: 10rem;
}

.site-content .sidebar .newsletter .form-element{
    padding: .5rem 2rem;
}

.site-content .sidebar .newsletter .input-element{
    width: 80%;
    height: 1.9rem;
    padding: .3rem .5rem;
    font-family: var(--Montserrat);
    font-size: 1rem;
}

.site-content .sidebar .newsletter .form-btn{
    border-radius: 0;
    padding: .8rem 32%;
    margin: 1rem 0;
    background: var(--dark-sky);
}

.site-content .sidebar .popular-tags{
    padding: 5rem 0;
}

.site-content .sidebar .popular-tags .tags .tag{
    font-size: .8rem;
    background: var(--light-sky);
    padding: .4rem 1rem;
    border-radius: 3rem;
    margin: .4rem .6rem;
    cursor: pointer;
}


/* -------x------- Sidebar -----------x----------- */

/* ---------x------- Main Content -----x----- */


/* ----------------- Footer --------------------- */

footer.footer{
    height: 100%;
    background: var(--bg-color);
    position: relative;
}

footer.footer .container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

footer.footer .container > div{
    flex-grow: 1;
    flex-basis: 0;
    padding: 3rem .9rem;
}

footer.footer .container h2{
    color: var(--white);
}

footer.footer .container h3{
    color: var(--white);
    font-size: 1.2rem;
}

footer.footer .newsletter .form-element{
    background: black;
    display: inline-block;
}

footer.footer .newsletter .form-element input{
    padding: .5rem .7rem;
    border: none;
    background: transparent;
    color: white;
    font-family: var(--Montserrat);
    font-size: 1rem;
    width: 74%;
}

footer.footer .newsletter .form-element span{
    background: var(--light-sky);
    padding: .5rem .7rem;
    cursor: pointer;
}

footer.footer .instagram div > img{
    display: inline-block;
    width: 25%;
    height: 50%;
    margin: .3rem .4rem;
}

footer.footer .follow div i{
    color: var(--white);
    padding: 0 .4rem;
}

footer.footer .impressum{
    justify-content: left;
    margin-left: 7rem;
    font-family: var(--Montserrat);
    cursor: pointer;
}

footer.footer .rights{
    justify-content: center;
    font-family: var(--Montserrat);
}


footer.footer .rights h4 a{
    color: var(--white);
}

footer.footer .move-up{
    position: absolute;
    right: 6%;
    top: 50%;
}

footer.footer .move-up span{
    color: var(--midnight);
}

footer.footer .move-up span:hover{
    color: var(--white);
    cursor: pointer;
}

/* ---------------- Ende Footer -------------------- */


/*              Viewport less then or equal to 1130px            */

@media only screen and (max-width: 1130px){
    .site-content .post-content > .post-image .post-info{
        left: 2rem !important;
        bottom: 1.2rem !important;
        border-radius: 0% !important;
    }

    .site-content .sidebar .popular-post .post-info{
        display: none !important;
    }

    footer.footer .container{
        grid-template-columns: repeat(2, 1fr);
    }

}

/*      x       Viewport less then or equal to 1130px    x     */


/*              Viewport less then or equal to 990px            */

@media only screen and (max-width: 990px){
    .nav .nav-menu, .nav .nav-items{
        flex-direction: column;
    }

    .nav .toggle-collapse{
        display: initial;
    }

    main .site-content{
        grid-template-columns: 100%;
    }

    footer.footer .container{
        grid-template-columns: repeat(1, 1fr);
    }

}


/*        x      Viewport less then or equal to 990px       x     */


/*              Viewport less then or equal to 520px            */

@media only screen and (max-width: 520px){
    main .blog{
        height: 125vh;
    }

    .site-content .post-content > .post-image .post-info{
        display: none;
    }

    footer.footer .container > div{
        padding:  1rem .9rem !important;
    }

    footer .rights{
        padding: 0 1.4rem;
        text-align: center;
    }

    footer .impressum{
        padding: 0 1.4rem;
        text-align: right;
    }

    nav .toggle-collapse{
        width: 80% !important;
    }

}

/*        x      Viewport less then or equal to 520px       x     */