* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    background-color: #fff;
}

/* NAVBAR START */
header {
    position: relative;
    padding: 0 ;
}

.navbar {
    
    /* ff 3.6+ */
    background:-moz-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%); 

    /* safari 5.1+,chrome 10+ */
    background:-webkit-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* opera 11.10+ */
    background:-o-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* ie 6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#F0E9E9', GradientType=0 );

    /* ie 10+ */
    background:-ms-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* global 94%+ browsers support */
    background:linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);
    width: 100%;
    height: 60px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'oswald', sans-serif;

}

.navbar li {
    list-style: none;
   
}
.navbar a {
    text-decoration: none;
    font-size: 1rem;
    color: rgb(255, 255, 255);
}


.navbar A:hover {
    color: #e32626;
    
}

.navbar ul li::after{
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #e32626;
    transition: width 0.4s;
    margin: auto;
}

.navbar ul li:hover::after{
    width: 100%;
    transition: width 0.4s;
}
.logo {
    background-image: url(/src/assets/images/logo.png);
    background-size: cover;
    background-position: center;
    width: 10rem;
    height: 10rem;

}
.navbar .logo a {
    font-size: 1.5rem;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}
.navbar .toggle_btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.action_btn {
    background-color: #fff;
    color: red !important;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;    
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}
.action_btn:hover {
    scale: 1.05;

}
.action_btn:active {
    scale: 0.95;
}

/* DROPDOWN */
.dropdown_menu {
    display: none;
    position: absolute;
    width: 300px;
    height: 0;
    top: 60px;
    right: 2rem;
    background: rgba(240, 237, 237, 0.5);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   

}

.dropdown_menu.open{
    height: auto;

}
.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.dropdown_menu a {
    text-decoration: none;
    color: #d30707;
}
.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
   
}
/* DROPDOWN END */



.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1rem;
    min-height: 92vh;
    padding: 2rem;
    font-family: 'Oswald', sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    background: rgb(243, 240, 236);
    border-radius: 2rem;
    color: #291313;
    font-family: "Oswald", sans-serif;
  }
.container__cariere {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.container__cariere img {
    width: 100%;
    height: 50rem;
    border-radius: 2rem;
    margin: 1rem;
}

/* .container__cariere p{
    text-indent: 1rem;
    text-align: justify;
    padding: 0.6rem;
} */
.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    margin-left: 1rem;
    
}

.text h1 {
    margin-bottom: 2rem;
}

.text p {
    margin: 1rem;
    text-align: justify;
    text-indent: 1rem;
}


/* RESPONSIVE PART */

@media (max-width: 992px) {
    .navbar .links,
    .navbar .action_btn {
        display: none;
    }
    .navbar .toggle_btn {
        display: block;
        margin-right: 5px;
    }
    .dropdown_menu {
        display: block;
    }
    .container {
        flex-direction: column;

    }
    .container__cariere {
        flex-direction: column;
    }
    .container__cariere img {
        height: 20rem;
    }
}

@media (max-width: 547px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }
    .text h1  {
        align-items: center;
        display: flex !important;
        align-items: center !important;
        justify-content: center;
    }

    .text p {
        width: 120%;
        margin: 0;
        text-indent: 1rem;
        }

    
    .text h4 {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 1rem;
        margin-top: 1rem;
        
    }
}




/* Footer */
.footer {
    position: relative;
    width: 100%;
    /* ff 3.6+ */
    background:-moz-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%); 

    /* safari 5.1+,chrome 10+ */
    background:-webkit-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* opera 11.10+ */
    background:-o-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* ie 6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#F0E9E9', GradientType=0 );

    /* ie 10+ */
    background:-ms-linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);

    /* global 94%+ browsers support */
    background:linear-gradient(90deg, rgba(240, 233, 233, 1) 0%, rgba(247, 222, 222, 1) 12%, rgba(255, 0, 0, 1) 100%);
    min-height: 75px;
    padding: 10px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .social-icon,
  .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  .social-icon__item,
  .menu__item {
    list-style: none;
  }
  
  .social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  .social-icon__link:hover {
    transform: translateY(-10px);
  }
  
  .menu__link {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
    font-weight: 300;
  }
  
  .menu__link:hover {
    opacity: 1;
  }
  
  .footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 0.8rem;
    font-family: 'oswald', sans-serif;
    font-weight: 300;
  }
  .sigle {
    display: flex;
    align-items: center;
}

.sigle img {
    height: 3rem;
    margin-right: 0.5rem;
}
  /* Footer END */
  
  