@charset "UTF-8";



/*---------------------
hero
---------------------*/
.hero {
    display: flex;
    align-items: center;
    margin: 20px 0 100px;
}

.hero-text {
    padding: 0 100px;
}

.hero-wrapper {
    padding: 30px 0 0 200px;
    /* width: 80%; */
}



.hero-img {
    width: 50%;
    height: 100%;
}

.hero-img img {
    width: 100%;
    /* position: absolute; */
}

.hero-text-wrapper {
    margin: 0 auto;
    /* height: 350px; */
}

.hero-text2 {
    margin: 100px 0;
    text-align: center;
    width: 80%;
    margin: 100px auto;
}

.hero-text span {
    background: linear-gradient(180deg, #f2b7d6, #9ad7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1093px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-wrapper h1 {
        font-size: 3rem;
    }
}

@media (max-width: 899px) {
    .hero-img {
        display: none;
    }

    .hero {
        background-image: url(img/main.jpg);
        background-size: cover;
        position: relative;
        z-index: -1;
    }

    .hero::before {
        content: "";
        position: absolute;
        display: inline-block;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.6;
        z-index: 0;
    }

    .hero-text-wrapper {
        padding: 200px 20px;
    }

    .hero-text {
        position: relative;
        color: #fff;
        padding: 0;
    }

    .hero-wrapper {
        position: relative;
        color: #fff;
        padding: 0;
    }
}

/*----------------------
concept
----------------------*/

.concept-title img {
    width: 80px;
}

.concept-title {
    margin: 50px auto;
    width: 140px;
    text-align: center;
}

.concept-title span {
    background: linear-gradient(180deg, #f2b7d6, #9ad7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.concept-title p {
    font-size: 1rem;
}

.concept-text {
    text-align: center;
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin: 50px auto 0;
    padding: 0 100px;
}

.joy {
    grid-row: 1/3;
    grid-column: 1;
    background: #fff;
    border: 1px solid#333;
    padding: 25px;
    border-image: linear-gradient(to right, #f2b7d6 0%, #9ad7ff 100%)2;
}

.joy p,
h2 {
    position: relative;
    z-index: 100;
}

.joy h2 {
    margin: 15px 0 0;
    text-align: center;
}

.joy p {
    margin: 0 20px 50px;
}

.joy-text {
    text-align: center;
}

.collaboration {
    grid-row: 1/3;
    grid-column: 2;
    background: #fff;
    border: 1px solid#333;
    padding: 25px;
    border-image: linear-gradient(to right, #f2b7d6 0%, #9ad7ff 100%)2;
}

.collaboration p,
h2 {
    position: relative;
    z-index: 100;
}

.collaboration h2 {
    margin: 15px 0 0;
    text-align: center;
}

.collaboration-text {
    text-align: center;
}

.collaboration p {
    margin: 0 20px 50px;
}

.evolution {
    grid-row: 1/3;
    grid-column: 3;
    background: #fff;
    border: 1px solid#333;
    padding: 25px;
    border-image: linear-gradient(to right, #f2b7d6 0%, #9ad7ff 100%)2;
}

.evolution p,
h2 {
    position: relative;
    z-index: 97;
}

.evolution h2 {
    margin: 15px 0;
    text-align: center;
}

.evolution-text {
    text-align: center;
}

.evolution p {
    margin: 0 20px 50px;
}

/*-------------------
read more
--------------------*/
.btn-container {
    text-align: right;
    margin-right: 180px;
}

.arrow-btn-rounded {
    display: inline-block;
    border: 1px solid #222;
    border-radius: 100px;
    padding: 9px 50px 1px 20px;
    color: #222;
    text-decoration: none;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    font-size: 1.4rem;
    width: 170px;
    height: 40px;
    text-align: center;
}

.arrow-btn-rounded::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) skewX(45deg);
    width: 15px;
    height: 3px;
    border-bottom: 1px solid #222;
    border-right: 1px solid #222;
    transition: 0.3s ease, border-color 0.3s ease;
    display: inline-block;
}

.arrow-btn-rounded:hover {
    background-color: #555555;
    border-color: #555;
    color: #fff;
}

.arrow-btn-rounded:hover::after {
    right: 15px;
    border-color: #fff;
}

/*------------------------
services
--------------------------*/
.services-title img {
    width: 80px;
}

.services-title {
    margin: 100px auto 100px;
    width: 140px;
    text-align: center;
}

.services-title span {
    background: linear-gradient(180deg, #f2b7d6, #9ad7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.web {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: #ffe4f2;
    margin: 0 auto;
    text-align: center;
    align-items: center;
}

.web-wrapper,
.office-wrapper,
.protect-wrapper {
    width: 100%;
}

.web-img img {
    width: 210px;
    height: 210px;
    border-radius: 50%;
}

.web-img {
    position: relative;
    display: inline-block;
    width: 210px;
    height: 210px;
    margin: 0 0 0 40px;
}

.web-title {
    margin: 20px 0;
}

.web-img::before {
    content: "01";
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 70px;
    z-index: 100;
}

.web-img::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 210px;
    height: 210px;
    background: #333;
    left: 0;
    border-radius: 50%;
    opacity: 0.3;
}

.web-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 110px 110px;
    gap: 30px;
    margin: 20px 30px 20px 70px;
}

.web-a {
    grid-column: 2/4;
    grid-row: 1;
    display: inline-block;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.web-b {
    grid-column: 1/3;
    grid-row: 2;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.web-c {
    grid-column: 3/5;
    grid-row: 2;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.office {
    display: flex;
    max-width: 1200px;
    background: #dbe6ee;
    margin: 30px auto;
    text-align: center;
    align-items: center;
}

.office-img img {
    width: 210px;
    height: 210px;
    border-radius: 50%;
}

.office-img {
    position: relative;
    display: inline-block;
    width: 210px;
    height: 210px;
    margin: 0 0 0 40px;
}

.office-title {
    margin: 20px 0;
}

.office-img::before {
    content: "02";
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 70px;
    z-index: 100;
}

.office-img::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 210px;
    height: 210px;
    background: #333;
    left: 0;
    border-radius: 50%;
    opacity: 0.3;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 110px 110px;
    gap: 30px;
    margin: 20px 30px 20px 70px;
}

.office-a {
    grid-column: 1/3;
    grid-row: 1;
    display: inline-block;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.office-b {
    grid-column: 1/3;
    grid-row: 2;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.protect {
    display: flex;
    max-width: 1200px;
    background: #ffe4f2;
    margin: 0 auto 50px;
    text-align: center;
    align-items: center;
}

.protect-img img {
    width: 210px;
    height: 210px;
    border-radius: 50%;
}

.protect-img {
    position: relative;
    display: inline-block;
    width: 210px;
    height: 210px;
    margin: 0 0 0 40px;
}

.protect-title {
    margin: 20px 0;
}

.protect-img::before {
    content: "03";
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 70px;
    z-index: 100;
}

.protect-img::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 210px;
    height: 210px;
    background: #333;
    left: 0;
    border-radius: 50%;
    opacity: 0.3;
}

.protect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 110px 110px;
    gap: 30px;
    margin: 20px 30px 20px 70px;
}

.protect-a {
    grid-column: 1/3;
    grid-row: 1;
    display: inline-block;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

.protect-b {
    grid-column: 1/3;
    grid-row: 2;
    width: 100%;
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
}

/*--------------------
approach
---------------------*/
.approach-title img {
    width: 80px;
}

.approach-title {
    margin: 100px auto 100px;
    width: 140px;
    text-align: center;
}

.approach-title span {
    background: linear-gradient(180deg, #f2b7d6, #9ad7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.approach-content {
    max-width: 1471px;
    width: 100%;
    margin: 0 auto;
}

.approach-h {
    display: grid;
    grid-template-columns: 78px 250px 1fr;
    align-items: center;
    gap: 50px;
    padding: 0 100px;
    margin: 0 0 40px;
}

.a-number {
    grid-column: 1;
    font-size: 60px;
    background: linear-gradient(180deg, #FFE0F0, #E3F1FF);
    text-align: center;
}

.a-title {
    grid-column: 2;
    border-right: 1px dashed;
}

.a-text {
    grid-column: 3;
    margin: 0 0 0 20px;
}

.a-arrow {
    width: 80px;
    margin: 50px auto;
}

.a-arrow img {
    width: 100%;
}

.approach-s {
    display: grid;
    grid-template-columns: 78px 250px 1fr;
    align-items: center;
    gap: 50px;
    padding: 0 100px;
    margin: 0 0 40px;
}

.s-number {
    grid-column: 1;
    font-size: 60px;
    background: linear-gradient(180deg, #FFE0F0, #E3F1FF);
    text-align: center;
}

.s-title {
    grid-column: 2;
    border-right: 1px dashed;
}

.s-text {
    grid-column: 3;
    margin: 0 0 0 20px;
}

.approach-d {
    display: grid;
    grid-template-columns: 78px 250px 1fr;
    align-items: center;
    gap: 50px;
    padding: 0 100px;
    margin: 0 0 40px;
}

.d-number {
    grid-column: 1;
    font-size: 60px;
    background: linear-gradient(180deg, #FFE0F0, #E3F1FF);
    text-align: center;
}

.d-title {
    grid-column: 2;
    border-right: 1px dashed;
}

.d-text {
    grid-column: 3;
    margin: 0 0 0 20px;
}

.approach-z {
    display: grid;
    grid-template-columns: 78px 250px 1fr;
    align-items: center;
    gap: 50px;
    padding: 0 100px;
    margin: 0 0 40px
}

.z-number {
    grid-column: 1;
    font-size: 60px;
    background: linear-gradient(180deg, #FFE0F0, #E3F1FF);
    text-align: center;
}

.z-title {
    grid-column: 2;
    border-right: 1px dashed;
}

.z-text {
    grid-column: 3;
    margin: 0 0 0 20px;
}

/*--------------------------------------
about
-----------------------------------*/
.about-title img {
    width: 80px;
}

.about {
    text-align: center;
}

.about-title {
    margin: 100px auto 100px;
    width: 150px;
}

.about-title span {
    background: linear-gradient(180deg, #f2b7d6, #9ad7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-c-title {
    position: relative;
    padding: 0 50px 0 50px;
    display: inline-block;
}

.about-c-title::before,
.about-c-title::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    display: inline-block;
}

.about-c-title::before {
    border-left: solid 1px #8f8f8f;
    border-top: 1px solid #8f8f8f;
    top: 0;
    left: 0px;
}

.about-c-title::after {
    border-right: 1px solid #8f8f8f;
    border-bottom: 1px solid #8f8f8f;
    bottom: 0;
    right: 0px;
}

.about-text {
    margin: 50px 0;
}



/*-----------------------
media
-------------------------*/
@media (max-width: 1024px) {

    /*------------------
    concept
    --------------------*/
    .concept-grid {
        display: inline-block;
        width: 100%;
        padding: 0 200px;
    }

    .joy {
        margin: 0 0 30px;
    }

    .collaboration {
        margin: 0 0 30px;
    }

    /*----------------
    services
    ----------------*/
    .services {
        width: 100%;
        max-width: 100%;

    }

    .web {
        flex-direction: column;
    }

    .web-grid {
        display: flex;
        justify-content: space-around;
        padding: 20px;
        margin: 0;
    }

    .web-wrapper {
        width: 100%;
    }

    .web-a {
        height: 60px;
    }

    .web-b {
        height: 60px;
    }

    .web-c {
        height: 60px;
    }

    .web-img img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
    }

    .web-img {
        position: relative;
        display: inline-block;
        width: 150px;
        height: 150px;
        margin: 20px 0 0 0;
    }

    .web-img::before {
        content: "01";
        position: absolute;
        display: inline-block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 70px;
        z-index: 100;
    }

    .web-img::after {
        content: "";
        position: absolute;
        display: inline-block;
        width: 150px;
        height: 150px;
        background: #333;
        left: 0;
        border-radius: 50%;
        opacity: 0.3;
    }

    .office {
        flex-direction: column;
    }

    .office-grid {
        display: flex;
        justify-content: space-around;
        margin: 0;
        padding: 20px;
    }

    .office-wrapper {
        width: 100%;
    }

    .office-a {
        height: 60px;
    }

    .office-b {
        height: 60px;
    }

    .office-c {
        height: 60px;
    }

    .office-img img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
    }

    .office-img {
        position: relative;
        display: inline-block;
        width: 150px;
        height: 150px;
        margin: 20px 0 0 0;
    }

    .office-img::before {
        content: "02";
        position: absolute;
        display: inline-block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 70px;
        z-index: 100;
    }

    .office-img::after {
        content: "";
        position: absolute;
        display: inline-block;
        width: 150px;
        height: 150px;
        background: #333;
        left: 0;
        border-radius: 50%;
        opacity: 0.3;
    }

    .protect {
        flex-direction: column;
    }

    .protect-grid {
        display: flex;
        justify-content: space-around;
        margin: 0;
        padding: 20px;
    }

    .protect-wrapper {
        width: 100%;
    }

    .protect-a {
        height: 60px;
    }

    .protect-b {
        height: 60px;
    }

    .protect-c {
        height: 60px;
    }

    .protect-img img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
    }

    .protect-img {
        position: relative;
        display: inline-block;
        width: 150px;
        height: 150px;
        margin: 20px 0 0 0;
    }

    .protect-img::before {
        content: "03";
        position: absolute;
        display: inline-block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 70px;
        z-index: 100;
    }

    .protect-img::after {
        content: "";
        position: absolute;
        display: inline-block;
        width: 150px;
        height: 150px;
        background: #333;
        left: 0;
        border-radius: 50%;
        opacity: 0.3;
    }

    @media (max-width: 499px) {

        .web-a,
        .web-b,
        .web-c,
        .office-a,
        .office-b,
        .protect-a,
        .protect-b {
            height: auto;
            padding: 10px 5px;
        }
    }

    /*----------------
    approach
    -----------------*/
    .approach-content {
        width: 100%;
        height: 100%;
    }

    .approach-title {
        width: 100%;
        display: inline-block;
    }

    .approach-h {
        display: inline-block;
    }

    .a-number {
        width: 78px;
        background: #fff;
        border-bottom: 1px solid #333;
        border-image: linear-gradient(to right, #f2b7d6 0%, #9ad7ff 100%)2;
    }

    .a-title {
        border-bottom: 1px dashed #222;
        border-right: none;
        padding: 10px 0 10px 20px;
    }

    .a-text {
        padding: 20px 0 0;
    }

    .a-arrow {
        width: 80px;
        height: 80px;
    }

    .approach-s {
        display: inline-block;
    }

    .s-number {
        width: 78px;
        background: #fff;
        border-bottom: 1px solid #333;
        border-image: linear-gradient(to right, #f2b7d6 0%, #9ad7ff 100%)2;
    }

    .s-title {
        border-bottom: 1px dashed #222;
        border-right: none;
        padding: 10px 0 10px 20px;
    }

    .s-text {
        padding: 20px 0 0;
    }

    .s-arrow {
        width: 80px;
        height: 80px;
    }

    .approach-d {
        display: inline-block;
    }

    .d-number {
        width: 78px;
        background: #fff;
        border-bottom: 1px solid #333;
        border-image: linear-gradient(to right, #f2b7d6 0%, #9ad7ff 100%)2;
    }

    .d-title {
        border-bottom: 1px dashed #222;
        border-right: none;
        padding: 10px 0 10px 20px;
    }

    .d-text {
        padding: 20px 0 0;
    }

    .d-arrow {
        width: 80px;
        height: 80px;
    }

    .approach-z {
        display: inline-block;
    }

    .z-number {
        width: 78px;
        background: #fff;
        border-bottom: 1px solid #333;
        border-image: linear-gradient(to right, #f2b7d6 0%, #9ad7ff 100%)2;
    }

    .z-title {
        border-bottom: 1px dashed #222;
        border-right: none;
        padding: 10px 0 10px 20px;
    }

    .z-text {
        padding: 20px 0 0;
    }

    .z-arrow {
        width: 80px;
        height: 80px;
    }

    /*--------------------
    read more
    ----------------------*/
    .btn-container {
        margin-right: 15px;
    }

}

@media (max-width: 768px) {

    /*------------------
    contact
    -------------------*/
    .contact {
        flex-direction: column;
    }

    .c-text {
        text-align: center;
        padding: 20px 0 0;
    }
}

@media (max-width: 599px) {

    /*-----------------
    conceot
    ------------------*/
    .concept-grid {
        padding: 0 50px;
    }

    /*----------------
    services
    ----------------*/
    .web-img img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
    }

    .web-img {
        position: relative;
        display: inline-block;
        width: 120px;
        height: 120px;
        margin: 20px 0 0 0;
    }

    .web-img::before {
        content: "01";
        position: absolute;
        display: inline-block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 50px;
        z-index: 100;
    }

    .web-img::after {
        content: "";
        position: absolute;
        display: inline-block;
        width: 120px;
        height: 120px;
        background: #333;
        left: 0;
        border-radius: 50%;
        opacity: 0.3;
    }

    .office-img img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
    }

    .office-img {
        position: relative;
        display: inline-block;
        width: 120px;
        height: 120px;
        margin: 20px 0 0 0;
    }

    .office-img::before {
        content: "02";
        position: absolute;
        display: inline-block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 50px;
        z-index: 100;
    }

    .office-img::after {
        content: "";
        position: absolute;
        display: inline-block;
        width: 120px;
        height: 120px;
        background: #333;
        left: 0;
        border-radius: 50%;
        opacity: 0.3;
    }

    .protect-img img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
    }

    .protect-img {
        position: relative;
        display: inline-block;
        width: 120px;
        height: 120px;
        margin: 20px 0 0 0;
    }

    .protect-img::before {
        content: "03";
        position: absolute;
        display: inline-block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 50px;
        z-index: 100;
    }

    .protect-img::after {
        content: "";
        position: absolute;
        display: inline-block;
        width: 120px;
        height: 120px;
        background: #333;
        left: 0;
        border-radius: 50%;
        opacity: 0.3;
    }

    /*--------------
    about
    -----------------*/
    .about-text {
        padding: 0 20px;
    }

    /*-----------------
    contact
    ----------------*/
    .link {
        width: 500px;
        margin: 0 auto 20px;
    }

    .tel {
        width: 500px;
        margin: 0 auto 20px;
    }
}

@media (min-width: 500px) {
    .about-c-title h2 br {
        display: none;
    }
}

@media (max-width: 499px) {
    h1 {
        /* font-size: 2.8rem; */
    }

    h2 {
        /* font-size: 1.4rem; */
    }

    .footer-text-wrapper {
        width: 100%;
        text-align: center;
    }

    .footer-text-wrapper>div {
        text-align: center;
        margin: 0;
    }


    .about-c-title h2 br {
        display: block;
    }

    /*-------------------
    approach
    -------------------*/
    .approach-content>div {
        padding: 0 20px;
    }

    /*-------------------
    contact
    -------------------*/
    .contact {
        border-radius: 100px 100px 0 0;
        background: linear-gradient(180deg, #ffd7e6, #d8ecff);
    }

    .link {
        flex-direction: column;
        width: 310px;
        height: 200px;
        position: relative;
    }

    .link-arrow::after {
        content: "";
        position: absolute;
        top: -10px;
        right: -33px;
        transform: translateY(-50%) skewX(45deg);
        width: 70px;
        height: 4px;
        border-bottom: 1px solid #222;
        border-right: 1px solid #222;
        transition: 0.4s ease, border-color 0.4s ease;
        display: inline-block;
        z-index: 1;
    }

    .tel {
        flex-direction: column;
        width: 310px;
        height: 160px;
    }
}