@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');



.r_container {
    max-width: 1200px;
    font-family: "Inter", serif;
    margin: 0 auto;
    @media (max-width: 1200px) {
        margin: 0 16px;

    }
    @media (max-width: 480px) {
        margin: 0 8px;

    }

    h1, h2, h3, h4, h5, p {
        margin: 0;
    }

    * {
        font-weight: normal;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        text-decoration: none;
        text-transform: none;
    }

    a {
        outline: none;
        color: inherit;
    }
}

.red_btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #C96065;
    color: white !important;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    @media (max-width: 992px) {
        padding: 6px 20px;
        font-size: 14px;
    }
    @media (max-width: 480px) {
        padding: 6px 20px;
        font-size: 13px;
    }
}

.red_btn:hover {
    background-color: #ca454c;
}

.red_btn:disabled {
    background-color: #CDCDCD;
    cursor: auto;
}

.title_bl {
    font-size: 40px;
    font-weight: 500;

    @media (max-width: 1200px) {
        font-size: 30px;
        line-height: 32px;
    }
    @media (max-width: 768px) {
        font-size: 24px;
        line-height: 26px;
    }
    @media (max-width: 480px) {
        font-size: 20px;
        line-height: 22px;
    }
}

.title_bl_wt {
    color: white;
}

/* header */
.header_container {
    width: 100%;
    background-color: #EDF4F5;
}

.btn_1{
    margin-top: 30px;
}

.r_header {
    position: relative;
    overflow: hidden;

    > h1 {
        position: absolute;
        top: 70px;
        font-family: inherit;
        font-weight: bold;
        font-size: 56px;
        line-height: normal;
        color: #4B8D9D;

        @media (max-width: 1200px) {
            font-size: 40px;
            top: 44px;
        }
        @media (max-width: 992px) {
            font-size: 32px;
            top: 16px;
        }
        @media (max-width: 660px) {
            font-size: 30px;
        }
        @media (max-width: 480px) {
            font-size: 26px;
        }
    }
}

.r_header .r_left-block {
    padding: 120px 0 40px;
    font-size: 16px;
    max-width: 768px;
    width: 65%;

    > div {
        margin-top: 16px;
        border-radius: 20px;
        width: 100%;
        padding: 20px;
        background-color: white;
        text-align: center;
    }

    > div > p {
        text-align: left;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
    }

    > div button {
        margin: 40px auto 0;
    }

    @media (max-width: 1200px) {
        padding-bottom: 20px;
        padding-top: 80px;
    }

    @media (max-width: 992px) {
        padding-top: 40px;
    }

    @media (max-width: 768px) {
        width: 50%;
    }
    @media (max-width: 660px) {

        > div button {
            margin-top: 10px;
        }
    }

    @media (max-width: 600px) {

        width: 100%;

        > div {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
    }
}

.btn_1{
    margin-top: 20px;
    padding: 8px 24px;
    @media (max-width: 600px) {
        margin-top: 0;
    }
}

.r_header_img {
    position: absolute;
    bottom: 0;
    right: 2%;
    width: 28%;

    @media (max-width: 991px) {
        transform: translateY(50%);
        bottom: 50%;
    }

    @media (max-width: 768px) {
        width: 40%;
    }
    @media (max-width: 600px) {
        width: 50%;
        transform: translateY(0);
        position: relative;
    }
}

/* вакансии */
.r_vacancii {
    display: flex;
    justify-content: center;
    flex-direction: column;

    > h2 {
        text-align: center;
        margin: 30px auto 0;
        font-size: 32px;
        font-weight: 500;
    }

    #r_vac_cont{
        margin-top: 20px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-content: center;
    }

    .r_block {
        padding: 20px;
        flex: 1 1 calc(33.333% - 12px);
    }
    @media screen and (max-width: 992px){
        #r_vac_cont{
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media screen and (max-width: 680px){
        #r_vac_cont{
            grid-template-columns: repeat(1, 1fr);
        }
    }
}

.r_vac_item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    transition: all .3s;
    cursor: pointer;

    h3 {
        font-size: 24px;
        line-height: 32px;
    }

    h4 {
        margin-top: 6px;
        font-size: 16px;
        line-height: 24px;
        color: #565656;
    }

    @media screen and (max-width: 680px){
        width: 80%;
        margin: 0 auto;
        h3 {
            font-size: 22px;
        }
    }
    @media screen and (max-width: 480px){
        width: 90%;
    }
    @media (hover: hover) {
        &:hover{
            transform: scale(1.02);
            /*box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);*/
        }
    }
}

.podrobnee {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.podrobnee_wr{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4B8D9D;
    font-size: 16px;
}

.r_vac_item_city{
    display: flex;
    align-items: center;
}


.r_cont_wr {
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: #EDF4F5;
}

.r_arrow {
    height: 120px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;


    > h4 {
        margin: 0 4px 0 0;
        font-size: 24px;
        line-height: 36px;
        color: black;
        font-weight: 500;
    }

    > a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #4B8D9D;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    }

    > a img {
        transform: rotate(-90deg);
    }
}
