/* STYLES 11.01.2025
Developer: t.me/moretheme
Screen resolution: 460, 860, 1440, 1920 */
@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Light.woff2') format('woff2'),url('TildaSans-Light.woff') format('woff');
    font-weight: 300;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Regular.woff2') format('woff2'),url('TildaSans-Regular.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Semibold.woff2') format('woff2'),url('TildaSans-Semibold.woff') format('woff');
    font-weight: 500;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Bold.woff2') format('woff2'),url('TildaSans-Bold.woff') format('woff');
    font-weight: 600;
}

:root {
    --bg: #fff;
    --bg2: #e9f1fc;
    --engine: #fff;
    --engine2: #f7f7f7;
    --text: #191c20;
    --text1: #fff;
    --text2: #676e7e;
    --text3: #a4a8b2;
    --color1: #66a9f4;
    --color2: #7eb9fb;
    --light: rgb(255 255 255 / 15%);
    --light2: rgb(255 255 255 / 30%);
    --dark: rgb(0 0 0 / 10%);
    --radius: 20px;
    --shadow: 0px 4px 24px 0px rgb(0 0 0 / 3%);
}

body {
    background: url(../images/uzor.png) repeat var(--bg);
    color: var(--text);
    line-height: normal;
    font-family: "TildaSans", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* HEADER */
header {
    position: relative;
    max-width: 1380px;
    width: calc(100% - 40px);
    margin: 20px auto 0;
    background: #ebf4fd;
    box-shadow: var(--shadow);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 10px;
    padding: 8px 30px;
    border-radius: 20px;
    z-index: 5;
}

.header-wrap {
    width: 100%;
}

header {
    position: relative;
    transition: transform .3s ease;
}

header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header.is-hidden {
    top: -100px;
}

.header-logo {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    font-weight: 500;
}

.header-logo > img {
    width: 50px;
}

.header-menu {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

@media (max-width: 860px) {
    .header-menu {
        position: absolute;
        top: 72px;
        left: 0;
        background: #ebf4fd;
        box-shadow: var(--shadow);
        border-radius: var(--radius);
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        align-items: center;
        padding: 20px 30px;
        font-size: 14px;
        visibility: hidden;
        opacity: 0;
        transition: 0.3s;
    }
}

header.mobmenu .header-menu {
    visibility: visible;
    opacity: 1;
}

header.is-hidden .header-menu {
    visibility: hidden;
    opacity: 0;
}

.header-menu_btn {
    background: var(--color1);
    border-radius: 15px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.header-menu .header-menu_btn {
    position: absolute;
    top: 30px;
    right: 30px;
}

header.mobmenu .header-menu_btn:before {
    content: "\f00d";
}

.header-menu > a {
    border-bottom: 1px solid transparent;
}

.header-menu > a:hover {
    border-bottom: 1px solid #000;
}

/* RP HOME */
.rp-home {
    position: relative;
    background: url(../images/bg1.png) center/cover no-repeat;
    padding: 100px 0;
}

@media (max-width: 860px) {
    .rp-home {
        padding: 0 0 100px;
    }
}

.rp-home .cloud1, .rp-home .cloud2 {
    position: absolute;
    bottom: -100px;
    right: -30vw;
    width: 100%;
    height: 75%;
    object-fit: contain;
    z-index: 2;
}

@media (max-width: 860px) {
    .rp-home .cloud1, .rp-home .cloud2 {
        width: 180%;
    }
}

.rp-home .cloud2 {
    left: -20vw;
    right: unset;
}

.rp-home .homeb {
    position: absolute;
    top: -20px;
    right: 0;
    width: auto;
    height: 680px;
    object-fit: contain;
    z-index: 1;
}

@media (max-width: 860px) {
    .rp-home .homeb {
        width: 250%;
        right: -300px;
        top: 150px;
    }
}

.rp-home_text {
    position: relative;
    display: block;
    max-width: 800px;
    border-radius: 30px;
    background: linear-gradient(40deg, rgb(204 225 248 / 70%) 0%, rgb(231 240 253 / 30%) 100%);
    padding: 40px 30px;
    z-index: 3;
}

.rp-home_title {
    display: block;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rp-home_title + ul li {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    font-size: 18px;
    margin-top: 10px;
}

.rp-home_title + ul li:before {
    content: "*";
}

.rp-home_mous {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    font-size: 25px;
    margin-top: 80px;
    animation: floatY 2s ease-in-out infinite;
    z-index: 4;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.rp-home_mous .fa-angles-down {
    font-size: 16px;
    margin-top: -5px;
}

.rp-home_mous span {
    font-size: 14px;
}

/* RP TIPE */
.rp-tipe {
    position: relative;
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 30px 40px;
    font-size: 25px;
    font-weight: 500;
    border-radius: var(--radius);
    margin-bottom: 30px;
    z-index: 2;
}

.rp-tipe > span {
    font-weight: 400;
}

/* RP SHAG */
.rp-shag {
    position: relative;
    overflow: hidden;
}

@media (max-width: 860px) {
    .rp-shag {
        overflow: visible;
    }
}

.rp-shag .swiper-slide {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 30px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
}

.rp-shag .swiper-slide b {
    font-size: 20px;
}

.rp-shag .swiper-slide span:last-child {
    margin-top: 30px;
    font-size: 20px;
}

.rp-shag_nav {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 3px 10px;
    border-radius: var(--radius);
    max-width: max-content;
    margin-left: auto;
    margin-top: 10px;
}

.rp-shag_nav > i:hover {
    color: #fff;
}

.rp-shag_nav > i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.rp-shag_nav > i:first-child {
    border-right: 1px solid rgb(0 0 0 / 13%);
}

/* O NAS */
.rp-onas {
    position: relative;
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 30px;
    border-radius: var(--radius);
    display: grid;
    grid-auto-rows: max-content;
    grid-template-columns: 1fr 350px;
    align-items: center;
    margin-top: 60px;
}

@media (max-width: 860px) {
    .rp-onas {
        grid-template-columns: 1fr;
    }
}

.rp-onas > img {
    display: block;
    width: 100%;
    height: auto;
    margin-left: 80px;
}

@media (max-width: 860px) {
    .rp-onas > img {
        order: -1;
        margin-left: 0;
        margin-top: -60px;
        margin-bottom: 30px;
    }
}

.rp-onas > div b {
    display: block;
    font-size: 20px;
}

.rp-onas > div .comp {
    display: block;
    font-size: 25px;
    font-weight: 300;
    margin: 10px 0 20px;
}

.rp-onas > div p > b {
    line-height: 1.3;
    font-size: 16px;
}

.rp-onas a {
    display: block;
    border-top: 1px solid #00000021;
    padding-top: 20px;
    margin-top: 30px;
    font-weight: 400;
}

/* RP JOB */
.rp-job {
    position: relative;
    margin: 40px 0;
}

.rp-job_head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
    margin-bottom: 30px;
}

.rp-job_head .e-h2 {
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 10px 25px;
    border-radius: 15px;
    font-weight: 500;
}

.rp-job_tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 15px;
}

.rp-job_tabs > span {
    display: inline-block;
    background: #0000003b;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.rp-job_tabs > span.tab {
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
}

.rp-job_tabs > span:hover:not(.rp-job_tabs > span.tab) {
    background: #0000004f;
}

.rp-job_items {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 860px) {
    .rp-job_items {
        grid-template-columns: repeat(1, 1fr);
    }
}

.rp-job_items:not(.rp-job_items.tab) {
    display: none;
}

.rp-job_items + a {
    display: block;
    max-width: max-content;
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 15px 30px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 500;
    margin-left: auto;
    margin-top: 50px;
}

.rp-job_items + a:hover {
    background: rgb(204 225 248 / 80%);
}

.rp-job_item {
    position: relative;
    grid-column: span 2;
}

.rp-job_item:nth-child(5n + 4), .rp-job_item:nth-child(5n + 5) {
    grid-column: span 3;
}

@media (max-width: 860px) {
    .rp-job_item {
        grid-column: span 2!important;
    }
}

.rp-job_title {
    display: block;
    max-width: max-content;
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 10px 25px;
    border-radius: 20px 20px 0 0;
    font-weight: 500;
    height: 100px;
    transition: 0.3s;
    pointer-events: none;
}

.rp-job_item:hover .rp-job_title {
    transform: scale(1.03) translateY(-8px);
}

.rp-job_bg {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    object-fit: cover;
    overflow: hidden;
    margin-top: -60px;
    z-index: 2;
    transition: 0.3s;
}

.rp-job_item:hover .rp-job_bg {
    transform: scale(1.03);
    box-shadow: 0px -7px 20px #8695a570;
}

.rp-job_bg > a {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 500;
    backdrop-filter: blur(2px);
    background: #5372976b;
    color: #fff;
    padding: 10px 30px;
    border-radius: var(--radius);
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.rp-job_item:hover .rp-job_bg > a {
    visibility: visible;
    opacity: 1;
}

.rp-job_map {
    display: flex;
    align-items: center;
    justify-content: end;
    grid-gap: 10px;
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
}

.rp-job_map > i {
    color: #66a9f4;
}

/* RP HELP */
.rp-help {
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    margin: 60px calc((100% - 100vw) / 2);
    padding: 40px calc((100vw - 100%) / 2);
    font-size: 24px;
    font-weight: 500;
}

.rp-help_title {
    font-size: 35px;
}

.rp-help_subtitle {
    display: block;
    max-width: 800px;
    font-weight: 400;
    margin-top: 15px;
}

.rp-help_subtitle + div {
    display: grid;
    grid-gap: 40px;
    grid-auto-rows: max-content;
    grid-template-columns: auto 1fr 1fr;
    margin-top: 20px;
    align-items: center;
}

@media (max-width: 860px) {
    .rp-help_subtitle + div {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

.rp-help_subtitle + div > img {
    width: auto;
    height: 220px;
}

.rp-help_subtitle + div > img + .e-float, .rp-help_subtitle + div > img + .e-float + div {
    margin-bottom: 0;
}

.rp-help_subtitle + div input {
    background: #d7dce6;
    border: none;
    font-size: 18px;
    height: 70px!important;
}

.rp-help_policy {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 20px;
    font-size: 18px;
    font-weight: 400;
    color: #66a9f4;
    margin-top: 20px;
}

/* RP SODR */
.rp-sodr {
    margin-bottom: 80px;
}

.rp-sodr_title {
    display: block;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 50px;
}

.rp-sodr_items {
    position: relative;
    overflow: hidden;
}

.rp-sodr_items .swiper-wrapper {
    flex-direction: row;
}

.rp-sodr_items .swiper-slide {
    display: grid;
    grid-gap: 80px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 860px) {
    .rp-sodr_items .swiper-slide {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}

.rp-sodr_item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 20px;
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 20px;
    border-radius: 20px;
    height: auto;
    aspect-ratio: 1/1;
    transition: 0.3s;
    margin: 10px;
}

.rp-sodr_item:hover {
    transform: scale(1.03);
}

.rp-sodr_item img {
    width: 70%;
    height: auto;
}

.rp-sodr_nav {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 3px 10px;
    border-radius: var(--radius);
    max-width: max-content;
    margin-left: auto;
    margin-top: 30px;
}

.rp-sodr_nav > i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.rp-sodr_nav > i:hover {
    color: #fff;
}

.rp-sodr_nav > i:first-child {
    border-right: 1px solid rgb(0 0 0 / 13%);
}

/* FULL */
.rp-full_head {
    display: flex;
    align-items: center;
    grid-gap: 100px;
    justify-content: space-between;
    margin-bottom: 60px;
}

@media (max-width: 860px) {
    .rp-full_head {
        flex-direction: column;
        grid-gap: 30px;
    }
}

.rp-full_title {
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 20px 30px;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: var(--radius);
}

@media (max-width: 860px) {
    .rp-full_title {
        font-size: 20px;
    }
}

.rp-full_head > ul {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    font-size: 16px;
}

.rp-full_head > ul .map {
    display: flex;
    align-items: center;
    justify-content: end;
    grid-gap: 10px;
    font-size: 14px;
    font-weight: 400;
    margin-left: 1px;
}

.rp-full_head > ul .map > i {
    color: #66a9f4;
}

.rp-screens {
    position: relative;
    display: flex;
    grid-gap: 20px;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 860px) {
    .rp-screens {
        flex-direction: column;
        height: 300px;
    }
}

.rp-screens_big {
    position: relative;
    height: inherit;
    overflow: hidden;
}

@media (max-width: 860px) {
    .rp-screens_big {
    }
}

.rp-screens_mini {
    min-width: 250px;
    width: 250px;
    height: inherit;
}

@media (max-width: 860px) {
    .rp-screens_mini {
        min-width: auto;
        width: auto;
        height: 100px;
    }
}

.rp-screens .swiper-slide {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.rp-screens img {
    background: #fff;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.rp-screens_mini > .fal {
    position: absolute;
    left: 40%;
    top: 0;
    font-size: 20px;
    z-index: 5;
    cursor: pointer;
}

@media (max-width: 860px) {
    .rp-screens_mini > .fal {
        display: none;
    }
}

.rp-screens_mini > .fa-chevron-down {
    top: unset;
    bottom: 0;
}

.rp-screens_mini .swiper-slide.swiper-slide-thumb-active {
    filter: brightness(1);
}

.rp-screens_mini .swiper-slide {
    filter: brightness(0.5);
}

.rp-screens_nav {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 3px 10px;
    border-radius: var(--radius);
    z-index: 5;
}

.rp-screens_nav > i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.rp-screens_nav > i:hover {
    color: #fff;
}

.rp-screens_nav > i:first-child {
    border-right: 1px solid rgb(0 0 0 / 13%);
}

.rp-full_text {
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 30px;
    border-radius: var(--radius);
    margin: 30px 0;
}

.rp-full_text > b {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    display: grid;
    justify-content: space-around;
    grid-gap: 50px;
    grid-auto-rows: max-content;
    grid-template-columns: repeat(2, 1fr);
    background: linear-gradient(45deg, rgb(204 225 248 / 80%), rgb(231 240 253 / 80%));
    padding: 30px 60px;
    border-radius: var(--radius);
}

@media (max-width: 860px) {
    footer {
        grid-template-columns: 1fr;
        justify-content: left;
        grid-gap: 40px;
        padding: 25px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    grid-gap: 15px;
    font-weight: 400;
    font-size: 20px;
}

.footer-logo > img {
    width: 50px;
}

.footer-menu {
    display: flex;
    align-items: center;
    justify-content: end;
    grid-gap: 20px;
    font-weight: 400;
}

@media (max-width: 860px) {
    .footer-menu {
        flex-direction: column;
        justify-content: left;
        align-items: flex-start;
    }
}

.footer-menu > a {
    border-bottom: 1px solid transparent;
}

.footer-menu > a:hover {
    border-bottom: 1px solid #000;
}

.footer-locmap {
    display: inline-block;
    max-width: max-content;
    background: linear-gradient( 174deg, rgb(132,245,222) 0%, rgb(86,232,242) 50%, rgb(76,197,248) 100%);
    padding: 15px 30px;
    border-radius: var(--radius);
    height: 70px;
    margin-top: auto;
    transition: 0.3s;
}

.footer-locmap:hover {
    background: linear-gradient( 269deg, rgb(132, 245, 222) 0%, rgb(86, 232, 242) 50%, rgb(76, 197, 248) 100%);
}

.footer-locmap img {
    width: auto;
    height: 35px;
    object-fit: contain;
}

.footer-locmap + div {
    text-align: right;
}

@media (max-width: 860px) {
    .footer-locmap + div {
        text-align: left;
    }
}

.footer-tel {
    display: block;
    font-size: 28px;
    font-weight: 500;
}

.footer-tel:hover {
    color: #4fd0f4;
}

.footer-tel + span {
    display: block;
    font-size: 20px;
    font-weight: 500;
}

.footer-tel + span:hover {
    color: #4fd0f4;
}

.footer-rejim {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    grid-gap: 3px;
    margin-top: 30px;
    font-weight: 300;
}

@media (max-width: 860px) {
    .footer-rejim {
        align-items: start;
    }
}

.footer-rejim span {
    display: block;
    max-width: max-content;
    border-bottom: 1px #000 solid;
}

@media (max-width: 860px) {
    .footer-rejim span {
        text-decoration: underline solid;
        border: none;
    }
}

/* ANIM PAGE */
[data-anim] {
    opacity: 0;
    transition: all 0.8s ease;
    transform: translate(0, 0);
}

[data-anim^="left"] {
    transform: translateX(-50px);
}

[data-anim^="right"] {
    transform: translateX(50px);
}

[data-anim^="top"] {
    transform: translateY(-50px);
}

[data-anim^="bottom"] {
    transform: translateY(50px);
}

[data-anim].anim {
    opacity: 1;
    transform: translate(0, 0);
}
