/* Landing */
.landing {
    position: relative;
    background-color: #1B398F;
    min-height: 110vh;
    padding-top: 40px;
    padding-bottom: 50px;
    overflow: hidden;
    width: 100%;
    @media (min-width: 1113px) {
        padding-top: 110px;
        padding-bottom: 110px;
    }
    &::before {
        content: "";
        position: absolute;
        width: 70vw;
        height: 100vh;
        bottom: 60%;
        left: -20%;
        border-radius: 100%;
        background: radial-gradient(ellipse at center, rgba(4, 228, 255, .8) 0, rgba(4, 228, 255, 0) 70%);
    }
    &::after {
        content: "";
        position: absolute;
        width: 110vw;
        height: 150vh;
        border-radius: 100%;
        top: -50%;
        right: -50%;
        background: radial-gradient(ellipse at center, rgba(4, 228, 255, .8) 0, rgba(4, 228, 255, 0) 60%);
    }
    .container {
        position: relative;
        width: 100%;
        height: 100%;
        &::before {
            content: "";
            position: absolute;
            width: 110vw;
            height: 170vh;
            bottom: -50%;
            left: -24%;
            border-radius: 100%;
            background: radial-gradient(ellipse at center, rgba(136, 66, 220, .9) 0, rgba(136, 66, 220, 0) 70%);
        }
        .inside {
            .top-content {
                position: relative;
                z-index: 2;
                .path {
                    display: flex;
                    align-items: center;
                    margin-top: 2.2rem;
                    font-size: 15px;
                    color: #ffffff;
                    @media (min-width: 1113px) {
                        padding-left: 12px;
                    }
                    a {
                        white-space: nowrap;
                    }
                    .icon {
                        a {
                            padding-right: 10px;
                        }
                        span {
                            .home-icon {
                                color: #04e4ff;
                            }
                        }
                    }
                    .link {
                        a {
                            font-weight: 400;
                            color: #ffffff;
                            &:hover {
                                text-decoration: underline;
                            }
                        }
                    }
                    .arrow {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        .arrow-icon {
                            max-width: 15px;
                            max-height: 15px;
                            margin-right: 6px;
                            margin-left: 6px;
                        }
                    }
                    .page-name {
                        p {
                            cursor: default;
                            font-weight: 500;
                            white-space: nowrap;
                        }
                    }
                }
                .parent {
                    display: flex;
                    justify-content: space-between;
                    align-items: stretch;
                    flex-wrap: wrap;
                    gap: 30px;
                    @media (max-width: 768px) {
                        padding: 1.5rem 0;
                    }
                    @media (min-width: 1113px) {
                        flex-wrap: nowrap;
                    }
                    .child {
                        flex-basis: 100%;
                        width: 100%;
                        @media (min-width: 1113px) {
                            width: 50%;
                            flex-basis: 50%;
                        }
                        &.child-text {
                            padding: 1.5rem 0.5rem;
                            @media (max-width: 1112px) {
                                padding: 1.5rem 0;
                            }
                            .content {
                                color: #ffffff;
                                .main-h {
                                    margin-bottom: 3rem;
                                    line-height: 1.1;
                                    font-weight: 700;
                                    font-size: 1.7rem;
                                    @media (min-width: 1113px) {
                                        font-size: 2.1rem;
                                    }
                                    @media (max-width: 1112px) {
                                        font-size: calc(1vw + 1.2rem);
                                        margin-bottom: 1.5rem;
                                    }
                                    @media (max-width: 551px) {
                                        font-size: calc(1vw + 1.05rem);
                                    }
                                    h1 {
                                        margin: 0;
                                    }
                                }
                                .main-p {
                                    line-height: 1.6;
                                    font-weight: 400;
                                    p {
                                        margin-bottom: 1rem;
                                        font-size: 1.2rem;
                                    }
                                }
                                .domain {
                                    .domain-search {
                                        display: flex;
                                        align-items: center;
                                        width: 100%;
                                        .input {
                                            position: relative;
                                            width: 100%;
                                            input {
                                                width: 100%;
                                                border: none;
                                                padding: 20px;
                                                background-color: #fff;
                                                border: 1px solid #fff;
                                                border: none;
                                                border-radius: 8px 0 0 8px;
                                                font-size: 16px;
                                                font-weight: 400;
                                                color: #000;
                                                border-right: 3px solid #000;
                                                &::placeholder {
                                                    color: #00000090;
                                                }
                                                &:focus {
                                                    outline: 0;
                                                }
                                                @media (max-width: 768px) {
                                                    padding: 20px;
                                                    font-size: 16px;
                                                }
                                            }
                                        }
                                        .button {
                                            button {
                                                display: inline-block;
                                                padding: 20px;
                                                background-color: #fff;
                                                color: #000;
                                                border: 1px solid #fff;
                                                border: none;
                                                outline: none;
                                                cursor: pointer;
                                                border-radius: 0 8px 8px 0;
                                                font-size: 16px;
                                                font-weight: 600;
                                                transition: all 0.3s ease-in-out;
                                                @media (max-width: 768px) {
                                                    padding: 20px;
                                                    font-size: 16px;
                                                }
                                                &:hover {
                                                    background-color: #000;
                                                    color: #fff;
                                                    border: 1px solid #000;
                                                    border: none;
                                                }
                                            }
                                        }
                                    }
                                }
                                .main-ul {
                                    display: flex;
                                    flex-direction: column;
                                    gap: 12px;
                                    padding: 22px 0 30px;
                                    li {
                                        display: flex;
                                        align-items: center;
                                        gap: 12px;
                                        line-height: 1.6;
                                        font-size: 18px;
                                        @media (min-width: 1113px) {
                                            padding-inline-start: 20px;
                                        }
                                    }
                                }
                            }
                            .review {
                                margin-top: auto;
                                padding-top: 4.5rem;
                                max-width: 68rem;
                                margin-top: auto;
                                display: flex;
                                align-items: center;
                                gap: 10px;
                                @media (max-width: 1112px) {
                                    margin-top: clamp(45px, 6vmin, 90px);
                                    width: 100%;
                                    max-width: 580px;
                                    padding-top: 0;
                                }
                                .img {
                                    img {
                                        width: 32px;
                                    }
                                }
                                .txt {
                                    display: flex;
                                    flex-direction: column;
                                    p {
                                        font-size: 15px;
                                        font-weight: 500;
                                        margin-bottom: 5px;
                                        color: #ffffff;
                                    }
                                    p {
                                        font-size: 15px;
                                        font-weight: 500;
                                        margin-bottom: 5px;
                                        line-height: 1.6;
                                    }
                                    .starts {
                                        width: 7rem;
                                    }
                                }
                            }
                        }
                        &.child-image {
                            .images {
                                width: 100%;
                                max-width: 600px;
                                .img{
                                    width: 100%;
                                    height: 100%;
                                    display: flex;
                                    justify-content: end;
                                    @media (max-width: 1112px) {
                                        justify-content: center;
                                    }
                                    img {
                                        object-fit: contain;
                                        max-width: 100%;
                                        width: 80%;
                                        max-height: 100%;
                                        height: 100%;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Why Us */
.why-us {
    background: #FFFFFF;
    .container {
        .inside {
            .main-h {
                text-align: center;
                h2 {
                    font-weight: 600;
                    font-size: 2.7rem;
                    line-height: 1.2;
                    color: #000000;
                    margin-bottom: 10px;
                    @media only screen and (max-width: 768px) {
                        font-size: 2rem;
                    }
                }
            }
            .parent {
                margin-top: 4rem;
                display: flex;
                flex-wrap: wrap;
                gap: 1.5rem;
                .child {
                    position: relative;
                    overflow: hidden;
                    min-height: 400px;
                    background-color: #F5F5F5;
                    color: #000000;
                    border-radius: 12px;
                    width: calc((100% / 3) - 1rem);
                    padding: 2vw;
                    @media only screen and (max-width: 768px) {
                        width: 100%;
                        padding: 8vw;
                    }
                    &.white {
                        .text {
                            h3 {
                                color: #FFFFFF;
                            }
                        }
                    }
                    &.c-bigger {
                        width: calc(100% - ((100% / 3) + 0.75rem));
                        align-content: center;
                        @media only screen and (max-width: 768px) {
                            width: 100%;
                            padding: 8vw;
                            align-content: flex-start;
                        }
                        .text {
                            h3 {
                                font-size: 1.2rem;
                                width: 85%;
                            }
                        }
                    }
                    &.c-no-bg {
                        align-content: center;
                    }
                    .bg {
                        width: 100%;
                        height: 100%;
                        position: absolute;
                        top: 0;
                        left: 0;
                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }
                    .icon {
                        padding-bottom: 10px;
                        svg {
                            width: 45px;
                            color: #9536e5;
                        }
                    }
                    .text {
                        position: relative;
                        z-index: 2;
                        width: 100%;
                        max-width: 400px;
                        h3 {
                            font-weight: 600;
                            font-size: 1.8rem;
                            line-height: 1.2;
                            color: #000000;
                            margin-bottom: 0;
                            @media only screen and (max-width: 768px) {
                                /* font-size: 1.5rem; */
                                font-size: 1.2rem;
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Includes */
.get-email {
    background: linear-gradient(282deg, #154485 .6%, #20074c 53.72%, #552293 123.97%);
    position: relative;
    padding: 12vmin 0;
    overflow: hidden;
    &::after {
        position: absolute;
        content: "";
        width: 15px;
        height: 1px;
        box-shadow: 0 0 400px 100px rgba(4, 228, 255, .81);
        background-color: rgba(4, 228, 255, .31);
        right: 26.4%;
        top: 24.6vw;
        opacity: 1;
    }
    .container {
        position: relative;
        z-index: 2;
        .inside {
            max-width: 780px;
            margin: 0 auto;
            .h {
                text-align: center;
                margin-bottom: 2rem;
                h2 {
                    font-weight: 600;
                    font-size: 2.4rem;
                    line-height: 1.2;
                    color: #FFFFFF;
                    margin-bottom: 10px;
                    @media only screen and (max-width: 768px) {
                        font-size: 2rem;
                    }
                }
            }
            .domain {
                .domain-search {
                    display: flex;
                    align-items: center;
                    width: 100%;
                    .input {
                        position: relative;
                        width: 100%;
                        input {
                            width: 100%;
                            border: none;
                            padding: 25px;
                            background-color: #fff;
                            border: 1px solid #fff;
                            border: none;
                            border-radius: 8px 0 0 8px;
                            font-size: 16px;
                            font-weight: 400;
                            color: #000;
                            border-right: 3px solid #000;
                            &::placeholder {
                                color: #00000090;
                            }
                            &:focus {
                                outline: 0;
                            }
                            @media (max-width: 768px) {
                                padding: 20px;
                                font-size: 16px;
                            }
                        }
                    }
                    .button {
                        button {
                            display: inline-block;
                            padding: 25px;
                            background-color: #fff;
                            color: #000;
                            border: 1px solid #fff;
                            border: none;
                            outline: none;
                            cursor: pointer;
                            border-radius: 0 8px 8px 0;
                            font-size: 16px;
                            font-weight: 600;
                            transition: all 0.3s ease-in-out;
                            @media (max-width: 768px) {
                                padding: 20px;
                                font-size: 16px;
                            }
                            &:hover {
                                background-color: #000;
                                color: #fff;
                                border: 1px solid #000;
                                border: none;
                            }
                        }
                    }
                }
            }
        }
    }
}