@charset "utf-8";
/* CSS Document */

/*=== Variables ===*/
:root {
    /*-- Colors --*/
    --color-red:      #FF443E;
    --color-orange:   #EB4D2F;
    --color-white:    #ffffff;
    --color-text:     #444444;
    --color-pink:     #E93461;
}

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,700;1,500&display=swap');


/*=== General ===*/
html {
    overflow-x: hidden !important;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    color: var(--color-text);
    overflow-x: hidden !important;
}
p {
    margin-bottom: 20px;
}
strong {
    font-weight: 700;
}
a {
    color: var(--color-text);
    text-decoration: none;
    transition: all .3s ease;
}
a:hover {
    color: inherit;
}
h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 40px;
}

:focus, .navbar-toggler:focus {
    outline: none;
    border: none;
    box-shadow: none;
}
img {
    max-width: 100%;
    height: auto;
}
img.aligncenter {
    margin: 0 auto;
    display: block;
}
img.alignleft {
    margin: 0 20px 0 0;
    float: left;
}
img.alignright {
    margin: 0 0 0 20px;
    float: right;
}
img.position-absolute {
    max-width: none;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.btn {
    padding: 10px 30px;
    background-color: var(--color-white);
    color: #F93F40;
    border-radius: 4px;
    border: 1px solid var(--color-white);
    height: 46px;
    font-size: 16px;
    line-height: 25px;
    text-transform: uppercase;
    position: relative;
}
.btn.pink {
    color: var(--color-pink);
}
.btn:hover {
    color: #F93F40;
    background-color: #fff;
    border-color: var(--color-white);
}
.btn.pink:hover {
    color: var(--color-pink)
}
.btn.arrow, .btn.less {
    padding: 10px 50px 10px 30px;
    position: relative;
}
.btn.arrow:after {
    content: '';
    background: url('../../img/rx/arrow.svg') center center no-repeat;
    width: 12px;
    height: 13px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: transform .3s ease;
}
.btn.arrow.pink:after {
    background: url('../../img/rx/arrow-pink.svg') center center no-repeat;
}
.btn.arrow:hover:after {
    transform: translateY(-50%) rotate(45deg);
}
.btn.bord {
    border: 2px solid #F93F40;
}
.btn-bord {
    height: 45px;
    padding: 12px 20px;
    border: 1px solid;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
}
.btn-bord img {
    margin-right: 10px;
}
.btn-bord.ico-right img {
    margin-right: 0;
    margin-left: 10px;
}

.zindex1 {
    z-index: 1;
}
.zindex2 {
    z-index: 2;
}
.zindex3 {
    z-index: 3;
}
.zindex4 {
    z-index: 4;
}

.padding-tb {
    padding: 60px 0;
}
.padding-t {
    padding-top: 60px;
}
.padding-b {
    padding-bottom: 60px;
}

/* Header */
header {
    position: fixed;
    background-color: var(--color-red);
    width: 100%;
    z-index: 10;
}
header .navbar-expand-lg .navbar-nav .nav-item {
    padding-left: 40px;
}
header .navbar-expand-lg .navbar-nav .nav-link {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 300;
    padding: 6px 0;
}
header .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link {
    border: #fff 1px solid;
    border-radius: 5px;
    padding-left: 28px;
    padding-right: 28px;
}
header .lang {
    margin-left: 40px;
}
header .lang ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

/* main */

.banner {
    background-color: var(--color-red);
    width: 100%;
    height: 100vh;
    max-height: 830px;
    display: flex;
    align-items: center;
    position: relative;
}
.banner h1 {
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    color: var(--color-white);
    margin-bottom: 24px;
    margin-top: 50px;
}
.banner p {
    color: var(--color-white);
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}
/* .banner .col-lg-6 {
    position: relative;
} */
.banner .lines {
    position: absolute;
    top: 150px;
    right: 0;
    z-index: 2;
}
.banner .lines img {
    max-height: 160px;
}
.banner .x {
    position: absolute;
    right: 0;
    bottom: 10px;
    z-index: 1;
}
.banner .box {
    position: absolute;
    width: 600px;
    height: 636px;
    background-color: var(--color-orange);
    z-index: 0;
    right: 0;
    bottom: 0;
}
.banner .x img {
    width: 350px;
}
.banner .box {
    width: 450px;
    height: 420px;
}

/* About */
.about .col-lg-6 {
    position: relative;
}
.about .photo {
    position: relative;
    z-index: 2;
}
.about .lines {
    position: absolute;
    bottom: 0;
    max-width: none;
    z-index: 0;
    right: -322px;
    height: 241px;
}


/* numbers */
.numbers {
    color: var(--color-white);
    background-color: var(--color-pink);
    position: relative;
}
.numbers h2 {
    margin-bottom: 50px;
}
.numbers .container {
    position: relative;
}
.numbers .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.numbers .grid .num {
    font-size: 36px;
    font-weight: 600;
    margin: 14px auto 10px;
}
.numbers .grid p {
    font-size: 15px;
    line-height: 22px;
}
.numbers .grid .item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.numbers #ballBgNumbers {
    height: 100%;
    position: absolute;
    top: 0;
    right: 50%;
    background-color: var(--color-orange);
    border-radius: 100%;
}

/* company */
.company {
    position: relative;
    border-bottom: 80px solid var(--color-pink);
    overflow: hidden;
}
.company .buttons {
    margin-top: 20px;
}
.company .buttons a {
    margin-right: 20px;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 10px;
}
.company .buttons p {
    margin-bottom: 0;
}
.company .carousel {
    position: relative;
}
.company .carousel, .company .carousel .owl-carousel .owl-item {
    width: 100%;
}
.company .carousel .owl-carousel .owl-item {
    position: unset;
}
.company .carousel .item {
    width: 100%;
    padding-bottom: 50px;
}
.company .carousel .item img {
    width: auto;
    display: inline-block;
    max-width: 75%;
}
/* .company .logos {
    margin-top: 50px;
    position: absolute;
    width: 50%;
    right: 0;
    bottom: 0;
    max-width: 690px;
} */
.company .logos img {
    margin: 0 auto;
}
.company .lines {
    position: absolute;
    right: -100px;
    top: -130px;
}
.company .logos {
    width: 50%;
    height: 610px;
    background-color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
}
.company .btn.bord {
    margin-top: 30px;
    padding: 6px 50px;
    height: 40px;
    text-transform: lowercase;
}
.company .carousel .owl-nav {
    position: absolute;
    width: 50%;
    right: 0;
    top: 48%;
}
.company .carousel .owl-carousel .owl-nav button.owl-prev {
    content: '';
    position: absolute;
    background: url(../../img/rx/arrow-carousel.svg);
    width: 32px;
    height: 27px;
    left: 30px;
    background-size: 100%;
    transform: rotate(-180deg);
}
.company .carousel .owl-carousel .owl-nav button.owl-next {
    content: '';
    position: absolute;
    background: url(../../img/rx/arrow-carousel.svg);
    width: 32px;
    height: 27px;
    right: 30px;
    background-size: 100%;
}

.company .carousel .owl-dots {
    position: absolute;
    width: 50%;
    right: 0;
    bottom: 100px;
    text-align: center;
}
.company .carousel .owl-dots button.owl-dot {
    width: 14px;
    height: 14px;
    border-radius: 100px;
    border: 1px solid var(--color-white);
    margin: 0 5px;
}
.company .carousel .owl-dots button.owl-dot.active {
    background-color: var(--color-white);
}


/* team */
.team .carousel .item {
    text-align: center;
}
.team .carousel .item p {

    margin-top: 20px;
}
.team .carousel .item p img {
    width: 18px;
}
.team .carousel .item p strong {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team .carousel .owl-dots {
    text-align: center;
}
.team .carousel .owl-dots button.owl-dot {
    width: 14px;
    height: 14px;
    border-radius: 100px;
    border: 1px solid var(--color-text);
    margin: 0 5px;
}
.team .carousel .owl-dots button.owl-dot.active {
    background-color: var(--color-text);
}
.team .carousel .owl-carousel .owl-nav button.owl-prev {
    content: '';
    position: absolute;
    background: url(../../img/rx/arrow-carousel.svg);
    width: 32px;
    height: 27px;
    left: -45px;
    top: 48%;
    background-size: 100%;
    transform: rotate(-180deg);
    filter: invert(1);
}
.team .carousel .owl-carousel .owl-nav button.owl-next {
    content: '';
    position: absolute;
    background: url(../../img/rx/arrow-carousel.svg);
    width: 32px;
    height: 27px;
    top: 48%;
    right: -45px;
    background-size: 100%;
    filter: invert(1);
}


/* touch */
.touch {
    color: #fff;
    background-color: var(--color-pink);
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
}
.touch .x {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 400px;
}
.touch .col-lg-5 {
    max-width: 450px;
}
.touch a.btn {
    margin-top: 40px;
}

/* news */
.news {
    background-color: var(--color-red);
}
.news h2 {
    color: var(--color-white);
}
.news .box {
    background-color: var(--color-white);
    width: 334px;
    height: 250px;
    padding: 18px;
    display: flex;
}
.news .box h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
}
.news .box .more {
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    border-radius: 5px;
    border: 1px solid var(--color-text);
    padding: 5px 12px;
}
.news .box span {
    font-weight: 300;
    font-size: 12px;
    line-height: 11px;
    display: block;
    margin-top: 12px;
}
.news .box .absolute {
    position: absolute;
    bottom: 22px;
}
.news .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.news .owl-dots button.owl-dot {
    width: 14px;
    height: 14px;
    border-radius: 100px;
    border: 1px solid var(--color-white);
    margin: 0 5px;
}
.news .owl-dots button.owl-dot.active {
    background-color: var(--color-white);
}

.news .carousel .owl-carousel .owl-nav button.owl-prev {
    content: '';
    position: absolute;
    background: url(../../img/rx/arrow-carousel.svg);
    width: 32px;
    height: 27px;
    left: -45px;
    top: 35%;
    background-size: 100%;
    transform: rotate(-180deg);

}
.news .carousel .owl-carousel .owl-nav button.owl-next {
    content: '';
    position: absolute;
    background: url(../../img/rx/arrow-carousel.svg);
    width: 32px;
    height: 27px;
    top: 35%;
    right: -45px;
    background-size: 100%;

}

button.navbar-toggler {
    position: absolute;
    top: 20px;
    right: 60px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
button.navbar-toggler .navbar-toggler-icon {
    width: 30px;
    height: 2px;
    background-color: var(--color-white);
}
button.navbar-toggler:before {
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--color-white);
    display: block;
}
button.navbar-toggler:after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--color-white);
    display: block;
}

/* Footer */
footer {
    background-color: #DE3C37;
    color: var(--color-white);
}
footer .container {
    height: 154px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
footer ul {
    display: flex;
    gap: 30px;
}
footer ul li a {
    color: var(--color-white);
    font-size: 15px;
}
footer p {
    margin-bottom: 0;
    font-size: 15px;
}

@media (min-width: 1500px) {
    .banner h1 {
        font-size: 55px;
        line-height: 60px;
    }
    .banner .x {
        position: absolute;
        right: 0;
        bottom: 10px;
        z-index: 1;
    }
    .banner .x img {
        width: 450px;
    }
    .banner .box {
        position: absolute;
        width: 580px;
        height: 580px;
        background-color: var(--color-orange);
        z-index: 0;
        right: 0;
        bottom: 0;
    }
    .banner .lines {
        top: 160px;
    }
    .banner .lines img {
        max-height: 200px;
    }
}

@media (max-width: 1119px) {
    .team .carousel .owl-carousel .owl-nav button.owl-next {
        right: -30px;
    }
    .team .carousel .owl-carousel .owl-nav button.owl-prev {
        left: -30px;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 20px 0 0;
    }
    .banner .col-lg-6:first-child {
        position: relative;
        z-index: 1;
    }
    .banner h1 {
        margin-top: 0;
    }
    header .lang {
        position: absolute;
        right: 30px;
        top: 22px;
    }
    header .navbar-expand-lg .navbar-nav .nav-item:last-child .nav-link {
        border: none;
        padding-left: 0;
    }
    header .navbar-expand-lg .navbar-nav .nav-item {
        padding-left: 0;
    }

    .company .carousel .item {
        display: flex;
        flex-direction: column-reverse;
    }
    .company .logos {
        position: relative;
        width: 100%;
        height: 300px;
    }
    .company .lines {
        display: none;
    }
    .company .carousel .item .container {
        padding-top: 46px;
    }
    .touch .x {
        width: 300px;
    }
    .company .carousel .owl-nav {
        top: 126px;
        width: 100%;
    }
    .company .carousel .owl-dots {
        bottom: unset;
        top: 250px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .banner p {
        max-width: 350px;
    }
    h2 {
        font-size: 28px;
        line-height: 34px;
    }
    .padding-tb {
        padding: 30px 0;
    }
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        padding: 0 20px;
        max-width: 100%;
    }
    .banner h1 {
        margin-top: 100px;
        font-size: 30px;
        line-height: 36px;
    }
    .banner {
        display: block;
    }
    .banner .x {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
    .banner .lines {
        bottom: 150px;
        top: unset;
        right: -34px;
    }
    .banner .lines img {
        max-height: 132px;
    }
    .banner .x img {
        width: 250px;
    }
    .banner .lines img {
        max-height: 132px;
    }
    .banner .box {
        width: 88%;
        height: 270px;
    }

    .banner p {
        line-height: 25px;
        margin-bottom: 24px;
    }
    .numbers .grid .num {
        font-size: 30px;
    }
    .company .carousel .item img {
        max-width: 90%;
    }
    .touch .x {
        display: none;
    }
    .touch {
        height: auto;
        min-height: 0;
        padding: 50px 0;
    }

    .numbers .grid .item {
        display: block;
        text-align: center;
    }

    footer {
        padding: 30px 0;
    }
    footer .container {
        display: block;
        height: auto;
    }
    footer ul {
        display: block;
        text-align: left;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .news .owl-dots {
        display: block;
    }
    .company .buttons a {
        padding: 8px 16px;
        min-width: 100px;
        font-size: 12kkkkpx;
    }
}