/** platform-section **/

.platform-section {
    position: relative;
    background: #191919;
}

.platform-section .content-box {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 51px 60px 50px 60px;
    overflow: hidden;
}

.platform-section .content-box h2 {
    position: relative;
    display: block;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.platform-section .content-box p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 55px;
}

.platform-section .content-box .image-box {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.platform-section .tab-btns {
    position: relative;
    display: block;
    transform: rotate(-90deg);
    top: 61px;
    z-index: 1;
}

.platform-section .tab-btns li {
    position: relative;
    display: block;
    font-size: 32px;
    line-height: 40px;
    font-family: var(--title-font);
    font-weight: 500;
    color: var(--title-color);
    background: #fff;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    padding: 43.5px 30px;
    min-width: 477px;
}

.platform-section .tab-btns li:last-child {
    margin-bottom: 0px;
}

.platform-section .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
}

.dark_home .platform-section {
    background: transparent;
}

.dark_home .platform-section .content-box {
    background: linear-gradient(110.34deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.dark_home .platform-section .content-box h2 {
    color: #fff;
}

.dark_home .platform-section .content-box p {
    color: rgba(255, 255, 255, 0.80);
}

.dark_home .platform-section .tab-btns li {
    color: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.175) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.platform-section.alternat-2 {
    background: transparent;
}

.platform-section.alternat-2 .content-box {
    box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
}

.platform-section.alternat-2 .tab-btns li {
    box-shadow: 0px 4px 50px 10px rgba(0, 0, 0, 0.04);
}

/** rtl-css **/

.rtl .platform-section .content-box .image-box {
    right: inherit;
    left: 0px;
}

.rtl .platform-section .tab-btns {
    top: 0px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px) {
    .platform-section .tab-btns {
        top: 0px;
        transform: rotate(0deg);
        margin-top: 30px;
    }
    .platform-section .tab-btns li {
        min-width: 100%;
    }
}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
    .platform-section .content-box .image-box {
        display: none;
    }
    .platform-section {
        padding: 70px 0px;
    }
    .platform-section.pt_0 {
        padding-top: 0px;
    }
}

@media only screen and (max-width: 599px) {
    .platform-section .content-box {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 499px) {}