@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.wrapper-body {
    width: 100vw;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-x: hidden;
}

.blur {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* LOGIN */
.box-login {
    width: 400px;
    height: 400px;
    max-width: 90vw;
    max-height: 80vh;
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.116);

    background-color: #fff;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.row {
    width: 80%;
    height: fit-content;
    padding-top: 10px;
    padding-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid black;
}

.row input {
    width: 100%;
    height: 45px;
    outline: none;
    border: none;
    border-radius: 5px;

    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.row h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    text-align: center;
    font-weight: 700;
}

.row h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #fba000;
    text-transform: uppercase;
}

.row button {
    width: 50%;
    height: 35px;
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    border: none;
    outline: none;
    border-radius: 3px;
    transition: all 500ms ease;
}

.row button:hover {
    cursor: pointer;
    transform: translateY(-3px);
    transition: all 250ms ease;
    background-color: #141414;
}

.border-none {
    border: none;
}
/*CURRICULO*/
.input-all {
    padding: 10px;
    transition: all 500ms ease;
}

.input-all:focus {
    outline: none;
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.116);
    transition: all 250ms ease;
}

.border-top {
    border-top: 1px solid black;
}

.center {
    justify-content: center;
    align-items: center;
}

.curriculo-box {
    width: 75%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.curriculo-title {
    width: 100%;
    text-align: left;
    color: #FB7C20;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    padding-bottom: 20px;
    padding-top: 50px;
    border-top: 1px solid black;
}

.curriculo-grid {
    width: 100%;
    height: fit-content;
    padding-bottom: 50px;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
}

.two-columns {
    grid-column: span 2;
}

.three-columns {
    grid-column: span 3;
}

.grid-column-2 {
    grid-column: 2;
}

.curriculo-item {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding-top: 10px;
    transition: all 500ms ease;
}

.curriculo-item textarea {
    width: 100%;
    height: 150px;
    font-family: 'Open Sans';
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    border: none;
    background-color: #f3f3f3;
    border-radius: 10px;
    resize: none;
}

.count_caracteres{
    font-family: 'Open Sans';
    font-style: normal;
    font-size: 16px;
    align-self: flex-end;
    margin-right: 3px;
}

.curriculo-item label {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

.curriculo-item input,
select {
    width: 100%;
    height: 50px;
    border: none;
    background-color: #f3f3f3;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.height-100 input,
select {
    width: 100%;
    height: 50px;
    border: none;
    background-color: #f3f3f3;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.bi {
    height: 50px;
}

.add-curriculo-item {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #f3f3f3;
    background-image: url('../img/adicionar.png');
    background-size: 18px;
    background-position: 50%;
    background-repeat: no-repeat;
    transition: all 500ms ease;
    border: none;
}

.remove-curriculo-item {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #f3f3f3;
    background-image: url('../img/remover.png');
    background-size: 15px;
    background-position: 50%;
    background-repeat: no-repeat;
    transition: all 500ms ease;
    border: none;
}

.add-curriculo-item:hover {
    cursor: pointer;
    background-color: #a9ff81;

    transform: translateY(-3px);
    transition: all 500ms ease;
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.116);
}

.enviar-curriculo {
    width: 80%;
    max-width: 350px;
    height: 50px;
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    transition: all 500ms ease;

}

.enviar-curriculo:hover {
    cursor: pointer;
    transform: translateY(-3px);
    transition: all 250ms ease;
    background-color: #111111;

}

.remove-curriculo-item:hover {
    cursor: pointer;
    background-color: #fd5656;
    transform: translateY(-3px);
    transition: all 500ms ease;
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.116);
}

.curriculo-checkbox:focus {
    outline: none;
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.116);
    transition: all 250ms ease;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-row-left {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.flex-row {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.flex-row-center {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

/*wrapper-curriculo index*/
.wrapper-curriculo-index {
    width: 100%;
    background-color: #000000;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

.curriculo-top-index {
    width: 90%;
    min-height: 5vh;
    font-family: 'Montserrat';
    text-align: center;
    font-weight: 700;
    font-size: 1em;
    line-height: 39px;
    color: #FFFFFF;
}

.curriculo-bot-index {
    min-height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.curriculo-bot-index button {
    width: 300px;
    height: 60px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 1.2em;
    line-height: 39px;
    background-color: #fff;
    color: #000000;
    border: none;
    border-radius: 10px;
    transition: 500ms;
}

.curriculo-bot-index button:hover {
    background-color: #FB7C20;
    transform: translateY(-7px);
    transition: 250ms;
    cursor: pointer;
}
/*curriculo pdf*/
#gerar-pdf{
    width: 200px;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 10px;
    color:white;
    background-color: #000;
    font-family: 'Roboto Slab', sans-serif;
    font-size: 18px;
    transition: all 250ms ease;
}
#gerar-pdf:hover{
    transform: translateY(-2px);
    background-color: #272727;
    cursor: pointer;
    transition: all 250ms ease;
}
.wrapper-curriculo-pdf{
    width: 90%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding-top: 25px;
}
.wrapper-curriculo-pdf h1{
    font-size: 24px;
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 700;
    color: #FB7C20;
}
.wrapper-curriculo-pdf h2{
    font-size: 20px;
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 400;
}
.wrapper-curriculo-pdf h3{
    font-size: 16px;
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 300;
}
/*loading*/
#divLoading {
    position: fixed;
    right: 0px;
    top: 0px;
    width: 100vw;
    height: 100%;
    background-color: rgb(255, 160, 71);
    z-index: 9999;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease-in 0.5s;
}

#loading {
    position: absolute;
    color: White;
}

/*footer*/
footer {
    width: 100vw;
    height: 250px;
    background-color: #000000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

footer h1 {
    font-size: 2em;
    font-family: 'Montserrat', sans-serif;
    color: white;
    transition: all 0.5s ease;
    cursor: pointer;
}

footer h1:hover {
    color: #FB7C20;
    transition: all 0.5s ease;
}

footer h2 {
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: white;
}

.footer-block {
    height: 80%;
    width: 29%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}


/*header*/
.header-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 99;
    background-image: linear-gradient(180deg, #000000 5%, rgba(255, 255, 255, 0) 100%), linear-gradient(270deg, #222222 0%, rgba(0, 0, 0, 0) 30%), url('../img/um-copo-de-fotografia-macro-de-cerveja-gelada.jpg');
    background-size: cover;
    background-position-x: right;
    background-repeat: no-repeat;
    background-color: #000000;

}

.header-wrapper img {
    position: absolute;
    min-height: 100%;
    opacity: 1;
    right: 0;

}

.header-center h1 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 82px;
    line-height: 100px;
    letter-spacing: 0.095em;
    color: #FFFFFF;
}

.header-center h2 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 44px;
    color: #FFFFFF;
}

.header-center {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50%;
    left: 5%;
    z-index: 2;
    overflow: visible;

}

/*localizacao*/
.wrapper-localizacao {
    width: 100vw;
    height: 50vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.localizacao-left {
    width: 40%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 25px;
    gap: 50px;
}

.localizacao-title {
    width: 100%;
    text-align: left;
    height: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

.localizacao-title h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9em;
}

.localizacao-text {
    width: 100%;
    text-align: left;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.localizacao-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    font-weight: 400;
}

.localizacao-right {
    width: 40%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.localizacao-image img {
    height: 50px;
}

/*CMS*/
.wrapper-cms {
    width: calc(100vw - 75px);
    position: absolute;
    right: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 250ms ease;
}

.cms-top {
    position: relative;
    width: 100%;
    height: 75px;
    border-bottom: 1px solid #cacaca;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cms-top img {
    width: 200px;
}

.cms-bot {
    position: relative;
    width: 100%;
    height: calc(100vh - 75px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.sidepanel {
    width: 75px;
    height: 100vh;
    position: fixed;
    left: 0;
    margin: 0;
    border-right: 1px solid #cacaca;
    transition: all 250ms ease;
    background-color: #fff;
    z-index: 10;
}
.text-hide{
    display: none;
}
.panel-top {
    width: 100%;
    height: 75px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding:15px;

    font-family: 'Roboto Slab', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    transition: all 150ms ease;
}

.panel-top:hover{
    cursor: pointer;
}
.panel-mid {
    width: 100%;
    height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 15px;
    overflow:visible;
}

.panel-card {
    width: 100%;
    height: 60px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding-left: 10px;

    font-family: 'Roboto Slab', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 32px;
    transition: all 150ms ease;
}

.panel-card:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.panel-bot {
    width: 100%;
    height: 75px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px;

    font-family: 'Roboto Slab', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    transition: all 250ms ease;
    color: #fd5656;
}

.sidepanel img {
    width: 24px;
}
.wrapper-cms-content{
    width: 90%;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.curriculo-search{
    position: relative;
    width: 100%;
    height: 75px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.curriculo-content{
    position: relative;
    width: 100%;
    height: calc(100% - 100px);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
    overflow-y: auto;
    place-items: center;
    padding: 15px;
    gap: 2rem;
}
.curriculo-info{
    width: 295px;
    height: fit-content;
    box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.116);
    background-color: white;
    border-radius: 10px;
    display: grid;
    grid-auto-rows: 80px;
    padding: 15px;
    gap: 10px;
    grid-template-columns: repeat(2, fit-content);
    justify-content: center;
    align-items: center;
    place-items: center;
    transition: all 250ms ease;

}
.curriculo-info:hover{
    transform: translateY(-3px);
    background-color: #fcfcfc;
    transition: all 250ms ease;
}
.curriculo-info-box{
    border-radius: 10px;
    width: fit-content;
    height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: all 250ms ease;

}
.info-top{
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 700;
    font-size: 20px;
}
.info-bot{
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.estrela{
    width: 75px;
    height: 75px;
    background-image: url('../img/estrela-cinza.png');
    background-position: 50%;
    background-size: 40px;
    background-repeat: no-repeat;
    transition: all 250ms ease;
}
.estrela:hover{
    cursor: pointer;
}
.estrela-on{
    background-image: url('../img/estrela.png');

}
#curriculo-img{
    width: 75px;
    height: 75px;
    background-image: url('../img/user.png');
    background-position: 50%;
    background-size: 40px;
    background-repeat: no-repeat;
}

#curriculo-star:hover{
    background-image: url('../img/estrela.png');
    cursor: pointer;
    transition: all 250ms ease;

}
.curriculo-pag{
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto Slab', sans-serif;
    font-size: 20px;
}
.curriculo-pag img{
    width: 24px;
    transition: all 250ms ease;
}
.curriculo-pag img:hover{
    cursor: pointer;
    transition: all 250ms ease;
}
#pag-left, #pag-right{
    transition: all 250ms ease;
}
#pag-left:hover{
    transform: translateX(-3px);
    transition: all 250ms ease;
}
#pag-right:hover{
    transform: translateX(3px);
    transition: all 250ms ease;
}
.height-100{
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}
.wi-select{
    width: 15%;
}
.wi-text{
    width: 35%;
}
.height-100 button{
    width: 100%;
    height: 100%;
    background-color: #F99417;
    border: none;
    border-radius: 10px;
    background-image: url('../img/pesquisar.png');
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: 50%;
    transition: all 250ms ease;

}
.height-100 button:hover{
    background-color: rgb(255, 192, 65);
    cursor: pointer;
    transition: all 250ms ease;
}
/* NAVBAR */
*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.container {
    /*max-width: 1200px;*/
    width: 90%;
    margin: auto;
}

.navbar {
    /*box-shadow: 0px 5px 10px 0px #aaa;*/
    position: fixed;
    width: 100%;
    background: #000000;
    color: white;
    opacity: 1;
    /*0.85*/
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items {
    order: 2;
    display: flex;
}

.logo {
    order: 1;
    font-size: 1.75rem;
    font-family: 'Montserrat', sans-serif;
}

.logo:hover {
    cursor: pointer;
    color: #FB7C20;
    transition: all 500ms ease;
}

.menu-items li {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 1.5rem;
    padding: 5px 8px;
    font-size: 1.3rem;
    font-family: 'Roboto', sans-serif;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover {
    color: #FB7C20;
}

/* Dropdown button */
.dropdown .dropbtn {
    border: none;
    outline: none;
    color: white;
    padding: 5px 8px;
    background-color: inherit;
    font-size: 1.4rem;
    font-weight: 700;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    /* Important for vertical align on mobile phones */
}

.navbar a:hover,
.dropdown:hover .dropbtn {
    cursor: pointer;
    color: #FB7C20;
    transition: color 0.3s ease-in-out;

}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.377);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

@media(max-width:1024px) {}

.vagas-bot {
    padding: 25px;
}

@media (max-width: 768px) {
    .wi-select{
        width: 40%;
    }
    .wi-text{
        width: 40%;
    }
    .grid-column-2 {
        grid-column: 1;
    }
    .wrapper-cms-content{
        width: 100%;
    }
    .curriculo-content{
        width: 100%;
        padding: 0;
        padding-top: 25px;
    }
    .curriculo-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .two-columns {
        grid-column: span 1;
    }

    .vagas-title h1 {
        font-size: 1.5em;
    }

    .vagas-text h3 {
        font-size: 0.9em;
    }

    .vagas-bot {
        width: 80%;
        min-height: 50vh;
        display: grid;
        gap: 3rem;
        padding: 20px;
        grid-template-columns: repeat(auto-fill, minmax(80%, 1fr));
    }

    /* Dropdown button */
    .dropdown .dropbtn {
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-size: 1.4rem;
        font-weight: 700;
        width: 300px;
        font-family: 'Roboto', sans-serif;
        margin: 0;
        /* Important for vertical align on mobile phones */
    }

    .dropdown i {
        margin-top: 50px;
    }

    .navbar a:hover,
    .dropdown:hover .dropbtn {
        cursor: pointer;
        color: #FB7C20;
        transition: color 0.3s ease-in-out;

    }

    /* Dropdown content (hidden by default) */
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        min-width: 100%;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.377);
        z-index: 1;
        font-size: 1.4rem;
        font-weight: 500;
    }

    /* Show the dropdown menu on hover */
    .dropdown:hover .dropdown-content {
        display: block;
    }

    .header-center {
        width: 90%;
        height: 60%;
        background-size: 85%;

    }

    .wrapper-localizacao {
        width: 100vw;
        height: 60vh;
        background-color: #e7e7e7;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .localizacao-left {
        width: 90%;
        height: 80%;
        flex-direction: column;
    }

    .localizacao-title {
        gap: 30px;
    }

    .localizacao-title h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.75em;
    }

    .localizacao-text h2 {
        font-size: 1em;
    }

    .localizacao-right {
        width: 80%;
        height: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 10px;
    }

    .localizacao-image img {
        height: 30px;
    }

    footer {
        height: 30vh;
        flex-direction: column;
    }

    footer h1 {
        font-size: 2em;
        font-family: 'Montserrat', sans-serif;
        color: white;
    }

    footer h2 {
        font-size: 1em;
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        color: white;
    }

    .footer-block {
        min-height: 7vh;
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .navbar {
        opacity: 0.99;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines {
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: white;
    }

    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items {
        padding-top: 100px;
        background: #000;
        height: 100vh;
        width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-items: center;
        margin-left: -40px;
        transition: transform 0.5s ease-in-out;
        overflow: hidden;
        z-index: 2;
    }

    .navbar .menu-items li {
        margin-bottom: 1.8rem;
        font-size: 1.4rem;
        font-weight: 500;
    }

    .logo {
        position: absolute;
        top: 1.5vh;
        right: 15px;
        font-size: 1.75rem;
    }

    .navbar-container input[type="checkbox"]:checked~.menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

}
@media (max-width: 500px) {
    .navbar-container input[type="checkbox"]:checked~.logo {
        display: none;
    }
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #faad1e;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ec9d0b;
}

/*loader*/
.line {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #000000;
}

/* =Animate the stuff
  ------------------------ */
.load-1 .line:nth-last-child(1) {
    animation: loadingA 1.5s 1s infinite;
}

.load-1 .line:nth-last-child(2) {
    animation: loadingA 1.5s 0.5s infinite;
}

.load-1 .line:nth-last-child(3) {
    animation: loadingA 1.5s 0s infinite;
}

@keyframes loadingA {
    0% {
        height: 15px;
    }

    50% {
        height: 35px;
    }

    100% {
        height: 15px;
    }
}