@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");

/* Reset styli */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

a {
    text-decoration: none;
}

/* Nawigacja */
.navbar-container {
    width: 100%;
    height: 133px;
    font-size: 1rem;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #449548;
}

nav {
    background-color: #fff;
    font-weight: 500;
}

.nav-link.dropdown-toggle .nav-link:hover {
    color: #449548;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fff;
    background-color: #449548;
}

.dropdown-menu {
    gap: 2rem;
    font-weight: 500;
    border-top: 6px solid #449548;
}

.navbar {
    text-transform: uppercase;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
}

a.dropdown-item {
    transition: all 0.2s ease-in-out;
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #555555;
    font-size: 0.9rem;
}

/* Nagłówek podstrony */
.main-image {
    width: 100%;
    min-height: 250px;
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
    overflow: hidden;
}

.main-image::after {
    content: "";
    z-index: 2;
    position: absolute;
    color: white;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    background-color: #414141;
    opacity: 0.7;
}

.main-image img {
    display: block;
    margin: auto;
    height: auto;
    max-height: 250px;
    width: auto;
    min-width: 100%;
    object-fit: cover;
    position: absolute;
}

.main-image__content {
    z-index: 3;
    position: relative;
    color: white;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
}

.main-image__breadcrumbs {
    font-size: 0.8rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.main-image__breadcrumbs a {
    color: white;
}

.main-content {
    max-width: 1100px;
}

/* Strona główna */
.start-page {
    height: calc(100vh - 131px);
    background: white;
    position: relative;
}

.start-page svg {
    position: absolute;
    bottom: 0;
}

.top-wave {
    transform: rotate(180deg);
    top: 0;
}

.zones {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    color: white;
    flex-direction: column;
}

.zone {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    flex-basis: 100%;
}

.student-zone {
    border-bottom: 1px solid black;
}

@media (min-width: 768px) {
    .zones {
        flex-direction: row;
    }

    .student-zone {
        border-bottom: none;
        border-right: 1px solid black;
    }

    .zone {
        flex-basis: 50%;
    }
}

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

.zone-links a {
    text-decoration: none;
    color: black;
    margin-right: 8px;
    margin-left: 8px;
    font-weight: 400;
    display: block;
}

.zone-links a:hover {
    text-decoration: underline;
}

.student-zone h2 {
    font-size: 140%;
    text-transform: uppercase;
    color: #449548;
}

.parent-zone h2 {
    font-size: 140%;
    text-transform: uppercase;
    color: #E85C5C;
}

.main-news {
    margin: 30px auto;
    padding: 15px;
    max-width: 1400px;
}

.main-news .col-lg-4 {
    padding: 25px;
}

.main-news-title a {
    color: #449548;
}

.main-news-intro {
    border-right: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-news-intro h2 {
    position: relative;
}

.main-news-intro h2::after {
    position: absolute;
    content: "";
    height: 4px;
    width: 60%;
    background-color: #449548;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1rem;
}

@media (max-width: 991px) {
    .main-news-intro {
        border: none !important;
    }

    .main-news {
        text-align: center;
    }
}

.features-background {
    background-color: #f9f9f9;
    width: 100%;
    margin: 0 auto;
}

.features {
    background-color: #f9f9f9;
    max-width: 1440px;
    margin: 0 auto;
}

.feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 15px 0 15px 0;
    text-align: center;
}

.feature__image {
    width: 100%;
    max-width: 80px;
}

.feature__image img {
    width: 100%;
}

.feature__name {
    margin-top: 10px;
    text-transform: uppercase;
}

.about {
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
}

.about__sub-title {
    margin: 0 auto 30px auto;
    position: relative;
    width: fit-content;
}

.about__sub-title::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    height: 4px;
    background-color: #449548;
    border-radius: 1rem;
    margin-top: 10px;
}

.about__description {
    line-height: 180%;
}

.gallery-background {
    background-color: #171717;
    width: 100%;
    padding: 40px !important;
}

.main-gallery {
    background-color: #171717;
    color: white;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.main-gallery__title {
    margin-top: 20px;
}

.main-gallery__sub-title {
    margin-bottom: 30px;
}

.main-gallery__description {
    line-height: 160%;
}

.main-gallery-card {
    color: white;
}

.main-gallery-card__photo {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.main-gallery-card__photo img {
    width: 100%;
}

.main-gallery-card__photo::after {
    display: flex;
    justify-content: center;
    align-items: center;
    content: "Zobacz galerię";
    opacity: 0;
    position: absolute;
    background-color: red;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
    transition: 0.3s all;
}

.main-gallery-card__photo:hover::after {
    opacity: 1;
    cursor: pointer;
}

.main-gallery-card__name {
    margin-top: 10px;
}

.main-gallery-card__name h5 {
    font-weight: 100;
}

.projects {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1440px;
    margin: 50px auto;
    text-align: center;
}

.projects__name a {
    color: #449548;
}

.projects__title {
    margin-top: 20px;
}

.projects__sub-title {
    margin: 0 auto 30px auto;
    position: relative;
    width: fit-content;
}

.projects__sub-title::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    height: 4px;
    background-color: #449548;
    border-radius: 1rem;
    margin-top: 10px;
}

.projects__description {
    line-height: 160%;
}

.projects .project {
    padding: 40px;
}

.projects .first-project,
.projects .second-project {
    border-right: 2px solid #ccc;
}

.recrutation__content {
    padding-left: 30px;
}

.recrutation__image {
    width: 80%;
}

.recrutation__image img {
    width: 100%;
}

.recrutation__description {
    margin-bottom: 15px;
}

.recrutation__description p {
    width: 60%;
}

.recrutation__title {
    margin-bottom: 15px;
}

.recrutation__sub-title {
    margin-bottom: 15px;
}

.recrutation__button a {
    display: block;
    padding: 15px 30px;
    background-color: #449548;
    border: none;
    color: white;
    font-size: 1.25rem;
    border-radius: 3rem;
    transition: 0.3s transform;
    width: fit-content;
}

.recrutation__button a:hover {
    transform: scale(1.05);
}

.recrutation .col-lg-6:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Sekcja aktualności */
.card {
    margin-top: 20px;
    padding-right: 0;
    padding-left: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
    transition: 0.3s all ease-in-out;
    bottom: 0;

}

.card:hover {
    bottom: 2%;
}

.card__photo {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    max-height: 300px;
}

.card__date p {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.card__photo img {
    padding: 0;
    margin: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.card__content {
    padding: 10px;
}

.card__content p {
    padding-right: 20px;
    color: gray;
}

.card__title {
    font-size: 1rem;
    font-weight: bold;
}

.card__button {
    padding: 10px 20px;
    border-radius: 0.4rem;
    margin-top: 10px;
    border: none;
    transition: 0.3s all;
    text-decoration: none;
    color: black;
    background-color: #ccc;
    display: block;
    width: fit-content;
}

.card__button:hover {
    background-color: #449548;
    color: white;
}

/* Podstrona wpisu */
.news {
    max-width: 1400px;
    margin: 20px auto;
}

.news .row {
    display: flex;
    justify-content: space-between;
}

.intro {
    max-width: 700px;
}

.post-photo {
    max-height: 1000px;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.post-excerpt {
    margin-top: 20px;
    line-height: 150%;
    max-width: 1000px;
    margin-left: 10px;
    font-size: 110%;
    position: relative;
}

.post-excerpt::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 3px;
    background-color: #449548;
    left: -10px;
}

.post-photo img {
    display: block;
    margin: auto;
    height: auto;
    width: 100%;
}

.post-title {
    position: relative;
}

.post-date {
    margin-top: 20px;
    margin-bottom: 20px;
    color: gray;
}

.fa-calendar-days {
    margin-right: 10px;
}

.post-breadcrumbs {
    margin-bottom: 10px;
}

.post-breadcrumbs a {
    text-decoration: none;
    color: black;
}

.sidebar {
    top: 155px;
    position: sticky;
    box-shadow: 0 0 10px #ccc;
    padding: 15px;
    border-radius: 1rem;
    max-width: 350px;
    margin-right: auto;
    border-top: 5px solid #449548;
}

.read-also__article {
    margin-top: 30px;
}

.read-also__photo img {
    width: 100%;
}

.read-more {
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 0.5rem;
    transition: 0.3s all;
}

.read-more:hover {
    background-color: #449548;
    color: white;
}

/* Podstrona galerie */
.galleries {
    max-width: 1200px;
}

.galleries img {
    min-height: 100%;
    object-fit: cover;
    width: 100%;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.gallery-box {
    overflow: hidden;
    color: #171717;
    position: relative;
    background-color: white;
    -webkit-box-shadow: 0 0 10px #ccc;
    box-shadow: 0 0 10px #ccc;
    margin-bottom: 20px;
    border-radius: 1rem;
    padding: 10px;
    text-align: center;
    transition: 0.3s transform;
}

.gallery-box:hover {
    transform: scale(1.03);
}

.gallery-box__title {
    position: relative;
    text-align: center;
}

.gallery-box__title::after {
    content: "";
    display: block;
    position: absolute;
    height: 4px;
    width: 70%;
    background-color: #449548;
    margin: 0 auto;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-box__main-photo {
    padding: 20px;
}

.gallery-box__main-photo img {
    border-radius: 1rem;
}

.gallery-box__date {
    display: block;
    margin-top: 20px;
}

.gallery-box__more {
    display: block;
    padding: 10px;
    background-color: #449548;
    color: white;
    text-decoration: none;
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 1rem;
    transition: 0.3s transform;
}

.gallery-box__more:hover {
    transform: scale(1.05);
    color: white;
}

/* Podstrona galerii */
.images-wrapper {
    max-width: 1400px;
    margin: 20px auto;
    line-height: 0;
    -webkit-column-count: 5;
    -webkit-column-gap: 10px;
    -moz-column-count: 3;
    -moz-column-gap: 0px;
    column-count: 3;
    column-gap: 0px;
    display: block;
    border-top: 3px solid black;
    padding-top: 20px;
}

.images-wrapper img {
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 1.5rem;
    cursor: pointer;
    opacity: 0.9;
    transition: 0.3s opacity;
}

.images-wrapper img:hover {
    opacity: 1;
}

@media (max-width: 1000px) {
    .images-wrapper {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media (max-width: 800px) {
    .images-wrapper {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media (max-width: 400px) {
    .images-wrapper {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

.gallery-title {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 10px;
    text-align: left;
    padding-left: 10px;
}

.gallery-date {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 10px;
    display: block;
    text-align: left;
    padding-left: 10px;
}

.gallery-breadcrumbs {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 30px;
    padding-left: 10px;
}

/* Podstrona jadłospis */
.dinners {
    max-width: 1100px;
}

.dinner {
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.dinner__day {
    text-transform: uppercase;
    margin-bottom: 0;
}

.dinner__date {
    color: #555555;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.24);
}

.dinner__date p {
    margin-bottom: 0;
}

.dinner__names {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}

.dinner .allergens {
    margin-top: 40px;
}

.dinner .allergens p {
    margin-bottom: 0;
}

.dinner__content {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.dinner__soup {
    flex-basis: 50%;
}

.dinner__soup h4 {
    width: 100%;
    position: relative;
}

.dinner__main-course {
    flex-basis: 50%;
}

.pagination {
    margin: 50px 0;
    color: white;
}

.pagination .row {
    margin-left: auto;
    margin-right: auto;
}

.pagination__button {
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #555555;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.pagination__button--inactive {
    background-color: #a8a8a8;
}

.pagination__button--active {
    background-color: #449548;
}

.pagination__button p {
    margin-bottom: 0;
}

/* Stopka */
.footer-top {
    padding: 50px;
    color: white;
    text-align: center;
    background-color: #171717;
    text-align: left;
}

.footer-top__title {
    font-size: 1.4rem;
}

.footer-top__description {
    padding-right: 70px;
    hyphens: auto;
}

.footer-top__list {
    padding-left: 0;
    list-style: none;
}

.footer-top__list a {
    color: #fff;
    text-decoration: none;
    display: block;
    transition: 0.3s all;
    margin-bottom: 5px;
    width: fit-content;
}

.footer-top__list a:hover {
    color: #449548;
    margin-left: 10px;
}

.footer-bottom {
    background-color: #141414;
    padding: 20px;
    color: white;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-weight: 100;
}

.footer-bottom p span {
    font-weight: bold;
}

.footer-bottom .row:first-child .col-12 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.realization {
    font-weight: bold;
    color: #449548;
}

.realization:hover {
    color: #449548;
}

/* Cookies wrapper */
.cookies-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #fff;
    max-width: 365px;
    border-radius: 15px;
    padding: 25px 25px 30px 25px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
    z-index: 10000;
    text-align: center;
}

.cookies-wrapper img {
    max-width: 100px;
}

.cookies-wrapper__content {
    margin-top: 10px;
    text-align: justify;
}

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

.cookies-wrapper__button {
    padding: 10px 20px;
    background-color: #fff;
    border: none;
    outline: none;
    font-weight: 500;
    color: #171717;
    border-radius: 5px;
    margin: 5px;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.2s all;
}

.cookies-wrapper__button:hover {
    opacity: 1;
}

.cookies-wrapper__button:nth-child(1) {
    background-color: #449548;
    color: white;
}

.cookies-wrapper__button:nth-child(2) {
    background-color: #0d6efd;
    color: white;
}

/* Podstrona kontakt */
.contact-box {
    margin: 50px auto;
    max-width: 1400px;
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 6fr;
    grid-template-areas: "form info""form map";
    grid-gap: 20px;
}

.contact-box__form {
    grid-area: form;
    padding: 40px;
    background-color: white;
    box-shadow: 0 0 10px #ccc;
    border-radius: 1rem;
    margin-left: 20px;
}

.contact-box__info {
    grid-area: info;
    padding: 40px;
    background-color: white;
    box-shadow: 0 0 10px #ccc;
    border-radius: 1rem;
    margin-right: 20px;
}

.contact-box__info h3 {
    margin-bottom: 30px;
}

.contact-box__map {
    grid-area: map;
    padding: 0;
    background-color: white;
    box-shadow: 0 0 10px #ccc;
    border-radius: 1rem;
    overflow: hidden;
    margin-right: 20px;
}

.contact-box__map iframe {
    width: 100%;
    height: 100%;
}

.formBox {
    position: relative;
    width: 100%;
}

.formBox .row50 {
    display: flex;
    gap: 20px;
}

.inputBox {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
    border-radius: 1rem;
}

.formBox .row100 .inputBox {
    width: 100%;
}

.inputBox input {
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border-radius: 1rem;
    border: 2px solid #ccc;
    transition: 0.3s border-color;
}

.inputBox input:focus,
.inputBox textarea:focus {
    border: 2px solid #449548;
}

.inputBox textarea {
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    resize: none;
    border: 2px solid #ccc;
    border-radius: 1rem;
    min-height: 220px;
    margin-bottom: 10px;
    transition: 0.3s border-color;
}

.inputBox input[type=submit] {
    background-color: #449548;
    color: #fff;
    font-size: 1.1em;
    max-width: 120px;
    cursor: pointer;
    font-weight: 500;
    padding: 14px 15px;
    border: none;
    opacity: 0.8;
    transition: 0.3s all;
}

.inputBox input[type=submit]:hover {
    opacity: 1;
}

.infoBox__address {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.infoBox__mail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.infoBox__mail h3 {
    margin-bottom: 10px;
}

.infoBox__phone {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.infoBox div span {
    min-width: 40px;
    height: 40px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #449548;
}

.infoBox div p {
    color: #000;
    margin-bottom: 0;
}

.infoBox div a {
    color: #000;
    text-decoration: none;
}

.inputBox span {
    padding-left: 7px;
    margin-top: 10px;
}

.required {
    color: red;
}

.staff {
    box-sizing: border-box;
    max-width: 1360px;
    border-radius: 1rem;
    box-shadow: 0 0 10px #ccc;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    border-top: 5px solid #449548;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.staff h1 {
    flex-basis: 100%;
}

.staff__member {
    margin-bottom: 15px;
    flex-basis: 25%;
    margin: 10px;
}

.staff__position {
    margin-top: 10px;
    margin-bottom: 8px;
    position: relative;

}

.staff__position::after {
    content: '';
    width: 50px;
    height: 5px;
    position: absolute;
    top: 105%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #449548;
    border-radius: 1rem;
}

.staff__photo img {
    width: 70%;
}

.staff h1 {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 30px;
}

/* Podstrona jadłospis */
.dinners {
    max-width: 1400px;
}

.dinners .row {
    display: flex;
    justify-content: center;
}

.dinner-box {
    margin: 20px 10px 20px 10px;
    text-align: left;
    padding: 20px;
    box-shadow: 0 0 10px #ccc;
    border-radius: 1rem;
}

.allergens {
    margin-top: 20px;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    padding: 0;
    justify-content: space-between;
    flex-wrap: wrap;
}

.alergens__allergen {
    padding: 0.3em 0.7em;
    border-radius: 1em;
    margin-right: 0.2em;
    color: #fff;
    margin-top: 10px;
}

.alergens__allergen--gluten {
    background-color: #a0855a;
}

.alergens__allergen--peanuts {
    background-color: #ed4947;
}

.alergens__allergen--celery {
    background-color: #9ec54d;
}

.alergens__allergen--mustard {
    background-color: #e0d23d;
}

.alergens__allergen--eggs {
    background-color: #fcca2b;
}

.alergens__allergen--milk {
    background-color: #a1c3e6;
}

.alergens__allergen--sesame {
    background-color: #e0c791;
}

.alergens__allergen--fish {
    background-color: #4fb3b3;
}

.alergens__allergen--soya {
    background-color: #79c3b8;
}

.dinner-box h2 {
    position: relative;
}

.dinner-box h2::after {
    content: "";
    display: block;
    position: absolute;
    height: 5px;
    border-radius: 1rem;
    margin-top: 4px;
    width: 100%;
    background-color: #449548;
}

.meals-content {
    margin-top: 30px;
}

.meals-content span.bold {
    font-weight: bold;
}

.meals-content .soup {
    margin-bottom: 20px;
}

/* Podstrona dla tekstów z admina */
.main-text {
    max-width: 1440px;
    margin: 20px auto;
    font-size: 1.1rem;
    padding-left: 20px;
    padding-right: 20px;
}

.main-text p {
    padding-top: 20px;
}

.main-text__image {
    max-width: 500px;
    border-radius: 1rem;
    overflow: hidden;
    margin-top: 20px;
}

.main-text__image img {
    width: 100%;
}

/* Media queries */
@media (max-width: 991px) {

    .projects .first-project,
    .projects .second-project {
        border: none !important;
    }
}

@media (max-width: 906px) {
    .staff {
        flex-direction: column;
    }
}

@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
    }

    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }

    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    .sidebar {
        margin-left: auto;
        margin-right: 0;
    }
}

@media (max-width: 1024px) {
    .contact-box {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "form""info""map";
    }

    .contact-box__form {
        margin-right: 20px;
    }

    .contact-box__map {
        min-height: 300px;
        margin-left: 20px;
    }

    .contact-box__info {
        margin-left: 20px;
    }

    .contact-box__info h3 {
        margin-bottom: 30px;
    }

    .formBox .row50 {
        display: flex;
        gap: 0;
        flex-direction: column;
    }

    .inputBox {
        width: 100%;
    }
}

.side-photo {
    position: absolute;
    max-width: 100px;
    transform: rotate(75deg);
    opacity: 0.6;
}

.side-photo img {
    width: 100%;
}

.pagination__link {
    color: white;
    text-decoration: none;
}

.pagination__link:hover {
    color: white;
}

.mainscreen {
    display: flex;
    align-items: center;
    position: relative;
}

@media screen and (max-width: 1200px) and (max-height: 750px) {
    .mainscreen {
        height: unset;
    }
}

@media screen and (min-width: 1200px) and (min-height: 750px) {
    .mainscreen {
        height: 70vh;
    }
}

.mainscreen__button {
    background-color: #449548;
    color: white;
    padding: 15px;
    font-size: 1rem;
    border-radius: 2rem;
    transition: 0.3s transform;
}

.mainscreen__button:hover {
    color: white;
    transform: scale(1.4);
}

.mainscreen__descriptions {
    margin-bottom: 135px;
    z-index: 5;
}

@media screen and (max-width: 769px) {
    .mainscreen__descriptions {
        object-position: top;
        width: 100%;
        margin-top: 90%;
    }
}

.mainscreen__image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.mainscreen__image img {
    float: right;
    object-fit: cover;
}

@media screen and (min-width: 769px) and (max-width: 1040px) {
    .mainscreen__image img {
        width: 44%;
    }
}

@media screen and (min-width: 1040px) {
    .mainscreen__image img {
        object-position: top;
        width: 80%;
    }
}

@media screen and (max-width: 769px) {
    .mainscreen__image img {
        object-position: top;
        width: 100%;
        height: 40%;
    }
}

@media screen and (min-width: 769px) {
    .mainscreen__image img {
        object-position: right;
        height: 100%;
    }
}

.mainscreen__icons {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 85vw;
    z-index: 2;
}

.mainscreen__strips {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100px;
}

.mainscreen__strips svg {
    width: 100%;
    height: 100%;
}

.mainscreen__descriptions-container {
    z-index: 5;
}

.mainscreen__strips2 {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100px;
    z-index: 2;
}

.mainscreen__strips2 svg {
    width: 100%;
    height: 100%;
}

.mainscreen__img {
    height: 100%;
    float: right;
}

.mainscreen__img-icons {
    height: 100%;
    float: left;
    width: 100%;
    object-fit: cover;
}

.mainscreen__maintitle {
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
    color: #449548;
}

.mainscreen__subtitle {
    display: block;
    margin-bottom: 30px;
    color: #449548;
}

.mainscreen__desc {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: black;
    display: block;
    margin-bottom: 40px;
}

.admin-panel {
    color: white;
    display: block;
    background-color: #449548;
    padding: 1em;
    border-radius: 3rem;
    transition: transform 0.3s ease-in-out;
    font-size: 1rem;
}

.admin-panel:hover {
    transform: scale(1.05);
    color: white;
}

.footer-links {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link {
    padding: 1rem;
    margin: 1em;
    background-color: #4267B2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-radius: 3em;
    width: 220px;
}

.footer-link i {
    font-size: 1.5rem;
    margin-left: 5px;
}

.footer-link.school {
  background-color: #449548;
}

.documents-list {
  margin-top: 20px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.project-item {
  box-shadow: 0 0 4px #ccc;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.project-thumbnail {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-thumbnail img {
  width: 100%;
  object-fit: contain;
}
.project-item-more {
    display: block;
    padding: 10px;
    background-color: #449548;
    color: white;
    text-decoration: none;
    width: fit-content;
    max-width: 250px;
    border-radius: 1rem;
    transition: 0.3s ease-in-out;
}

.project-item-more:hover {
  transform: scale(1.05);
  color: #fff;
}

.recrutation__image {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.recrutation__image img {
	width: 100%;
 	max-width: 700px;
}



/*# sourceMappingURL=main.css.map */
