
.leave-request__circle {
    z-index: 999;
    cursor: pointer;
    transition: .2s;
    width: 80px;
    height: 80px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leave-request__circle:hover {
    opacity: .7;
}

.leave-request__circle svg {
    position: absolute;
    z-index: 999
}

.leave-request__circle div {
    position: absolute;
    background-color: #22BCA2;
    border-radius: 50%;
}

.leave-request__circle div:nth-child(1) {
    width: 80px;
    height: 80px;
    opacity: .3;
    animation: first_circle 2s infinite;
}

.leave-request__circle div:nth-child(2) {
    width: 65px;
    height: 65px;
    opacity: .7;
    animation: first_circle 1s infinite;
}

.leave-request__circle div:nth-child(3) {
    width: 50px;
    height: 50px;
    opacity: 1;
}

@keyframes first_circle {
    0% {
        transform: scale(1);
        opacity: 0.3
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5
    }
    100% {
        transform: scale(1);
        opacity: 0.3
    }
}

body {
    background-color: #F3F3F3;
}

body::-webkit-scrollbar {
    width: 0px;
}

main {
    position: relative;
    width: 100vw;
    margin-top: 121px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section {
    margin-top: 50px;
    width: 1240px;
    display: flex;
}

@media (max-width: 1280px) {
    section {
        margin-top: 50px;
        width: 94vw;
        display: flex;
    }
}

.container__title {
    margin-top: 40px;
    margin-bottom: 35px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container__title h1{
    /* white-space: nowrap; */
    width: 70%;
    text-transform: uppercase;
    font-family: 'Futura PT Book', sans-serif;
    font-size: 30px;
}

@media (max-width: 590px) {
    .container__title {
        margin-top: 40px;
        width: 100%;
    }

    .container__title h1 {
        font-size: 23px;
    }
}

/* LEAVE REQUEST */

.leave-request {
    margin-top: 50px;
    margin-bottom: 100px;
    position: relative;
    width: 100%;
    display: flex;
    height: 300px;
    background-color: #34333B;
}

.leave-request__backdrop-image {
    z-index: 0;
    height: 110%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.leave-request__backdrop-image img{
    height: 100%;
}

.leave-request__submit-button {
    z-index: 99;
    transition: .2s;
    cursor: pointer;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 70px;
    background-color: #22BCA2;
    position: absolute;
    bottom: 0;
    right: 0;
}

.leave-request__submit-button:hover {
    background-color: #20aa93;
    border-top-left-radius: 5px;
}

.leave-request__submit-button:hover img{
    transform: translateX(5px);
}

.leave-request__submit-button span {
    white-space: nowrap;
    margin-left: 40px;
    color: #fff;
    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 300;
}

.leave-request__submit-button img {
    transition: .2s;
    margin-right: 40px;
    width: 12px;
    height: 12px;
    margin-left: 20px;
}

.leave-request__content {
    z-index: 1;
    width: 100%;
    padding-left: 60px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.leave-request__content h5 {
    font-family: 'Circe', sans-serif;
    color: #22BCA2;
    font-weight: 400;
    margin-bottom: 30px;
}

.leave-request__content h1 {
    text-transform: uppercase;
    font-family: 'Futura PT Book', sans-serif;
    font-size: 34px;
    color: #fff;
}

.leave-request__content p {
    margin-top: 20px;
    width: 50%;
    font-weight: 300;
    font-family: 'Circe', sans-serif;
    color: #8C8C8C
}

@media (max-width: 830px) {
    .leave-request {
        margin-top: 0px;
        flex-direction: column;
        height: 500px;
    }

    .leave-request__backdrop-image {
        display: flex;
        justify-content: center;
        z-index: 0;
        height: 100%;
        width: 100%;
        position: absolute;
        bottom: -3px;
        right: 0;
    }

    .leave-request__backdrop-image img{
        height: 60%;
        position: absolute;
        bottom: 0px;
    }

    .leave-request__content {
        padding-left: 20px;
    }

    .leave-request__content h5 {
        margin-top: 30px;
        font-family: 'Circe', sans-serif;
        color: #22BCA2;
        font-weight: 400;
        margin-bottom: 25px;
    }

    .leave-request__content h1 {
        text-transform: uppercase;
        font-family: 'Futura PT Book', sans-serif;
        font-size: 26px;
        color: #fff;
    }

    .leave-request__content p {
        margin-top: 15px;
        width: 80%;
        font-weight: 300;
        font-family: 'Circe', sans-serif;
        color: #8C8C8C
    }
}

.leave-request__light {
    margin-top: 50px;
    width: 100%;
    height: 343px;
    background-color: #fff;
    position: relative
}

.leave-request__light__background-image {
    user-select: none;
    position: absolute;
    bottom: 0;
    right: 0;
}

.leave-request__light__foreground-image {
    user-select: none;
    position: absolute;
    z-index: 3 !important;
    bottom: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.leave-request__light__foreground-image img {
    height: 110%;
}

.leave-request__light__content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 50%;
    height: 100%;
    padding: 0 0 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leave-request__light__content p {
    font-family: 'Circe', sans-serif;
    color: #22BCA2;
    font-size: 17px;
}

.leave-request__light__content .hidden__span {
    font-family: 'Circe', sans-serif;
    color: #8C8C8C;
    display: none;
    font-size: 17px;
    margin-top: 10px;
}

.leave-request__light__content h1 {
    margin-top: 20px;
    text-transform: uppercase;
    font-family: 'Futura PT Book', sans-serif;
    color: #34333B;
    font-size: 34px;
}

.leave-request__light__content h1 span {
    color: #22BCA2;
}

.leave-request__light__content__additional {
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.leave-request__light__content__additional__item {
    /* width: 40%; */
    display: flex;
    align-items: center;
    font-family: 'Circe', sans-serif;
    color: #8C8C8C;
}

.leave-request__light__content__additional__item img {
    margin-right: 15px;
}

.leave-request__light__content__additional__item:last-child {
    margin-left: 30px;
}


@media (max-width: 1120px) {

    .leave-request__light {
        margin-top: 130px;
        width: 100%;
        height: 343px;
        background-color: #fff;
        position: relative
    }

    .leave-request__light__content {
        width: 70%;
    }

    .leave-request__light__content__additional {
        display: none;
    }

    .leave-request__light__content .hidden__span {
        display: block;
    }

    /* .leave-request__light__background-image {
        user-select: none;
        position: absolute;
        bottom: 0;
        right: 0;
    } */
    .leave-request__light__background-image {
        width: 60%;
        height: 100%
    }

    .leave-request__light__background-image img {
        height: 100%;
    }

    .leave-request__light__foreground-image {
        height: unset;
        width: 60%;
    }
}

@media (max-width: 640px) {

    .leave-request__light {
        overflow: hidden;
        margin-top: 40px;
        width: 100%;
        height: 500px;
        background-color: #fff;
        position: relative
    }

    .leave-request__light__content {
        z-index: 4;
        width: 100%;
        height: 50%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
    }

    .leave-request__light__content p {
        width: 80%;
        font-size: 17px;
    }

    .leave-request__light__content .hidden__span {
        font-size: 17px;
        margin-top: 10px;
    }

    .leave-request__light__content h1 {
        margin-top: 20px;
        font-size: 24px;
    }

    .leave-request__light__content__additional {
        display: none;
    }

    .leave-request__light__content .hidden__span {
        display: block;
    }

    .leave-request__light__background-image {
        width: 94vw;
        height: 94vw;
        transform: rotateZ(-180deg);
    }

    .leave-request__light__background-image img {
        height: 100%;
    }

    .leave-request__light__foreground-image {
        z-index: 3;
        height: unset;
        width: 100%;
    }
}


/* BLUE LEAVE REQUEST  */

.leave-request__form {
    overflow: hidden;
    margin-bottom: 100px;
    width: 100%;
    height: 600px;
    position: relative;
    background: linear-gradient(0deg, #A2BCC2, #A2BCC2);
    /* transform: matrix(-1, 0, 0, 1, 0, 0); */
}

.leave-request__form .leave-request__form__background-image {
    position: absolute;
    height: 100%;
    object-fit: cover;
    right: -40px;
    bottom: 0;
}

.leave-request__form__content {
    padding-left: 60px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leave-request__form__content span {
    color: #fff;
    font-family: 'Circe', sans-serif;
    font-size: 17px;
}

.leave-request__form__content h1 {
    margin-top: 30px;
    text-transform: uppercase;
    font-family: 'Futura PT Book', sans-serif;
    font-size: 34px;
    color: #34333B;
}

.leave-request__form__content p {
    margin-top: 20px;
    color: #68686F;
    font-size: 17px;
    font-family: 'Circe', sans-serif;
}

.leave-request__form__submit__btn {
    margin-top: 50px;
    transition: .2s;
    cursor: pointer;
    width: 250px;
    height: 80px !important;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leave-request__form__submit__btn div {
    margin: 0;
    padding: 0;
    display: block;
    color: #34333B;
    font-family: 'Circe', sans-serif;
    font-size: 18px;
}

.leave-request__form__submit__btn img {
    transition: .2s;
    width: 13px !important;
    height: 13px !important;
    margin-left: 30px;
}

.leave-request__form__submit__btn:hover {
    background-color: #f1f1f1;
}

.leave-request__form__submit__btn:hover img{
    transform: translateX(5px)
}

.leave-request__form__content h6 {
    margin-top: 30px;
    width: 60%;
    font-weight: 300;
    color: #EEEEEE;
    font-size: 14px;
    font-family: 'Circe', sans-serif;
}

.leave-request__form__content h6 a {
    color: #EEEEEE;
    text-decoration: underline;
}

.leave-request__form__content__form {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.leave-request__form__content__form input {
    width: 220px;
    margin-right: 40px;
    font-family: 'Circe', sans-serif;
    font-size: 17px;
    border-bottom: 1px solid #ccc;
    height: 45px;
    font-weight: 400;
    padding-left: 15px;
    color: #fff;
    transition: .2s;
}

.leave-request__form__content__form input:focus {
    border-bottom: 1px solid #fff;
}

.leave-request__form__content__form input::placeholder {
    color: #F3F3F3;
}

@media (max-width: 1070px) {
    .leave-request__form .leave-request__form__background-image {
        height: 80%;
    }

    .leave-request__form__content {
        width: 60%;
    }
}

@media (max-width: 890px) {
    .leave-request__form .leave-request__form__background-image {
        height: 70%;
    }

    .leave-request__form__content {
        width: 70%;
    }
}

@media (max-width: 780px) {
    .leave-request__form {
        overflow: hidden;
        margin-bottom: 3vw;
        width: 100%;
        height: 720px;
        position: relative;
        background: linear-gradient(0deg, #A2BCC2, #A2BCC2);
        /* transform: matrix(-1, 0, 0, 1, 0, 0); */
    }

    .leave-request__form .leave-request__form__background-image {
        height: 50%;
        width: 150%;
        right: -40px;
        object-fit: cover;
    }

    .leave-request__form__content {
        justify-content: flex-start;
        width: 100%;
        padding: 30px 20px 20px 20px;
    }

    .leave-request__form__content h6 {
        order: 5;
        width: 100%;
    }

    .leave-request__form__submit__btn {
        order: 6;
    }

    .leave-request__form__content__form {
        flex-direction: column;
        align-items: flex-start;
    }

    .leave-request__form__content__form input{
        border-radius: 0;
        margin-left: 0;
        width: 80%;
    }

    .leave-request__form__content__form input:first-child {
        margin-bottom: 15px
    }

    .leave-request__form__content span {
        color: #fff;
        font-family: 'Circe', sans-serif;
        font-size: 15px;
    }

    .leave-request__form__content h1 {
        margin-top: 20px;
        text-transform: uppercase;
        font-family: 'Futura PT Book', sans-serif;
        font-size: 28px;
        color: #34333B;
    }

    .leave-request__form__content p {
        margin-top: 20px;
        color: #68686F;
        font-size: 16px;
        font-family: 'Circe', sans-serif;
    }
}

/* PARTNERS  */

.dark-full-screen__background {
    width: 100vw;
    background-color: #29282E;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners-subtitle {
    margin-bottom: 30px;
    width: 50%;
    color: #68686F;
    font-size: 17px;
    font-family: 'Circe', sans-serif;
}

.partners-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.partners-container__item {
    width: calc(1240px / 5);
    height: calc(1240px / 5);
    border: 1px solid #34333B;
}

.partners-container__item__logo {
    transition: .2s;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-container__item__logo:hover {
    background-color: #22BCA2;
}

.partners-container__item__logo img {
    transition: .2s;
}

.partners-container__item__logo:hover img {
    animation: partners_logo_animation .6s;
}

/* .partners-container__item__logo:last-child:hover img {
    animation: none;
} */

@keyframes partners_logo_animation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.partners-container__item__logo div {
    display: flex;
    align-items: center;
}

.partners-container__item__logo div span {
    font-family: 'Circe', sans-serif;
    color: #fff;
    font-size: 18px;
}

.partners-container__item__logo div img {
    visibility: hidden;
    width: 12px;
    margin-left: 10px;
}

.partners-container__item__logo:hover div img {
    visibility: visible;
    margin-left: 13px;
}

@media (max-width: 1280px) {
    .partners-container__item {
        width: calc(94vw / 5);
        height: calc(94vw / 5);
        border: 1px solid #34333B;
    }
}

@media (max-width: 1000px) {
    .partners-container__item {
        width: calc(94vw / 4);
        height: calc(94vw / 4);
        border: 1px solid #34333B;
    }
}

@media (max-width: 1000px) {
    .partners-container__item {
        width: calc(94vw / 4);
        height: calc(94vw / 4);
        border: 1px solid #34333B;
    }
}

@media (max-width: 750px) {
    .partners-container__item {
        width: calc(94vw / 3);
        height: calc(94vw / 3);
        border: 1px solid #34333B;
    }

    .partners-subtitle {
        margin-bottom: 30px;
        width: 100%;
        color: #68686F;
        font-size: 16px;
        font-family: 'Circe', sans-serif;
    }

    .partners-container__item__logo img {
        width: 60%;
    }
}

/* LEAVE REQUEST POPUP FORM  */

.leave-request__popup-form__wrapper {
    user-select: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.leave-request__popup-form__backdrop {
    width: 100vw;
    height: 100vh;
    position: absolute;
    background-color: #0009;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 1;
    animation: show_backdrop_animation .3s;
}

@keyframes show_backdrop_animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.leave-request__popup-form__backdrop__hide {
    animation: hide_backdrop_animation .3s;
}

@keyframes hide_backdrop_animation {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.leave-request__popup-form {
    overflow: hidden;
    width: 1240px;
    height: 520px;
    background-color: #fff;
    position: absolute;
    display: flex;
    z-index: 2;
    animation: show_popup-container_animation .3s;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

@keyframes show_popup-container_animation {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.leave-request__popup-form__hide {
    animation: hide_popup-container_animation .3s;
}

@keyframes hide_popup-container_animation {
    from {
        opacity: 1;
        transform: translateY(0px);
    }
    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

.leave-request__popup-form__image {
    width: 350px;
    height: 100%;
    overflow: hidden;
}

.leave-request__popup-form__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leave-request__popup-form__content {
    width: calc(100% - 350px);
    height: 100%;
    padding: 60px 70px;
    position: relative;
}

.leave-request__popup-form__content__close {
    position: absolute;
    top: 40px;
    right: 40px;
    transition: .2s;
    cursor: pointer;
}

.leave-request__popup-form__content__close:hover {
    opacity: .6;
}

.leave-request__popup-form__content h1 {
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 34px;
    text-transform: uppercase;
    color: #34333B;
}

.leave-request__popup-form__content p {
    margin-top: 25px;
    width: 70%;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 25px;
    color: #8C8C8C;
}

.leave-request__popup-form__content__politics {
    width: 50%;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #8C8C8C;
}

.leave-request__popup-form__content__politics a {
    text-decoration: underline;
    font-family: 'Circe', sans-serif;
    font-weight: 400;
    color: #8C8C8C;
}

.leave-request__popup-form__content form {
    width: 70%;
    /* border: 1px solid red; */
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 15px;
}

.leave-request__popup-form__content input {
    transition: .2s;
    width: calc(100%/2 - 20px);
    margin-right: 40px;
    font-family: 'Circe', sans-serif;
    font-size: 17px;
    border-bottom: 1px solid #EEEEEE;
    height: 45px;
    font-weight: 400;
    padding-left: 15px;
    color: #34333B;
    outline: none;
}

.leave-request__popup-form__content input:focus {
    border-bottom: 1px solid #34333B;
}

.leave-request__popup-form__content input::placeholder {
    color: #34333B;
}

.leave-request__popup-form__content form input:nth-child(2) {
    margin-right: 0;
}

.leave-request__popup-form__content textarea {
    resize: none;
    transition: .2s;
    margin-top: 20px;
    outline: none;
    width: 100%;
    font-family: 'Circe', sans-serif;
    font-size: 17px;
    line-height: 25px;
    border: none;
    border-bottom: 1px solid #EEEEEE;
    height: calc(25px * 3);
    font-weight: 400;
    padding-left: 15px;
    color: #34333B;
}

.leave-request__popup-form__content textarea:focus {
    border-bottom: 1px solid #34333B;
}

.leave-request__popup-form__content textarea::placeholder {
    color: #34333B;
}

.leave-request__popup-form__submit-btn {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: .2s;
    cursor: pointer;
}

.leave-request__popup-form__submit-btn__text {
    padding: 0 30px;
    display: inline-block;
    font-family: 'Circe', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #34333B;
}

.leave-request__popup-form__submit-btn__icon {
    transition: .2s;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #22BCA2;
}

.leave-request__popup-form__submit-btn:hover {
    background-color: #EEEEEE;
}

.leave-request__popup-form__submit-btn:hover .leave-request__popup-form__submit-btn__icon {
    background-color: #1eae96;
}

.leave-request__popup-form__submit-btn .leave-request__popup-form__submit-btn__icon img {
    transition: .2s;
    width: 14px;
}

.leave-request__popup-form__submit-btn:hover .leave-request__popup-form__submit-btn__icon img {
    transform: translateX(3px);
}

@media (max-width: 1280px) {
    .leave-request__popup-form {
        width: 94vw;
    }
}

@media (max-width: 1120px) {
    .leave-request__popup-form__content p {
        width: 100%;
    }

    .leave-request__popup-form__content__politics {
        width: 80%;
    }

    .leave-request__popup-form__content form {
        width: 100%;
    }

    .leave-request__popup-form__image {
        width: 300px;
    }

    .leave-request__popup-form__content {
        width: calc(100% - 300px);
        padding: 50px 50px;
    }
}

@media (max-width: 830px) {
    .leave-request__popup-form {
        width: 100vw;
        height: 100vh;
        /* width: 1240px;
        height: 520px; */
        display: flex;
        overflow-y: auto;
        flex-direction: column;
    }

    .leave-request__popup-form__image {
        width: 100%;
        height: 150px;
        order: -1;
    }

    .leave-request__popup-form__content {

        width: calc(100%);
        padding: 20px
    }

    .leave-request__popup-form__content h1 {
        font-size: 24px;
    }

    .leave-request__popup-form__content p {
        font-size: 16px;
        margin-top: 10px;
    }

    .leave-request__popup-form__content__close {
        top: 25px;
        right: 20px;
        width: 18px;
    }

    .leave-request__popup-form__content form {
        margin-top: 10px;
        width: 100%;
        flex-direction: column;
    }

    .leave-request__popup-form__content form input {
        width: 100%;
        border-radius: 0;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .leave-request__popup-form__content form textarea {
        width: 100%;
        border-radius: 0;
        margin-top: 0px;
        flex-direction: column;
        height: 50px;
    }

    .leave-request__popup-form__submit-btn {
        width: 100%;
        justify-content: flex-end;
        order: -1;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        position: unset;
        bottom: unset;
        right: unset;
        transition: .2s;
        cursor: pointer;
    }

    .leave-request__popup-form__content__politics {
        order: 6;
        margin-top: 10px;
        width: 100%;
    }
}

/* INTERESTING DIGITS  */

.interesting__digits {
    width: 100%;
    display: flex;
}

.interesting__digits__item {
    flex: 3;
}

.interesting__digits__item:first-child {
    flex: 3;
}

.interesting__digits__item h2 {
    font-family: 'Futura PT Book', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 80px;
    line-height: 100px;
    text-transform: uppercase;
    color: #34333B;
}

.interesting__digits__item p {
    width: 60%;
    font-family: 'Circe';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #8C8C8C;
}

@media (max-width: 950px) {
    .interesting__digits__item p {
        width: 80%;
        padding-left: 5px;
    }

    .interesting__digits__item h2 {
        font-size: 50px;
        line-height: 60px;
    }

    .interesting__digits {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

    .interesting__digits__item {
        flex: unset;
        width: calc(100%/2);
    }

    .interesting__digits__item:first-child {
        flex: unset;
    }

    .interesting__digits__item:nth-child(3), .interesting__digits__item:nth-child(4) {
        margin-top: 20px;
    }
}

/*LEAVE REQUEST BUTTON */

.main-screen__leave-request__btn {
    cursor: pointer;
    transition: .2s;
    display: inline-block;
    height: 80px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #22BCA2;
}

.main-screen__leave-request__btn:hover {
    background-color: #20ac95;
}

.main-screen__leave-request__btn span {
    display: inline-block;
    margin-right: 30px;
    font-family: 'Circe', sans-serif;
    font-style: normal;
    font-size: 17px;
    color: #fff;
}

.main-screen__leave-request__btn img {
    transition: .2s;
    width: 14px;
}

.main-screen__leave-request__btn:hover img {
    transform: translateX(5px);
}

.error-input {
    border-bottom: 1px solid red !important;
    color: red !important;
}

.error-input-svg path {
    fill: red !important;
}

.error-input::placeholder {
    color: red !important;
}

.notification-container {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #fff;
    width: 450px;
    height: 130px;
    z-index: 999;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    animation: show_notification .2s;
}

@keyframes show_notification {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-container__hide {
    animation: hide_notification .2s;
}

@keyframes hide_notification {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100px);
        opacity: 0;
    }
}

.notification-container__image {
    overflow: hidden;
    background: linear-gradient(0deg, #A2BCC2, #A2BCC2);
    height: 130px;
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.notification-container__image img {
    width: 80%;
    height: 80%;
    object-fit: cover;
}

.notification-container__content {
    width: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.notification-container__content h3 {
    font-family: 'Futura PT Book', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    color: #29282E;
}

.notification-container__close {
    transition: .2s;
    position: absolute;
    top: 15px;
    right: 15px;
}

.notification-container__close:hover {
    cursor: pointer;
    opacity: .6;
}

.notification-container__close img {
    width: 12px;
}

.notification-container__content p {
    margin-top: 10px;
    font-family: 'Circe', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: #8C8C8C;
}

#notification-error {
    display: none;
    white-space: nowrap;
    height: 50px;
    background: #ffebeb;
    padding: 15px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    font-family: 'Circe', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: #b20d0d;
    z-index: 9999;
    box-shadow: rgba(255, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    animation: show_notification .2s;
}
