@charset "utf-8";
@import url("fonts.css");

/*
* Saramnuri R&D Team
* Copyright 2021 SARAMNURI
* Written for - www.saramnuri.com
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "SCDream", sans-serif;
    color: #11101d;
}

a {
    color: #a594ff;
    text-decoration: none;
}

a:hover {
    color: #a594ff;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "SCDream", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #fff;
    border: 1px solid #d6dce2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.4s;
    color: #11101d;
    font-size: 28px;
}

.back-to-top:hover {
    background: #6f52ed;
    border: 1px solid #6f52ed;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #2487ce;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    background: #fff;
    z-index: 997;
    padding: 15px 0;
    border-bottom: 1px solid #e6f2fb;
}

#header.header-scrolled {
    border-color: #fff;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
    font-size: 28px;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: "s-core-dream-light", sans-serif;
}

#header .logo a {
    color: #6f52ed;
}

#header .logo img {
    max-height: 40px;
}

@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 60px;
    font-size: 15px;
    color: #11101d;
    white-space: nowrap;
    transition: 0.3s;
    cursor: pointer;
    font-weight: 500;
}

.navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    color: #6f52ed;
    font-weight: 500;
}

.navbar li.active a {
    color: #6f52ed;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
    color: #6f52ed;
}

.navbar .getstarted {
    background: #6f52ed;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    color: #fff;
    margin-left: 50px;
}

.navbar .getstarted:hover {
    background: #4e2bf4;
    border: none;
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li.active,
.navbar .dropdown ul li.active a,
.navbar .dropdown ul li:hover > a {
    color: #4e2bf4;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #a594ff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #0c0c0c;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #0c0c0c;
}

.navbar-mobile li.active a {
    color: #603de3;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #603de3;
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #2487ce;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 900px;
    position: relative;
    background: #a594ff;
    position: relative;
}

#hero:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    padding-top: 0px;
}

#hero h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
    color: #fff;
    font-family: "SCDream", sans-serif;
}

#hero h2 {
    color: #fff;
    margin: 0 0 30px 5px;
    font-size: 24px;
    letter-spacing: 10px;
}

#hero h3 {
    color: #fff;
    margin: 40px 0 0 0;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
}

#hero .icon-boxes {
    margin-top: 100px;
}

#hero .icon-box {
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

#hero .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

#hero .icon-box .title a {
    color: #124265;
    transition: 0.3s;
}

#hero .icon-box .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

#hero .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 36px;
    line-height: 1;
    color: #2487ce;
}

#hero .icon-box:hover {
    transform: scale(1.08);
}

#hero .icon-box:hover .title a {
    color: #2487ce;
}

@media (min-width: 1400px) {
    #hero {
        background-attachment: fixed;

    }
}

@media (max-width: 1024px) {
    #hero {
        background-attachment: fixed;
        height: 500px !important;
    }

    #hero h1 {
        font-size: 52px;
        line-height: 1.5;
    }

    #hero h2 {
        font-size: 22px;
    }
}

@media (max-height: 800px) {
    #hero {
        height: auto;
    }
}

@media (max-width: 992px) {
    #hero {
        height: auto;
    }

    #hero h1 {
        font-size: 30px;
        line-height: 1.5;
    }

    #hero h2 {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 3px;
    }

    #hero h3 {
        font-size: 18px;
        line-height: 1.5;
        max-width: 55%;
    }
}

@media (max-width: 414px) {
    #hero h3 {
        max-width: 90%;
    }
}

.ani-btn {
    border: 0px;
    display: inline-block;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background: #fff;
    color: #6f52ed;
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 15px 0px 15px 15px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 40px 0px 0px;
    min-width: 205px;
    animation: fadein 3s;
}

.ani-btn:hover,
.ani-btn:focus {
    background: #6f52ed;
    color: #fff;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/*--------------------------------------------------------------
# Main Ani
--------------------------------------------------------------*/

#hero {
    background: #a594ff;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.anicontainer {
    width: 100%;
    height: 300px;
    text-align: left;
    color: #fff;
    font-weight: 700;
}

.anicontainer span {
    display: block;
}

.primary {
    font-size: 60px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 30px;
    animation: ok 3s 1;
    background: #a594ff;
    padding: 0px;
}

.secondary {
    display: none;
    color: #fff;
    position: relative;
    z-index: -1;
    font-size: 46px;
}

@keyframes ok {
    0% {
        left: -100%;
        opacity: 0;
    }

    85% {
        left: -100%;
        opacity: 1;
    }

    100% {
        left: 0%;
        opacity: 1;

    }
}

.ban-text-box {
    width: 365px;
    height: 140px;
    animation: fadein 2s;
    z-index: 3;
    background: url(../img/main/text-box.png) no-repeat;
    position: absolute;
    top: -5px;
}

@keyframes fadein {
    0% {
        left: -100%;
        opacity: 0;
    }

    85% {
        left: -100%;
        opacity: 1;
    }

    100% {
        left: 0%;
        opacity: 1;

    }
}

@media (max-width: 1280px) {
    .anicontainer {
        height: 250px;
    }

    .primary {
        font-size: 60px;
    }

    .secondary {
        font-size: 30px;
    }

    .ban-text-box {
        width: 26%;
        background-size: contain;
    }

}

@media (max-width: 1024px) {
    .anicontainer {
        height: 200px;
    }

    .primary {
        font-size: 36px;
    }

    .secondary {
        font-size: 30px;
    }

    .ban-text-box {
        width: 31%;
        background-size: contain;
    }

}

@media (max-width: 912px) {
    .anicontainer {
        height: 200px;
        width: 400px;
    }

    .anicontainer span.text-box {
        display: none !important;
    }

    .primary {
        font-size: 36px;
        word-break: keep-all;
        padding: 0px;
    }

    .secondary {
        font-size: 30px;
        padding: 0px;
    }

}

@media (max-width: 820px) {
    .anicontainer {
        height: 200px;
    }

    .anicontainer span.text-box {
        display: none !important;
    }

    .primary {
        font-size: 36px;
        word-break: keep-all;
    }

    .secondary {
        font-size: 28px;
    }
}

@media (max-width: 540px) {
    .anicontainer {
        height: 200px;
        width: 100%;
    }

    .anicontainer span.text-box {
        display: none !important;
    }

    .primary {
        font-size: 40px;
        word-break: keep-all;
        padding: 0px 15px;
    }

    .secondary {
        font-size: 20px;
        padding: 0px 15px;
    }
    
    .ani-btn {
        margin-left: 15px;
    }

}


@media (max-width: 430px) {
    .anicontainer {
        height: 200px;
    }

    .anicontainer span.text-box {
        display: none !important;
    }

    .primary {
        font-size: 36px;
        word-break: keep-all;
        padding: 0px 15px;
    }

    .secondary {
        font-size: 20px;
        padding: 0px 15px;
    }
}

@media (max-width: 414px) {
    .anicontainer {
        height: 200px;
    }

    .anicontainer span.text-box {
        display: none !important;
    }

    .primary {
        font-size: 36px;
        word-break: keep-all;
        padding: 0px 15px;
    }

    .secondary {
        font-size: 20px;
        padding: 0px 15px;
    }
    
    .ani-btn {
        margin-left: 15px;
    }

}

@media (max-width: 390px) {
    .anicontainer {
        height: 200px;
    }

    .anicontainer span.text-box {
        display: none !important;
    }

    .primary {
        font-size: 36px;
        word-break: keep-all;
        padding: 0px 15px;
    }

    .secondary {
        font-size: 20px;
        padding: 0px 15px;
    }

}

@media (max-width: 375px) {
    .anicontainer {
        height: 200px;
    }

    .anicontainer span.text-box {
        display: none !important;
    }

    .primary {
        font-size: 36px;
        word-break: keep-all;
        padding: 0px 15px;
    }

    .secondary {
        font-size: 20px;
        padding: 0px 15px;
    }

}

@media (max-width: 360px) {
    .anicontainer {
        height: 200px;
    }

    .anicontainer span.text-box {
        display: none !important;
    }

    .primary {
        font-size: 30px;
        word-break: keep-all;
        padding: 0px 15px;
    }

    .secondary {
        font-size: 20px;
        padding: 0px 15px;
    }

}


.ani {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -10;
}

.anione {
    /*width: 531px;
    height: 420px;*/
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(../img/main/monitor.png) no-repeat;
    background-size: contain;
}

.anitwo {
    width: 182px;
    height: 197px;
    top: -26%;
    right: 0px;
    filter: FlipH;
    -ms-filter: "FlipH";
    z-index: 2;
    background: url(../img/main/performance.png) 10% 10% no-repeat;
    background-size: contain;
}

.anithree {
    width: 190px;
    height: 230px;
    right: 25%;
    top: 30%;
    z-index: 2;
    background: url(../img/main/messege.png) 50% 50% no-repeat;
    background-size: contain;
}

.anifour {
    width: 100px;
    height: 100px;
    right: 210px;
    top: 82%;
    z-index: 2;
    background: url(../img/main/member.png) no-repeat;
    background-size: contain;
}

.anifive {
    width: 181px;
    height: 110px;
    right: -160px;
    top: 340px;
    z-index: 2;
    background: url(../img/main/task.png) no-repeat;
    background-size: contain;
}

@keyframes movetwo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.anitwo {
    animation-duration: 2s;
    animation-name: movetwo;
    animation-timing-function: linear;
}

@keyframes movethree {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.anithree {
    animation-duration: 4s;
    animation-name: movethree;
    animation-timing-function: linear;
}

@keyframes movefour {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.anifour {
    animation-duration: 6s;
    animation-name: movefour;
    animation-timing-function: ease-out;
}

@keyframes movefive {
    0% {
        opacity: 0;
    }

    70% {
        opacity: 0;
    }

    85% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.anifive {
    animation-duration: 8s;
    animation-name: movefive;
    animation-timing-function: ease-out;
}

.ani-mainbody {
    height: 100%;
    width: 100%;
    position: relative;
}

.ani-back {
    width: 500px;
    height: 520px;
    border-radius: 74% 82% 70% 88%;
    padding: 20px;
    background-color: rgba(225, 219, 255, .9);
    z-index: 1;
    transition: .5s;
    position: absolute;
    right: -100px;
    top: -30px;
}

.ani-back:before,
.ani-back:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    animation: RotateAni 5s linear infinite;
}

.ani-back:before {
    border-radius: 130% 151% 189% 166%;
    background-color: rgba(200, 195, 255, .7);
    animation-delay: 0s;
    transition: .5s;
}

.ani-back:after {
    border-radius: 145% 86% 80% 90%;
    background-color: #8c78e7;
    animation-delay: .2s;
    transition: .5s;
}


.ani-back div {
    vertical-align: middle;
}


@keyframes RotateAni {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1280px) {
    .ani-back {
        width: 350px !important;
        height: 370px !important;
        right: 50px;
    }

    .anione {
        width: 100% !important;
        height: 100% !important;
        right: -60%;

    }

    .anitwo {
        width: 40% !important;
        height: 40% !important;
        top: -55px !important;
        background-size: contain !important;
        right: -8%;
    }

    .anithree {
        width: 60% !important;
        height: 60% !important;
        background-size: contain !important;
        top: 30% !important;
        right: 10%;
    }

    .anifour {
        width: 30% !important;
        height: 30% !important;
        background-size: contain !important;
        top: 80% !important;
        right: 3%;
    }

    .anifive {
        width: 40% !important;
        height: 40% !important;
        background-size: contain !important;
        top: 76% !important;
        right: -22%;
    }
}


@media (max-width: 1024px) {
    .ani-back {
        width: 300px !important;
        height: 320px !important;
        right: 40px;
        top: 0px;
    }

    .anione {
        width: 80% !important;
        height: 80% !important;
        top: 15%;
        right: -45%;

    }

    .anitwo {
        width: 35% !important;
        height: 35% !important;
        top: 0% !important;
        background-size: contain !important;
        right: -4%;
    }

    .anithree {
        width: 55% !important;
        height: 55% !important;
        background-size: contain !important;
        top: 30% !important;
        right: 10%;
    }

    .anifour {
        width: 25% !important;
        height: 25% !important;
        background-size: contain !important;
        top: 82% !important;
        right: 4%;
    }

    .anifive {
        width: 30% !important;
        height: 30% !important;
        background-size: contain !important;
        top: 80% !important;
        right: -16%;
    }
}

@media (max-width: 912px) {

    .ani-back {
        /*display: none;*/
        top: 30px;
        right: -20px;
    }

    .anione {
        width: 70% !important;
        height: 70% !important;
        right: -260px;
        bottom: 0px !important;

    }

    .anitwo {
        width: 35% !important;
        height: 35% !important;
        top: 10% !important;
        right: -15%;
    }

    .anithree {
        width: 55% !important;
        height: 55% !important;
        top: 40% !important;
        right: 9%;
    }

    .anifour {
        width: 25% !important;
        height: 25% !important;
        background-size: contain !important;
        top: 74% !important;
        right: 3%;
    }

    .anifive {
        width: 30% !important;
        height: 30% !important;
        background-size: contain !important;
        top: 72% !important;
        right: -15%;
    }
}

@media (max-width: 820px) {

    .ani-back {
        /*display: none;*/
        top: 30px;
    }

    .anione {
        width: 70% !important;
        height: 70% !important;
        top: 25%;
        right: -225px;

    }

    .anitwo {
        width: 35% !important;
        height: 35% !important;
        top: 5% !important;
        right: -4%;
    }

    .anithree {
        width: 55% !important;
        height: 55% !important;
        top: 38% !important;
        right: 12%;
    }

    .anifour {
        width: 25% !important;
        height: 25% !important;
        background-size: contain !important;
        top: 80% !important;
        right: 5%;
    }

    .anifive {
        width: 30% !important;
        height: 30% !important;
        background-size: contain !important;
        top: 78% !important;
        right: -13%;
    }
}

@media (max-width: 768px) {

    .anione,
    .anitwo,
    .anithree,
    .anifour,
    .anifive,
    .ani-back {
        width: 100%;
        height: 100%;
        background-size: contain;
    }
}

@media (max-width: 540px) {

    .anione,
    .anitwo,
    .anithree,
    .anifour,
    .anifive,
    .ani-back {
        display: none;
    }
}

@media (max-width: 430px) {

    .anione,
    .anitwo,
    .anithree,
    .anifour,
    .anifive,
    .ani-back {
        display: none;
    }
}

@media (max-width: 414px) {

    .anione,
    .anitwo,
    .anithree,
    .anifour,
    .anifive,
    .ani-back {
        display: none;
    }
}

@media (max-width: 390px) {

    .anione,
    .anitwo,
    .anithree,
    .anifour,
    .anifive,
    .ani-back {
        display: none;
    }
}

@media (max-width: 375px) {

    .anione,
    .anitwo,
    .anithree,
    .anifour,
    .anifive,
    .ani-back {
        display: none;
    }
}




/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 120px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f8fbfe;
}

.section-bg-blue {
    background-color: #f2f7ff;
}

.section-bg-grey {
    background-color: #f2f5f7;
}

.section-bg-half {
    background: linear-gradient(#ffffff 50%, #6f52ed 50%);
}

.section-title {
    text-align: center;
    padding-bottom: 80px;
    word-break: keep-all;
}

.section-title h1 {
    font-size: 42px;
    font-weight: 700;
    padding-bottom: 0;
    color: #11101d;
    word-break: keep-all;
}

.section-title h1 strong {
    color: #6f52ed;
    font-weight: 700;
    word-break: keep-all;
}

.section-title h2 {
    font-size: 16px;
    font-weight: 500;
    max-width: 160px;
    margin-top: 30px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
    color: #11101d;
    word-break: keep-all;
}


.section-title p {
    margin-bottom: 0;
    font-size: 18px;
    color: #5d5c64;
    word-break: keep-all;
}

@media (max-width: 920px) {
    section {
        padding: 100px 0;
    }

    .section-title {
        padding-bottom: 60px;
    }

    .section-title h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .section-title h2 {
        font-size: 14px;

    }

    .section-title p {
        font-size: 16px;
    }
}

@media (max-width: 860px) {
    section {
        padding: 100px 0;
    }

    .section-title {
        padding-bottom: 60px;
    }

    .section-title h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .section-title h2 {
        font-size: 14px;
    }

    .section-title p {
        font-size: 16px;
    }
}

@media (max-width: 800px) {
    section {
        padding: 100px 0 80px;
    }

    .section-title {
        padding-bottom: 60px;
    }

    .section-title h1 {
        font-size: 26px;
        letter-spacing: -1px;
    }

    .section-title h2 {
        font-size: 14px;
    }

    .section-title p {
        font-size: 16px;
    }
}

@media (max-width: 540px) {
    .section-bg-half {
        background: linear-gradient(#ffffff 20%, #6f52ed 20%);
    }
}


/*--------------------------------------------------------------
# Intro 
--------------------------------------------------------------*/
.intro .icon-box {
    text-align: left;
    padding: 60px 40px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #d6dce2;
    width: 100%;
    height: 365px;
    margin: 10px 0px;
}

.intro .icon-box-bg1 {
    background: linear-gradient(180deg, #f9ecf9, #dbe1fa);
}

.intro .icon-box-bg2 {
    background: linear-gradient(45deg, #ecf5ff, #f5f5ff);
}

.intro .icon-title {
    font-size: 36px;
    font-weight: 700;
    color: #0c0c0c;
}

.intro .icon-title h3 {
    font-size: 42px;
    font-weight: 700;
    color: #0c0c0c;
}

.intro .icon-box .hr-icon {
    width: 250px;
    height: 242px;
    background: url(../img/main/hr.png) no-repeat;
    margin-left: auto;
}

.intro .icon-box .pay-icon {
    width: 160px;
    height: 242px;
    background: url(../img/main/pay.png) no-repeat;
    margin-left: auto;
}

.intro .icon-box .tna-icon {
    width: 250px;
    height: 242px;
    background: url(../img/main/tna.png) no-repeat;
    margin-left: auto;
}

.intro .icon-box .evl-icon {
    width: 250px;
    height: 242px;
    background: url(../img/main/evl.png) no-repeat;
    margin-left: auto;
}

.intro .icon-box .edu-icon {
    width: 250px;
    height: 242px;
    background: url(../img/main/edu.png) no-repeat;
    margin-left: auto;
    top: 110px !important;
}

.intro .icon-box .contract-icon {
    width: 250px;
    height: 242px;
    background: url(../img/main/contract.png) no-repeat;
    margin-left: auto;
    top: 110px !important;
}



.intro .icon-box .icon {
    transition: ease-in-out 0.3s;
    position: absolute;
    right: 30px;
    top: 58px;
}

.intro .icon-box .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
}


.intro .icon-box p {
    line-height: 1.5;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 30px;
    color: #11101d;
    font-weight: 400;
}

.intro .btn {
    font-size: 14px;
    color: #6f52ed;
    cursor: pointer;
    margin-top: 30px;
    padding: 0px;
}

.intro .btn:hover {
    text-decoration: underline;
}

.intro .btn i {
    font-size: 24px;
    color: #6f52ed;
    margin-left: 10px;
    vertical-align: middle;
}

@media (max-width: 1280px) {

    .intro .icon-box {
        height: auto;
    }

    .intro .icon-title {
        font-size: 20px;
    }

    .intro .icon-title h3 {
        font-size: 30px;
    }

    .intro .icon-box p {
        font-size: 16px;
    }

    .intro .icon-box .icon {
        right: -35px;
    }

    .intro .icon-box .hr-icon,
    .intro .icon-box .pay-icon,
    .intro .icon-box .tna-icon,
    .intro .icon-box .evl-icon,
    .intro .icon-box .edu-icon,
    .intro .icon-box .contract-icon {
        width: 45%;
        height: 45%;
        background-size: contain;
    }
}

@media (max-width: 1024px) {

    .intro .icon-box {
        height: auto;
    }

    .intro .icon-title {
        font-size: 20px;
    }

    .intro .icon-title h3 {
        font-size: 30px;
    }

    .intro .icon-box p {
        font-size: 16px;
    }

    .intro .icon-box .icon {
        right: -35px;
    }

    .intro .icon-box .hr-icon,
    .intro .icon-box .pay-icon,
    .intro .icon-box .tna-icon,
    .intro .icon-box .evl-icon,
    .intro .icon-box .edu-icon,
    .intro .icon-box .contract-icon {
        width: 45%;
        height: 45%;
        background-size: contain;
    }
}

@media (max-width: 930px) {

    .intro .icon-box {
        height: auto;
    }

    .intro .icon-title {
        font-size: 20px;
    }

    .intro .icon-title h3 {
        font-size: 30px;
    }

    .intro .icon-box p {
        font-size: 16px;
    }

    .intro .icon-box .icon {
        right: 16px;
    }


    .intro .icon-box .hr-icon,
    .intro .icon-box .pay-icon,
    .intro .icon-box .tna-icon,
    .intro .icon-box .evl-icon,
    .intro .icon-box .edu-icon,
    .intro .icon-box .contract-icon {
        width: 35%;
        height: 35%;
        background-size: contain;
    }
}

@media (max-width: 820px) {

    .intro .icon-box {
        height: auto;
    }

    .intro .icon-title {
        font-size: 20px;
    }

    .intro .icon-title h3 {
        font-size: 30px;
    }

    .intro .icon-box p {
        font-size: 16px;
    }
    
    .intro .icon-box .edu-icon,
    .intro .icon-box .contract-icon {
        top: 195px !important;
    }



    .intro .icon-box .hr-icon,
    .intro .icon-box .pay-icon,
    .intro .icon-box .tna-icon,
    .intro .icon-box .evl-icon,
    .intro .icon-box .edu-icon,
    .intro .icon-box .contract-icon {
        width: 30%;
        height: 30%;
        background-size: contain;
    }
}

@media (max-width: 430px) {

    .intro .icon-box .hr-icon,
    .intro .icon-box .pay-icon,
    .intro .icon-box .tna-icon,
    .intro .icon-box .evl-icon,
    .intro .icon-box .edu-icon,
    .intro .icon-box .contract-icon {
        width: 40%;
        height: 40%;
        background-size: contain;
    }

    .intro .icon-box:first-child {
        margin-top: 0px;
    }

    .intro .icon-box {
        margin-top: 20px !important;
        padding: 40px 20px;
        height: 280px;
    }

    .intro .icon-box .icon {
        right: 4px;
    }

    .intro .icon-title {
        font-size: 24px;
    }

    .intro .icon-title h3 {
        font-size: 28px;
    }

    .intro .icon-box p {
        font-size: 16px;
    }
}

@media (max-width: 414px) {

    .intro .icon-box .hr-icon,
    .intro .icon-box .pay-icon,
    .intro .icon-box .tna-icon,
    .intro .icon-box .evl-icon,
    .intro .icon-box .edu-icon,
    .intro .icon-box .contract-icon {
        width: 35%;
        height: 35%;
        background-size: contain;
    }

    .intro .icon-box:first-child {
        margin-top: 0px;
    }

    .intro .icon-box {
        margin-top: 20px !important;
        padding: 40px 20px;
        height: 280px;
    }

    .intro .icon-box .icon {
        right: -5px;
    }

    .intro .icon-title {
        font-size: 24px;
    }

    .intro .icon-title h3 {
        font-size: 28px;
    }

    .intro .icon-box p {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    
    .intro .icon-box .icon {
        right: 0px;
    }

    .intro .icon-box .hr-icon,
    .intro .icon-box .pay-icon,
    .intro .icon-box .tna-icon,
    .intro .icon-box .evl-icon,
    .intro .icon-box .edu-icon,
    .intro .icon-box .contract-icon {
        width: 30%;
        height: 30%;
        background-size: contain;
    }


}


/*--------------------------------------------------------------
# Menu
--------------------------------------------------------------*/
.ticker {
    display: flex;
}

.ticker_list {
    display: flex;
    animation: ticker 40s infinite linear;
}

.ticker:hover .ticker_list {
    animation-play-state: paused;
}

.ticker_item {
    margin: 0px 15px;
    padding: 30px;
    width: 280px;
    height: 330px;
    text-align: center;
    background-color: #f1e9fe;
    border-radius: 10px;
    border: 1px solid #f1e9fe;
    display: block;
    font-size: 16px;
    cursor: pointer;

}

.ticker_item a {
    text-decoration: none;
    line-height: 1.5;
    letter-spacing: -1px;
    color: #1a1e29;
}

.ticker_item a > p.strong {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
}

.ticker_item:hover {
    background-color: #6f52ed;
    color: #fff !important;
}

.ticker_item:hover a {
    color: #fff !important;
}


.slideshow-container {
    max-width: 1140px;
    height: 662px;
    position: relative;
    margin: auto;
    background: url(../img/roothr/hr-01.png) no-repeat;
    padding: 27px 18px 18px;
    background-size: contain;
}


@-moz-keyframes ticker {
    100% {
        transform: translateX(-60%);
    }
}

@-webkit-keyframes ticker {
    100% {
        transform: translateX(-60%);
    }
}

@-o-keyframes ticker {
    100% {
        transform: translateX(-60%);
    }
}

@keyframes ticker {
    100% {
        transform: translateX(-60%);
    }
}

@media screen and (max-width: 768px) {
    .ticker_item {
        width: 180px;
        height: 200px;
        padding: 15px;
    }

    .ticker_item img {
        width: 25%;
        height: auto;
    }

    .ticker_item a > p.strong {
        font-size: 18px;
        margin-top: 15px;
    }

    .ticker_item a > p {
        font-size: 14px;
    }

    .slideshow-container {
        background-size: contain;
        height: auto;
    }
}

@media screen and (max-width: 640px) {
    .ticker_item {
        width: 180px;
        height: 200px;
        padding: 15px;
    }

    .ticker_item img {
        width: 25%;
        height: auto;
    }

    .ticker_item a > p.strong {
        font-size: 18px;
        margin-top: 15px;
    }

    .ticker_item a > p {
        font-size: 14px;
    }

    .slideshow-container {
        background-size: contain;
        height: auto;
        padding: 4% 2% 0%;
    }
}


@media (max-width: 540px) {
    .ticker_list {
        animation: none;
        display: block;
        margin: 0 auto;
        text-align: center;
    }

    .ticker_item {
        width: 160px;
        height: 200px;
        padding: 15px;
        display: inline-flex;
        margin: 10px;
    }

    .ticker_item a > p.strong {
        font-size: 16px;
    }

    .xs-display-none {
        display: none !important;
    }

}

@media (max-width: 375px) {
    .ticker_item {
        width: 150px;
        height: 200px;
        padding: 15px;
        display: inline-flex;
        margin: 10px;
    }

    .ticker_item a > p.strong {
        font-size: 16px;
    }

    .xs-display-none {
        display: none !important;
    }
}


/*--------------------------------------------------------------
# Device
--------------------------------------------------------------*/
.device .device-img {
    margin-bottom: 80px;
    padding: 0px;
    text-align: center;
}

.device .device-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.device .icon-box {
    text-align: center;
    padding: 20px;
    transition: all ease-in-out 0.3s;
    width: 100%;
    height: 200px;
    border-left: 1px solid rgb(255, 255, 255, 0.1);
}

.device .icon-box.last {
    border-right: 1px solid rgb(255, 255, 255, 0.1);
}

.device .icon-box .device-icon-01 {
    background: url(../img/main/device-icon-01.png) no-repeat;
}

.device .icon-box .device-icon-02 {
    background: url(../img/main/device-icon-02.png) no-repeat;
}

.device .icon-box .device-icon-03 {
    background: url(../img/main/device-icon-03.png) no-repeat;
}

.device .icon-box .device-icon-04 {
    background: url(../img/main/device-icon-04.png) no-repeat;
}

.device .icon-box .icon {
    margin: 0 auto;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

.device .icon-box p {
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    font-weight: 400;
}

@media (max-width: 820px) {
    .device .icon-box {
        border-left: 0px;
    }

    .device .icon-box.last {
        border-right: 0px;
    }
}

@media (max-width: 540px) {
    .device .icon-box {
        border-left: 0px;
    }

    .device .icon-box.last {
        border-right: 0px;
    }
}

/*--------------------------------------------------------------
# CloudService
--------------------------------------------------------------*/
.CloudService .green-line {
    border: 1px solid #9fe0a4 !important;
}

.CloudService .green-line .text-box {
    background: #ebffea !important;
}

.CloudService .green-line {
    border: 1px solid #9fe0a4 !important;
}

.CloudService .green-line .card {
    color: #13bd7e !important;
}

.CloudService .blue-line {
    border: 1px solid #b8cfeb !important;
}

.CloudService .blue-line .text-box {
    background: #e7f2ff !important;
}

.CloudService .blue-line .card {
    color: #0085ff !important;
}

.CloudService .purple-line {
    border: 1px solid #c8cbf8 !important;
}

.CloudService .purple-line .text-box {
    background: #ecedff !important;
}

.CloudService .purple-line .card {
    color: #603de3 !important;
}

.CloudService .CloudService-item .title {
    margin: 40px 0px;
    text-align: center;
    text-align: -webkit-center;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 6px;
}

.CloudService .CloudService-item .item-box {
    text-align: left;
    padding: 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.1);
}

.CloudService .CloudService-item .text-box {
    display: block;
    text-align: left;
    color: #1a1e29;
    letter-spacing: -1px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

.CloudService .CloudService-item .text-box h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.5px;
    word-break: keep-all;
}

.CloudService .CloudService-item .text-box p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    word-break: keep-all;
    color: #5a5e67;
    height: 50px;
}

.CloudService .CloudService-item .card {
    transition: all 0.3s ease-in-out;
    padding: 10px 0;
    position: relative;
    will-change: transform;
    background: #fafbfe;
    border-radius:10px;
    border: 0px;
}

.CloudService .CloudService-item .text-box span {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0px;
}

.CloudService .CloudService-item .list p {
    text-align: left;
    color: #0c0c0c;
    margin-bottom: 0px;
    font-size: 14px;
    word-break: keep-all;
    line-height: 3;
}

.CloudService .CloudService-item .list p i {
    margin-right: 10px;
    background: #fff;
    border-radius: 50px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 1.5;
}


@media (max-width: 1280px) {
    .CloudService {
        background-image: none;
    }

    .CloudService .CloudService-item .item-box {
        margin: 0 auto;
    }

    .CloudService .CloudService-item .text-box {
        padding: 15px;
    }
}

@media (max-width: 1024px) {
    .CloudService .CloudService-item .item-box {
        margin: 10px auto;
        padding: 20px 15px;
    }
}

@media (max-width: 992px) {
    .CloudService {
        background-image: none;
    }

    .CloudService .CloudService-item .item-box {
        padding: 5%;
        margin: 0 auto;
    }

    .CloudService .CloudService-item .text-box {
        padding: 15px;
        margin: 0 auto;
    }
}

@media (max-width: 920px) {
    .CloudService {
        background-image: none;
    }

    .CloudService .CloudService-item .text-box {
        padding: 15px;
    }
}


@media screen and (max-width: 768px) {
    .CloudService {
        background-image: none;
    }

    .CloudService .CloudService-item .item-box {
        padding: 5%;
        margin: 0 auto;
    }

    .CloudService .CloudService-item .text-box {
        padding: 20px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 640px) {
    .CloudService {
        background-image: none;
    }

    .CloudService .CloudService-item .item-box {
        padding: 5%;
        margin: 0 auto;
    }

    .CloudService .CloudService-item .text-box {
        padding: 20px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 540px) {
    .CloudService {
        background-image: none;
    }

    .CloudService .CloudService-item {
        display: flex;
        padding: 0px;
        
    }

    .CloudService .CloudService-item .item-box {
        margin: 0 auto;
    }

    .CloudService .CloudService-item .text-box {
        padding: 10px;
        margin: 0 auto;
    }
    
    .CloudService .CloudService-item .text-box h4 {
        font-size: 24px;
    }
    
    .CloudService .CloudService-item .text-box p {
        font-size: 16px;
    }
}

@media (max-width: 414px) {
    .CloudService .CloudService-item .item-box {
        padding: 5%;
    }
    
    .CloudService .CloudService-item .text-box h4 {
        font-size: 24px;
    }
    
    .CloudService .CloudService-item .text-box p {
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .CloudService .CloudService-item .item-box {
        padding: 5%;
    }
}

@media (max-width: 360px) {
    .CloudService .CloudService-item .item-box {
        padding: 5%;
    }
    
    .CloudService .CloudService-item .text-box h4 {
        font-size: 24px;
    }
    
    .CloudService .CloudService-item .text-box p {
        font-size: 16px;
    }
}


/*--------------------------------------------------------------
# Industries 
--------------------------------------------------------------*/
.industries .icon-box {
    text-align: left;
    padding: 60px 30px;
    transition: all ease-in-out 0.3s;
    background: #f1f4f8;
    border-radius: 10px;
    border: 1px solid #d6dce2;
    width: 100%;
    height: 208px;
    margin: 10px 0px;
    overflow: hidden;
    letter-spacing: -0.8px;
}

.industries .icon-title {
    font-size: 30px;
    font-weight: 700;
    color: #0c0c0c;
}

.industries .icon-title strong {
    font-weight: 700;
    color: #6f52ed;
}

.industries .icon-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0c0c0c;
}

.industries .icon-box .icon {
    transition: ease-in-out 0.3s;
    position: absolute;
    right: 12px;
    top: 10px;
}

.industries .icon-box .ids-icon-01 {
    width: 255px;
    height: 208px;
    background: url(../img/main/ids-icon-01.png) no-repeat;
    margin-left: auto;
    object-fit: cover;
}

.industries .icon-box .ids-icon-02 {
    width: 255px;
    height: 208px;
    background: url(../img/main/ids-icon-02.png) no-repeat;
    margin-left: auto;
    object-fit: cover;
}

.industries .icon-box .ids-icon-03 {
    width: 255px;
    height: 208px;
    background: url(../img/main/ids-icon-03.png) no-repeat;
    margin-left: auto;
    object-fit: cover;
}

.industries .icon-box .ids-icon-04 {
    width: 255px;
    height: 208px;
    background: url(../img/main/ids-icon-04.png) no-repeat;
    margin-left: auto;
    object-fit: cover;
}

.industries .icon-box .ids-icon-05 {
    width: 255px;
    height: 208px;
    background: url(../img/main/ids-icon-05.png) no-repeat;
    margin-left: auto;
    object-fit: cover;
}


.industries .icon-box .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
}


.industries .icon-box p {
    line-height: 1.5;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 30px;
    color: #11101d;
    font-weight: 400;
}

.industries .btn {
    font-size: 14px;
    color: #6f52ed;
    cursor: pointer;
    margin-top: 30px;
    padding: 0px;
}

.industries .btn:hover {
    text-decoration: underline;
}

.industries .btn i {
    font-size: 24px;
    color: #6f52ed;
    margin-left: 10px;
    vertical-align: middle;
}

@media (max-width: 1280px) {

    .industries .icon-box {
        padding: 20px;
        height: auto;
    }

    .industries .icon-title {
        font-size: 24px;
    }

    .industries .icon-box .icon {
        top: 17px;
    }

    .industries .icon-box .ids-icon-01,
    .industries .icon-box .ids-icon-02,
    .industries .icon-box .ids-icon-03,
    .industries .icon-box .ids-icon-04,
    .industries .icon-box .ids-icon-05 {
        width: 41%;
        height: 80%;
        background-size: contain;
    }
}

@media (max-width: 1024px) {

    .industries .icon-box {
        padding: 20px;
        height: auto;
    }

    .industries .icon-title {
        font-size: 24px;
    }

    .industries .icon-box .icon {
        top: 17px;
    }

    .industries .icon-box .ids-icon-01,
    .industries .icon-box .ids-icon-02,
    .industries .icon-box .ids-icon-03,
    .industries .icon-box .ids-icon-04,
    .industries .icon-box .ids-icon-05 {
        width: 41%;
        height: 80%;
        background-size: contain;
    }
}

@media (max-width: 860px) {

    .industries .icon-box {
        padding: 20px;
        height: auto;
    }

    .industries .icon-title {
        font-size: 24px;
    }

    .industries .icon-box .icon {
        top: 36px;
    }

    .industries .icon-box .ids-icon-01,
    .industries .icon-box .ids-icon-02,
    .industries .icon-box .ids-icon-03,
    .industries .icon-box .ids-icon-04,
    .industries .icon-box .ids-icon-05 {
        width: 30%;
        height: 80%;
        background-size: contain;
    }
}

@media (max-width: 820px) {

    .industries .icon-box {
        padding: 20px;
        height: auto;
    }

    .industries .icon-title {
        font-size: 24px;
    }

    .industries .icon-box .ids-icon-01,
    .industries .icon-box .ids-icon-02,
    .industries .icon-box .ids-icon-03,
    .industries .icon-box .ids-icon-04,
    .industries .icon-box .ids-icon-05 {
        width: 30%;
        height: 80%;
        background-size: contain;
    }
}

@media (max-width: 540px) {

    .industries .icon-box .ids-icon-01,
    .industries .icon-box .ids-icon-02,
    .industries .icon-box .ids-icon-03,
    .industries .icon-box .ids-icon-04,
    .industries .icon-box .ids-icon-05 {
        width: 38%;
        height: 78%;
        background-size: contain;
    }

    .industries .icon-box:first-child {
        margin-top: 0px;
    }

    .industries .icon-box {
        margin-top: 20px !important;
        padding: 20px;
        height: auto;
    }

    .industries .icon-box .icon {
        right: -5px;
        top: 20px;
    }

    .industries .icon-title {
        font-size: 24px;
    }

    .industries .icon-title h3 {
        font-size: 20px;
    }

    .industries .icon-box p {
        font-size: 16px;
    }
}

@media (max-width: 430px) {

    .industries .icon-box .ids-icon-01,
    .industries .icon-box .ids-icon-02,
    .industries .icon-box .ids-icon-03,
    .industries .icon-box .ids-icon-04,
    .industries .icon-box .ids-icon-05 {
        width: 38%;
        height: 78%;
        background-size: contain;
    }

    .industries .icon-box:first-child {
        margin-top: 0px;
    }

    .industries .icon-box {
        margin-top: 20px !important;
        padding: 20px;
        height: auto;
    }

    .industries .icon-box .icon {
        right: -5px;
        top: 20px;
    }

    .industries .icon-title {
        font-size: 24px;
    }

    .industries .icon-title h3 {
        font-size: 20px;
    }

    .industries .icon-box p {
        font-size: 16px;
    }
}

@media (max-width: 414px) {

    .industries .icon-box .ids-icon-01,
    .industries .icon-box .ids-icon-02,
    .industries .icon-box .ids-icon-03,
    .industries .icon-box .ids-icon-04,
    .industries .icon-box .ids-icon-05 {
        width: 38%;
        height: 78%;
        background-size: contain;
    }

    .industries .icon-box:first-child {
        margin-top: 0px;
    }

    .industries .icon-box {
        margin-top: 20px !important;
        padding: 20px;
        height: auto;
    }

    .industries .icon-box .icon {
        right: 3px;
        top: 20px;
    }

    .industries .icon-title {
        font-size: 24px;
    }

    .industries .icon-title h3 {
        font-size: 20px;
    }

    .industries .icon-box p {
        font-size: 16px;
    }
}

@media (max-width: 360px) {

    .industries .icon-box .ids-icon-01,
    .industries .icon-box .ids-icon-02,
    .industries .icon-box .ids-icon-03,
    .industries .icon-box .ids-icon-04,
    .industries .icon-box .ids-icon-05 {
        width: 44%;
        height: 78%;
        background-size: contain;
    }


}


/*--------------------------------------------------------------
# Security
--------------------------------------------------------------*/
.security {
    background: url("../img/security/bg.png") 50% 50% no-repeat;
}

.security .security-item {
    padding: 20px
}

.security .security-item .title {
    margin: 40px 0px;
    text-align: center;
    text-align: -webkit-center;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 6px;
}

.security .security-item .item-box {
    text-align: center;
    padding: 36% 33%;
    transition: all ease-in-out 0.3s;
    background: #fff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    border-radius: 100%;
    width: 270px;
    height: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.security .security-item .text-box {
    display: block;
    text-align: center;
    padding: 30px;
    max-width: 270px;
    color: #1a1e29;
}


.security .security-item .text-box h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.security .security-item .text-box p {
    font-size: 14px;
    font-weight: 400;
    word-break: keep-all;
}


@media (max-width: 1280px) {
    .security {
        background-image: none;
    }

    .security .security-item .item-box {
        width: 180px;
        height: 180px;
        padding: 23%;
        margin: 0 auto;
    }

    .security .security-item .text-box {
        padding: 15px;
    }
}

@media (max-width: 992px) {
    .security {
        background-image: none;
    }

    .security .security-item .text-box {
        width: 200px;
        height: 200px;
        padding: 22%;
        margin: 0 auto;
    }

    .security .security-item .text-box {
        padding: 15px;
        margin: 0 auto;
    }
}

@media (max-width: 920px) {
    .security {
        background-image: none;
    }

    .security .security-item .text-box {
        padding: 15px;
    }
}


@media screen and (max-width: 768px) {
    .security {
        background-image: none;
    }

    .security .security-item .item-box {
        width: 210px;
        height: 210px;
        padding: 22%;
        margin: 0 auto;
    }

    .security .security-item .text-box {
        padding: 20px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 640px) {
    .security {
        background-image: none;
    }

    .security .security-item .item-box {
        padding: 30%;
        margin: 0 auto;
    }

    .security .security-item .text-box {
        padding: 20px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 540px) {
    .security {
        background-image: none;
    }

    .security .security-item {
        display: block;
    }

    .security .security-item .item-box {
        width: 180px;
        height: 180px;
        padding: 24%;
        margin: 0 auto;
    }

    .security .security-item .text-box {
        padding: 20px 0px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 430px) {
    .security .security-item .text-box {
        padding: 20px 0px;
        margin: 0 auto;
    }
}

@media (max-width: 414px) {
    .security .security-item .item-box {
        padding: 16%;
    }
}

@media (max-width: 375px) {
    .security .security-item .item-box {
        padding: 19%;
    }
}

@media (max-width: 360px) {
    .security .security-item .item-box {
        padding: 19%;
    }
}


/*--------------------------------------------------------------
# Certification
--------------------------------------------------------------*/

.certification .certification-item {
    padding: 20px
}

.certification .certification-item .title {
    margin: 40px 0px;
    text-align: center;
    text-align: -webkit-center;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 6px;
}

.certification .certification-item .item-box {
    text-align: left;
    padding: 30px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 20px;
    width: 212px;
    height: 240px;
}

.certification .certification-item .text-box {
    display: block;
    text-align: center;
    padding: 30px 0px 0px;
    max-width: 270px;
    color: #1a1e29;
}


.certification .certification-item .text-box h4 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.certification .certification-item .text-box p {
    font-size: 14px;
    font-weight: 400;
}


@media (max-width: 1280px) {
    .certification {
        background-image: none;
    }

    .certification .certification-item .item-box {
        width: 180px;
        height: 220px;
        margin: 0 auto;
        padding: 30px 15px;
    }

    .certification .certification-item .text-box {
        padding: 15px;
    }
}

@media (max-width: 1024px) {
    .certification .certification-item .item-box {
        width: 200px;
        height: 230px;
        margin: 10px auto;
    }
}

@media (max-width: 992px) {
    .certification {
        background-image: none;
    }

    .certification .certification-item .item-box {
        width: 280px;
        height: 200px;
        padding: 5%;
        margin: 0 auto;
    }

    .certification .certification-item .text-box {
        padding: 15px;
        margin: 0 auto;
    }
}

@media (max-width: 920px) {
    .certification {
        background-image: none;
    }

    .certification .certification-item .text-box {
        padding: 15px;
    }
}


@media screen and (max-width: 768px) {
    .certification {
        background-image: none;
    }

    .certification .certification-item .item-box {
        width: 280px;
        height: 200px;
        padding: 5%;
        margin: 0 auto;
    }

    .certification .certification-item .text-box {
        padding: 20px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 640px) {
    .certification {
        background-image: none;
    }

    .certification .certification-item .item-box {
        padding: 5%;
        margin: 0 auto;
    }

    .certification .certification-item .text-box {
        padding: 20px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 540px) {
    .certification {
        background-image: none;
    }

    .certification .certification-item {
        display: flex;
    }

    .certification .certification-item .item-box {
        width: 280px;
        height: 180px;
        margin: 0 auto;
    }

    .certification .certification-item .text-box {
        padding: 20px;
        margin: 0 auto;
    }
}

@media (max-width: 414px) {
    .certification .certification-item .item-box {
        padding: 5%;
    }
}

@media (max-width: 375px) {
    .certification .certification-item .item-box {
        padding: 5%;
    }
}

@media (max-width: 360px) {
    .certification .certification-item .item-box {
        padding: 5%;
    }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(180deg, #f9ecf9, #dbe1fa);
}


.cta p {
    color: #1a1b74;
    font-size: 24px;
}

.cta-info {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cta-info .btn {
        z-index: 9998;
    }
}

@media screen and (max-width: 640px) {
    .cta-info .btn {
        z-index: 9998;
    }
}

@media screen and (max-width: 540px) {
    .cta p {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Reference
--------------------------------------------------------------*/

/*.reference .row.reference-item {
    width: auto !important;
}*/

.reference .reference-item {
    padding: 5px;
}

.reference .reference-item .title {
    margin: 40px 0px;
    text-align: center;
    text-align: -webkit-center;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 6px;
}

.reference .reference-item .item-box {
    text-align: left;
    padding: 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border: 1px solid #d6dce2;
    border-radius: 10px;
    /*width: 200px;
    height: 120px;*/
    margin: 5px auto;
}

.reference .reference-item .item-box img {
    width: 100%
}


@media (max-width: 1280px) {
    .reference {
        background-image: none;
    }

    .reference .reference-item .item-box {
        /*width: 180px;
        height: 140px;*/
        padding: 30px 15px;
    }

}

@media (max-width: 1024px) {
    .reference .reference-item .item-box {
        /*width: 150px;
        height: auto;*/
    }
}

@media (max-width: 992px) {
    .reference {
        background-image: none;
    }

    .reference .reference-item .item-box {
        /*width: 200px;
        height: auto;*/
        padding: 5%;
    }
    
}

@media (max-width: 920px) {
    .reference {
        background-image: none;
    }
}


@media screen and (max-width: 768px) {
    .reference {
        background-image: none;
    }

    .reference .reference-item .item-box {
        /*width: 200px;
        height: auto;*/
        padding: 5%;
    }
}

@media screen and (max-width: 640px) {
    .reference {
        background-image: none;
    }
    
    .reference-item.row > * {
        width: auto;
    }


    .reference .reference-item .item-box {
        padding: 5%;
    }
}

@media screen and (max-width: 540px) {
    .reference {
        background-image: none;
    }

    .reference .reference-item {
        display: flex;
        justify-content: center;
    }

    .reference .reference-item .item-box {
        /*width: 150px;
        height: auto;*/
    }
}

@media (max-width: 414px) {
    .reference .reference-item .item-box {
        padding: 5%;
    }
}

@media (max-width: 390px) {
    .reference-item.row > * {
        padding: 0px 8px;
    }

}

@media (max-width: 375px) {
    .reference-item.row > * {
        width: 80%;
        margin: 0 auto;
    }

    .reference .reference-item .item-box {
        padding: 5%;
    }
}

@media (max-width: 360px) {
    .reference-item.row > * {
        width: 80%;
        margin: 0 auto;
    }

    .reference .reference-item .item-box {
        padding: 5%;
    }
}


/*--------------------------------------------------------------
# Co-Biz
--------------------------------------------------------------*/

.cobiz .cobiz-item {
    padding: 10px
}

.cobiz .cobiz-item .title {
    margin: 40px 0px;
    text-align: center;
    text-align: -webkit-center;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 6px;
}

.cobiz .cobiz-item .item-box {
    text-align: left;
    padding: 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border: 1px solid #d6dce2;
    border-radius: 10px;
   /* width: 212px;
    height: 120px;*/
}

.cobiz .cobiz-item .item-box img {
    width: 100%;
}


@media (max-width: 1280px) {
    .cobiz {
        background-image: none;
    }

    .cobiz .cobiz-item .item-box {
       /* width: 180px;
        height: 140px;
        margin: 0 auto;
        padding: 30px 15px;*/
    }
}

@media (max-width: 1024px) {
    .cobiz .cobiz-item .item-box {
        /*width: 200px;
        height: 140px;
        */
        margin: 5px auto;
    }
}

@media (max-width: 992px) {
    .cobiz {
        background-image: none;
    }

    .cobiz .cobiz-item .item-box {
        /*width: 280px;
        height: 150px;
        padding: 5%;
        margin: 0 auto;*/
        margin: 5px auto;
    }
}

@media (max-width: 920px) {
    .cobiz {
        background-image: none;
    }
}


@media screen and (max-width: 768px) {
    .cobiz {
        background-image: none;
    }

    .cobiz .cobiz-item .item-box {
        /*width: 280px;
        height: 150px;
        
        margin: 0 auto;*/
        padding: 5%;
        margin: 5px auto;
    }
}

@media screen and (max-width: 640px) {
    .cobiz {
        background-image: none;
    }

    .cobiz .cobiz-item .item-box {
        padding: 5%;
        margin: 5px auto;
    }
}

@media screen and (max-width: 540px) {
    .cobiz {
        background-image: none;
    }

    .cobiz .cobiz-item {
        display: flex;
    }

    .cobiz .cobiz-item .item-box {
        /*width: 280px;
        height: 160px;*/
       margin: 5px auto;
    }
}

@media (max-width: 430px) {
    .cobiz .cobiz-item .item-box {
        width: 80%;
        padding: 5%;
        margin: 5px auto;
    }
}

@media (max-width: 414px) {
    .cobiz .cobiz-item .item-box {
        width: 80%;
        padding: 5%;
        margin: 5px auto;
    }
}

@media (max-width: 375px) {
    .cobiz .cobiz-item .item-box {
        width: 80%;
        padding: 5%;
        margin: 5px auto;
    }
}

@media (max-width: 360px) {
    .cobiz .cobiz-item .item-box {
        width: 80%;
        padding: 5%;
        margin: 5px auto;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #444444;
    font-size: 14px;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #1a1e29;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "SCDream", sans-serif;
    color: #777777;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    position: relative;
    padding-bottom: 18px;
}

#footer .footer-top p {
    font-size: 14px;
    font-weight: 400;
    color: #9aa0ac;
    position: relative;
    line-height: 1.8;
}

#footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-links ul i {
    padding-right: 2px;
    color: #2487ce;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-links ul li {
    padding: 10px 0;
    /*    display: flex;*/
    display: inline;
    align-items: center;
}

#footer .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-links ul a {
    color: #9aa0ac;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    padding-left: 60px;
}

#footer .footer-links ul a:hover {
    text-decoration: none;
    color: #1a1e29;
    font-weight: 500;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #444444;
}

#footer .footer-copy {
    border-top: 1px solid #d6dce2;
    background: #fff;
}

@media (max-width: 992px) {
    #footer .footer-links ul {
        float: none !important;
    }

    #footer .footer-links ul a {
        padding-left: 0px;
        padding-right: 20px;
        margin-top: 10px;
    }

    .copyright {
        padding: 7px 0px;
    }
}


@media screen and (max-width: 768px) {
    #footer .footer-links ul {
        float: none !important;
    }

    #footer .footer-links ul a {
        padding-left: 0px;
        padding-right: 20px;
        margin-top: 10px;
    }

    .copyright {
        padding: 7px 0px;
    }
}

@media screen and (max-width: 640px) {
    #footer .footer-links ul {
        float: none !important;
    }

    #footer .footer-links ul a {
        padding-left: 0px;
        padding-right: 20px;
        margin-top: 10px;
    }


}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li + li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #2487ce;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "SCDream", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #2487ce;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #2487ce;
}

.about .content .btn-learn-more:hover {
    background: #2487ce;
    color: #fff;
    text-decoration: none;
}

/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/
.about-video .content {
    font-size: 15px;
}

.about-video .content h3 {
    font-weight: 700;
    font-size: 24px;
    color: #124265;
}

.about-video .content ul {
    list-style: none;
    padding: 0;
}

.about-video .content ul li {
    padding-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.about-video .content ul i {
    font-size: 24px;
    color: #2487ce;
    position: absolute;
    left: 0;
    top: -2px;
}

.about-video .content p:last-child {
    margin-bottom: 0;
}

.about-video .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#2487ce 50%, rgba(36, 135, 206, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about-video .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about-video .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(36, 135, 206, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about-video .play-btn:hover::after {
    border-left: 15px solid #2487ce;
    transform: scale(20);
}

.about-video .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
# Impact 
--------------------------------------------------------------*/
.impact .icon-box {
    text-align: center;
    padding: 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #d6dce2;
    width: 100%;
    height: 200px;
}

.impact .icon-box .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

.impact .icon-box .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
}

.impact .icon-box .icon svg {
    position: absolute;
    top: 0;
    left: 0;
}

.impact .icon-box .icon svg path {
    transition: 0.5s;
    fill: #f5f5f5;
}

.impact .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.impact .icon-box p {
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 10px;
    color: #11101d;
    font-weight: 400;
}

.impact .icon-box p strong {
    color: #3366ff;
    font-weight: 500;
}

.impact .iconbox-blue i {
    color: #3366ff;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .services-item {
    margin-bottom: 30px;
}

.services #services-flters {
    padding: 0;
    margin: 0 auto 40px auto;
    list-style: none;
    text-align: center;
}

.services #services-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 15px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: #b2b8be;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    background: #e5ebf1;
    width: 200px;
    height: 50px;
    border-radius: 3px;
    border: 1px solid #d6dce2;
}

.services #services-flters li:hover,
.services #services-flters li.filter-active {
    color: #fff;
    background: #3366ff;
    border: 1px solid #3366ff;
}

.services #services-flters li:last-child {
    margin-right: 0;
}

.services .services-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services .services-wrap .services-info {
    display: block;
    text-align: center;
    z-index: 3;
    transition: all 0.5s ease 0s;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.services .services-wrap .services-info p {
    color: #11101d;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0;
    margin: 40px 0 20px;
}

@media (max-width: 800px) {
    .services #services-flters li {
        width: 170px;
        font-size: 16px;
        padding: 16px;
    }
}

@media (max-width: 414px) {
    .services #services-flters li {
        width: 49%;
    }
}

@media (max-width: 360px) {
    .services #services-flters li {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #2487ce;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #2487ce;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(18, 66, 101, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}



/*--------------------------------------------------------------
#Clients
--------------------------------------------------------------*/
.clients .clients-item {
    box-sizing: content-box;
    text-align: center;
    min-height: 120px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
}

.clients .clients-item .clients-img {
    margin: 0 auto;
}

.clients .clients-item h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    color: #11101d;
}

.clients .clients-item h4 {
    font-size: 16px;
    color: #11101d;
}

.clients .clients-item p {
    font-size: 16px;
    margin: 30px 0px;
    position: relative;
}

.clients .swiper-pagination {
    margin-top: 40px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #d6dce2;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #11101d;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: #2487ce;
    float: left;
    width: 44px;
    height: 44px;
    background: #e3f0fa;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #124265;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #217bbc;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #2487ce;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #2487ce;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: #2487ce;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #3194db;
}

.map-wrap,
.map-wrap p {
    padding: 10px 0px;
}

.map-area {
    width: 100%;
    height: 400px;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
.services-info .btn,
.cta-info .btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 15px 0px 15px 15px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 10px;
    min-width: 205px;
}

.btn-black {
    background: #11101d !important;
    color: #fff !important;
}

.btn-black:hover {
    background: #31374a !important;
}

.btn-white {
    background: #fff !important;
    color: #3366ff !important;
}


@media (max-width: 800px) {
    .img-my-tb-5px {
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

/*--------------------------------------------------------------
# Ani
--------------------------------------------------------------*/
.post-header {
    background: transparent;
    position: absolute;
    top: 27%;
    transform: translateY(0%);
    left: 0;
    right: 0;
}

.post-header .hero-image {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(0%);
    width: 56.25em;
}

@-webkit-keyframes hero-fade-in {
    100% {
        opacity: 1;
    }
}

@keyframes hero-fade-in {
    100% {
        opacity: 1;
    }
}

.screen-container {
    -webkit-animation: move-emails 15s infinite ease-in;
    animation: move-emails 15s infinite ease-in;
    position: absolute;
    width: 448px;
    height: 830px;
    bottom: 100%;
    background: transparent url("../img/main/ban.png") repeat-y;
    background-size: 100% auto;
    left: 50%;
    transform: translate(42%, 63%);
}

@-webkit-keyframes move-emails {

    0% {
        background-position: 0 0%;
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 0);
        animation-timing-function: cubic-bezier(0, 0, 0, 0);
    }

    100% {
        background-position: 0 100%;
    }
}

@media (max-width: 1024px) {
    .screen-container {
        background-size: 75% auto;
        left: 45%;
    }
}

@media (max-width: 992px) {
    .screen-container {
        background-size: 65% auto;
        left: 35%;
    }
}

@media (max-width: 540px) {
    .screen-container {
        background-size: 45% auto;
        left: 25%;
    }
}

@media (max-width: 414px) {
    .screen-container {
        background-size: 60% auto;
        left: 0%;
        opacity: .3;
    }
}

@media (max-width: 411px) {
    .screen-container {
        left: -15%;
    }
}

@media (max-width: 375px) {
    .screen-container {
        left: -25%;
        opacity: .3;
    }
}

/*--------------------------------------------------------------
# HR system
--------------------------------------------------------------*/

.hrsys {
    height: 700px;
    border-radius: 10px;
    background: #f1f4f8;
    padding: 60px;
}

.hrsys h3 {
    text-align: center;
    color: #0c0c0c;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
}

.hrsys p {
    text-align: center;
    color: #0c0c0c;
    margin-bottom: 0px;
    font-size: 18px;
}

.hrsys .hrsys-item {
    display: flex;
    justify-content: center;
}

.hrsys .hrsys-item .hrsys-item-box {
    text-align: center;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 100%;
    width: 300px;
    height: 300px;
    padding: 50px 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.hrsys .hrsys-item .hrsys-item-box.hrsys-item-box01 {
    left: 33%;
}

.hrsys .hrsys-item .hrsys-item-box.hrsys-item-box02 {
    z-index: 5;
}

.hrsys .hrsys-item .hrsys-item-box.hrsys-item-box03 {
    right: 33%;
}

.hrsys .hrsys-item .hrsys-text-box {
    display: inline-block;
    text-align: center;
    padding: 30px;
    color: #0c0c0c;
    word-break: keep-all;
}

.hrsys .hrsys-item .hrsys-text-box h4 {
    display: inline-block;
    text-align: center;
    color: #0c0c0c;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hrsys {
        background-size: contain;
        padding: 20px 40px;
    }

    .hrsys .hrsys-item .hrsys-item-box {
        width: 250px;
        height: 250px;
    }

}

@media (max-width: 920px) {
    .hrsys {
        height: auto;
        padding: 15px 30px;
    }

    .hrsys h3 {
        font-size: 26px;
    }

    .hrsys p {
        margin-top: 10px;
        font-size: 16px;
    }

    .hrsys .hrsys-item .hrsys-item-box {
        width: 100%;
        height: 85%;
    }
}

@media (max-width: 860px) {
    .hrsys {
        height: auto;
        padding: 15px 30px;
    }

    .hrsys h3 {
        font-size: 26px;
    }

    .hrsys p {
        margin-top: 10px;
        font-size: 16px;
    }

    .hrsys .hrsys-item .hrsys-item-box {
        width: 100%;
        height: 85%;
    }
}

@media (max-width: 820px) {
    .hrsys {
        height: auto;
        padding: 15px 30px;
    }

    .hrsys h3 {
        font-size: 26px;
    }

    .hrsys p {
        margin-top: 10px;
        font-size: 16px;
    }

    .hrsys .hrsys-item .hrsys-item-box {
        width: 100%;
        height: 85%;
    }
}

@media (max-width: 540px) {
    .hrsys {
        height: auto;
        padding: 26px;
    }

    .hrsys h3 {
        font-size: 18px;
    }

    .hrsys p {
        margin-top: 0px;
        font-size: 16px;
    }

    .hrsys .hrsys-item {
        margin: 0 auto;
        display: grid;
    }

    .hrsys .hrsys-item .hrsys-item-box {
        width: 200px;
        height: 200px;
    }

    .hrsys .hrsys-item .hrsys-item-box.hrsys-item-box01,
    .hrsys .hrsys-item .hrsys-item-box.hrsys-item-box02,
    .hrsys .hrsys-item .hrsys-item-box.hrsys-item-box03 {
        left: 0px;
        right: 0px;
    }
}

@media (max-width: 414px) {
    .hrsys {
        height: auto;
        padding: 26px;
    }

    .hrsys h3 {
        font-size: 18px;
    }

    .hrsys p {
        margin-top: 0px;
        font-size: 16px;
    }

    .hrsys .hrsys-item {
        margin: 0 auto;
        display: grid;
    }

    .hrsys .hrsys-item .hrsys-item-box {
        width: 200px;
        height: 200px;
    }

    .hrsys .hrsys-item .hrsys-item-box.hrsys-item-box01,
    .hrsys .hrsys-item .hrsys-item-box.hrsys-item-box02,
    .hrsys .hrsys-item .hrsys-item-box.hrsys-item-box03 {
        left: 0px;
        right: 0px;
    }
}

@media (max-width: 375px) {
    .hrsys {
        height: auto;
        padding: 23px;
    }

    .hrsys .hrsys-item .hrsys-item-box {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 360px) {
    .hrsys {
        height: auto;
        padding: 22px;
    }

    .hrsys h3 {
        font-size: 16px;
    }

    .hrsys p {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .hrsys {
        height: auto;
        padding: 18px;
    }

    .hrsys .hrsys-item .hrsys-item-box {
        width: 100%;
        height: 85%;
    }
}


/*--------------------------------------------------------------
# Customizing Range
--------------------------------------------------------------*/
.cstm-range .icon-box {
    text-align: left;
    padding: 20px;
    letter-spacing: -1px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #d6dce2;
    width: 100%;
    height: 365px;
    margin: 10px 0px;
    word-break: keep-all;
}

.cstm-range .text-box {
    text-align: left;
    padding-top: 20px;
    transition: all ease-in-out 0.3s;
}

.cstm-range .icon-title {
    font-size: 36px;
    font-weight: 700;
    color: #0c0c0c;
}

.cstm-range .icon-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0c0c0c;
}

.cstm-range .icon-box p {
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 10px;
    color: #11101d;
    font-weight: 400;
}

.cstm-range .icon-box .icon {
    transition: ease-in-out 0.3s;
    position: static;
    width: 100%;
    height: 180px;
    border-radius: 14px;
}

.cstm-range .icon-box .cstm-icon01 {
    background: #cde8bf url(../img/roothr/cstm-icon01.png) center center no-repeat;
}

.cstm-range .icon-box .cstm-icon02 {
    background: #afbdff url(../img/roothr/cstm-icon02.png) center center no-repeat;
}

.cstm-range .icon-box .cstm-icon03 {
    background: #cfe4ff url(../img/roothr/cstm-icon03.png) center center no-repeat;
}

.cstm-range .icon-box .cstm-icon04 {
    background: #decdfa url(../img/roothr/cstm-icon04.png) center center no-repeat;
}

.cstm-range .btn {
    font-size: 14px;
    color: #6f52ed;
    cursor: pointer;
    margin-top: 30px;
    padding: 0px;
}

.cstm-range .btn:hover {
    text-decoration: underline;
}

.cstm-range .btn i {
    font-size: 24px;
    color: #6f52ed;
    margin-left: 10px;
    vertical-align: middle;
}

@media (max-width: 1024px) {
    .cstm-range .icon-box {
        padding: 20px 10px;
    }

    .cstm-range .icon-title h3 {
        font-size: 20px;
    }

    .cstm-range .icon-box p {
        font-size: 14px;
    }
}

@media (max-width: 414px) {

    .cstm-range .icon-box .cstm-icon01,
    .cstm-range .icon-box .cstm-icon02,
    .cstm-range .icon-box .cstm-icon03,
    .cstm-range .icon-box .cstm-icon04 {
        width: 30%;
        height: 30%;
        background-size: contain;
    }

    .cstm-range .icon-box:first-child {
        margin-top: 0px;
    }

    .cstm-range .icon-box {
        margin-top: 20px !important;
        padding: 40px 20px;
        height: 300px;
    }

    .cstm-range .icon-box .icon {
        right: 15px;
    }

    .cstm-range .icon-title {
        font-size: 24px;
    }

    .cstm-range .icon-title h3 {
        font-size: 28px;
    }

    .cstm-range .icon-box p {
        font-size: 16px;
    }
}

@media (max-width: 360px) {

    .cstm-range .icon-box .cstm-icon01,
    .cstm-range .icon-box .cstm-icon02,
    .cstm-range .icon-box .cstm-icon03,
    .cstm-range .icon-box .cstm-icon04 {
        width: 30%;
        height: 30%;
        background-size: cover;
    }


}


/*--------------------------------------------------------------
# Date Range
--------------------------------------------------------------*/

.date-range {
    border-radius: 10px;
    background: #e6f1ff;
    padding: 60px;
}

.date-range h3 {
    text-align: left;
    color: #0c0c0c;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 500;
    word-break: keep-all;
}

.date-range p {
    text-align: center;
    color: #0c0c0c;
    margin-bottom: 0px;
    font-size: 18px;
}

.date-range-item {
    display: flex;
    justify-content: center;
}

.date-range-item .item-box {
    text-align: left;
    transition: all ease-in-out 0.3s;
    background: #fff;
    border-radius: 15px 15px 0px 0px;
    padding: 20px;
    position: relative;
    min-height: 260px;

}

.point {
    text-align: center;
    transition: all ease-in-out 0.3s;
    font-size: 18px;
    background: #6f52ed;
    height: 135px;
    color: #fff;
    padding: 20px;
    border-radius: 0px 0px 15px 15px;
    word-break: keep-all;
}

.date-range-item .text-box {
    display: inline-block;
    text-align: left;
    color: #0c0c0c;
}

.date-range-item .text-box h2 {
    text-align: left;
    font-size: 30px;
    font-weight: 800;
    color: #4e2bf4;
    line-height: 1.5;
    margin-bottom: 10px;
}

.date-range-item .text-box h4 {
    display: inline-block;
    text-align: center;
    color: #0c0c0c;
    font-weight: 600;
}

.date-range-item .text-box i {
    text-align: left;
    font-size: 24px;
    color: #4e2bf4;
    margin-right: 8px;
    vertical-align: middle;
}

.date-range-item .text-box p {
    text-align: left;
    color: #0c0c0c;
    margin-bottom: 0px;
    font-size: 16px;
    word-break: keep-all;
}

@media (max-width: 1024px) {
    .date-range {
        background-size: contain;
        padding: 20px 40px;
    }

    .date-range-item .text-box p {
        font-size: 14px;
    }

}

@media (max-width: 800px) {
    .date-range {
        height: auto;
        padding: 15px 30px;
    }

    .date-range h3 {
        font-size: 20px;
    }

    .date-range p {
        margin-top: 10px;
        font-size: 16px;
    }
}

@media (max-width: 414px) {
    .date-range {
        height: auto;
        padding: 26px;
    }

    .date-range h3 {
        font-size: 20px;
    }

    .date-range p {
        margin-top: 0px;
        font-size: 16px;
    }

    .date-range-item img {
        width: 50%;
    }
}

@media (max-width: 375px) {
    .date-range {
        height: auto;
        padding: 23px;
    }
}

@media (max-width: 360px) {
    .date-range {
        height: auto;
        padding: 22px;
    }

    .date-range h3 {
        font-size: 18px;
    }

    .date-range p {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .date-range {
        height: auto;
        padding: 18px;
    }
}

.table-responsive {
    width: 100%;
    text-align: center;
}

.table-responsive th {
    color: #0c0c0c;
    word-break: keep-all;
    border: 1px solid #d6dce2;
}

.table-responsive td {
    border: 1px solid #d6dce2;
    color: #0c0c0c;
    word-break: keep-all;
    height: 72px;
    background: #fff;
}

@media (max-width: 414px) {
    .table-responsive {
        width: 100%;
        text-align: center;
    }

    .table-responsive th {
        font-size: 14px !important;
    }

    .table-responsive td {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .table-responsive {
        width: 100%;
        text-align: center;
    }

    .table-responsive th {
        font-size: 14px !important;
    }

    .table-responsive td {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# PRICING TABLE
--------------------------------------------------------------*/

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    justify-content: center;

}

.nav-pills > li + li {
    margin-left: 0;
}

.nav-pills > li + li {
    margin-left: 0;
}

.plan-option .nav.nav-pills li a {
    border: 1px solid #ebf0f2;
    color: #232323;
    font-size: 16px;
    padding: 18px 35px;
    border-radius: 0px;
}

.plan-option .nav.nav-pills .active a {
    border-color: #4e2bf4;
    background-color: #4e2bf4;
    color: #fff;
}

.plan-option .nav.nav-pills li:last-child a {
    border-left: none;
}

.plan-option .nav.nav-pills {}

.plan-option .nav.nav-pills li {
    position: relative;
}

.nav-pills > li + li {
    margin-left: 0;
}

.plan-option .or-crircle {
    background-color: #4e2bf4;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
    color: #fff;
    display: block;
    font-size: 10px;
    height: 25px;
    line-height: 27px;
    text-align: center;
    width: 25px;
    position: absolute;
    top: 0px;
    left: -14px;
    z-index: 1;
}

.pricing-table p {
    font-size: 20px;
    color: #0c0c0c;
    margin-bottom: 30px;
    margin-top: 10px;
    font-weight: 600;
}

.plan-price h1 {
    font-size: 40px;
    display: inline-block;
    margin-right: 5px;
    letter-spacing: -2px;
    margin-top: 0px;
}

.plan-price h2 {
    font-size: 18px;
    margin-left: 15px;
    letter-spacing: -2px;
    margin-bottom: 0px;
    color: #ff004e;
    text-decoration: line-through;
    text-align: left;
}

.plan-price h1 sup {
    top: -0.4em;
    font-size: 24px;
}

.plan-price sub {
    font-size: 12px;
    color: #333333;
    display: inline-block;
    bottom: 0.25em;
}

.plan-price span.underline {
    border-bottom: 2px solid #42a5f6;
    display: block;
    margin-bottom: 10px;
    padding: 10px 0;
    text-align: left;
}

@media (max-width: 920px) {
    .plan-price h2 {
        margin-left: 18%;
    }
}


@media (max-width: 860px) {
    .plan-price h2 {
        margin-left: 18%;
    }
}

@media (max-width: 768px) {
    .plan-price h2 {
        margin-left: 18%;
    }
}

@media (max-width: 540px) {
    .plan-price h2 {
        margin-left: 23%;
    }
}

@media (max-width: 430px) {
    .plan-price h2 {
        margin-left: 23%;
    }
}

@media (max-width: 375px) {
    .plan-price h2 {
        margin-left: 20%;
    }
}

.upper-detail {
    position: relative;
    padding-top: 30px;
}

h5.plan-name {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #0c0c0c;
}

.plan-price {
    padding-bottom: 43px;
    position: relative;
    padding: 0px 30px;
}

.lower-detail ul > li {
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    text-align: left;
}

.lower-detail ul > li i {
    text-align: left;
    font-size: 24px;
    color: #4e2bf4;
    margin-right: 8px;
    vertical-align: middle;
}

.lower-detail ul li:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .lower-detail {
        padding: 0 15px;
    }

    .lower-detail ul > li {
        font-size: 14px;
    }
}

.btn-area {
    position: absolute;
    width: 100%;
    padding: 0px;
    bottom: 20px;
    margin: 0px -16px;
}

.btn-get {
    padding: 18px 42px;
    border: 2px solid #e5e5e5;
    background: transparent;
    color: #232323;
    font-size: 12px;
    letter-spacing: 2px;
    display: inline-block;
}

.outer-border:hover .btn-get {
    background-color: #42a5f6;
    border-color: #42a5f6;
    color: #fff;
}

.pricing-table {
    border: 1px solid #ededed;
    border-radius: 10px;
    min-height: 765px;
    margin: 10px 0px;
}


.select-tag span {
    font-size: 12px;
    background-color: #f7f2ff;
    color: #6f52ed;
    font-family: 'PT Sans';
    padding: 6px 15px;
    border-radius: 0px 10px 0px 0px;
}

.select-tag {
    position: absolute;
    right: 0;
    top: 1px;
}


.required-tag span {
    font-size: 12px;
    background-color: #6f52ed;
    color: #fff;
    padding: 6px 15px;
    border-radius: 0px 10px 0px 0px;
}

.required-tag {
    position: absolute;
    right: 0;
    top: 1px;
}

.lower-detail {
    margin-top: 10px;
    padding: 0 30px;
}

.lower-detail ul {
    padding: 0;
}

.outer-border:hover .upper-detail {
    background-color: #f8f9fb;
}

.outer-border:hover .upper-detail::after {
    border-top-color: #f8f9fb;
}

.outer-border:hover {
    border-color: #fff;
    box-shadow: 0 0 12px #f6f6f6;
}




/*--------------------------------------------------------------
# comm
--------------------------------------------------------------*/
.btn-black {
    background: #11101d !important;
    color: #fff !important;
}

.btn-black:hover {
    background: #31374a !important;
}

.btn-primary {
    background: #fff !important;
    color: #4546a5 !important;
}

.btn-purple {
    background: #1a1b74 !important;
    color: #fff !important;
}

.btn-white {
    background: #fff !important;
    color: #3366ff !important;
}

.text-white {
    color: #fff !important;
}

.text-red {
    color: #ed3c0d !important;
}

.text-grey {
    color: #bfc1c9 !important;
}

.text-yellow {
    color: #f1d900 !important;
}

.text-green {
    color: #13bd7e !important;
}

.text-purple {
    color: #603de3 !important;
}

.text-blue {
    color: #0085ff !important;
}

.bg-none {
    background: transparent !important;
}

.bg-kakao {
    background: #3a1c1d !important;
}

.bg-primary {
    background: #4546a5 !important;
}

.bg-purple {
    background: #603de3 !important;
}

.bg-purple2 {
    background: #decdfa !important;
}

.bg-purple3 {
    background: #f7f2ff !important;
}

.bg-black {
    background: #1a1e29 !important;
}

.bg-green {
    background: #13bd7e !important;
}

.bg-blue {
    background: #0085ff !important;
}

.bg-grey {
    background: #f1f4f8 !important;
}

.bg-grey-lt {
    background: #787878 !important;
}

.bg-green-light {
    background: #ebffea !important;
}

.bg-blue-light {
    background: #e7f2ff !important;
}

.bg-purple-light {
    background: #ecedff !important;
}

.border-none {
    border: none !important;
}

.border-radius10 {
    border-radius: 10px !important;
}

.opa-70p {
    opacity: .7;
}

.shadow {
    box-shadow: 0px 0px 10px #73767e;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-line {
    text-decoration: line-through !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.vertical-text-bottom {
    vertical-align: text-bottom !important;
}

.right {
    float: right !important;
}

.left {
    float: left !important;
}

.px-0px {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.py-0px {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.py-20p {
    padding: 20% 0px !important;
}

.pt-0px {
    padding-top: 0px !important;
}

.pt-5p {
    padding-top: 5% !important;
}

.pt-10p {
    padding-top: 10% !important;
}

.pb-0px {
    padding-bottom: 0px !important;
}

.pb-100px {
    padding-bottom: 100px !important;
}

.mg-5px {
    margin: 5px !important;
}

.mx-0px {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.my-10px {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mt-20px {
    margin-top: 20px !important;
}

.mt-50px {
    margin-top: 50px !important;
}

.mt-80px {
    margin-top: 80px !important;
}

.mb-20px {
    margin-bottom: 20px !important;
}

.mb-40px {
    margin-bottom: 40px !important;
}

.mb-100px {
    margin-bottom: 100px !important;
}

.mb-150px {
    margin-bottom: 150px !important;
}

.max-w100p {
    max-width: 100% !important;
}


/*--------------------------------------------------------------
# Popup
--------------------------------------------------------------*/

#popup-wrap {
    font-size: 14px;
    position: relative;
    font-family: "SCDream", sans-serif;
    letter-spacing: -0.1em;
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -webkit-user-select: none;
    user-select: none;
    line-height: 1.4;
    z-index: 1;
}

#popup-wrap a {
    color: #fff;
    text-decoration: none;
}

#popup-wrap a:hover {
    color: #2679f4;
    text-decoration: underline;
}

#popup-wrap h1,
#popup-wrap h2 {
    line-height: 1.4;
}

#popup-wrap h1 {
    font-size: 20px;
    color: #0c0c0c;
}

#popup-wrap h2 {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px;
}

#popup-wrap ul,
#popup-wrap ol {
    list-style: none;
    margin: 0;
    padding-left: 1em;
    padding: 0;
    word-break: break-all;
}

#popup-wrap #popup-container {
    display: none;    
}

#popup-wrap #popup-content1,
#popup-wrap #popup-content2 {
    overflow: auto;
    color: #555;
    min-width: 320px;
    /*max-width: 670px;*/
    max-width: 600px;
    min-height: 300px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    position: fixed;
}

#popup-wrap #popup-content1 {
    left: 10%;
    top: 10%;
}

#popup-wrap #popup-content2 {
    left: 45%;
    top: 10%;
}

#popup-wrap #popup-content1 img,
#popup-wrap #popup-content2 img {
    width: 100%;
    height: auto;
}

#popup-wrap .popup-header {
    height: 60px;
    padding: 20px 20px 10px;
    margin-bottom: 0px;
}

#popup-wrap #popup-footer {
    font-size: 14px;
    width: 100%;
    padding: 9px 20px;
    background-color: #333;
    color: #fff;
    box-sizing: border-box;
    position: relative;
    bottom: 0px;
    border-radius: 0px 0px 6px 6px;

}

#popup-wrap #popup-footer:after {
    content: '';
    display: table;
    clear: both;
}

#popup-wrap #popup-footer input {
    width: 13px;
    height: 13px;
    vertical-align: middle;
    margin-bottom: 5px;
    margin-right: 5px;
    min-height: auto !important;
}

#popup-wrap #popup-footer p {
    float: left;
    margin: 0;
    padding: 0;
    padding-top: 0.05em;
}

#popup-wrap #popup-footer button {
    float: right;
}

#popup-wrap button {
    cursor: pointer;
    -webkit-appearance: button;
    line-height: 1;
    font-family: "SCDream", sans-serif !important;
    font-size: 14px;
    padding: 5px 10px;
    transition: all .2s linear;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    border: 0px;
}

#popup-wrap button:hover {
     color: #2679f4;
}


@media (max-width: 1024px) {
    #popup-wrap #popup-container {
        max-width: 500px;
        height: auto;
    }

}


@media (max-width: 575px) {
    #popup-wrap {
        z-index: 100;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        /*bottom: 0;*/
        margin: 10px;
    }

    #popup-wrap #popup-container {
        width: 100%;
        position: relative;
        left: 0px;
        top: 0px;
    }

    #popup-wrap #popup-content {
        max-height: 100%;
    }
    
    #popup-wrap #popup-content1 {
        left: 1px;
    }
}