@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --text-shade: rgba(0, 0, 0, .7);
    --grey-bg: #3e3f41;
    --footer-txt: #e6e6e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}


/* General */

a {
    text-decoration: none !important;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.alienfox_btn {
    display: inline-flex;
    align-items: center;
    outline: none;
    border: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 3px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .16);
    transition: all 0.3s ease-in-out;
}

.alienfox_btn_one {
    color: #fff;
    background: var(--grey-bg);
}

.alienfox_btn.alienfox_btn_one:hover {
    background-color: #000;
}

.alienfox_btn_icon svg {
    font-size: 15px;
    margin-right: 5px;
}

.alienfox_btn_whiteoutline {
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
}

.alienfox_btn_whiteoutline:hover {
    color: #000;
    background: #fff;
}

.alienfox_btn_darkoutline {
    border: 1px solid var(--grey-bg);
    color: var(--text-shade);
    background: transparent;
    padding: 5px 20px;
    box-shadow: none;
}

.alienfox_btn_darkoutline:hover {
    background-color: var(--grey-bg);
    color: #fff;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .16);
}

.alienfox_sections {
    padding: 100px 0;
}

.alienfox_section_title_box {
    margin-top: 80px !important;
    margin-bottom: 50px;
    padding-left: 30px;
    text-align: center;
}

.alienfox_section_title {
    font-size: 40px;
    font-weight: bold;
}

.alienfox_section_description {
    width: 75%;
    margin: 0 auto;
}


/* loader */

.layout {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    z-index: 9999;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden !important;
}

.layout .skeleton_effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    animation: skeleton 1s linear infinite alternate;
    object-fit: cover;
}

@keyframes skeleton {
    0% {
        background-color: hsl(200, 20%, 70%);
    }
    100% {
        background-color: var(--grey-bg);
    }
}

.layout .brand_name {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    font-size: 100px;
    line-height: 100vh;
    text-align: center;
    font-weight: bolder;
    mix-blend-mode: screen;
    color: hsl(200, 20%, 10%);
    background-color: #f2f2f2;
    font-family: 'Poppins', sans-serif;
}


/* Nav Bar */

.alienfox_nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.alienfox_nav_logo img {
    width: 180px;
}

.alienfox_nav_options_holder {
    display: flex;
}

.alienfox_nav_ul {
    display: flex;
    margin: 0;
}

.alienfox_nav_options,
.alienfox_nav_options a {
    padding: 0 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s linear;
    color: #000;
}

.alienfox_nav_options a:hover {
    color: #535457;
}

.alienfox_nav_menu_icon {
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
}

.alienfox_nav_menu_icon svg {
    font-size: 20px;
    font-weight: bold;
    margin: auto;
    margin-left: 10px;
    display: none;
}

.alienfox_nav_options svg {
    display: block;
    padding: 10px;
    font-size: 20px;
}

.alienfox_nav_options svg {
    display: none;
}

.nav_mobile_overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
}

body.freeze {
    overflow: hidden;
}


/* Hero */

.alienfox_hero {
    background: url('../!mg/herobg.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.alienfox_hero_content {
    height: 100vh;
}


/*  .alienfox_hero_content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        text-align: center;
    } */

.hero_type_box {
    font-size: 3rem;
    font-weight: bold;
}

.hero_txt {
    font-weight: bold;
}

.alienfox_gradiant_txt {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-gradient(linear, left top, right top, from(#501e9c), color-stop(30%, #8169f1), color-stop(30%, #8169f1), color-stop(73%, #a44cee), to(#ff847f));
    background-image: -o-linear-gradient(left, #501e9c 0%, #8169f1 30%, #8169f1 30%, #a44cee 73%, #ff847f 100%);
    background-image: linear-gradient(to right, #501e9c 0%, #8169f1 30%, #8169f1 30%, #a44cee 73%, #ff847f 100%);
    position: relative;
    display: inline-block;
}

.alienfox_gradiant_txt_bold {
    font-size: 3rem;
    font-weight: bold;
}

.animate__animated {
    animation-duration: 1s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInDown
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -30%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.hero_btn_box a {
    padding: 15px 25px;
    margin-top: 20px;
}

.alienfox_content_text {
    color: #000;
    font-size: 25px;
}


/* Service Qoute section */

.alienfox_serviceQoute_area {
    width: 100%;
    background-image: linear-gradient(to bottom, transparent 50%, white 50%), url('../!mg/herobg.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.serviceQoute_card {
    overflow-y: visible;
    height: 200px;
    color: white;
    border-radius: 10px;
    background: var(--grey-bg);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.17);
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(19px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.serviceQoute_qoute {
    font-size: 30px;
}

.serviceQoute_floadImg {
    width: auto;
    margin-top: -163px;
}

.alienfox_newHero {
    background-color: #f7f9f8;
    border-radius: 30px;
}

.newHeroTitle {
    font-size: 75px;
    color: black;
}

.newHeroStokeText {
    color: black;
    -webkit-text-fill-color: white;
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

.newHeroPoster {
    border: none;
    border-radius: 30px;
}

.newHeroCardsSubContent {
    font-size: 16px;
}

.newHeroCardsTitle {
    font-size: 25px;
    font-weight: 500;
}

.newHeroCardsContent {
    font-size: 18px;
}


/* Services */

.alienfox_ServicesContainer {
    background-color: #f7f9f8;
    border-radius: 30px;
    padding: 20px;
}

.alienfox_service_Title {
    font-size: 60px;
    font-weight: 600;
}

.alienfox_service_cardContainer {
    background-color: #ffffff;
    border-radius: 20px;
    border: none;
    outline: none;
    padding: 20px;
    color: black;
    min-height: 100%;
    max-height: 100%;
    cursor: pointer;
}

.alienfox_service_cardContainer:hover {
    background-color: #272727;
    color: white;
}

.alienfox_service_cardCount {
    font-size: 50px;
}

.alienfox_service_cardTitle {
    font-size: 40px;
    text-align: left;
    width: 100%;
    font-weight: 400;
}

.alienfox_service_cardContent {
    font-size: 15px;
    font-weight: 400;
}

.alien_serviceBtn {
    font-size: 18px;
    font-weight: 400;
    text-decoration: underline;
    padding-right: 5px;
    border-bottom: thin solid rgb(101, 101, 138);
    color: rgb(101, 101, 138);
}

.alienfox_service_cardContainer:hover .alien_serviceBtn {
    color: white;
    border-color: white;
}

.newHeroCards:first-child {
    border-bottom-left-radius: 30px;
}

.newHeroCards:last-child {
    background-color: #f7f9f8;
    padding: 20px;
    padding-top: 60px;
    position: relative;
    border-bottom-left-radius: 30px;
}

.newHeroCardsTopHorizon_Line {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    display: block;
    width: 94%;
    height: 25px;
    background-color: white;
}

.newHeroCardsRightVertical_Line {
    position: absolute;
    right: -37%;
    bottom: 170px;
    display: block;
    transform: rotate(90deg);
    width: 85%;
    height: 25px;
    background-color: white;
}

.newHeroCardsCircle {
    display: block;
    position: absolute;
    top: 5px;
    right: 35px;
    width: 10px;
    height: 10px;
    background-color: #f7f9f8;
    border-top-right-radius: 50%;
    transform: rotate(10deg);
}

@media only screen and (max-width:1400.98px) {
    .newHeroCardsRightVertical_Line {
        right: -36%;
        bottom: 141px;
        width: 80%;
    }
}

@media only screen and (max-width:991.98px) {
    .alienfox_service_Title {
        font-size: 40px;
        font-weight: 600;
    }
    .newHeroCards:last-child {
        padding-top: 70px;
    }
    .newHeroCardsTopHorizon_Line {
        width: 110%;
        left: -2px;
    }
    .newHeroCardsRightVertical_Line {
        display: none;
    }
}


/* Old Service section */


/* .alienfox_service_section {
    background: url('../!mg/servicebg.png') no-repeat center center;
    width: 100%;
    position: relative;
}

.service_mini_icons {
    width: 50px;
    margin-bottom: 10px;
} */


/* .alienfox_service_card {
    padding: 15px;
    cursor: pointer;
    margin-top: 30px;
    min-height: 417px;
    max-height: max-content;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    backdrop-filter: blur(17.5px);
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(17.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.alienfox_service_card:hover {
    box-shadow: 25px 25px 81px 0px rgba(95.00000000000014, 62.999999999999986, 176, 0.2);
}

.alienfox_service_card_header {
    text-align: center;
    margin-bottom: 20px;
}

.service_card_para {
    text-align: justify;
} */


/* .alienfox_service_card_footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
} */


/* Dev Service section */


/* .alienfox_devservice_section {
    height: 70vh;
} */

.alienfox_dev_intro_box {
    position: relative;
}

.alienfox_dev_card_box::before {
    content: '';
    position: absolute;
    top: 80px;
    right: 150px;
    width: 481px;
    height: 243px;
    opacity: .5;
    background: #b3b8fb;
    filter: blur(45px);
}

.alienfox_dev_card {
    width: 400px;
    padding: 15px;
    cursor: pointer;
    border-radius: 10px;
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(19px);
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.alienfox_dev_card:hover {
    box-shadow: 25px 25px 81px 0px rgba(95.00000000000014, 62.999999999999986, 176, 0.2);
}

.alienfox_dev_card2 {
    margin-top: -110px;
}


/* Contact Section */

.contact_title {
    font-size: 50px;
    font-weight: bold;
}

.contact_section_img_box {
    text-align: right;
}

.contact_section_img {
    width: 300px;
}

.contact_section_quote_box {
    text-align: center;
    background-color: #f2f2f2;
}

.contact_section_quote {
    text-align: center;
    font-weight: 500;
    margin-top: 40px;
}


/* Footer */

.alienfox_footer {
    background-color: var(--grey-bg);
}

.footer_logo_box img {
    width: 220px;
}

.footer_quote {
    color: var(--footer-txt);
    margin-top: 10px;
    text-align: left;
    padding-right: 20px;
    font-size: 14px;
}

a.footer_quote:hover {
    color: #fff;
}

.socialMediaIcon {
    text-decoration: none;
    color: #f2f2f2;
    font-size: 25px;
}

.socialMediaIcon:hover {
    color: white;
}

.footer_list_titles {
    position: relative;
    color: var(--footer-txt);
    font-weight: 500;
}

.footer_list_titles::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #e6e6e6;
    border-top-right-radius: 3rem;
}

.footer_options_holder {
    padding: 0;
    margin: 0;
}

.footer_options {
    padding: 5px 0;
}

.footer_options a {
    color: var(--footer-txt);
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.footer_options a:hover {
    color: #fff;
}

.footer_options a svg {
    font-size: 12px;
    margin-right: 5px;
}

.footer_divder {
    color: #fff;
    margin: 40px 0;
}

.alienfox_copyright_info {
    color: var(--footer-txt);
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 15px;
}

@media only screen and (max-width: 1200.98px) {
    .alienfox_dev_card2 {
        margin-top: 0px;
    }
}

@media only screen and (max-width: 993px) {
    .alienfox_nav_options_holder {
        display: none;
    }
    .alienfox_nav_menu_icon svg {
        display: inline-block;
        margin: 0 auto;
    }
    .alienfox_mini_nav .alienfox_nav_options_holder {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 20px;
        backdrop-filter: blur(10px);
        background-color: rgba(255, 255, 255, 1);
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        box-shadow: 0px 35px 68px 0px rgba(145, 192, 255, 0.5), inset 0px -4px 16px 0px rgba(145, 192, 255, 0.6), inset 0px 11px 28px 0px rgb(255, 255, 255);
    }
    .alienfox_nav_ul {
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        text-align: center;
    }
    .alienfox_nav_options {
        margin: 10px;
        width: auto;
    }
    .alienfox_nav_options a {
        padding: 0;
    }
    .alienfox_nav_options svg {
        margin: 0 auto;
    }
    .alienfox_mini_nav .alienfox_nav_options svg,
    .alienfox_mini_nav .nav_mobile_overlay,
    .alienfox_mini_nav .alienfox_nav_options_holder {
        display: block;
    }
    .alienfox_content_text {
        font-size: 15px;
    }
}

@media only screen and (max-width: 767.98px) {
    /* Service Quote */
    .serviceQoute_card {
        height: auto;
    }
    .serviceQoute_qoute {
        font-size: 30px;
        text-align: center;
    }
    .serviceQoute_floadImg {
        width: auto;
        margin-top: -170px;
    }
}

@media only screen and (max-width: 575.98px) {
    /* Hero */
    .hero_type_box {
        font-size: 2.2rem;
    }
    .alienfox_gradiant_txt {
        font-size: 2.2rem;
    }
    .alienfox_content_text {
        font-size: 15px;
    }
    .contact_title {
        font-size: 20px;
        font-weight: bold;
    }
    .hero_btn_box,
    .alienfox_nav_menus .alienfox_btn {
        transform: scale(0.9);
        transform: scale(0.9);
    }
}