@import url(./sweed.css);
@import url(./color.css);
@import url(./footer.css);
@import url(./hambuger-menu.css);
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

* {
    font-family: 'Inter', sans-serif;
    /* border: 2px solid red;
 */
}
body {
    overflow-x: hidden;
}
.border{
    border: 2px solid red;
}

/* mobile side menu ends */
.hero_section {
    /*  for nav bar */
    padding-top: 90px;
    height: 100vh;
    backdrop-filter: 5;
    background: linear-gradient(113.14deg, #f3f4fbab -2.96%, #CDD4F1ab 107.28%);
}

.hero_desc {
    color: var(--gray500);
}

.hero_price {
    color: var(--primary);
}

.hero-side {
    width: 40%;
    height: 100%;
}

.domain_search_bar_con {
    width: 100%;
    border-radius: 8px;
    height: 70px;
    background-color: var(--background);
    padding: 0 10px;
}



.domain_search_bar_new {
    border: none;
    outline: none;
    width: 60%;
    height: 100%;
    padding: 0 15px;
    font-size: 1.2rem;
}

.hero-side-left>div {
    gap: 1rem;
}

.rocket-con {
    width: 25vw;
    height: 25vw;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    top: 20%;
}

.rocket-blue-bg {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: #1E90FFab;
    backdrop-filter: blur(5px);
    filter: blur(5px);
    position: absolute;
}

.rocket-image-hero {
    width: 80%;
}

.rocket-image-hero {
    position: absolute;
    z-index: 2;
    animation: flyanimation 1s infinite forwards ease-out;
}

.cloud-image-hero {
    position: absolute;
    z-index: 1;
    right: -100px;
}

.cloud-image-hero[data-number='1'] {
    top: 50px
}

.cloud-image-hero:nth-child(1) {
    top: 80px
}

.cloud-image-hero:nth-child(2) {
    top: 10px
}

.cloud-image-hero[data-number='1'] {
    top: 30px
}

/* stats section */
.stats_section {
    padding: 10% 5%;
}

.stat_item {
   width: 20%;
    height: auto;
    min-height: 250px;
    gap: 5px;
}

.stat_item_icon {
    width: 80px;
    height: 80px;
    background-color: var(--gray150);
    border-radius: 50%;
}
.stat_item_icon  img{
    width: 40%;
}

.stat_item_data {
    color: var(--primary);
}

.stat_item_desc {
    color: var(--gray700);
}

.stat_item_divider {
    height: 220px;
    width: 4px;
    border-radius: 1px;
    background-color: var(--blue100);
}

/* stats section ends here */
.offers_section {
    padding: 10% 5%;
}

.offers_app {
    border-radius: 20px;
    width: 90%;
    background-color: #fff;

    filter: drop-shadow(0px 24px 32px rgba(0, 0, 0, 0.04)) drop-shadow(0px 16px 24px rgba(0, 0, 0, 0.04)) drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.04));
}

.offer_app_head_con {
    padding: 2rem;
    background-color: var(--primary);
    width: 100%;
    border-radius: 20px 20px 0 0;
}

#offer_app_item_con {
    width: 100%;
}
.tagline.display_large::after{
    content: '   It All Starts With A Domain Name';
}
.offer_app_item {
    color: var(--background);
    padding: 8px 1.2rem;
    width: fit-content;
    align-self: flex-start;
    border-radius: 5px;
    cursor: pointer;
    text-transform: capitalize;
    transition: 0.1s ease-in;
}

.offer_app_item:hover {
    background-color: var(--blue400);
}

.offer_app_item.active {
    background-color: var(--blue400);
}

.hosting_offer_item {
    margin: 1rem 0;
}

.hosting-logo {
    width: 24px;
    height: 24px;
}

.hosting_name {
    margin-left: 1.5rem;
}

.offer_app_data_con {
    padding: 2rem;
}

.hosting_data_wrapper {
    margin-bottom: 2rem;
    border-radius: 5px;
    padding: 1rem 2rem;
    background-color: var(--blue50);
    color: var(--gray600);
    font-weight: 500;
}

.honsting_offer_divider {
    width: 100%;
    height: 2px;
    background-color: var(--gray100);
    border-radius: 1px;
}

/* feature section*/
.feature_wrapper {
    padding: 3rem 2rem;
    border-radius: 20px;
    background-color: var(--blue-light);
}

.feature_con {
    margin: 3rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.feature_item {
    padding: 10px 2rem;
    height: 50px;
    background-color: var(--background);
    color: var(--blue700);
    min-width: 350px;
    width: 25%;
    border-radius: 8px;
    margin: 1rem;
}

.feature-icon {
    margin-right: 1rem;
}

/*language section */
.lang_section {
    padding: 10% 5%;
}

.lang_anim_con {
    width: 500px;
    position: relative;
    height: 500px;
}

.lang_circle {
    border-radius: 50%;
    border: 2px solid var(--gray200);
    position: absolute;
}

.outer_lang_circle {
    width: 80%;
    height: 80%;
    top: 10%;
    animation: rotate 8s infinite linear;
    animation-direction: reverse;
    left: 10%;
}

/* @keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }

} */

.inner_lang_circle {
    width: 45%;
    height: 45%;
    top: 27.5%;
    animation: rotate-reverse 5s infinite linear;
    left: 27.5%;
}

/* @keyframes rotate-reverse {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0deg);
    }

}
 */
.lang_item {
    width: 60px;
    height: 60px;
    transform-origin: center;
    border-radius: 50%;
    background-color: #B8EBF1;
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
}

.inner_lang_circle .lang_item:nth-child(1) {
    transform: translateX(100px);
}

.inner_lang_circle .lang_item:nth-child(2) {
    transform: rotate(240deg) translateX(110px);
}

.inner_lang_circle .lang_item:nth-child(3) {
    transform: rotate(120deg) translateX(100px);
}
@keyframes pop {
    0% {
        transform: rotate(-360deg) translateX(100px);
    }

    100% {
        transform: translateX(100px) rotate(0360deg);
    }

}

.lang_item img {
    width: 32px;
    height: 32px;
}

.lang_item:nth-child(1) {
    transform: translateX(200px);
}

.lang_item:nth-child(2) {
    transform: rotate(240deg) translateX(200px);
}

.lang_item:nth-child(3) {
    transform: rotate(120deg) translateX(200px);
}

.byteistic-logo-spinner {
    width: 80px;
    height: 80px;
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    background-color: var(--background);
    border-radius: 50%;
    filter: drop-shadow(0px 24px 32px rgba(0, 0, 0, 0.04)) drop-shadow(0px 16px 24px rgba(0, 0, 0, 0.04)) drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.04));
}

/*saviour initiative section */

.saviour_wrapper .section-data {
    margin: 0 5%;
}

.saviour_wrapper {
    padding-top: 5%;
    overflow: hidden;
    position: relative;
    height: 500px;
    border-radius: 20px;
    background: #002C9B;
}

.saviour_wrapper:hover .soldiers_wrapper {
    bottom: 30%;
}

.grass-bg {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -10px;
    border-radius: 0 0 20px 20px;
    color: rgb(0, 49, 33);
}

.soldiers_wrapper {
    transition: 1s;
    position: absolute;
    right: 30%;
    bottom: 10%;
}

.saviour_sun {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    right: 20%;
    position: absolute;
    top: 10%;
    animation: shine 2s alternate ease-in-out infinite;
    background-color: rgb(230, 224, 224);
    box-shadow: 0px 0px 8px 2px rgba(235, 235, 231, 0.301);
}

.details {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(165, 165, 165, 0.089);
}

.details.one {
    position: absolute;
    top: 40px;
    left: 80px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: inset 2px 0 4px rgba(167, 167, 167, 0.685);
}

.details.two {
    position: absolute;
    top: 40%;
    left: 5%;
    width: 30%;
    height: 30%;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: inset -2px 0 4px rgba(167, 167, 167, 0.685);
}

.details.three {
    position: absolute;
    bottom: 5%;
    right: 30%;
    width: 10%;
    height: 10%;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: inset 2px 0 4px rgba(167, 167, 167, 0.685);
}

.details.four.small {
    position: absolute;
    top: 15%;
    left: 30%;
    width: 20%;
    height: 20%;
    border-radius: 50%;
    background-color: transparent;
    box-shadow: inset 2px 0 4px rgba(167, 167, 167, 0.585);
}

@keyframes shine {
    0% {
        box-shadow: 0px 0px 8px 2px rgba(235, 235, 231, 0.301);
    }

    100% {
        box-shadow: 0px 0px 16px 4px rgba(235, 235, 231, 0.601);
    }
}

/* migration section */
.migration_section,.server_section {
    padding: 7% 5%;
}
/* server_section*/
.server_item_con{
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    --gap: 1rem;
    --hole-gap: var(--gap);
    --radius: 2.5em;
    --hole-radius: calc(var(--radius) + var(--hole-gap));
    --hole-offset: calc(var(--gap) / 2);
    --far-hole: calc(100% + var(--hole-offset));
    --near-hole: calc(var(--hole-offset) * -1);
    gap: var(--gap);
}
.server_item_con::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white url("/assests/icons/byteistic-logo.svg") center/70% no-repeat;
    width: calc(var(--radius) * 2);
    height: calc(var(--radius) * 2);
    border: 5px solid #081B4B;
    border-radius: 50%;
}
.server_item{
    position: relative;
    --bg: var(--blue50);
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    gap: 1rem;
    box-shadow: 0px 4px 8px rgba(239, 243, 254, 0.18), 0px 0px 2px rgba(239, 243, 254, 0.12), 0px 0px 1px rgba(0, 0, 0, 0.04);
    background-image: radial-gradient(circle at var(--hole-pos), transparent var(--hole-radius), var(--bg) calc(var(--hole-radius) + .5px));
}
.server_item:first-child,
.server_item:last-child {
    grid-column: span 2;
    background: var(--bg);
}
.server_item:last-child {
    flex-direction: row-reverse;
}
.server_item:first-child .server_country_name,
.server_item:last-child .server_country_name {
    flex-grow: 1;
    text-align: center;
}
.server_item:nth-child(2) {
    --hole-pos: var(--far-hole) var(--far-hole);
}
.server_item:nth-child(3),
.server_item:nth-child(5) {
    flex-direction: row-reverse;
    text-align: right;
}
.server_item:nth-child(3) {
    --hole-pos: var(--near-hole) var(--far-hole);
}
.server_item:nth-child(4) {
    --hole-pos: var(--far-hole) var(--near-hole);
}
.server_item:nth-child(5) {
    --hole-pos: var(--near-hole) var(--near-hole);
}
.server-section-sice{
    width: 60%;
}
.server_country_image{
    justify-self: start;
    height: 100%;
    width: 80px;
    background-repeat: no-repeat;
    background-size: cover;
}
.server_country_image[data-country-code='in']{
    background-image: url(../assests/icons/in.svg);
}
.server_country_image[data-country-code='de']{
    background-image: url(../assests/icons/de.svg);
}
.server_country_image[data-country-code='us']{
    background-image: url(../assests/icons/us.svg);
}
.server_country_image[data-country-code='sg']{
    background-image: url(../assests/icons/sg.svg);
}
.server_country_image[data-country-code='fi']{
    background-image: url(../assests/icons/fi.svg);
}
.server_country_image[data-country-code='nl']{
    background-image: url(../assests/icons/nl.svg);
}
.server_on_light_con{
    width: auto;
    height: auto;
    padding: 10px 0;
}
.server_on_light{
    animation: blink .8s ease-in-out infinite forwards;
    width: 1rem;
    height: 1rem;
    box-shadow: 0px 0px 4px var(--green300);
    background-color: var(--green400);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.server_item:first-child .server_on_light {
    right: 10px;
}
.server_item:nth-child(2) .server_on_light {
    right: 40px;
}
.server_item:nth-child(3) .server_on_light {
    left: 40px;
}
.server_item:nth-child(4) .server_on_light {
    right: 40px;
}
.server_item:nth-child(5) .server_on_light {
    left: 40px;
}
.server_item:last-child .server_on_light {
    left: 10px;
}
@keyframes blink{
 from{
     opacity: 0;
 }
 to{
     opacity: 1;
 }
}
.server_country_name{
font-size: 1.2rem;
justify-self: start;
font-weight: 600
}
.feature_section{
padding: 0 5%;
}

/*responsive code */
@import url(./responsive.css);

@media screen and (max-width: 1500px) {
    .saviour_wrapper:hover .soldiers_wrapper {
        bottom: 15%;
    }
    .soldiers_wrapper {
        right: 20%;
        bottom: -5%;
    }
}
@media screen and (max-width: 1276px) {
    .hero-side {
        width: 45%;
    }

    .rocket-con {
        width: 35vw;
        height: 35vw;
    }

    .section-side {
        width: 45%;
    }
  
    .server_item_con{
        justify-content: center;
    }

    .offer_app_head_con {
        padding: 1.5rem
    }

    .saviour_wrapper {

        height: 400px;
    }

    .soldiers_wrapper {
        right: 20%;
    }

    .saviour_wrapper:hover .soldiers_wrapper {
        bottom: 20%;
    }
}


@media screen and (max-width: 992px) {

    .server_item{
        height: 60px;
        gap: 1rem;
    }
    .server_country_image{
        width: 80px;
    }
    .server_section{
        flex-direction: column-reverse;
        gap: 3rem;
    }
   
    .hero_section {
        flex-direction: column;
        height: auto;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .hero-side {
        width: 90%;
    }

    .hero-side-left>div {
        width: 80%;
    }

    .offers_section {
        padding-top: 2%;
    }

    .stats_section {
        gap: 2%;
        justify-content: space-evenly;
    }

    .stat_item_wrapper {
        width: 80%;
        flex-wrap: wrap;
    }

    .stat_item_divider:nth-child(4) {
        display: none;
    }

    .stat_item {
        width: 45%;
    }

    .offers_section {
        gap: 2rem;
        flex-direction: column;
    }

    .offers_app {
        width: 100%;
    }

    .section-side {
        width: 80%;
    }

    .lang_section {
        flex-direction: column;
    }

    .saviour_wrapper {
        height: 300px;
    }

    .saviour_sun {
        right: 0;
        top: -10px;
        height: 100px;
        width: 100px;
    }

    .soldiers_wrapper {
        bottom: -10%;
    }

    .saviour_wrapper .section-data {
        z-index: 1;
        position: relative;
    }

    .migration_section {
        flex-direction: column;
    }

    .rocket-con {
        width: 50vw;
        height: 50vw;
    }

    .soldiers_wrapper {
        bottom: -10%;
    }

}

@media screen and (max-width: 768px) {

    .hero-side-left {
        padding-top: 10%;
    }
    .stat_item{
         max-width: 40% ;
        width:max-content;
    }
    .stat_item_data{
        font-size: 2rem;
    }
    .stat_item_desc{
        font-size: 1rem;
    }
    .stat_item_divider{
        display: none;
    }

    .hero-side-left>div {
        width: 100%;
    }

    .section-side {
        width: 100%;
    }

    .feature_wrapper {
        padding: 5% 1rem;
        align-items: flex-start;
    }
    .feature_wrapper h2{
        align-self:flex-start;
    }

    .saviour_wrapper:hover .soldiers_wrapper {
        bottom: 15%;
    }

    .saviour_wrapper .section-data {
        padding: 1rem;
    }

}

@media screen and (max-width: 576px) {

    .container {
        padding: 0 5%;
    }

    .lang_item {
        width: 2rem;
        height: 2rem;
    }
    .lang_item img{
        width: 1.5rem;
    } 

    .hero_section{
    padding: 3rem  0;
    }

    .feature_wrapper {
        padding: 5% ;
    }
    .feature_section{
        margin-top: 50px;
        padding: 5%;
    }
    #offer_app_item_con{
        flex-wrap: wrap;
    }
    .tagline.display_large::after{
        content: '   It All Starts With A Domain Name';
    }
    .feature_item{
        min-width: 80%;
        height: auto;
    }
    .section-data {
        padding: 0 5%;
    }

    .stat_item_wrapper {
        margin: 50px 0 ;
        width: 90%;
    }
    .lang_anim_con {
        width: 95vw;
        position: relative;
        height:95vw;
    }

.lang_item {
    width: 50px;
    height: 50px;
    transform-origin: center;
    border-radius: 50%;
    background-color: #B8EBF1;
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
}

.inner_lang_circle .lang_item:nth-child(1) {
    transform: translateX(20vw);
}

.inner_lang_circle .lang_item:nth-child(2) {
    transform: rotate(240deg) translateX(20vw);
}

.inner_lang_circle .lang_item:nth-child(3) {
    transform: rotate(120deg) translateX(20vw);
}
.lang_item img {
    width: 32px;
    height: 32px;
}

.lang_item:nth-child(1) {
    transform: translateX(39vw);
}

.lang_item:nth-child(2) {
    transform: rotate(240deg) translateX(39vw);
}

.lang_item:nth-child(3) {
    transform: rotate(120deg) translateX(39vw);
}
    
    .offers_app{
        box-shadow: none;
    }feature_wrapper
    .stats_section,.migration_section,.lang_section,.feature_section{
        padding: 10% 0;
    }
    .saviour_wrapper{
        border-radius: 0;
    }
    .saviour_section{

        padding: 5% 0;
    }
    .offers_section{
        padding: 0 ;
    }
    .offers_section .section-data{
        padding: 0 5%;
    }
    .stat_item {
        max-width: 45%;
        width: max-content;
    }
    .stat_item_icon{
        width: 50px;
        height: 50px;
    }
    .offer_app_head_con{
        padding: 5% ;
    }
    .stat_item_divider{
        display: none  !important;
    }
    .server_item_con{
        width: 100%;
    }
    .server_item{
        height: 50px;
    }
    .server_country_image{
        justify-self: start;
        height: 100%;
        width: 60px;
        background-repeat: no-repeat;
        background-size: cover;
    }
}