body {
    background-color: #11151a;
}

.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

.main-header {
    color: #ffff;
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 800;
    position: absolute;
    top: 300px;
    left: 10%;
    cursor: default;
}

.main-title {
    color: #5c5c5c;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    position: absolute;
    top: 395px;
    left: 10.2%;
    width: 25%;
    cursor: default;
}

.main-more button {
   background-color: #11151a;
   color: #7C40FF;
   font-family: 'Poppins', sans-serif;
   font-size: 24px;
   border: none;
   border-radius: 5px;
   position: absolute;
   top: 650px;
   left: 10%;
   width: 24%;
   height: 70px;
   cursor: pointer;
   transition: all .3s ease-in-out;
   box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
}

.main-more button:hover{
  background-color: #8d58ff; 
  color: #fff;
}

.scroll-downs {
    position: absolute;
    bottom: 4%;
    right: 3%;
    width :34px;
    height: 55px;
    z-index: 1;
}

.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
}

 @keyframes scroll {
    0% { opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0;}
}

.Container {
    transform: scale(1.1);
    margin: 0 auto;
    padding: 0 15px;
    position: absolute;
    top: 180px;
    right: 10%;
}

.Map-container {
    position: relative;
}

#Map-svg {
    width: 900px;
    height: auto;
}

/*Los Angeles */
.marker-1 { 
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 15%;
    top: 300px;
}
/*New York*/
.marker-2 { 
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 26%;
    top: 300px;
}
/*Chicago*/
.marker-3 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 23%;
    top: 285px;
}
/*Toronto*/
.marker-4 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 25%;
    top: 270px;
}
/*Brasilia*/
.marker-5 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 32%;
    top: 455px;
}
/*London*/
.marker-6 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 46%;
    top: 250px;
}
/*Amsterdam*/
.marker-7 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 48%;
    top: 260px;
}
/*Berlin*/
.marker-8 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 50%;
    top: 260px;
}
/*Munich*/
.marker-9 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 49%;
    top: 270px;
}
/*Istanbul*/
.marker-10 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 54%;
    top: 280px;
}
/*Izmir*/
.marker-11 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 53.5%;
    top: 295px;
}
/*Seoul*/
.marker-12 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 81.5%;
    top: 300px;
}
/*Tokyo*/
.marker-13 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 85%;
    top: 310px;
}
/*Sydney*/
.marker-14 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 88%;
    top: 495px;
}

.animated-dot {
    width: 12px;
    height: 12px;
    position: relative;
    background-color: transparent;
    border-radius: 50%;
}

.animated-dot .middle-dot {

    width: 10px;
    height: 10px;
    border-radius: 30px;
    position: absolute;
    left: 2px;
    top: 2px;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    background-color: #b4b4b4;
}

.animated-dot .signal {
    width: 180px;
    pointer-events: none;
    height: 180px;
    border-radius: 200px;
    position: absolute;
    left: -83px;
    top: -80px;
    opacity: 0;
    -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
    animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
    animation-delay: 0.78s;
    animation-iteration-count: infinite;
    background-color: #7C40FF;
}

.animated-dot .signal2 {
    width: 180px;
    height: 180px;
    pointer-events: none;
    border-radius: 200px;
    position: absolute;
    left: -83px;
    top: -80px;
    opacity: 0;
    -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
    animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    background-color: #7C40FF;
}

@-webkit-keyframes animationSignal {
    0% {
        opacity: 0;
        transform: scale(0.00)
    }

    1% {
        opacity: 0.25
    }

    20% {
        opacity: 0.25
    }

    60% {
        transform: scale(1);
        opacity: 0
    }
}

@-webkit-keyframes animationSignal2 {
    0% {
        opacity: 0
    }

    1% {
        opacity: 0.2
    }

    20% {
        opacity: 0.17
    }

    60% {
        opacity: 0
    }
}

.header-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    color: #fff;
    position: absolute;
    top: 1055px;
    left: 14%;
    cursor: default;
}

.welcome {
    background-color: #13171c;
    width: 70%;
    height: 450px;
    position: absolute;
    top: 1000px;
    left: 15%;
    text-align: justify;
    cursor: default;
    transition: all .3s ease-in-out;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.welcome h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 40px;
    position: absolute;
    top: 40px;
    left: 4%;
}


.welcome p {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    width: 35%;
    position: absolute;
    top: 150px;
    left: 4.5%;
}

.welcome h2 a{
    color: #777777;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 16px;
    position: absolute;
    top: 350px;
    left: 4.5%;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.welcome h2 a:hover {
    left: 5%;
    color: #fff;
}

.we-made {
    background-color: #24292f;
    width: 40%;
    height: 400px;
    position: absolute;
    top: 50px;
    right: 0%;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all .3s ease-in-out;
    box-shadow:
  0px 0px 2.2px rgba(0, 0, 0, 0.11),
  0px 0px 5.3px rgba(0, 0, 0, 0.158),
  0px 0px 10px rgba(0, 0, 0, 0.195),
  0px 0px 17.9px rgba(0, 0, 0, 0.232),
  0px 0px 33.4px rgba(0, 0, 0, 0.28),
  0px 0px 80px rgba(0, 0, 0, 0.39)
;
}

.we-made:hover {
    transform: scale(1.1);
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
}

.we-made-header {
    background-color: #30363d;
    width: 100%;
    height: 45px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-top-left-radius: 10px;
}

.we-made:hover .we-made-header{
    border-top-right-radius: 10px;
}

.we-made-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    position: absolute;
    top: 0px;
    left: 4%;
}

.we-made h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #747474;
    position: absolute;
    top: 330px;
    right: 5%;
    font-weight: 100;
}

.we-made h2 span {
    font-size: 14px;
}

.made-1 h1 {
    width: 80%;
    position: absolute;
    top: 55px;
    left: 5%;
    transition: all .3s ease-in-out;
    color: #cfcfcf;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.made-1 span {
    color: #259140;
    position: absolute;
    top: 60px;
    right: 5%;
    font-size: 35px;
}

.made-2 span {
    color: #259140;
    position: absolute;
    top: 125px;
    right: 5%;
    font-size: 35px;
}

.made-3 span {
    color: #259140;
    position: absolute;
    top: 190px;
    right: 5%;
    font-size: 35px;
}

.made-4 span {
    color: #259140;
    position: absolute;
    top: 255px;
    right: 5%;
    font-size: 35px;
}

.made-1 .m-line {
    width: 100%;
    height: 1px;
    background-color: #3b3b3b;
    position: absolute;
    top: 110px;
    left: 0%;
}

.made-2 h1 {
    width: 80%;
    position: absolute;
    top: 120px;
    left: 5%;
    transition: all .3s ease-in-out;
    color: #cfcfcf;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.made-2 .m-line {
    width: 100%;
    height: 1px;
    background-color: #3b3b3b;
    position: absolute;
    top: 175px;
    left: 0%;
}

.made-3 h1 {
    width: 80%;
    position: absolute;
    top: 182px;
    left: 5%;
    transition: all .3s ease-in-out;
    color: #cfcfcf;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.made-3 .m-line {
    width: 100%;
    height: 1px;
    background-color: #3b3b3b;
    position: absolute;
    top: 240px;
    left: 0%;
}

.made-4 h1 {
    width: 80%;
    position: absolute;
    top: 250px;
    left: 5%;
    transition: all .3s ease-in-out;
    color: #cfcfcf;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.made-4 .m-line {
    width: 100%;
    height: 1px;
    background-color: #3b3b3b;
    position: absolute;
    top: 310px;
    left: 0%;
}

.header-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    color: #ffffff;
    position: absolute;
    top: 1600px;
    left: 16%;
    z-index: 3;
    cursor: default;
}

.line-1 {
    background: linear-gradient(to right, #7C40FF, #11151a);
    width: 7%;
    height: 20px;
    position: absolute;
    top: 1670px;
    left: 16%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.offer-1 {
    background-color: #13171c;
    width: 17%;
    height: 500px;
    position: absolute;
    top: 1750px;
    left: 11%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.offer-2 { 
    background-color: #13171c;
    width: 17%;
    height: 500px;
    position: absolute;
    top: 1750px;
    left: 31%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.offer-3 {
    background-color: #13171c;
    width: 17%;
    height: 500px;
    position: absolute;
    top: 1750px;
    left: 51%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.offer-4 {
    background-color: #13171c;
    width: 17%;
    height: 500px;
    position: absolute;
    top: 1750px;
    left: 71%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;

}

.offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
    transform: scale(1.1);
    box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
}

.offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
    width: 16%;
    position: absolute;
    top: 20px;
    left: 5%;
    cursor: pointer;
}

.offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 25px;
    left: 25%;
    cursor: pointer;
}

.offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
    position: absolute;
    top: 75px;
    left: 0%;
    cursor: pointer;
}

.offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #fff;
    list-style: none;
    padding-top: 15px;
    cursor: pointer;
}

.offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
    color: #7C40FF;
    font-size: 18px;
}

.offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
    width: 80%;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 14px;
    color: #ffffffad;
    position: absolute;
    top: 350px;
    left: 10%;
    cursor: pointer;
    text-align: center;
}

.header-3 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    color: #ffffff;
    position: absolute;
    top: 2400px;
    left: 16%;
    z-index: 3;
    cursor: default;
}

.line-2 {
    background: linear-gradient(to right, #7C40FF, #11151a);
    width: 7%;
    height: 20px;
    position: absolute;
    top: 2470px;
    left: 16%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.develop-business {
    background-color: #13171c;
    width: 70%;
    height: 550px;
    position: absolute;
    top: 2550px;
    left: 15%;
    text-align: justify;
    cursor: default;
    transition: all .3s ease-in-out;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.develop-business img { 
    width: 51%;
    border-radius: 10px;
    position: absolute;
    top: 0px;
    left: 0%;
}

.develop-business-1 img {
    width: 50px;
    position: absolute;
    top: 80px;
    left: 62%;
}

.develop-business-1 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 76px;
    left: 65.5%;
}

.develop-business-1 p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a0a0a0;
    position: absolute;
    top: 110px;
    left: 66%;
    width: 23%;
    text-align: left;
}

.dbl-1 {
    width: 2px;
    height: 100px;
    background-color: #7C40FF;
    position: absolute;
    top: 130px;
    left: 63.45%;
}

.develop-business-2 img {
    width: 50px;
    position: absolute;
    top: 230px;
    left: 61.6%;
}

.develop-business-2 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 226px;
    left: 65.5%;
}

.develop-business-2 p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a0a0a0;
    position: absolute;
    top: 260px;
    left: 66%;
    width: 23%;
    text-align: left;
}

.dbl-2 {
    width: 2px;
    height: 100px;
    background-color: #7C40FF;
    position: absolute;
    top: 280px;
    left: 63.45%;
}

.develop-business-3 img {
    width: 46px;
    position: absolute;
    top: 385px;
    left: 61.8%;
}

.develop-business-3 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 382px;
    left: 65.5%;
}

.develop-business-3 p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a0a0a0;
    position: absolute;
    top: 416px;
    left: 66%;
    width: 23%;
    text-align: left;
}

.header-4 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    color: #ffffff;
    position: absolute;
    top: 3275px;
    left: 16%;
    z-index: 3;
    cursor: default;
}

.line-3 {
    background: linear-gradient(to right, #7C40FF, #11151a);
    width: 7%;
    height: 20px;
    position: absolute;
    top: 3345px;
    left: 16%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.web-services h2 {
    font-family: monospace;
    font-size: 16px;
    color: #7C40FF;
    position: absolute;
    top: 3450px;
    left: 17%;
}

.web-services h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: 3460px;
    left: 17%;
}

.search-container {
    position: relative;
    width: 25%;
    top: 3550px;
    left: 17%;
}

.search-input {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #fff;
    width: 100%;
    height: 60px;
    border-radius: 10px;
    outline: none;
    padding-left: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    background-color: #11151a;
}

.search-button {
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    background-color: #7C40FF;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    transition: all .3s ease-in-out;
}

.search-button:hover {
    background-color: #8d58ff;
}

.search-button img {
    width: 20px;
    height: 20px;
}

.web-services p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #eeeeee;
    width: 35%;
    position: absolute;
    top: 3630px;
    left: 17%;
}

.web-services button {
    background-color: #7C40FF;
    color: #ffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    position: absolute;
    top: 3760px;
    left: 17%;
    width: 8%;
    height: 50px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.web-services button:hover {
    background-color: #8d58ff;
}

.domain-image img {
    position: absolute;
    top: 30px;
    left: 5%;
    width: 90%;
}

.price {
    color: #7C40FF;
    position: absolute;
    top: 110px;
    left: 0%;
    width: 100%;
    text-align: center;
}

.dot-com {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #13171c;
    width: 9%;
    height: 150px;
    border-radius: 10px;
    position: absolute;
    top: 3440px;
    left: 55%;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.dot-net {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #13171c;
    width: 9%;
    height: 150px;
    border-radius: 10px;
    position: absolute;
    top: 3480px;
    left: 65%;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.dot-org {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #13171c;
    width: 9%;
    height: 150px;
    border-radius: 10px;
    position: absolute;
    top: 3610px;
    left: 55%;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.dot-io {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #13171c;
    width: 9%;
    height: 150px;
    border-radius: 10px;
    position: absolute;
    top: 3650px;
    left: 65%;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.dot-site {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #13171c;
    width: 9%;
    height: 150px;
    border-radius: 10px;
    position: absolute;
    top: 3440px;
    left: 75%;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.dot-online {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #13171c;
    width: 9%;
    height: 150px;
    border-radius: 10px;
    position: absolute;
    top: 3610px;
    left: 75%;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    cursor: pointer;
    transition: all .3s ease-in-out;
}


.dot-com:hover,
.dot-net:hover,
.dot-org:hover,
.dot-io:hover,
.dot-store:hover,
.dot-site:hover,
.dot-store:hover,
.dot-online:hover {
    transform: scale(1.1);

}

.website-type h2 {
    font-family: monospace;
    font-size: 16px;
    color: #7C40FF;
    position: absolute;
    top: 4040px;
    left: 17%;
}

.website-type h1{
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: 4050px;
    left: 17%;
}

.website-type p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #eeeeee;
    position: absolute;
    top:  4120px;
    left: 17%;
}

.pack-1 {
    background-color: #13171c;
    width: 17%;
    height: 500px;
    position: absolute;
    top: 4250px;
    left: 15%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.pack-2 {
    background-color: #13171c;
    width: 17%;
    height: 500px;
    position: absolute;
    top: 4250px;
    left: 35%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.pack-3 {
    background-color: #13171c;
    width: 17%;
    height: 500px;
    position: absolute;
    top: 4250px;
    left: 55%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.pack-4 {
    background-color: #13171c;
    width: 17%;
    height: 500px;
    position: absolute;
    top: 4250px;
    left: 75%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
    transform: scale(1.1);
    box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
}

.pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
    width: 16%;
    position: absolute;
    top: 20px;
    left: 3%;
    cursor: pointer;
}

.pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #fff;
    position: absolute;
    top: 25px;
    left: 22%;
    cursor: pointer;
}

.pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
    position: absolute;
    top: 75px;
    left: -5%;
    cursor: pointer;
}

.pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fff;
    list-style: none;
    padding-top: 5px;
    cursor: pointer;
}

.pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
    color: #7C40FF;
    font-size: 18px;
}

.pack-1 button, .pack-2 button, .pack-3 button, .pack-4 button {
    width: 60%;
    height: 60px;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 15px;
    color: #fff;
    position: absolute;
    top: 460px;
    left: 20%;
    cursor: pointer;
    text-align: center;
    background-color: #13171c;
    border: solid;
    border-width: 1px;
    border-color: #00ff40;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
    background-color: #00dd37;
    color: #fff;
}

.info-bar {
    background: linear-gradient(to right, #13171c, #1b2027);
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
}

.info-bar-icon {
    background-color: #7C40FF;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 15px;
    left: 5%;
    border-radius: 10px;
    cursor: pointer;
}

.info-bar-icon img {
    width: 70%;
    position: absolute;
    top: 15%;
    left: 15%;
    cursor: pointer;
}

.info-bar h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 25px;
    left: 30%;
    cursor: default;
}

.server-select h2 {
    font-family: monospace;
    font-size: 16px;
    color: #7C40FF;
    position: absolute;
    top: 4940px;
    left: 17%;
}

.server-select h1{
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: 4950px;
    left: 17%;
}

.server-select p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #eeeeee;
    position: absolute;
    top:  5020px;
    left: 17%;
}


.server-info {
    font-family: monospace;
    font-size: 16px;
    color: #5c5c5c;
    position: absolute;
    top: 5150px;
    left: 17%;
}

.service-point-1 {
    background-color: #13171c;
    width: 15%;
    height: 270px;
    position: absolute;
    top: 5200px;
    left: 17%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-2 {
    background-color: #13171c;
    width: 15%;
    height: 270px;
    position: absolute;
    top: 5200px;
    left: 35%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-3 {
    background-color: #13171c;
    width: 15%;
    height: 270px;
    position: absolute;
    top: 5200px;
    left: 53%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-4 {
    background-color: #13171c;
    width: 15%;
    height: 270px;
    position: absolute;
    top: 5200px;
    left: 71%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-5 {
    background-color: #13171c;
    width: 15%;
    height: 270px;
    position: absolute;
    top: 5500px;
    left: 17%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-6 {
    background-color: #13171c;
    width: 15%;
    height: 270px;
    position: absolute;
    top: 5500px;
    left: 35%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-7 {
    background-color: #13171c;
    width: 15%;
    height: 270px;
    position: absolute;
    top: 5500px;
    left: 53%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-8 {
    background-color: #13171c;
    width: 15%;
    height: 270px;
    position: absolute;
    top: 5500px;
    left: 71%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.server-info-2 {
    font-family: monospace;
    font-size: 16px;
    color: #5c5c5c;
    position: absolute;
    top: 5800px;
    right: 14%;
}


.service-point-1 img, 
.service-point-2 img, 
.service-point-3 img,
.service-point-4 img,
.service-point-5 img,
.service-point-6 img, 
.service-point-7 img,
.service-point-8 img
 {
    width: 20%;
    height: 43px;
    text-align: center;
    position: absolute;
    top: 30px;
    left: 40%;
    font-weight: 200;
    cursor: default;
    border-radius: 5px;
}

.service-point-1 h2, 
.service-point-2 h2, 
.service-point-3 h2,
.service-point-4 h2,
.service-point-5 h2,
.service-point-6 h2, 
.service-point-7 h2,
.service-point-8 h2
 {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    position: absolute;
    top: 70px;
    font-weight: 200;
    cursor: default;
}

.service-point-1 h3, 
.service-point-2 h3, 
.service-point-3 h3,
.service-point-4 h3,
.service-point-5 h3,
.service-point-6 h3, 
.service-point-7 h3,
.service-point-8 h3
{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 100;
    position: absolute;
    top: 105px;
    left: 18%;
    cursor: default;
}

.service-point-1 h4, 
.service-point-2 h4, 
.service-point-3 h4,
.service-point-4 h4,
.service-point-5 h4,
.service-point-6 h4, 
.service-point-7 h4,
.service-point-8 h4
{
    font-family: monospace;
    color: #7C40FF;
    font-size: 50px;
    position: absolute;
    top: 80px;
    left: 18%;
    cursor: default;
}

.service-point-1 h5, 
.service-point-2 h5, 
.service-point-3 h5,
.service-point-4 h5,
.service-point-5 h5,
.service-point-6 h5, 
.service-point-7 h5,
.service-point-8 h5
{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 100;
    position: absolute;
    top: 96px;
    right: 8%;
    cursor: default;
}

.service-point-1 h6, 
.service-point-2 h6, 
.service-point-3 h6,
.service-point-4 h6,
.service-point-5 h6,
.service-point-6 h6, 
.service-point-7 h6,
.service-point-8 h6
{
    font-family: monospace;
    color: #7C40FF;
    font-size: 50px;
    position: absolute;
    top: 30px;
    right: 10%;
    cursor: default;
}

.service-point-line {
    width: 0.5%;
    background-color: #8a8a8a;
    height: 100px;
    position: absolute;
    top: 120px;
    left: 49.75%;
}

.enjoy h2 {
    font-family: monospace;
    font-size: 16px;
    color: #7C40FF;
    position: absolute;
    top: 5950px;
    left: 40%;
    width: 10%;
    display: none;
}

.enjoy h1{
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: 5960px;
    left: 30%;
    width: 40%;
    text-align: center;
}

.enjoy p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #eeeeee;
    width: 35%;
    position: absolute;
    top:  6020px;
    left: 32.5%;
    text-align: center;
}


.start-create button {
    width: 40%;
    height: 80px;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #7C40FF;
    border: none;
    border-radius: 10px;
    position: absolute;
    top: 6250px;
    left: 30%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
}

.start-create button:hover {
    background-color: #8d58ff;
    color: #fff;
}

/*Tree Container*/
.tree-container {
    width: 100%;
    height: 500px;
    position: absolute;
    top: 6500px;
    left: 0%;
    z-index: 3;
}

.tree-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 3;
}

.tree-container-layer {
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 4;
    opacity: 0.25;
}

.tree-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    color: #fff;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 100px;
    left: 0%;
    z-index: 5;
    cursor: default;
}

.tree-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #fff;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 200px;
    left: 0%;
    z-index: 5;
    cursor: default;
}

.tree-container p2 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #8a8a8a;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 40px;
    left: 0%;
    z-index: 5;
    cursor: default;
}

.footer {
    position: absolute;
    top: 7000px;
    left: 0%;
}


  /*RESPONSIVE*/
  @media (min-width: 240px) and (max-width: 359.98px) and (orientation: portrait)  {  
    
    .line-1, .line-2, .line-3 {display: none;}

    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 800;
        position: absolute;
        top: 290px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        position: absolute;
        top: 320px;
        left: 10%;
        width: 80%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 420px;
        left: 10%;
        width: 80%;
        height: 40px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .main-more button:hover{
        background-color: #8d58ff; 
        color: #fff;
          
    }
    
    .scroll-downs {
        display: none;
    }
    
    .mousey {
        display: none;
    }
    
    .scroller {
        display: none;
    }
     
    .Container {
        transform: scale(0.9);
        max-width: 300px;
        margin: 0 auto;
        padding: 0 15px;
        position: absolute;
        top: 100px;
        right: 0%;
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 100%;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 90px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 95px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 85px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 80px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 140px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 78px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 80px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 85px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 87px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 89px;
    }
    /*Izmir*/
    .marker-11 {
        display: none;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 80%;
        top: 95px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 82%;
        top:  97px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 155px;
    }
    
    .animated-dot {
        width: 5px;
        height: 5px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
        width: 5px;
        height: 5px;
        border-radius: 30px;
        position: absolute;
        left: 2px;
        top: 2px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 60px;
        pointer-events: none;
        height: 60px;
        border-radius: 200px;
        position: absolute;
        left: -25px;
        top: -25px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        display: none;
        width: 180px;
        height: 180px;
        pointer-events: none;
        border-radius: 200px;
        position: absolute;
        left: -83px;
        top: -80px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    .header-1 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 450px;
        left: 10%;
        cursor: default;
    }
    
    .welcome {
        background-color: #13171c;
        width: 100%;
        height: 500px;
        position: absolute;
        top: 500px;
        left: 00%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 00px;
        border-style: solid;
        border-width: 0px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 18px;
        position: absolute;
        top: 20px;
        left: 10%;
    }
     
    .welcome p {
        color: #ececec;
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        width: 80%;
        position: absolute;
        top: 80px;
        left: 10%;
        text-align: left;
    }
    
    .welcome h2 a{display: none;
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 16px;
        position: absolute;
        top: 350px;
        left: 4.5%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {
        background-color: #24292f;
        width: 80%;
        height: 175px;
        position: absolute;
        top: 270px;
        right: 10%;
        border-radius: 5px;
        transition: all .3s ease-in-out;
        box-shadow:
        0px 0px 0.3px rgba(0, 0, 0, 0.02),
        0px 0px 0.8px rgba(0, 0, 0, 0.028),
        0px 0px 1.5px rgba(0, 0, 0, 0.035),
        0px 0px 2.7px rgba(0, 0, 0, 0.042),
        0px 0px 5px rgba(0, 0, 0, 0.05),
        0px 0px 12px rgba(0, 0, 0, 0.07)
      ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header {
        background-color: #30363d;
        width: 100%;
        height: 30px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 400;
        position: absolute;
        top: -5px;
        left: 4%;
    }
    
    .we-made h2 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #747474;
        position: absolute;
        top: 330px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 14px;
    }
    
    .made-1 h1 {
        width: 80%;
        position: absolute;
        top: 30px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 100;
    }
    
    .made-1 span {
        color: #259140;
        position: absolute;
        top: 38px;
        right: 5%;
        font-size: 20px;
    }
    
    .made-1 .m-line {
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 65px;
        left: 0%;
    }
    
    .made-2 h1 {
        width: 80%;
        position: absolute;
        top: 65px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 100;
    }

    .made-2 span {
        color: #259140;
        position: absolute;
        top: 73px;
        right: 5%;
        font-size: 20px;
    }
    
    .made-2 .m-line {
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 100px;
        left: 0%;
    }
    
    .made-3 h1 {
        width: 80%;
        position: absolute;
        top: 100px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 100;
    }

    .made-3 span {
        color: #259140;
        position: absolute;
        top: 108px;
        right: 5%;
        font-size: 20px;
    }
    
    .made-3 .m-line {
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 135px;
        left: 0%;
    }
    
    .made-4 h1 {
        width: 80%;
        position: absolute;
        top: 136px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        font-weight: 100;
    }

    .made-4 span {
        color: #259140;
        position: absolute;
        top: 143px;
        right: 5%;
        font-size: 20px;
    }
    
    .made-4 .m-line {display: none;
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 310px;
        left: 0%;
    }
    
    .header-2 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 1040px;
        left: 10%;
        cursor: default;
    }
    
    .offer-1 {
        background-color: #13171c;
        width: 80%;
        height: 350px;
        position: absolute;
        top: 1100px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-2 {
        background-color: #13171c;
        width: 80%;
        height: 350px;
        position: absolute;
        top: 1480px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-3 {
        background-color: #13171c;
        width: 80%;
        height: 350px;
        position: absolute;
        top: 1860px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-4 {
        background-color: #13171c;
        width: 80%;
        height: 350px;
        position: absolute;
        top: 2240px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-5 {
       display: none;
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 16%;
        position: absolute;
        top: 20px;
        left: 3%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #fff;
        position: absolute;
        top: 20px;
        left: 22%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 50px;
        left: -1%;
        cursor: pointer;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 80%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 10px;
        text-align: center;
        color: #ffffffad;
        position: absolute;
        top: 250px;
        left: 10%;
        cursor: pointer;
    }
    
    .header-3 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 2660px;
        left: 10%;
        cursor: default;
    }
    
    .develop-business {
        background-color: #13171c;
        width: 100%;
        height: 670px;
        position: absolute;
        top: 2710px;
        left: 0%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border: none;
    }
    
    .develop-business img { 
        width: 80%;
        border-radius: 10px;
        position: absolute;
        top: 30px;
        left: 10%;
    }
    
    .develop-business-1 img { 
        width: 14%;
        position: absolute;
        top: 260px;
        left: 7%;
    }
    
    .develop-business-1 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #fff;
        position: absolute;
        top: 260px;
        left: 20%;
    }
    
    .develop-business-1 p {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #a0a0a0;
        position: absolute;
        top: 280px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    .dbl-1 {
        width: 1px;
        height: 85px;
        background-color: #999999;
        position: absolute;
        top: 300px;
        left: 13.6%;
    }
    
    .develop-business-2 img {
        width: 13%;
        position: absolute;
        top: 385px;
        left: 7%;
    }
    
    .develop-business-2 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #fff;
        position: absolute;
        top: 385px;
        left: 20%;
    }
    
    .develop-business-2 p {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #a0a0a0;
        position: absolute;
        top: 405px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    .dbl-2 {
        width: 1px;
        height: 100px;
        background-color: #999999;
        position: absolute;
        top: 425px;
        left: 13.6%;
    }
    
    .develop-business-3 img {
        width: 12%;
        position: absolute;
        top: 525px;
        left: 7%;
    }
    
    .develop-business-3 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #fff;
        position: absolute;
        top: 515px;
        left: 20%;
        width: 50%;
        text-align: left;
    }
    
    .develop-business-3 p {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #a0a0a0;
        position: absolute;
        top: 560px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    .header-4 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 3390px;
        left: 10%;
        cursor: default;
    }
    
    .web-services h2 {
        font-family: monospace;
        font-size: 12px;
        color: #7C40FF;
        position: absolute;
        top: 3440px;
        left: 10%;
    }
    
    .web-services h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 3455px;
        left: 11%;
    }

    .search-container {
        position: relative;
        width: 80%;
        top: 3500px;
        left: 8%;
    }
    
    .search-input {
        font-family: 'Poppins', sans-serif;
        font-size: 10px;
        color: #fff;
        width: 100%;
        height: 45px;
        border-radius: 5px;
        outline: none;
        padding-left: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        background-color: #11151a;
    }
    
    .search-button {
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        background-color: #7C40FF;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .search-button:hover {
        background-color: #8d58ff;
    }
    
    .search-button img {
        width: 14px;
        height: 14px;
    }
    
    .web-services p {
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top:  3580px;
        left: 10%;
        z-index: 2;
    }
    
    
    .web-services button {
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 3960px;
        left: 17%;
        width: 8%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }

    .domain-image img {
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
    }
    
    .price {display: none;
        color: #7C40FF;
        position: absolute;
        top: 110px;
        left: 0%;
        width: 100%;
        text-align: center;
    }
    
    .dot-com {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3740px;
        left: 55%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-net {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3780px;
        left: 65%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-org {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3910px;
        left: 55%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-io {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3950px;
        left: 65%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-site {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3740px;
        left: 75%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-online {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3910px;
        left: 75%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    
    .dot-com:hover,
    .dot-net:hover,
    .dot-org:hover,
    .dot-io:hover,
    .dot-store:hover,
    .dot-site:hover,
    .dot-store:hover,
    .dot-online:hover {
        transform: scale(1.1);
    
    }
    
    
    .website-type h2 {
        font-family: monospace;
        font-size: 12px;
        color: #7C40FF;
        position: absolute;
        top: 3780px;
        left: 10%;
    }
    
    .website-type h1{
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 3800px;
        left: 11%;
    }
    
    .website-type p {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  4420px;
        left: 17%;
    }
    
    .pack-1 {
        background-color: #13171c;
        width: 80%;
        height: 400px;
        position: absolute;
        top: 3870px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-1 button {
        width: 60%;
        height: 40px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 380px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-2 {
        background-color: #13171c;
        width: 80%;
        height: 460px;
        position: absolute;
        top: 4320px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-2 button {
        width: 60%;
        height: 40px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 440px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-3 {
        background-color: #13171c;
        width: 80%;
        height: 410px;
        position: absolute;
        top: 4830px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-3 button {
        width: 60%;
        height: 40px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 390px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-4 {
        background-color: #13171c;
        width: 80%;
        height: 360px;
        position: absolute;
        top: 5290px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-4 button {
        width: 60%;
        height: 40px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 340px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1.1);
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 15%;
        position: absolute;
        top: 17px;
        left: 5%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 60px;
        left: -2%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar { display: none;
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 100px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon {display: none;
        background-color: #7C40FF;
        width: 70px;
        height: 70px;
        position: absolute;
        top: 15px;
        left: 5%;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon img {display: none;
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 25px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 {
        font-family: monospace;
        font-size: 12px;
        color: #7C40FF;
        position: absolute;
        top: 5730px;
        left: 10%;
    }
    
    .server-select h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 5745px;
        left: 11%;
    }
    
    .server-select p {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  5320px;
        left: 17%;
    }
    
    .server-info { 
        font-family: monospace;
        font-size: 8px;
        color: #5c5c5c;
        position: absolute;
        top: 6470px;
        left: 10%;
        width: 80%;
    }
    
    .service-point-1 { 
        background-color: #13171c;
        width: 80%;
        height: 60px;
        position: absolute;
        top: 5820px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 {
        background-color: #13171c;
        width: 80%;
        height: 60px;
        position: absolute;
        top: 5900px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 {
        background-color: #13171c;
        width: 80%;
        height: 60px;
        position: absolute;
        top: 5980px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 {
        background-color: #13171c;
        width: 80%;
        height: 60px;
        position: absolute;
        top: 6060px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 {
        background-color: #13171c;
        width: 80%;
        height: 60px;
        position: absolute;
        top: 6140px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 { 
        background-color: #13171c;
        width: 80%;
        height: 60px;
        position: absolute;
        top: 6220px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 {
        background-color: #13171c;
        width: 80%;
        height: 60px;
        position: absolute;
        top: 6300px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 {
        background-color: #13171c;
        width: 80%;
        height: 60px;
        position: absolute;
        top: 6380px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .server-info-2 {
        font-family: monospace;
        font-size: 8px;
        color: #5c5c5c;
        position: absolute;
        top: 6500px;
        left: 10%;
        width: 80%;
    }
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 16%;
        height: 30px;
        text-align: center;
        position: absolute;
        top: 15px;
        left: 5%;
        font-weight: 200;
        cursor: default;
        border-radius: 5px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 40%;
        text-align: left;
        font-size: 12px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 10px;
        left: 25%;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 7px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 5px;
        left: 61%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 16px;
        position: absolute;
        top: 5px;
        left: 62%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 7px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 1px;
        right: 4%;
        cursor: default;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 16px;
        position: absolute;
        top: -11px;
        right: 8.5%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 20px;
        position: absolute;
        top: 25px;
        left: 74%;
    }
    
    .enjoy h2 {
        font-family: monospace;
        font-size: 12px;
        color: #7C40FF;
        position: absolute;
        top: 6550px;
        left: 10%;
    }
    
    .enjoy h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 6565px;
        left: 11%;
        width: 79%;
    }
    
    .enjoy p {
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top:  6620px;
        left: 10%;
    }
    
    
    .start-create button {
        width: 80%;
        height: 40px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #7C40FF;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 6760px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    /*Tree Container*/
    .tree-container {
        width: 100%;
        height: 160px;
        position: absolute;
        top: 6900px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 10px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 10px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 50px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 8px;
        color: #8a8a8a;
        width: 80%;
        text-align: center;
        position: absolute;
        bottom: 5px;
        left: 10%;
        z-index: 5;
        cursor: default;
    }
    
    .mobile-footer {
        position: absolute;
        top: 7060px;
        left: 0%;
    }

  }
       
  @media (min-width: 360px) and (max-width: 575.98px) and (orientation: portrait) {
    
    .line-1, .line-2, .line-3 {display: none;}
    
    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        font-weight: 800;
        position: absolute;
        top: 310px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        position: absolute;
        top: 350px;
        left: 10%;
        width: 80%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 450px;
        left: 10%;
        width: 80%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
         
    .main-more button:hover{
        background-color: #8d58ff; 
        color: #fff; 
    }
    
    .scroll-downs {
        display: none;
    }
    
    .mousey {
        display: none;
    }
    
    .scroller {
        display: none;
    }
     
    .Container {
        transform: scale(1.1);
        max-width: 300px;
        margin: 0 auto;
        padding: 0 15px;
        position: absolute;
        top: 100px;
        left: 5%;
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 100%;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 90px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 95px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 85px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 80px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 140px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 78px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 80px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 85px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 87px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 89px;
    }
    /*Izmir*/
    .marker-11 {
        display: none;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 80%;
        top: 95px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 82%;
        top:  97px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 155px;
    }
    
    .animated-dot {
        width: 5px;
        height: 5px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
        width: 5px;
        height: 5px;
        border-radius: 30px;
        position: absolute;
        left: 2px;
        top: 2px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 60px;
        pointer-events: none;
        height: 60px;
        border-radius: 200px;
        position: absolute;
        left: -25px;
        top: -25px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        display: none;
        width: 180px;
        height: 180px;
        pointer-events: none;
        border-radius: 200px;
        position: absolute;
        left: -83px;
        top: -80px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    
    .line { display: none;
        width: 2px;
        height: 6220px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 1080px;
        left: 10%;
        border-radius: 10px;
        z-index: 3;
    }
    
    .horizontal-line-1 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 470px;
        left: 24%;
    }
    
    .header-1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 500px;
        left: 10%;
        cursor: default;
    }
    
    .welcome { 
        background-color: #13171c;
        width: 100%;
        height: 520px;
        position: absolute;
        top: 550px;
        left: 00%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 00px;
        border-style: solid;
        border-width: 0px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 20px;
        position: absolute;
        top: 20px;
        left: 10%;
    }
    
    
    .welcome p { 
        color: #ececec;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        width: 80%;
        position: absolute;
        top: 80px;
        left: 10%;
        text-align: left;
    }
    
    .welcome h2 a{ 
        display: none;
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 14px;
        position: absolute;
        top: 240px;
        left: 10%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {  
        background-color: #24292f;
        width: 80%;
        height: 190px;
        position: absolute;
        top: 270px;
        right: 10%;
        border-radius: 5px;
        transition: all .3s ease-in-out;
        box-shadow:
        0px 0px 0.3px rgba(0, 0, 0, 0.02),
        0px 0px 0.8px rgba(0, 0, 0, 0.028),
        0px 0px 1.5px rgba(0, 0, 0, 0.035),
        0px 0px 2.7px rgba(0, 0, 0, 0.042),
        0px 0px 5px rgba(0, 0, 0, 0.05),
        0px 0px 12px rgba(0, 0, 0, 0.07)
      ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header { 
        background-color: #30363d;
        width: 100%;
        height: 30px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 400;
        position: absolute;
        top: -5px;
        left: 4%;
    }
    
    .we-made h2 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #747474;
        position: absolute;
        top: 330px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 14px;
    }
    
    .made-1 h1 { 
        width: 80%;
        position: absolute;
        top: 32px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 100;
    }
    
    .made-1 span { 
        color: #259140;
        position: absolute;
        top: 38px;
        right: 5%;
        font-size: 24px;
    }
    
    .made-1 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 70px;
        left: 0%;
    }
    
    .made-2 h1 { 
        width: 80%;
        position: absolute;
        top: 70px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 100;
    }

    .made-2 span { 
        color: #259140;
        position: absolute;
        top: 78px;
        right: 5%;
        font-size: 24px;
    }
    
    .made-2 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 108px;
        left: 0%;
    }
    
    .made-3 h1 { 
        width: 80%;
        position: absolute;
        top: 108px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 100;
    }

    .made-3 span { 
        color: #259140;
        position: absolute;
        top: 115px;
        right: 5%;
        font-size: 24px;
    }
    
    .made-3 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 146px;
        left: 0%;
    }
    
    .made-4 h1 { 
        width: 80%;
        position: absolute;
        top: 145px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 100;
    }

    .made-4 span { 
        color: #259140;
        position: absolute;
        top: 155px;
        right: 5%;
        font-size: 24px;
    }
    
    .made-4 .m-line {
        display: none;
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 315px;
        left: 0%;
    }
    
    
    .horizontal-line-2 {  display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 1060px;
        left: 60%;
    }
    
    .header-2 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 1100px;
        left: 10%;
        cursor: default;
    }
    
    .offer-1 { 
        background-color: #13171c;
        width: 80%;
        height: 370px;
        position: absolute;
        top: 1160px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 80%;
        height: 370px;
        position: absolute;
        top: 1560px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-3 { 
        background-color: #13171c;
        width: 80%;
        height: 370px;
        position: absolute;
        top: 1960px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-4 { 
        background-color: #13171c;
        width: 80%;
        height: 370px;
        position: absolute;
        top: 2360px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-5 {
       display: none;
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 16%;
        position: absolute;
        top: 18px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 20px;
        left: 25%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 54px;
        left: 6%;
        cursor: pointer;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #ececec;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 80%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        text-align: center;
        color: #ffffffad;
        position: absolute;
        top: 250px;
        left: 10%;
        cursor: pointer;
    }
    
    .horizontal-line-3 { display: none;  
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 2680px;
        left: 86%;
    }
    
    .header-3 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 2800px;
        left: 10%;
        cursor: default;
    }
    
    .develop-business { 
        background-color: #13171c;
        width: 100%;
        height: 840px;
        position: absolute;
        top: 2850px;
        left: 0%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border: none;
    }
    
    .develop-business img { 
        width: 80%;
        border-radius: 10px;
        position: absolute;
        top: 30px;
        left: 10%;
    }
    
    .develop-business-1 img { 
        width: 14%;
        position: absolute;
        top: 310px;
        left: 7%;
    }
    
    .develop-business-1 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 310px;
        left: 20%;
    }
    
    .develop-business-1 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #a0a0a0;
        position: absolute;
        top: 340px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    .dbl-1 { 
        width: 2px;
        height: 100px;
        background-color: #999999;
        position: absolute;
        top: 360px;
        left: 13.6%;
    }
    
    .develop-business-2 img { 
        width: 13%;
        position: absolute;
        top: 460px;
        left: 7%;
    }
    
    .develop-business-2 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 460px;
        left: 20%;
    }
    
    .develop-business-2 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #a0a0a0;
        position: absolute;
        top: 490px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    .dbl-2 { 
        width: 2px;
        height: 120px;
        background-color: #999999;
        position: absolute;
        top: 510px;
        left: 13.6%;
    }
    
    .develop-business-3 img { 
        width: 12%;
        position: absolute;
        top: 630px;
        left: 7%;
    }
    
    .develop-business-3 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 620px;
        left: 20%;
        width: 50%;
        text-align: left;
    }
    
    .develop-business-3 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #a0a0a0;
        position: absolute;
        top: 675px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    
    .horizontal-line-4 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 3410px;
        left: 47%;
    }
    
    .header-4 {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 3750px;
        left: 10%;
        cursor: default;
    }
    
    .web-services h2 { 
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 3800px;
        left: 10%;
    }
    
    .web-services h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 3820px;
        left: 10%;
    }

    .search-container {
        position: relative;
        width: 80%;
        top: 3870px;
        left: 8%;
    }
    
    .search-input {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #fff;
        width: 100%;
        height: 45px;
        border-radius: 5px;
        outline: none;
        padding-left: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        background-color: #11151a;
    }
    
    .search-button {
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        background-color: #7C40FF;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .search-button:hover {
        background-color: #8d58ff;
    }
    
    .search-button img {
        width: 14px;
        height: 14px;
    }
    
    .web-services p { 
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top:  3940px;
        left: 10%;
        z-index: 2;
    }
    
    .web-services button { display: none;
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 3960px;
        left: 17%;
        width: 8%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }
    
    .domain-image img { display: none;
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
    }
    
    .price { 
        color: #7C40FF;
        position: absolute;
        top: 4000px;
        left: 0%;
        width: 100%;
        text-align: center;
    }
    
    .dot-com { display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3740px;
        left: 55%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-net {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3780px;
        left: 65%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-org {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3910px;
        left: 55%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-io {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3950px;
        left: 65%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-site {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3740px;
        left: 75%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-online {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3910px;
        left: 75%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    
    .dot-com:hover,
    .dot-net:hover,
    .dot-org:hover,
    .dot-io:hover,
    .dot-store:hover,
    .dot-site:hover,
    .dot-store:hover,
    .dot-online:hover {
        transform: scale(1.1);
    
    }
    
    
    .website-type h2 { 
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 4120px;
        left: 10%;
    }
    
    .website-type h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 4140px;
        left: 10%;
    }
    
    .website-type p { display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  4420px;
        left: 17%;
    }
    
    .pack-1 { 
        background-color: #13171c;
        width: 80%;
        height: 400px;
        position: absolute;
        top: 4230px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-1 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 378px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-2 { 
        background-color: #13171c;
        width: 80%;
        height: 450px;
        position: absolute;
        top: 4680px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-2 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 428px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-3 { 
        background-color: #13171c;
        width: 80%;
        height: 400px;
        position: absolute;
        top: 5180px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-3 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 378px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-4 { 
        background-color: #13171c;
        width: 80%;
        height: 400px;
        position: absolute;
        top: 5630px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-4 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 378px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1.1);
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 15%;
        position: absolute;
        top: 17px;
        left: 5%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 45px;
        left: -2%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #ececec;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar { display: none;
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 100px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon {display: none;
        background-color: #7C40FF;
        width: 70px;
        height: 70px;
        position: absolute;
        top: 15px;
        left: 5%;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon img {display: none;
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 25px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 { 
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 6100px;
        left: 10%;
    }
    
    .server-select h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 6120px;
        left: 10%;
    }
    
    .server-select p {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  5320px;
        left: 17%;
    }
    
    .server-info {  
        font-family: monospace;
        font-size: 10px;
        color: #5c5c5c;
        position: absolute;
        top: 6900px;
        left: 10%;
        width: 80%;
        text-align: justify;
    }
    
    .service-point-1 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6200px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6285px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6370px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6455px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6540px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 {  
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6625px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6710px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6795px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .server-info-2 {
        font-family: monospace;
        font-size: 10px;
        color: #5c5c5c;
        position: absolute;
        top: 6930px;
        left: 10%;
        width: 80%;
    }
    
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 42px;
        height: 30px;
        text-align: center;
        position: absolute;
        top: 20px;
        left: 5%;
        font-weight: 200;
        cursor: default;
        border-radius: 5px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 40%;
        text-align: left;
        font-size: 13px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 25%;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 8px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 10px;
        left: 63%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 16px;
        position: absolute;
        top: 10px;
        left: 64%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 8px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 6px;
        right: 2%;
        cursor: default;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 16px;
        position: absolute;
        top: -6px;
        right: 6.5%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 20px;
        position: absolute;
        top: 25px;
        left: 76%;
    }
    
    .enjoy h2 { display: none;
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 7100px;
        left: 10%;
    }
    
    .enjoy h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 6980px;
        left: 11%;
        width: 79%;
    }
    
    .enjoy p { 
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top: 7020px;
        left: 10%;
    }
    
    
    .start-create button {
        width: 80%;
        height: 45px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #7C40FF;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 7180px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    /*Tree Container*/
    .tree-container { 
        width: 100%; 
        height: 200px;
        position: absolute;
        top: 7300px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 25px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #fff;
        width: 95%;
        text-align: center;
        position: absolute;
        top: 70px;
        left: 2.5%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 9px;
        color: #8a8a8a;
        width: 80%;
        text-align: center;
        position: absolute;
        bottom: 5px;
        left: 10%;
        z-index: 5;
        cursor: default;
    }
    
    
    /*Bottom Container*/
    .mobile-footer { 
        position: absolute;
        top: 7500px;
        left: 0%;
    }
  }
  
  @media (min-width: 576px) and (max-width: 767.98px) and (orientation: portrait)  {
    .line-1, .line-2, .line-3 {display: none;}

    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 800;
        position: absolute;
        top: 310px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        position: absolute;
        top: 350px;
        left: 10%;
        width: 80%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 440px;
        left: 10%;
        width: 40%;
        height: 60px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
         
    .main-more button:hover{
        background-color: #8d58ff; 
        color: #fff; 
    }
    
    .scroll-downs {
        display: none;
    }
    
    .mousey {
        display: none;
    }
    
    .scroller {
        display: none;
    }
     
    .Container {
        max-width: 300px;
        margin: 0 auto;
        padding: 0 15px;
        position: absolute;
        top: 140px;
        right: 15%;
        transform: scale(1.5);
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 100%;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 90px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 95px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 85px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 80px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 140px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 78px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 80px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 85px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 87px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 89px;
    }
    /*Izmir*/
    .marker-11 {
        display: none;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 80%;
        top: 95px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 82%;
        top:  97px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 155px;
    }
    
    .animated-dot {
        width: 5px;
        height: 5px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
        width: 5px;
        height: 5px;
        border-radius: 30px;
        position: absolute;
        left: 2px;
        top: 2px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 60px;
        pointer-events: none;
        height: 60px;
        border-radius: 200px;
        position: absolute;
        left: -25px;
        top: -25px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        display: none;
        width: 180px;
        height: 180px;
        pointer-events: none;
        border-radius: 200px;
        position: absolute;
        left: -83px;
        top: -80px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    
    .line { display: none;
        width: 2px;
        height: 6220px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 1080px;
        left: 10%;
        border-radius: 10px;
        z-index: 3;
    }
    
    .horizontal-line-1 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 470px;
        left: 24%;
    }
    
    .header-1 {  display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 500px;
        left: 10%;
        cursor: default;
    }
    
    .welcome { 
        background-color: #13171c;
        width: 100%;
        height: 560px;
        position: absolute;
        top: 550px;
        left: 00%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 00px;
        border-style: solid;
        border-width: 0px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 24px;
        position: absolute;
        top: 20px;
        left: 10%;
    }
    
    
    .welcome p { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        width: 80%;
        position: absolute;
        top: 80px;
        left: 10%;
        text-align: left;
    }
    
    .welcome h2 a{ 
        display: none;
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 14px;
        position: absolute;
        top: 240px;
        left: 10%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {  
        background-color: #24292f;
        width: 80%;
        height: 240px;
        position: absolute;
        top: 270px;
        right: 10%;
        border-radius: 5px;
        transition: all .3s ease-in-out;
        box-shadow:
        0px 0px 0.3px rgba(0, 0, 0, 0.02),
        0px 0px 0.8px rgba(0, 0, 0, 0.028),
        0px 0px 1.5px rgba(0, 0, 0, 0.035),
        0px 0px 2.7px rgba(0, 0, 0, 0.042),
        0px 0px 5px rgba(0, 0, 0, 0.05),
        0px 0px 12px rgba(0, 0, 0, 0.07)
      ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header { 
        background-color: #30363d;
        width: 100%;
        height: 40px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 400;
        position: absolute;
        top: -5px;
        left: 4%;
    }
    
    .we-made h2 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #747474;
        position: absolute;
        top: 330px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 14px;
    }
    
    .made-1 h1 { 
        width: 80%;
        position: absolute;
        top: 40px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }
    
    .made-1 span { 
        color: #259140;
        position: absolute;
        top: 50px;
        right: 5%;
        font-size: 30px;
    }
    
    .made-1 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 90px;
        left: 0%;
    }
    
    .made-2 h1 { 
        width: 80%;
        position: absolute;
        top: 90px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }

    .made-2 span { 
        color: #259140;
        position: absolute;
        top: 100px;
        right: 5%;
        font-size: 30px;
    }
    
    .made-2 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 140px;
        left: 0%;
    }
    
    .made-3 h1 { 
        width: 80%;
        position: absolute;
        top: 140px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }

    .made-3 span { 
        color: #259140;
        position: absolute;
        top: 150px;
        right: 5%;
        font-size: 30px;
    }
    
    .made-3 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 190px;
        left: 0%;
    }
    
    .made-4 h1 { 
        width: 80%;
        position: absolute;
        top: 190px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }

    .made-4 span { 
        color: #259140;
        position: absolute;
        top: 200px;
        right: 5%;
        font-size: 30px;
    }
    
    .made-4 .m-line {
        display: none;
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 315px;
        left: 0%;
    }
    
    .horizontal-line-2 {  display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 1060px;
        left: 60%;
    }
    
    .header-2 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 1180px;
        left: 10%;
        cursor: default;
    }
    
    .offer-1 { 
        background-color: #13171c;
        width: 43%;
        height: 440px;
        position: absolute;
        top: 1260px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 43%;
        height: 440px;
        position: absolute;
        top: 1260px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-3 {
        background-color: #13171c;
        width: 43%;
        height: 440px;
        position: absolute;
        top: 1725px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-4 {
        background-color: #13171c;
        width: 43%;
        height: 440px;
        position: absolute;
        top: 1725px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-5 {
       display: none;
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 20%;
        position: absolute;
        top: 18px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 10px;
        left: 28%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 80px;
        left: -8%;
        cursor: pointer;
        text-align: left;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 90%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        text-align: center;
        color: #ffffffad;
        position: absolute;
        top: 320px;
        left: 5%;
        cursor: pointer;
    }
    
    .horizontal-line-3 { display: none;  
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 2680px;
        left: 86%;
    }
    
    .header-3 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 2300px;
        left: 10%;
        cursor: default;
    }
    
    .develop-business { 
        background-color: #13171c;
        width: 100%;
        height: 1080px;
        position: absolute;
        top: 2360px;
        left: 0%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border: none;
    }
    
    .develop-business img { 
        width: 80%;
        border-radius: 10px;
        position: absolute;
        top: 30px;
        left: 10%;
    }
    
    .develop-business-1 img { 
        width: 14%;
        position: absolute;
        top: 460px;
        left: 7%;
    }
    
    .develop-business-1 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 470px;
        left: 20%;
    }
    
    .develop-business-1 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #a0a0a0;
        position: absolute;
        top: 510px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    .dbl-1 { 
        width: 2px;
        height: 100px;
        background-color: #999999;
        position: absolute;
        top: 530px;
        left: 13.6%;
    }
    
    .develop-business-2 img {  
        width: 13%;
        position: absolute;
        top: 624px;
        left: 7%;
    }
    
    .develop-business-2 h1 {  
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 640px;
        left: 20%;
    }
    
    .develop-business-2 p {  
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #a0a0a0;
        position: absolute;
        top: 680px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    .dbl-2 {  
        width: 2px;
        height: 120px;
        background-color: #999999;
        position: absolute;
        top: 700px;
        left: 13.6%;
    }
    
    .develop-business-3 img { 
        width: 12%;
        position: absolute;
        top: 820px;
        left: 7%;
    }
    
    .develop-business-3 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 820px;
        left: 20%;
        width: 50%;
        text-align: left;
    }
    
    .develop-business-3 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #a0a0a0;
        position: absolute;
        top: 890px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    
    .horizontal-line-4 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 3410px;
        left: 47%;
    }
    
    .header-4 {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 3450px;
        left: 10%;
        cursor: default;
    }
    
    .web-services h2 { 
        font-family: monospace;
        font-size: 18px;
        color: #7C40FF;
        position: absolute;
        top: 3500px;
        left: 10%;
    }
    
    .web-services h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 3530px;
        left: 10%;
    }
    
    .web-services p { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top:  3660px;
        left: 10%;
        z-index: 2;
    }
    
    .web-services button { display: none;
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 3960px;
        left: 17%;
        width: 8%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }
    
    .search-for-domains input { 
        width: 80%;
        height: 60px;
        position: absolute;
        top: 3600px;
        left: 10%;
        border-radius: 10px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        border-style: solid;
        border-width: 1px;
        border-color: #8d58ff;
        padding-left: 15px;
        padding-right: 60px;
    }
    
    .search-for-domains button  { 
        background-color: #8d58ff;
        color: #fff; 
        text-align: center;
        font-size: 18px;
        position: absolute;
        top: 3630px;
        left: 81%;
        cursor: pointer;
        transition: all .3s ease-in-out;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        border: none;
    }
    
    .search-for-domains span:hover {
        background-color: #9261fd;
    }
    
    .domain-image img { display: none;
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
    }
    
    .price { 
        color: #7C40FF;
        position: absolute;
        top: 4000px;
        left: 0%;
        width: 100%;
        text-align: center;
    }
    
    .dot-com { display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3740px;
        left: 55%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-net {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3780px;
        left: 65%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-org {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3910px;
        left: 55%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-io {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3950px;
        left: 65%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-site {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3740px;
        left: 75%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-online {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3910px;
        left: 75%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-com:hover,
    .dot-net:hover,
    .dot-org:hover,
    .dot-io:hover,
    .dot-store:hover,
    .dot-site:hover,
    .dot-store:hover,
    .dot-online:hover {
        transform: scale(1.1);
    }
    
    
    .website-type h2 { 
        font-family: monospace;
        font-size: 18px;
        color: #7C40FF;
        position: absolute;
        top: 3800px;
        left: 10%;
    }
    
    .website-type h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 3830px;
        left: 10%;
    }
    
    .website-type p { display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  4420px;
        left: 17%;
    }
    
    .pack-1 { 
        background-color: #13171c;
        width: 43%;
        height: 430px;
        position: absolute;
        top: 3920px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-1 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 406px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-2 { 
        background-color: #13171c;
        width: 43%;
        height: 430px;
        position: absolute;
        top: 3920px;
        left: 52%;
        transiion: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-2 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 406px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-3 { 
        background-color: #13171c;
        width: 43%;
        height: 430px;
        position: absolute;
        top: 4400px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-3 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 406px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-4 { 
        background-color: #13171c;
        width: 43%;
        height: 430px;
        position: absolute;
        top: 4400px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-4 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 406px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1.1);
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 15%;
        position: absolute;
        top: 17px;
        left: 5%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 17px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 45px;
        left: -2%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar { display: none;
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 100px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon {display: none;
        background-color: #7C40FF;
        width: 70px;
        height: 70px;
        position: absolute;
        top: 15px;
        left: 5%;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon img {display: none;
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 25px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 { 
        font-family: monospace;
        font-size: 18px;
        color: #7C40FF;
        position: absolute;
        top: 4900px;
        left: 10%;
    }
    
    .server-select h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 4930px;
        left: 10%;
    }
    
    .server-select p {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #ececec;
        position: absolute;
        top:  4980px;
        left: 10%;
    }
    
    .server-info {  
        font-family: monospace;
        font-size: 16px;
        color: #5c5c5c;
        position: absolute;
        top: 5940px;
        left: 10%;
        width: 80%;
        text-align: justify;
    }
    
    .service-point-1 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5100px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5200px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5300px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5400px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5500px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 {  
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5600px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5700px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5800px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .server-info-2 {
        font-family: monospace;
        font-size: 16px;
        color: #5c5c5c;
        position: absolute;
        top: 6000px;
        left: 10%;
        width: 80%;
    }
    
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 56px;
        height: 38px;
        text-align: center;
        position: absolute;
        top: 20px;
        left: 5%;
        font-weight: 200;
        cursor: default;
        border-radius: 5px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 40%;
        text-align: left;
        font-size: 20px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 6px;
        left: 22%;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 0px;
        left: 60%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 20px;
        position: absolute;
        top: 10px;
        left: 62%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: -10px;
        right: 2%;
        cursor: default;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 20px;
        position: absolute;
        top: -10px;
        right: 10%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 26px;
        position: absolute;
        top: 25px;
        left: 74%;
    }
    
    .enjoy h2 { display: none;
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 7100px;
        left: 10%;
    }
    
    .enjoy h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 6100px;
        left: 11%;
        width: 79%;
    }
    
    .enjoy p { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top: 6160px;
        left: 10%;
    }
    
    
    .start-create button {
        width: 80%;
        height: 55px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #7C40FF;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 6340px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    /*Tree Container*/
    .tree-container { 
        width: 100%; 
        height: 300px;
        position: absolute;
        top: 6500px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 40px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        width: 95%;
        text-align: center;
        position: absolute;
        top: 110px;
        left: 2.5%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #8a8a8a;
        width: 80%;
        text-align: center;
        position: absolute;
        bottom: 10px;
        left: 10%;
        z-index: 5;
        cursor: default;
    }
    
    .mobile-footer { 
        position: absolute;
        top: 6800px;
        left: 0%;
    }
  }
       
  @media  (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {
    
    .line-1, .line-2, .line-3 {display: none;}
    
    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        font-weight: 800;
        position: absolute;
        top: 310px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        position: absolute;
        top: 360px;
        left: 10%;
        width: 80%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 470px;
        left: 10%;
        width: 30%;
        height: 60px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
         
    .main-more button:hover{
        background-color: #8d58ff; 
        color: #fff; 
    }
    
    .scroll-downs {
        display: none;
    }
    
    .mousey {
        display: none;
    }
    
    .scroller {
        display: none;
    }
     
    .Container {
        max-width: 300px;
        margin: 0 auto;
        padding: 0 15px;
        position: absolute;
        top: 180px;
        right: 20%;
        transform: scale(1.8);
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 100%;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 90px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 95px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 85px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 80px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 140px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 78px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 80px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 85px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 87px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 89px;
    }
    /*Izmir*/
    .marker-11 {
        display: none;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 80%;
        top: 95px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 82%;
        top:  97px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 155px;
    }
    
    .animated-dot {
        width: 5px;
        height: 5px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
        width: 5px;
        height: 5px;
        border-radius: 30px;
        position: absolute;
        left: 2px;
        top: 2px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 60px;
        pointer-events: none;
        height: 60px;
        border-radius: 200px;
        position: absolute;
        left: -25px;
        top: -25px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        display: none;
        width: 180px;
        height: 180px;
        pointer-events: none;
        border-radius: 200px;
        position: absolute;
        left: -83px;
        top: -80px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    
    .line { display: none;
        width: 2px;
        height: 6220px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 1080px;
        left: 10%;
        border-radius: 10px;
        z-index: 3;
    }
    
    .horizontal-line-1 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 470px;
        left: 24%;
    }
    
    .header-1 {  display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 500px;
        left: 10%;
        cursor: default;
    }
    
    .welcome { 
        background-color: #13171c;
        width: 100%;
        height: 600px;
        position: absolute;
        top: 550px;
        left: 00%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 00px;
        border-style: solid;
        border-width: 0px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 28px;
        position: absolute;
        top: 20px;
        left: 10%;
    }
    
    
    .welcome p { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        width: 80%;
        position: absolute;
        top: 80px;
        left: 10%;
        text-align: left;
    }
    
    .welcome h2 a{ 
        display: none;
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 14px;
        position: absolute;
        top: 240px;
        left: 10%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {  
        background-color: #24292f;
        width: 80%;
        height: 300px;
        position: absolute;
        top: 270px;
        right: 10%;
        border-radius: 5px;
        transition: all .3s ease-in-out;
        box-shadow:
        0px 0px 0.3px rgba(0, 0, 0, 0.02),
        0px 0px 0.8px rgba(0, 0, 0, 0.028),
        0px 0px 1.5px rgba(0, 0, 0, 0.035),
        0px 0px 2.7px rgba(0, 0, 0, 0.042),
        0px 0px 5px rgba(0, 0, 0, 0.05),
        0px 0px 12px rgba(0, 0, 0, 0.07)
      ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header { 
        background-color: #30363d;
        width: 100%;
        height: 60px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 400;
        position: absolute;
        top: -5px;
        left: 4%;
    }
    
    .we-made h2 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #747474;
        position: absolute;
        top: 330px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 14px;
    }
    
    .made-1 h1 { 
        width: 80%;
        position: absolute;
        top: 56px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }
    
    .made-1 span { 
        color: #259140;
        position: absolute;
        top: 70px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-1 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 120px;
        left: 0%;
    }
    
    .made-2 h1 { 
        width: 80%;
        position: absolute;
        top: 120px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-2 span { 
        color: #259140;
        position: absolute;
        top: 130px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-2 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 180px;
        left: 0%;
    }
    
    .made-3 h1 { 
        width: 80%;
        position: absolute;
        top: 176px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-3 span { 
        color: #259140;
        position: absolute;
        top: 190px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-3 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 240px;
        left: 0%;
    }
    
    .made-4 h1 { 
        width: 80%;
        position: absolute;
        top: 236px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-4 span { 
        color: #259140;
        position: absolute;
        top: 250px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-4 .m-line {
        display: none;
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 315px;
        left: 0%;
    }
    
    .horizontal-line-2 {  display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 1060px;
        left: 60%;
    }
    
    .header-2 { 
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        position: absolute;
        top: 1180px;
        left: 10%;
        cursor: default;
    }
    
    .offer-1 { 
        background-color: #13171c;
        width: 40%;
        height: 460px;
        position: absolute;
        top: 1280px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 40%;
        height: 460px;
        position: absolute;
        top: 1280px;
        left: 51%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-3 {
        background-color: #13171c;
        width: 40%;
        height: 460px;
        position: absolute;
        top: 1760px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-4 {
        background-color: #13171c;
        width: 40%;
        height: 460px;
        position: absolute;
        top: 1760px;
        left: 51%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-5 {
       display: none;
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 20%;
        position: absolute;
        top: 18px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 28%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 80px;
        left: -8%;
        cursor: pointer;
        text-align: left;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 90%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 14px;
        text-align: center;
        color: #ffffffad;
        position: absolute;
        top: 320px;
        left: 5%;
        cursor: pointer;
    }
    
    .horizontal-line-3 { display: none;  
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 2680px;
        left: 86%;
    }
    
    .header-3 { 
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        position: absolute;
        top: 2340px;
        left: 10%;
        cursor: default;
    }
    
    .develop-business {
        background-color: #13171c;
        width: 100%;
        height: 600px;
        position: absolute;
        top: 2450px;
        left: 0%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border: none;
    }
    
    .develop-business img { 
        width: 45%;
        border-radius: 10px;
        position: absolute;
        top: 100px;
        left: 5%;
    }
    
    .develop-business-1 img { 
        width: 8%;
        position: absolute;
        top: 45px;
        left: 53%;
    }
    
    .develop-business-1 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #fff;
        position: absolute;
        top: 45px;
        left: 60.5%;
    }
    
    .develop-business-1 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #a0a0a0;
        position: absolute;
        top: 86px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    .dbl-1 { 
        width: 2px;
        height: 100px;
        background-color: #999999;
        position: absolute;
        top: 100px;
        left: 56.5%;
    }
    
    .develop-business-2 img {  
        width: 8%;
        position: absolute;
        top: 200px;
        left: 53%;
    }
    
    .develop-business-2 h1 {  
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 205px;
        left: 60.5%;
    }
    
    .develop-business-2 p {  
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #a0a0a0;
        position: absolute;
        top: 240px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    .dbl-2 {  
        width: 2px;
        height: 130px;
        background-color: #999999;
        position: absolute;
        top: 260px;
        left: 56.5%;
    }
    
    .develop-business-3 img { 
        width: 7%;
        position: absolute;
        top: 390px;
        left: 53.5%;
    }
    
    .develop-business-3 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 380px;
        left: 60.5%;
        width: 35%;
    }
    
    .develop-business-3 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #a0a0a0;
        position: absolute;
        top: 440px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    
    .horizontal-line-4 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 3410px;
        left: 47%;
    }
    
    .header-4 {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        position: absolute;
        top: 3150px;
        left: 10%;
        cursor: default;
    }
    
    .web-services h2 { 
        font-family: monospace;
        font-size: 20px;
        color: #7C40FF;
        position: absolute;
        top: 3250px;
        left: 10%;
    }
    
    .web-services h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 3280px;
        left: 10%;
    }
    
    .web-services p { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top:  3440px;
        left: 10%;
        z-index: 2;
    }
    
    .web-services button { display: none;
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 3960px;
        left: 17%;
        width: 8%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }
    
    .search-for-domains input { 
        width: 80%;
        height: 65px;
        position: absolute;
        top: 3350px;
        left: 10%;
        border-radius: 10px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        border-style: solid;
        border-width: 1px;
        border-color: #8d58ff;
        padding-left: 15px;
        padding-right: 60px;
    }
    
    .search-for-domains button  { 
        background-color: #8d58ff;
        color: #fff; 
        text-align: center;
        font-size: 18px;
        position: absolute;
        top: 3380px;
        left: 82.5%;
        cursor: pointer;
        transition: all .3s ease-in-out;
        width: 50px;
        height: 50px;
        border-radius: 10px;
        border: none;
    }
    
    .search-for-domains span:hover {
        background-color: #9261fd;
    }
    
    .domain-image img { display: none;
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
    }
 
    
    .dot-com { display: none;}
    
    .dot-net { display: none;}
    
    .dot-org { display: none;}
    
    .dot-io { display: none;}
    
    .dot-site { display: none;}
    
    .dot-online { display: none;}
    
    
    .website-type h2 { 
        font-family: monospace;
        font-size: 20px;
        color: #7C40FF;
        position: absolute;
        top: 3600px;
        left: 10%;
    }
    
    .website-type h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 3630px;
        left: 10%;
    }
    
    .website-type p { display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  4420px;
        left: 17%;
    }
    
    .pack-1 { 
        background-color: #13171c;
        width: 43%;
        height: 480px;
        position: absolute;
        top: 3760px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-1 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 456px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-2 { 
        background-color: #13171c;
        width: 43%;
        height: 480px;
        position: absolute;
        top: 3760px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-2 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 456px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-3 { 
        background-color: #13171c;
        width: 43%;
        height: 480px;
        position: absolute;
        top: 4300px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-3 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 456px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-4 { 
        background-color: #13171c;
        width: 43%;
        height: 480px;
        position: absolute;
        top: 4300px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-4 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 456px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1.1);
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 15%;
        position: absolute;
        top: 17px;
        left: 5%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 60px;
        left: -2%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar { display: none;
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 100px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon {display: none;
        background-color: #7C40FF;
        width: 70px;
        height: 70px;
        position: absolute;
        top: 15px;
        left: 5%;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon img {display: none;
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 25px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 { 
        font-family: monospace;
        font-size: 20px;
        color: #7C40FF;
        position: absolute;
        top: 4900px;
        left: 10%;
    }
    
    .server-select h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 4930px;
        left: 10%;
    }
    
    .server-select p {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #ececec;
        position: absolute;
        top:  4980px;
        left: 10%;
    }
    
    .server-info {  
        font-family: monospace;
        font-size: 18px;
        color: #5c5c5c;
        position: absolute;
        top: 5900px;
        left: 10%;
        width: 80%;
        text-align: justify;
    }
    
    .service-point-1 {
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5100px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5100px;
        left: 50%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5300px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5300px;
        left: 50%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5500px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5500px;
        left: 50%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5700px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5700px;
        left: 50%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .server-info-2 {
        font-family: monospace;
        font-size: 18px;
        color: #5c5c5c;
        position: absolute;
        top: 5960px;
        left: 10%;
        width: 80%;
    }
    
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 56px;
        height: 38px;
        text-align: center;
        position: absolute;
        top: 20px;
        left: 8%;
        font-weight: 200;
        cursor: default;
        border-radius: 5px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 80%;
        text-align: left;
        font-size: 20px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 6px;
        left: 35%;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 70px;
        left: 15%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 22px;
        position: absolute;
        top: 90px;
        left: 21%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 60px;
        left: 52%;
        cursor: default;
        width: 45%;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 22px;
        position: absolute;
        top: 70px;
        right: 24%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 40px;
        position: absolute;
        top: 100px;
        left: 45%;
    }
    
    .enjoy h2 { display: none;
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 7100px;
        left: 10%;
    }
    
    .enjoy h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 6060px;
        left: 11%;
        width: 79%;
    }
    
    .enjoy p { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top: 6120px;
        left: 10%;
    }
    
    
    .start-create button {
        width: 80%;
        height: 65px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #7C40FF;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 6310px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    /*Tree Container*/
    .tree-container { 
        width: 100%; 
        height: 340px;
        position: absolute;
        top: 6500px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 40px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        width: 95%;
        text-align: center;
        position: absolute;
        top: 110px;
        left: 2.5%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #8a8a8a;
        width: 80%;
        text-align: center;
        position: absolute;
        bottom: 10px;
        left: 10%;
        z-index: 5;
        cursor: default;
    }
    
    .mobile-footer { 
        position: absolute;
        top: 6840px;
        left: 0%;
    }
  }
       
  @media (min-width: 992px) and (max-width: 1199.98px) and (orientation: portrait)  {
    
    .line-1, .line-2, .line-3 {display: none;}
    
    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        font-weight: 800;
        position: absolute;
        top: 300px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        position: absolute;
        top: 350px;
        left: 10%;
        width: 40%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 450px;
        left: 10%;
        width: 25%;
        height: 70px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
         
    .main-more button:hover{
        background-color: #8d58ff; 
        color: #fff; 
    }
    
    .scroll-downs {
        display: none;
    }
    
    .mousey {
        display: none;
    }
    
    .scroller {
        display: none;
    }
     
    .Container {
        max-width: 300px;
        margin: 0 auto;
        padding: 0 15px;
        position: absolute;
        top: 240px;
        right: 20%;
        transform: scale(2.2);
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 100%;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 90px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 95px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 85px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 80px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 140px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 78px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 80px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 85px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 87px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 89px;
    }
    /*Izmir*/
    .marker-11 {
        display: none;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 80%;
        top: 95px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 82%;
        top:  97px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 155px;
    }
    
    .animated-dot {
        width: 5px;
        height: 5px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
        width: 5px;
        height: 5px;
        border-radius: 30px;
        position: absolute;
        left: 2px;
        top: 2px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 60px;
        pointer-events: none;
        height: 60px;
        border-radius: 200px;
        position: absolute;
        left: -25px;
        top: -25px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        display: none;
        width: 180px;
        height: 180px;
        pointer-events: none;
        border-radius: 200px;
        position: absolute;
        left: -83px;
        top: -80px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    
    .line { display: none;
        width: 2px;
        height: 6220px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 1080px;
        left: 10%;
        border-radius: 10px;
        z-index: 3;
    }
    
    .horizontal-line-1 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 470px;
        left: 24%;
    }
    
    .header-1 {  display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 500px;
        left: 10%;
        cursor: default;
    }
    
    .welcome { 
        background-color: #13171c;
        width: 100%;
        height: 400px;
        position: absolute;
        top: 550px;
        left: 00%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 00px;
        border-style: solid;
        border-width: 0px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 28px;
        position: absolute;
        top: 20px;
        left: 10%;
    }
    
    
    .welcome p { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        width: 47%;
        position: absolute;
        top: 80px;
        left: 10%;
        text-align: left;
    }
    
    .welcome h2 a{ 
        display: none;
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 14px;
        position: absolute;
        top: 240px;
        left: 10%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {  
        background-color: #24292f;
        width: 40%;
        height: 300px;
        position: absolute;
        top: 100px;
        right: 1%;
        border-radius: 5px;
        transition: all .3s ease-in-out;
        box-shadow:
        0px 0px 0.3px rgba(0, 0, 0, 0.02),
        0px 0px 0.8px rgba(0, 0, 0, 0.028),
        0px 0px 1.5px rgba(0, 0, 0, 0.035),
        0px 0px 2.7px rgba(0, 0, 0, 0.042),
        0px 0px 5px rgba(0, 0, 0, 0.05),
        0px 0px 12px rgba(0, 0, 0, 0.07)
      ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header { 
        background-color: #30363d;
        width: 100%;
        height: 60px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 400;
        position: absolute;
        top: -5px;
        left: 4%;
    }
    
    .we-made h2 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #747474;
        position: absolute;
        top: 330px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 14px;
    }
    
    .made-1 h1 { 
        width: 80%;
        position: absolute;
        top: 56px;
        left: 7%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }
    
    .made-1 span { 
        color: #259140;
        position: absolute;
        top: 70px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-1 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 120px;
        left: 0%;
    }
    
    .made-2 h1 { 
        width: 80%;
        position: absolute;
        top: 120px;
        left: 7%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-2 span { 
        color: #259140;
        position: absolute;
        top: 130px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-2 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 180px;
        left: 0%;
    }
    
    .made-3 h1 { 
        width: 80%;
        position: absolute;
        top: 176px;
        left: 7%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-3 span { 
        color: #259140;
        position: absolute;
        top: 190px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-3 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 240px;
        left: 0%;
    }
    
    .made-4 h1 { 
        width: 80%;
        position: absolute;
        top: 236px;
        left: 7%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-4 span { 
        color: #259140;
        position: absolute;
        top: 250px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-4 .m-line {
        display: none;
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 315px;
        left: 0%;
    }
    
    .horizontal-line-2 {  display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 1060px;
        left: 60%;
    }
    
    .header-2 { 
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        color: #fff;
        position: absolute;
        top: 1000px;
        left: 10%;
        cursor: default;
    }
    
    .offer-1 { 
        background-color: #13171c;
        width: 40%;
        height: 550px;
        position: absolute;
        top: 1120px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 40%;
        height: 550px;
        position: absolute;
        top: 1120px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-3 { 
        background-color: #13171c;
        width: 40%;
        height: 550px;
        position: absolute;
        top: 1700px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-4 { 
        background-color: #13171c;
        width: 40%;
        height: 550px;
        position: absolute;
        top: 1700px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-5 {
       display: none;
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 20%;
        position: absolute;
        top: 18px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        position: absolute;
        top: 20px;
        left: 28%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 110px;
        left: 0%;
        cursor: pointer;
        text-align: left;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 90%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 18px;
        text-align: center;
        color: #ffffffad;
        position: absolute;
        top: 400px;
        left: 5%;
        cursor: pointer;
    }
    
    .horizontal-line-3 { display: none;  
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 2680px;
        left: 86%;
    }
    
    .header-3 { 
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        color: #fff;
        position: absolute;
        top: 2340px;
        left: 10%;
        cursor: default;
    }
    
    .develop-business {
        background-color: #13171c;
        width: 100%;
        height: 600px;
        position: absolute;
        top: 2450px;
        left: 0%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border: none;
    }
    
    .develop-business img { 
        width: 45%;
        border-radius: 10px;
        position: absolute;
        top: 100px;
        left: 5%;
    }
    
    .develop-business-1 img { 
        width: 8%;
        position: absolute;
        top: 45px;
        left: 53%;
    }
    
    .develop-business-1 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 45px;
        left: 60.5%;
    }
    
    .develop-business-1 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #a0a0a0;
        position: absolute;
        top: 86px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    .dbl-1 { 
        width: 2px;
        height: 100px;
        background-color: #999999;
        position: absolute;
        top: 100px;
        left: 56.5%;
    }
    
    .develop-business-2 img {  
        width: 8%;
        position: absolute;
        top: 200px;
        left: 53%;
    }
    
    .develop-business-2 h1 {  
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 205px;
        left: 60.5%;
    }
    
    .develop-business-2 p {  
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #a0a0a0;
        position: absolute;
        top: 240px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    .dbl-2 {  
        width: 2px;
        height: 130px;
        background-color: #999999;
        position: absolute;
        top: 260px;
        left: 56.5%;
    }
    
    .develop-business-3 img { 
        width: 7%;
        position: absolute;
        top: 390px;
        left: 53.5%;
    }
    
    .develop-business-3 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 380px;
        left: 60.5%;
        width: 35%;
    }
    
    .develop-business-3 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #a0a0a0;
        position: absolute;
        top: 440px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    
    .horizontal-line-4 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 3410px;
        left: 47%;
    }
    
    .header-4 {
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        color: #fff;
        position: absolute;
        top: 3150px;
        left: 10%;
        cursor: default;
    }
    
    .web-services h2 { 
        font-family: monospace;
        font-size: 22px;
        color: #7C40FF;
        position: absolute;
        top: 3250px;
        left: 10%;
    }
    
    .web-services h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        position: absolute;
        top: 3280px;
        left: 10%;
    }
    
    .web-services p { 
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top:  3440px;
        left: 10%;
        z-index: 2;
    }
    
    .web-services button { display: none;
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 3960px;
        left: 17%;
        width: 8%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }
    
    .search-for-domains input { 
        width: 80%;
        height: 80px;
        position: absolute;
        top: 3350px;
        left: 10%;
        border-radius: 10px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        border-style: solid;
        border-width: 1px;
        border-color: #8d58ff;
        padding-left: 15px;
        padding-right: 60px;
    }
    
    .search-for-domains button  { 
        background-color: #8d58ff;
        color: #fff; 
        text-align: center;
        font-size: 18px;
        position: absolute;
        top: 3390px;
        left: 82.5%;
        cursor: pointer;
        transition: all .3s ease-in-out;
        width: 60px;
        height: 60px;
        border-radius: 10px;
        border: none;
    }
    
    .search-for-domains span:hover {
        background-color: #9261fd;
    }
    
    .domain-image img { display: none;
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
    }
 
    
    .dot-com { display: none;}
    
    .dot-net { display: none;}
    
    .dot-org { display: none;}
    
    .dot-io { display: none;}
    
    .dot-site { display: none;}
    
    .dot-online { display: none;}
    
    
    .website-type h2 { 
        font-family: monospace;
        font-size: 22px;
        color: #7C40FF;
        position: absolute;
        top: 3600px;
        left: 10%;
    }
    
    .website-type h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        position: absolute;
        top: 3630px;
        left: 10%;
    }
    
    .website-type p { display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  4420px;
        left: 17%;
    }
    
    .pack-1 { 
        background-color: #13171c;
        width: 40%;
        height: 560px;
        position: absolute;
        top: 3760px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-1 button {
        width: 60%;
        height: 60px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 530px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-2 { 
        background-color: #13171c;
        width: 40%;
        height: 560px;
        position: absolute;
        top: 3760px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-2 button {
        width: 60%;
        height: 60px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 530px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-3 { 
        background-color: #13171c;
        width: 40%;
        height: 560px;
        position: absolute;
        top: 4400px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-3 button {
        width: 60%;
        height: 60px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 530px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-4 { 
        background-color: #13171c;
        width: 40%;
        height: 560px;
        position: absolute;
        top: 4400px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-4 button {
        width: 60%;
        height: 60px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 530px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1.1);
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 15%;
        position: absolute;
        top: 17px;
        left: 5%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 80px;
        left: 0%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar { display: none;
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 100px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon {display: none;
        background-color: #7C40FF;
        width: 70px;
        height: 70px;
        position: absolute;
        top: 15px;
        left: 5%;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon img {display: none;
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 25px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 { 
        font-family: monospace;
        font-size: 22px;
        color: #7C40FF;
        position: absolute;
        top: 5100px;
        left: 10%;
    }
    
    .server-select h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        position: absolute;
        top: 5160px;
        left: 10%;
    }
    
    .server-select p {
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #ececec;
        position: absolute;
        top:  5220px;
        left: 10%;
    }
    
    .server-info {  display: none;
        font-family: monospace;
        font-size: 18px;
        color: #5c5c5c;
        position: absolute;
        top: 5900px;
        left: 10%;
        width: 80%;
        text-align: justify;
    }
    
    .service-point-1 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 5380px;
        left: 7%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 5380px;
        left: 37%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 5380px;
        left: 67%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 5720px;
        left: 7%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 {  
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 5720px;
        left: 37%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 5720px;
        left: 67%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 6060px;
        left: 21%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 6060px;
        left: 51%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .server-info-2 { display: none;
        font-family: monospace;
        font-size: 18px;
        color: #5c5c5c;
        position: absolute;
        top: 5960px;
        left: 10%;
        width: 80%;
    }
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 80px;
        height: 56px;
        text-align: center;
        position: absolute;
        top: 20px;
        left: 35%;
        font-weight: 200;
        cursor: default;
        border-radius: 5px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 80%;
        text-align: center;
        font-size: 24px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 80px;
        left: 10%;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 133px;
        left: 13%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 40px;
        position: absolute;
        top: 150px;
        left: 21%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 120px;
        left: 45%;
        cursor: default;
        width: 55%;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 40px;
        position: absolute;
        top: 110px;
        right: 20%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 60px;
        position: absolute;
        top: 200px;
        left: 45%;
    }
    
    .enjoy h2 { display: none;
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 7100px;
        left: 10%;
    }
    
    .enjoy h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 34px;
        color: #fff;
        position: absolute;
        top: 6500px;
        left: 11%;
        width: 79%;
    }
    
    .enjoy p { 
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top: 6600px;
        left: 10%;
    }
    
    
    .start-create button {
        width: 80%;
        height: 90px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #7C40FF;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 6870px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    /*Tree Container*/
    .tree-container { 
        width: 100%; 
        height: 400px;
        position: absolute;
        top: 7200px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 40px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        width: 95%;
        text-align: center;
        position: absolute;
        top: 110px;
        left: 2.5%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #8a8a8a;
        width: 80%;
        text-align: center;
        position: absolute;
        bottom: 10px;
        left: 10%;
        z-index: 5;
        cursor: default;
    }
    
    .mobile-footer { 
        position: absolute;
        top: 7600px;
        left: 0%;
    }
  }
  
  @media  (min-width: 1200px) and (max-width: 1399.98px)  {  
    .line-1, .line-2, .line-3 {display: none;}
body {
    background-color: #11151a;

}

.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

.main-header {
    color: #ffff;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    position: absolute;
    top: 360px;
    left: 10%;
    cursor: default;
}

.main-title {
    color: #5c5c5c;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    position: absolute;
    top: 440px;
    left: 10%;
    width: 30%;
    cursor: default;
}

.main-more button {
    background-color: #11151a;
    color: #7C40FF;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    position: absolute;
    top: 550px;
    left: 10%;
    width: 24%;
    height: 70px;
    cursor: pointer;
    transition: all .3s ease-in-out;
    box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
 }
 
 .main-more button:hover{
   background-color: #8d58ff; 
   color: #fff;
     
 }

.scroll-downs {
    position: absolute;
    bottom: 4%;
    right: 3%;
    width :34px;
    height: 55px;
    z-index: 1;
}

.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
}

 @keyframes scroll {
    0% { opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0;}
}


.Container {
    transform: scale(0.8);
    margin: 0 auto;
    padding: 0 15px;
    position: absolute;
    top: 100px;
    right: 0%;
}

.Map-container {
    position: relative;
}

#Map-svg {
    width: 900px;
    height: auto;
}

/*Los Angeles */
.marker-1 { 
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 15%;
    top: 300px;
}
/*New York*/
.marker-2 { 
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 26%;
    top: 300px;
}
/*Chicago*/
.marker-3 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 23%;
    top: 285px;
}
/*Toronto*/
.marker-4 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 25%;
    top: 270px;
}
/*Brasilia*/
.marker-5 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 32%;
    top: 455px;
}
/*London*/
.marker-6 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 46%;
    top: 250px;
}
/*Amsterdam*/
.marker-7 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 48%;
    top: 260px;
}
/*Berlin*/
.marker-8 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 50%;
    top: 260px;
}
/*Munich*/
.marker-9 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 49%;
    top: 270px;
}
/*Istanbul*/
.marker-10 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 54%;
    top: 280px;
}
/*Izmir*/
.marker-11 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 53.5%;
    top: 295px;
}
/*Seoul*/
.marker-12 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 81.5%;
    top: 300px;
}
/*Tokyo*/
.marker-13 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 85%;
    top: 310px;
}
/*Sydney*/
.marker-14 {
    position: absolute;
    padding-left: 0px;
    cursor: pointer;
    left: 88%;
    top: 495px;
}

.animated-dot {
    width: 12px;
    height: 12px;
    position: relative;
    background-color: transparent;
    border-radius: 50%;
}

.animated-dot .middle-dot {

    width: 10px;
    height: 10px;
    border-radius: 30px;
    position: absolute;
    left: 2px;
    top: 2px;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    background-color: #b4b4b4;
}

.animated-dot .signal {
    width: 180px;
    pointer-events: none;
    height: 180px;
    border-radius: 200px;
    position: absolute;
    left: -83px;
    top: -80px;
    opacity: 0;
    -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
    animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
    animation-delay: 0.78s;
    animation-iteration-count: infinite;
    background-color: #7C40FF;
}

.animated-dot .signal2 {
    width: 180px;
    height: 180px;
    pointer-events: none;
    border-radius: 200px;
    position: absolute;
    left: -83px;
    top: -80px;
    opacity: 0;
    -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
    animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
    transform-origin: 50% 50%;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    background-color: #7C40FF;
}

@-webkit-keyframes animationSignal {
    0% {
        opacity: 0;
        transform: scale(0.00)
    }

    1% {
        opacity: 0.25
    }

    20% {
        opacity: 0.25
    }

    60% {
        transform: scale(1);
        opacity: 0
    }
}

@-webkit-keyframes animationSignal2 {
    0% {
        opacity: 0
    }

    1% {
        opacity: 0.2
    }

    20% {
        opacity: 0.17
    }

    60% {
        opacity: 0
    }
}


.line {
    width: 1px;
    height: 4870px;
    background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
    position: absolute;
    top: 882px;
    left: 10%;
    border-radius: 10px;
    z-index: 3;
}

.horizontal-line-1 {
    background-color: #fff;
    width: 40px;
    height: 1px;
    position: absolute;
    top: 882px;
    left:10%;
}

.header-1 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: 860px;
    left: 14%;
    cursor: default;
}

.welcome {
    background-color: #13171c;
    width: 70%;
    height: 450px;
    position: absolute;
    top: 1000px;
    left: 16%;
    text-align: justify;
    cursor: default;
    transition: all .3s ease-in-out;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.welcome h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 40px;
    position: absolute;
    top: 40px;
    left: 4%;
}


.welcome p {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    width: 40%;
    position: absolute;
    top: 150px;
    left: 4.5%;
}

.welcome h2 a{
    color: #777777;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 16px;
    position: absolute;
    top: 350px;
    left: 4.5%;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.welcome h2 a:hover {
    left: 5%;
    color: #fff;
}

.we-made {
    background-color: #24292f;
    width: 45%;
    height: 300px;
    position: absolute;
    top: 150px;
    right: 0%;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all .3s ease-in-out;
    box-shadow:
  0px 0px 2.2px rgba(0, 0, 0, 0.11),
  0px 0px 5.3px rgba(0, 0, 0, 0.158),
  0px 0px 10px rgba(0, 0, 0, 0.195),
  0px 0px 17.9px rgba(0, 0, 0, 0.232),
  0px 0px 33.4px rgba(0, 0, 0, 0.28),
  0px 0px 80px rgba(0, 0, 0, 0.39)
;
}

.we-made:hover {
    transform: scale(1.1);
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
}

.we-made-header {
    background-color: #30363d;
    width: 100%;
    height: 45px;
    position: absolute;
    top: 0px;
    left: 0px;
    border-top-left-radius: 10px;
}

.we-made:hover .we-made-header{
    border-top-right-radius: 10px;
}

.we-made-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    position: absolute;
    top: 0px;
    left: 4%;
}

.we-made h2 { display: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #747474;
    position: absolute;
    top: 330px;
    right: 5%;
    font-weight: 100;
}

.we-made h2 span {
    font-size: 14px;
}

.made-1 h1 {
    width: 80%;
    position: absolute;
    top: 55px;
    left: 5%;
    transition: all .3s ease-in-out;
    color: #cfcfcf;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.made-1 span {
    color: #259140;
    position: absolute;
    top: 60px;
    right: 5%;
    font-size: 35px;
}

.made-2 span {
    color: #259140;
    position: absolute;
    top: 125px;
    right: 5%;
    font-size: 35px;
}

.made-3 span {
    color: #259140;
    position: absolute;
    top: 190px;
    right: 5%;
    font-size: 35px;
}

.made-4 span {
    color: #259140;
    position: absolute;
    top: 255px;
    right: 5%;
    font-size: 35px;
}

.made-1 .m-line {
    width: 100%;
    height: 1px;
    background-color: #3b3b3b;
    position: absolute;
    top: 110px;
    left: 0%;
}

.made-2 h1 {
    width: 80%;
    position: absolute;
    top: 120px;
    left: 5%;
    transition: all .3s ease-in-out;
    color: #cfcfcf;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.made-2 .m-line {
    width: 100%;
    height: 1px;
    background-color: #3b3b3b;
    position: absolute;
    top: 175px;
    left: 0%;
}

.made-3 h1 {
    width: 80%;
    position: absolute;
    top: 182px;
    left: 5%;
    transition: all .3s ease-in-out;
    color: #cfcfcf;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.made-3 .m-line {
    width: 100%;
    height: 1px;
    background-color: #3b3b3b;
    position: absolute;
    top: 240px;
    left: 0%;
}

.made-4 h1 {
    width: 80%;
    position: absolute;
    top: 250px;
    left: 5%;
    transition: all .3s ease-in-out;
    color: #cfcfcf;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 100;
}

.made-4 .m-line { display: none;
    width: 100%;
    height: 1px;
    background-color: #3b3b3b;
    position: absolute;
    top: 310px;
    left: 0%;
}


.horizontal-line-2 {
    background-color: #cdb6ff;
    width: 40px;
    height: 1px;
    position: absolute;
    top: 1622px;
    left: 10%;
    z-index: 3;
}

.header-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #ffffff;
    position: absolute;
    top: 1600px;
    left: 14%;
    z-index: 3;
    cursor: default;
}

.offer-1 {
    background-color: #13171c;
    width: 20%;
    height: 400px;
    position: absolute;
    top: 1700px;
    left: 13%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.offer-2 { 
    background-color: #13171c;
    width: 20%;
    height: 400px;
    position: absolute;
    top: 1700px;
    left: 34%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.offer-3 { 
    background-color: #13171c;
    width: 20%;
    height: 400px;
    position: absolute;
    top: 1700px;
    left: 55%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.offer-4 {   
    background-color: #13171c;
    width: 20%;
    height: 400px;
    position: absolute;
    top: 1700px;
    left: 76%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
    box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
}

.offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
    width: 16%;
    position: absolute;
    top: 20px;
    left: 5%;
    cursor: pointer;
}

.offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 15px;
    left: 25%;
    cursor: pointer;
}

.offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
    position: absolute;
    top: 50px;
    left: -5%;
    cursor: pointer;
}

.offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fff;
    list-style: none;
    padding-top: 8px;
    cursor: pointer;
}

.offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
    color: #7C40FF;
    font-size: 18px;
}

.offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
    width: 80%;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 12px;
    color: #ffffffad;
    position: absolute;
    top: 270px;
    left: 10%;
    cursor: pointer;
    text-align: center;
}

.horizontal-line-3 {
    background-color: #cdb6ff;
    width: 40px;
    height: 1px;
    position: absolute;
    top: 2222px;
    left:10%;
    z-index: 3;
}

.header-3 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #ffffff;
    position: absolute;
    top: 2200px;
    left: 14%;
    z-index: 3;
    cursor: default;
}

.develop-business {
    background-color: #13171c;
    width: 70%;
    height: 480px;
    position: absolute;
    top: 2330px;
    left: 16%;
    text-align: justify;
    cursor: default;
    transition: all .3s ease-in-out;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.develop-business img { 
    width: 51%;
    border-radius: 10px;
    position: absolute;
    top: 50px;
    left: 3%;
}

.develop-business-1 img {
    width: 50px;
    position: absolute;
    top: 40px;
    left: 60%;
}

.develop-business-1 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 36px;
    left: 65.5%;
}

.develop-business-1 p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a0a0a0;
    position: absolute;
    top: 70px;
    left: 66%;
    width: 30%;
    text-align: left;
}

.dbl-1 {
    width: 2px;
    height: 100px;
    background-color: #999999;
    position: absolute;
    top: 90px;
    left: 62.5%;
}

.develop-business-2 img {
    width: 50px;
    position: absolute;
    top: 190px;
    left: 60%;
}

.develop-business-2 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 186px;
    left: 65.5%;
}

.develop-business-2 p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a0a0a0;
    position: absolute;
    top: 220px;
    left: 66%;
    width: 30%;
    text-align: left;
}

.dbl-2 {
    width: 2px;
    height: 90px;
    background-color: #999999;
    position: absolute;
    top: 240px;
    left: 62.5%;
}

.develop-business-3 img {
    width: 46px;
    position: absolute;
    top: 330px;
    left: 60%;
}

.develop-business-3 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 320px;
    left: 65.5%;
    width: 30%;
}

.develop-business-3 p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #a0a0a0;
    position: absolute;
    top: 380px;
    left: 66%;
    width: 30%;
    text-align: left;
}

.horizontal-line-4 {
    background-color: #9f73ff;
    width: 40px;
    height: 2px;
    position: absolute;
    top: 2982px;
    left:10%;
    z-index: 3;
}

.header-4 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #ffffff;
    position: absolute;
    top: 2960px;
    left: 14%;
    z-index: 3;
    cursor: default;
}

.web-services h2 {
    font-family: monospace;
    font-size: 16px;
    color: #7C40FF;
    position: absolute;
    top: 3060px;
    left: 17%;
}

.web-services h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    color: #fff;
    position: absolute;
    top: 3080px;
    left: 17%;
}

.web-services p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #eeeeee;
    width: 35%;
    position: absolute;
    top:  3230px;
    left: 17%;
}

.web-services button {
    background-color: #7C40FF;
    color: #ffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    position: absolute;
    top: 3390px;
    left: 17%;
    width: 13%;
    height: 50px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.web-services button:hover {
    background-color: #8d58ff;
}

.search-for-domains input {
    width: 30%;
    height: 60px;
    position: absolute;
    top: 3160px;
    left: 17%;
    border-radius: 10px;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #fff;
    border-style: solid;
    border-width: 2px;
    border-color: #8d58ff;
    padding-left: 25px;
    padding-right: 60px;
}

.search-for-domains button  {
    background-color: #8d58ff;
    color: #fff; 
    text-align: center;
    font-size: 30px;
    position: absolute;
    top: 3167px;
    left: 43%;
    cursor: pointer;
    transition: all .3s ease-in-out;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: none;
}

.search-for-domains span:hover {
    background-color: #9261fd;
}

.domain-image img {
    position: absolute;
    top: 30px;
    left: 5%;
    width: 90%;
}

.price {
    color: #7C40FF;
    position: absolute;
    top: 80px;
    left: 0%;
    width: 100%;
    text-align: center;
    font-size: 16px;
}

.dot-com {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #13171c;
    width: 9%;
    height: 120px;
    border-radius: 10px;
    position: absolute;
    top: 3060px;
    left: 55%;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.dot-net {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #13171c;
    width: 9%;
    height: 120px;
    border-radius: 10px;
    position: absolute;
    top: 3090px;
    left: 65%;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.dot-org {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #13171c;
    width: 9%;
    height: 120px;
    border-radius: 10px;
    position: absolute;
    top: 3200px;
    left: 55%;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.dot-io {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #13171c;
    width: 9%;
    height: 120px;
    border-radius: 10px;
    position: absolute;
    top: 3230px;
    left: 65%;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.dot-site {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #13171c;
    width: 9%;
    height: 120px;
    border-radius: 10px;
    position: absolute;
    top: 3060px;
    left: 75%;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.dot-online {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    background-color: #13171c;
    width: 9%;
    height: 120px;
    border-radius: 10px;
    position: absolute;
    top: 3200px;
    left: 75%;
    border-style: solid;
    border-width: 1px;
    border-color: #7C40FF;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.dot-com:hover,
.dot-net:hover,
.dot-org:hover,
.dot-io:hover,
.dot-store:hover,
.dot-site:hover,
.dot-store:hover,
.dot-online:hover {
    transform: scale(1.1);
}

.website-type h2 {
    font-family: monospace;
    font-size: 16px;
    color: #7C40FF;
    position: absolute;
    top: 3540px;
    left: 17%;
}

.website-type h1{
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    color: #fff;
    position: absolute;
    top: 3560px;
    left: 17%;
}

.website-type p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #eeeeee;
    position: absolute;
    top: 3620px;
    left: 17%;
}

.pack-1 {
    background-color: #13171c;
    width: 20%;
    height: 500px;
    position: absolute;
    top: 3740px;
    left: 13%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.pack-2 {
    background-color: #13171c;
    width: 20%;
    height: 500px;
    position: absolute;
    top: 3740px;
    left: 34%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.pack-3 {
    background-color: #13171c;
    width: 20%;
    height: 500px;
    position: absolute;
    top: 3740px;
    left: 55%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.pack-4 {
    background-color: #13171c;
    width: 20%;
    height: 500px;
    position: absolute;
    top: 3740px;
    left: 76%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
    transform: scale(1);
    box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
}

.pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
    width: 16%;
    position: absolute;
    top: 20px;
    left: 3%;
    cursor: pointer;
}

.pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #fff;
    position: absolute;
    top: 16px;
    left: 22%;
    cursor: pointer;
}

.pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
    position: absolute;
    top: 75px;
    left: -6%;
    cursor: pointer;
}

.pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #fff;
    list-style: none;
    padding-top: 5px;
    cursor: pointer;
}

.pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
    color: #7C40FF;
    font-size: 18px;
}

.pack-1 button, .pack-2 button, .pack-3 button, .pack-4 button {
    width: 60%;
    height: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 470px;
    left: 20%;
    cursor: pointer;
    text-align: center;
    background-color: #13171c;
    border: solid;
    border-width: 1px;
    border-color: #00ff40;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
    background-color: #00dd37;
    color: #fff;
}

.info-bar {
    background: linear-gradient(to right, #13171c, #1b2027);
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
}

.info-bar-icon {
    background-color: #7C40FF;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 15px;
    left: 5%;
    border-radius: 10px;
    cursor: pointer;
}

.info-bar-icon img {
    width: 70%;
    position: absolute;
    top: 15%;
    left: 15%;
    cursor: pointer;
}

.info-bar h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #fff;
    position: absolute;
    top: 25px;
    left: 30%;
    cursor: default;
}

.server-select h2 {
    font-family: monospace;
    font-size: 16px;
    color: #7C40FF;
    position: absolute;
    top: 4400px;
    left: 17%;
}

.server-select h1{
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    color: #fff;
    position: absolute;
    top: 4420px;
    left: 17%;
}

.server-select p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #eeeeee;
    position: absolute;
    top: 4480px;
    left: 17%;
}

.service-point-1 {
    background-color: #13171c;
    width: 15%;
    height: 200px;
    position: absolute;
    top: 4600px;
    left: 17%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-2 {
    background-color: #13171c;
    width: 15%;
    height: 200px;
    position: absolute;
    top: 4600px;
    left: 34%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-3 {
    background-color: #13171c;
    width: 15%;
    height: 200px;
    position: absolute;
    top: 4600px;
    left: 51%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-4 {
    background-color: #13171c;
    width: 15%;
    height: 200px;
    position: absolute;
    top: 4600px;
    left: 68%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-5 {
    background-color: #13171c;
    width: 15%;
    height: 200px;
    position: absolute;
    top: 4825px;
    left: 17%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-6 {
    background-color: #13171c;
    width: 15%;
    height: 200px;
    position: absolute;
    top: 4825px;
    left: 34%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-7 {
    background-color: #13171c;
    width: 15%;
    height: 200px;
    position: absolute;
    top: 4825px;
    left: 51%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.service-point-8 {
    background-color: #13171c;
    width: 15%;
    height: 200px;
    position: absolute;
    top: 4825px;
    left: 68%;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #2a2a2a;
}

.server-info {
    font-family: monospace;
    font-size: 16px;
    color: #5c5c5c;
    position: absolute;
    top: 5050px;
    left: 17%;
}

.server-info-2 {
    font-family: monospace;
    font-size: 16px;
    color: #5c5c5c;
    position: absolute;
    top: 5100px;
    left: 17%;
}

.service-point-1 img, 
.service-point-2 img, 
.service-point-3 img,
.service-point-4 img,
.service-point-5 img,
.service-point-6 img, 
.service-point-7 img,
.service-point-8 img
 {
    width: 30%;
    height: 45px;
    text-align: center;
    position: absolute;
    top: 15px;
    left: 35%;
    font-weight: 200;
    cursor: default;
    border-radius: 5px;
}

.service-point-1 h2, 
.service-point-2 h2, 
.service-point-3 h2,
.service-point-4 h2,
.service-point-5 h2,
.service-point-6 h2, 
.service-point-7 h2,
.service-point-8 h2
 {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    position: absolute;
    top: 60px;
    font-weight: 200;
    cursor: default;
}

.service-point-1 h3, 
.service-point-2 h3, 
.service-point-3 h3,
.service-point-4 h3,
.service-point-5 h3,
.service-point-6 h3, 
.service-point-7 h3,
.service-point-8 h3
{
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #fff;
    font-weight: 100;
    position: absolute;
    top: 90px;
    left: 15%;
    cursor: default;
}

.service-point-1 h4, 
.service-point-2 h4, 
.service-point-3 h4,
.service-point-4 h4,
.service-point-5 h4,
.service-point-6 h4, 
.service-point-7 h4,
.service-point-8 h4
{
    font-family: monospace;
    color: #7C40FF;
    font-size: 40px;
    position: absolute;
    top: 80px;
    left: 17%;
    cursor: default;
}

.service-point-1 h5, 
.service-point-2 h5, 
.service-point-3 h5,
.service-point-4 h5,
.service-point-5 h5,
.service-point-6 h5, 
.service-point-7 h5,
.service-point-8 h5
{
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #fff;
    font-weight: 100;
    position: absolute;
    top: 82px;
    right: 5%;
    cursor: default;
}

.service-point-1 h6, 
.service-point-2 h6, 
.service-point-3 h6,
.service-point-4 h6,
.service-point-5 h6,
.service-point-6 h6, 
.service-point-7 h6,
.service-point-8 h6
{
    font-family: monospace;
    color: #7C40FF;
    font-size: 40px;
    position: absolute;
    top: 40px;
    right: 10%;
    cursor: default;
}

.service-point-line {
    width: 0.5%;
    background-color: #8a8a8a;
    height: 40px;
    position: absolute;
    top: 135px;
    left: 48%;
}

.enjoy h2 {
    font-family: monospace;
    font-size: 16px;
    color: #7C40FF;
    position: absolute;
    top: 5300px;
    left: 40%;
    width: 10%;
    display: none;
}

.enjoy h1{
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: 5250px;
    left: 30%;
    width: 40%;
    text-align: center;
}

.enjoy p {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #ececec;
    width: 35%;
    position: absolute;
    top: 5350px;
    left: 32.5%;
    text-align: center;
}

.start-create button {
    width: 46%;
    height: 70px;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #7C40FF;
    border: none;
    border-radius: 10px;
    position: absolute;
    top: 5550px;
    left: 27%;
    transition: all .3s ease-in-out;
    cursor: pointer;
    box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
}

.start-create button:hover {
    background-color: #8d58ff;
    color: #fff;
}

.tree-container {
    width: 100%;
    height: 500px;
    position: absolute;
    top: 5750px;
    left: 0%;
    z-index: 3;
}

.tree-container img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 3;
}

.tree-container-layer {
    background-color: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 4;
    opacity: 0.25;
}

.tree-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    color: #fff;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 100px;
    left: 0%;
    z-index: 5;
    cursor: default;
}

.tree-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #fff;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 200px;
    left: 0%;
    z-index: 5;
    cursor: default;
}

.tree-container p2 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #8a8a8a;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 40px;
    left: 0%;
    z-index: 5;
    cursor: default;
}

.footer {
    position: absolute;
    top: 6250px;
    left: 0%;
}

}
       
  @media  (min-width: 1400px) and (max-width: 1599.98px)  {   
    .line-1, .line-2, .line-3 {display: none;}

    body {
        background-color: #11151a;
    
    }
    
    .material-symbols-outlined {
        font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
    }
    
    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 40px;
        font-weight: 800;
        position: absolute;
        top: 360px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        position: absolute;
        top: 440px;
        left: 10%;
        width: 30%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 580px;
        left: 10%;
        width: 24%;
        height: 70px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
     }
     
     .main-more button:hover{
       background-color: #8d58ff; 
       color: #fff;
         
     }
    
    .scroll-downs {
        position: absolute;
        bottom: 4%;
        right: 3%;
        width :34px;
        height: 55px;
        z-index: 1;
    }
    
    .mousey {
        width: 3px;
        padding: 10px 15px;
        height: 35px;
        border: 2px solid #fff;
        border-radius: 25px;
        opacity: 0.75;
        box-sizing: content-box;
    }
    
    .scroller {
        width: 3px;
        height: 10px;
        border-radius: 25%;
        background-color: #fff;
        animation-name: scroll;
        animation-duration: 2.2s;
        animation-timing-function: cubic-bezier(.15,.41,.69,.94);
        animation-iteration-count: infinite;
    }
    
     @keyframes scroll {
        0% { opacity: 0; }
        10% { transform: translateY(0); opacity: 1; }
        100% { transform: translateY(15px); opacity: 0;}
    }
    
    
    .Container {
        transform: scale(0.9);
        margin: 0 auto;
        padding: 0 15px;
        position: absolute;
        top: 120px;
        right: 0%;
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 900px;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 300px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 300px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 285px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 270px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 455px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 250px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 260px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 260px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 270px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 280px;
    }
    /*Izmir*/
    .marker-11 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 53.5%;
        top: 295px;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 81.5%;
        top: 300px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 310px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 88%;
        top: 495px;
    }
    
    .animated-dot {
        width: 12px;
        height: 12px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
    
        width: 10px;
        height: 10px;
        border-radius: 30px;
        position: absolute;
        left: 2px;
        top: 2px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 180px;
        pointer-events: none;
        height: 180px;
        border-radius: 200px;
        position: absolute;
        left: -83px;
        top: -80px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        width: 180px;
        height: 180px;
        pointer-events: none;
        border-radius: 200px;
        position: absolute;
        left: -83px;
        top: -80px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    .line {
        width: 1px;
        height: 4870px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 882px;
        left: 10%;
        border-radius: 10px;
        z-index: 3;
    }
    
    .horizontal-line-1 {
        background-color: #fff;
        width: 40px;
        height: 1px;
        position: absolute;
        top: 882px;
        left:10%;
    }
    
    .header-1 {
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        color: #fff;
        position: absolute;
        top: 860px;
        left: 14%;
        cursor: default;
    }
    
    .welcome {
        background-color: #13171c;
        width: 70%;
        height: 450px;
        position: absolute;
        top: 1000px;
        left: 16%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 40px;
        position: absolute;
        top: 40px;
        left: 4%;
    }
    
    
    .welcome p {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        width: 40%;
        position: absolute;
        top: 150px;
        left: 4.5%;
    }
    
    .welcome h2 a{
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 16px;
        position: absolute;
        top: 350px;
        left: 4.5%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {
        background-color: #24292f;
        width: 45%;
        height: 300px;
        position: absolute;
        top: 150px;
        right: 0%;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        transition: all .3s ease-in-out;
        box-shadow:
      0px 0px 2.2px rgba(0, 0, 0, 0.11),
      0px 0px 5.3px rgba(0, 0, 0, 0.158),
      0px 0px 10px rgba(0, 0, 0, 0.195),
      0px 0px 17.9px rgba(0, 0, 0, 0.232),
      0px 0px 33.4px rgba(0, 0, 0, 0.28),
      0px 0px 80px rgba(0, 0, 0, 0.39)
    ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header {
        background-color: #30363d;
        width: 100%;
        height: 45px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 10px;
    }
    
    .we-made:hover .we-made-header{
        border-top-right-radius: 10px;
    }
    
    .we-made-header h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        position: absolute;
        top: 0px;
        left: 4%;
    }
    
    .we-made h2 { display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #747474;
        position: absolute;
        top: 330px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 14px;
    }
    
    .made-1 h1 {
        width: 80%;
        position: absolute;
        top: 55px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }
    
    .made-1 span {
        color: #259140;
        position: absolute;
        top: 60px;
        right: 5%;
        font-size: 35px;
    }
    
    .made-2 span {
        color: #259140;
        position: absolute;
        top: 125px;
        right: 5%;
        font-size: 35px;
    }
    
    .made-3 span {
        color: #259140;
        position: absolute;
        top: 190px;
        right: 5%;
        font-size: 35px;
    }
    
    .made-4 span {
        color: #259140;
        position: absolute;
        top: 255px;
        right: 5%;
        font-size: 35px;
    }
    
    .made-1 .m-line {
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 110px;
        left: 0%;
    }
    
    .made-2 h1 {
        width: 80%;
        position: absolute;
        top: 120px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }
    
    .made-2 .m-line {
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 175px;
        left: 0%;
    }
    
    .made-3 h1 {
        width: 80%;
        position: absolute;
        top: 182px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }
    
    .made-3 .m-line {
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 240px;
        left: 0%;
    }
    
    .made-4 h1 {
        width: 80%;
        position: absolute;
        top: 250px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }
    
    .made-4 .m-line { display: none;
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 310px;
        left: 0%;
    }
    
    
    .horizontal-line-2 {
        background-color: #cdb6ff;
        width: 40px;
        height: 1px;
        position: absolute;
        top: 1622px;
        left: 10%;
        z-index: 3;
    }
    
    .header-2 {
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        color: #ffffff;
        position: absolute;
        top: 1600px;
        left: 14%;
        z-index: 3;
        cursor: default;
    }
    
    .offer-1 {
        background-color: #13171c;
        width: 20%;
        height: 400px;
        position: absolute;
        top: 1700px;
        left: 13%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 20%;
        height: 400px;
        position: absolute;
        top: 1700px;
        left: 34%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-3 { 
        background-color: #13171c;
        width: 20%;
        height: 400px;
        position: absolute;
        top: 1700px;
        left: 55%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-4 {   
        background-color: #13171c;
        width: 20%;
        height: 400px;
        position: absolute;
        top: 1700px;
        left: 76%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 16%;
        position: absolute;
        top: 20px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 25%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 50px;
        left: -5%;
        cursor: pointer;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #fff;
        list-style: none;
        padding-top: 8px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 80%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #ffffffad;
        position: absolute;
        top: 270px;
        left: 10%;
        cursor: pointer;
        text-align: center;
    }
    
    .horizontal-line-3 {
        background-color: #cdb6ff;
        width: 40px;
        height: 1px;
        position: absolute;
        top: 2222px;
        left:10%;
        z-index: 3;
    }
    
    .header-3 {
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        color: #ffffff;
        position: absolute;
        top: 2200px;
        left: 14%;
        z-index: 3;
        cursor: default;
    }
    
    .develop-business {
        background-color: #13171c;
        width: 70%;
        height: 480px;
        position: absolute;
        top: 2330px;
        left: 16%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .develop-business img { 
        width: 51%;
        border-radius: 10px;
        position: absolute;
        top: 30px;
        left: 3%;
    }
    
    .develop-business-1 img {
        width: 50px;
        position: absolute;
        top: 40px;
        left: 60%;
    }
    
    .develop-business-1 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 36px;
        left: 65.5%;
    }
    
    .develop-business-1 p {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #a0a0a0;
        position: absolute;
        top: 70px;
        left: 66%;
        width: 30%;
        text-align: left;
    }
    
    .dbl-1 {
        width: 2px;
        height: 100px;
        background-color: #999999;
        position: absolute;
        top: 90px;
        left: 62.5%;
    }
    
    .develop-business-2 img {
        width: 50px;
        position: absolute;
        top: 190px;
        left: 60%;
    }
    
    .develop-business-2 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 186px;
        left: 65.5%;
    }
    
    .develop-business-2 p {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #a0a0a0;
        position: absolute;
        top: 220px;
        left: 66%;
        width: 30%;
        text-align: left;
    }
    
    .dbl-2 {
        width: 2px;
        height: 90px;
        background-color: #999999;
        position: absolute;
        top: 240px;
        left: 62.5%;
    }
    
    .develop-business-3 img {
        width: 46px;
        position: absolute;
        top: 330px;
        left: 60%;
    }
    
    .develop-business-3 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 320px;
        left: 65.5%;
        width: 30%;
    }
    
    .develop-business-3 p {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #a0a0a0;
        position: absolute;
        top: 380px;
        left: 66%;
        width: 30%;
        text-align: left;
    }
    
    .horizontal-line-4 {
        background-color: #9f73ff;
        width: 40px;
        height: 2px;
        position: absolute;
        top: 2982px;
        left:10%;
        z-index: 3;
    }
    
    .header-4 {
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        color: #ffffff;
        position: absolute;
        top: 2960px;
        left: 14%;
        z-index: 3;
        cursor: default;
    }
    
    .web-services h2 {
        font-family: monospace;
        font-size: 16px;
        color: #7C40FF;
        position: absolute;
        top: 3060px;
        left: 17%;
    }
    
    .web-services h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        position: absolute;
        top: 3080px;
        left: 17%;
    }
    
    .web-services p {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #eeeeee;
        width: 35%;
        position: absolute;
        top:  3230px;
        left: 17%;
    }
    
    .web-services button {
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 3390px;
        left: 17%;
        width: 13%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }
    
    .search-for-domains input {
        width: 30%;
        height: 60px;
        position: absolute;
        top: 3160px;
        left: 17%;
        border-radius: 10px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        border-style: solid;
        border-width: 2px;
        border-color: #8d58ff;
        padding-left: 25px;
        padding-right: 60px;
    }
    
    .search-for-domains button  {
        background-color: #8d58ff;
        color: #fff; 
        text-align: center;
        font-size: 30px;
        position: absolute;
        top: 3167px;
        left: 43%;
        cursor: pointer;
        transition: all .3s ease-in-out;
        width: 45px;
        height: 45px;
        border-radius: 10px;
        border: none;
    }
    
    .search-for-domains span:hover {
        background-color: #9261fd;
    }
    
    .domain-image img {
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
    }
    
    .price {
        color: #7C40FF;
        position: absolute;
        top: 80px;
        left: 0%;
        width: 100%;
        text-align: center;
        font-size: 16px;
    }
    
    .dot-com {
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 120px;
        border-radius: 10px;
        position: absolute;
        top: 3060px;
        left: 55%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-net {
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 120px;
        border-radius: 10px;
        position: absolute;
        top: 3090px;
        left: 65%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-org {
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 120px;
        border-radius: 10px;
        position: absolute;
        top: 3200px;
        left: 55%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-io {
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 120px;
        border-radius: 10px;
        position: absolute;
        top: 3230px;
        left: 65%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-site {
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 120px;
        border-radius: 10px;
        position: absolute;
        top: 3060px;
        left: 75%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-online {
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 120px;
        border-radius: 10px;
        position: absolute;
        top: 3200px;
        left: 75%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-com:hover,
    .dot-net:hover,
    .dot-org:hover,
    .dot-io:hover,
    .dot-store:hover,
    .dot-site:hover,
    .dot-store:hover,
    .dot-online:hover {
        transform: scale(1.1);
    }
    
    .website-type h2 {
        font-family: monospace;
        font-size: 16px;
        color: #7C40FF;
        position: absolute;
        top: 3540px;
        left: 17%;
    }
    
    .website-type h1{
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        position: absolute;
        top: 3560px;
        left: 17%;
    }
    
    .website-type p {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #eeeeee;
        position: absolute;
        top: 3620px;
        left: 17%;
    }
    
    .pack-1 {
        background-color: #13171c;
        width: 20%;
        height: 500px;
        position: absolute;
        top: 3740px;
        left: 13%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .pack-2 {
        background-color: #13171c;
        width: 20%;
        height: 500px;
        position: absolute;
        top: 3740px;
        left: 34%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .pack-3 {
        background-color: #13171c;
        width: 20%;
        height: 500px;
        position: absolute;
        top: 3740px;
        left: 55%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .pack-4 {
        background-color: #13171c;
        width: 20%;
        height: 500px;
        position: absolute;
        top: 3740px;
        left: 76%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1);
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 16%;
        position: absolute;
        top: 20px;
        left: 3%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 16px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 75px;
        left: -6%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .pack-1 button, .pack-2 button, .pack-3 button, .pack-4 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 14px;
        color: #fff;
        position: absolute;
        top: 470px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 10px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar {
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 100px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon {
        background-color: #7C40FF;
        width: 70px;
        height: 70px;
        position: absolute;
        top: 15px;
        left: 5%;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon img {
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 25px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 {
        font-family: monospace;
        font-size: 16px;
        color: #7C40FF;
        position: absolute;
        top: 4400px;
        left: 17%;
    }
    
    .server-select h1{
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        position: absolute;
        top: 4420px;
        left: 17%;
    }
    
    .server-select p {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #eeeeee;
        position: absolute;
        top: 4480px;
        left: 17%;
    }
    
    .service-point-1 {
        background-color: #13171c;
        width: 15%;
        height: 200px;
        position: absolute;
        top: 4600px;
        left: 17%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 {
        background-color: #13171c;
        width: 15%;
        height: 200px;
        position: absolute;
        top: 4600px;
        left: 34%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 {
        background-color: #13171c;
        width: 15%;
        height: 200px;
        position: absolute;
        top: 4600px;
        left: 51%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 {
        background-color: #13171c;
        width: 15%;
        height: 200px;
        position: absolute;
        top: 4600px;
        left: 68%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 {
        background-color: #13171c;
        width: 15%;
        height: 200px;
        position: absolute;
        top: 4825px;
        left: 17%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 {
        background-color: #13171c;
        width: 15%;
        height: 200px;
        position: absolute;
        top: 4825px;
        left: 34%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 {
        background-color: #13171c;
        width: 15%;
        height: 200px;
        position: absolute;
        top: 4825px;
        left: 51%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 {
        background-color: #13171c;
        width: 15%;
        height: 200px;
        position: absolute;
        top: 4825px;
        left: 68%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .server-info {
        font-family: monospace;
        font-size: 16px;
        color: #5c5c5c;
        position: absolute;
        top: 5050px;
        left: 17%;
    }
    
    .server-info-2 {
        font-family: monospace;
        font-size: 16px;
        color: #5c5c5c;
        position: absolute;
        top: 5100px;
        left: 17%;
    }
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 30%;
        height: 45px;
        text-align: center;
        position: absolute;
        top: 15px;
        left: 35%;
        font-weight: 200;
        cursor: default;
        border-radius: 5px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 100%;
        text-align: center;
        font-size: 16px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 60px;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 90px;
        left: 15%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 40px;
        position: absolute;
        top: 80px;
        left: 17%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 82px;
        right: 5%;
        cursor: default;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 40px;
        position: absolute;
        top: 40px;
        right: 10%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 40px;
        position: absolute;
        top: 135px;
        left: 48%;
    }
    
    .enjoy h2 {
        font-family: monospace;
        font-size: 16px;
        color: #7C40FF;
        position: absolute;
        top: 5300px;
        left: 40%;
        width: 10%;
        display: none;
    }
    
    .enjoy h1{
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        color: #fff;
        position: absolute;
        top: 5250px;
        left: 30%;
        width: 40%;
        text-align: center;
    }
    
    .enjoy p {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #ececec;
        width: 35%;
        position: absolute;
        top: 5350px;
        left: 32.5%;
        text-align: center;
    }
    
    .start-create button {
        width: 46%;
        height: 70px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #7C40FF;
        border: none;
        border-radius: 10px;
        position: absolute;
        top: 5550px;
        left: 27%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    .tree-container {
        width: 100%;
        height: 500px;
        position: absolute;
        top: 5750px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 35px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 100px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 200px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #8a8a8a;
        width: 100%;
        text-align: center;
        position: absolute;
        bottom: 40px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .footer {
        position: absolute;
        top: 6250px;
        left: 0%;
    }   
  }
       
  @media  (min-width: 3840px) and (max-width: 7679.98px)  { 

    .line-1, .line-2, .line-3 {display: none;}

    body {
        background-color: #11151a;
    
    }
    
    .material-symbols-outlined {
        font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
    }
    
    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 100px;
        font-weight: 800;
        position: absolute;
        top: 600px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 50px;
        position: absolute;
        top: 790px;
        left: 10%;
        width: 25%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 48px;
        border: none;
        border-radius: 10px;
        position: absolute;
        top: 1300px;
        left: 10%;
        width: 24%;
        height: 140px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 2px 2px 4px black, 0 0 50px #7C40FF, 0 0 10px #7C40FF;
     }
     
     .main-more button:hover{
       background-color: #8d58ff; 
       color: #fff;
         
     }
    
    .scroll-downs {
        position: absolute;
        bottom: 4%;
        right: 3%;
        width :68px;
        height: 110px;
        z-index: 1;
    }
    
    .mousey {
        width: 6px;
        padding: 20px 30px;
        height: 70px;
        border: 4px solid #fff;
        border-radius: 50px;
        opacity: 0.75;
        box-sizing: content-box;
    }
    
    .scroller {
        width: 6px;
        height: 20px;
        border-radius: 25%;
        background-color: #fff;
        animation-name: scroll;
        animation-duration: 2.2s;
        animation-timing-function: cubic-bezier(.15,.41,.69,.94);
        animation-iteration-count: infinite;
    }
    
     @keyframes scroll {
        0% { opacity: 0; }
        10% { transform: translateY(0); opacity: 1; }
        100% { transform: translateY(30px); opacity: 0;}
    }
    
    
    .Container {
        margin: 0 auto;
        padding: 0 30px;
        position: absolute;
        top: 360px;
        right: 6%;
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 1800px;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 600px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 600px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 570px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 540px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 910px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 500px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 520px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 520px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 540px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 560px;
    }
    /*Izmir*/
    .marker-11 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 53.5%;
        top: 590px;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 81.5%;
        top: 600px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 620px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 88%;
        top: 990px;
    }
    
    
    .animated-dot {
        width: 24px;
        height: 24px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
    
        width: 20px;
        height: 20px;
        border-radius: 60px;
        position: absolute;
        left: 4px;
        top: 4px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 360px;
        pointer-events: none;
        height: 360px;
        border-radius: 400px;
        position: absolute;
        left: -166px;
        top: -160px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        width: 360px;
        height: 360px;
        pointer-events: none;
        border-radius: 400px;
        position: absolute;
        left: -166px;
        top: -160px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    
    .line {
        width: 2px;
        height: 6220px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 1080px;
        left: 10%;
        border-radius: 10px;
        z-index: 3;
    }
    
    .horizontal-line-1 {
        background-color: #fff;
        width: 50px;
        height: 2px;
        position: absolute;
        top:1080px;
        left:10%;
    }
    
    .header-1 {
        font-family: 'Poppins', sans-serif;
        font-size: 35px;
        color: #fff;
        position: absolute;
        top: 1055px;
        left: 14%;
        cursor: default;
    }
    
    .welcome {
        background-color: #13171c;
        width: 70%;
        height: 450px;
        position: absolute;
        top: 1200px;
        left: 16%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 40px;
        position: absolute;
        top: 40px;
        left: 4%;
    }
    
    
    .welcome p {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        width: 35%;
        position: absolute;
        top: 150px;
        left: 4.5%;
        font-size: 32px;
    }
    
    .welcome h2 a{
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 16px;
        position: absolute;
        top: 350px;
        left: 4.5%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {
        background-color: #24292f;
        width: 40%;
        height: 400px;
        position: absolute;
        top: 50px;
        right: 0%;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 10px;
        transition: all .3s ease-in-out;
        box-shadow:
      0px 0px 2.2px rgba(0, 0, 0, 0.11),
      0px 0px 5.3px rgba(0, 0, 0, 0.158),
      0px 0px 10px rgba(0, 0, 0, 0.195),
      0px 0px 17.9px rgba(0, 0, 0, 0.232),
      0px 0px 33.4px rgba(0, 0, 0, 0.28),
      0px 0px 80px rgba(0, 0, 0, 0.39)
    ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header {
        background-color: #30363d;
        width: 100%;
        height: 45px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 10px;
    }
    
    .we-made:hover .we-made-header{
        border-top-right-radius: 10px;
    }
    
    .we-made-header h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        position: absolute;
        top: 0px;
        left: 4%;
    }
    
    .we-made h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #747474;
        position: absolute;
        top: 330px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 14px;
    }
    
    
    
    .made-1 h1 {
        width: 80%;
        position: absolute;
        top: 55px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }
    
    .made-1 span {
        color: #259140;
        position: absolute;
        top: 60px;
        right: 5%;
        font-size: 35px;
    }
    
    .made-2 span {
        color: #259140;
        position: absolute;
        top: 125px;
        right: 5%;
        font-size: 35px;
    }
    
    .made-3 span {
        color: #259140;
        position: absolute;
        top: 190px;
        right: 5%;
        font-size: 35px;
    }
    
    .made-4 span {
        color: #259140;
        position: absolute;
        top: 255px;
        right: 5%;
        font-size: 35px;
    }
    
    .made-1 .m-line {
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 110px;
        left: 0%;
    }
    
    .made-2 h1 {
        width: 80%;
        position: absolute;
        top: 120px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }
    
    .made-2 .m-line {
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 175px;
        left: 0%;
    }
    
    .made-3 h1 {
        width: 80%;
        position: absolute;
        top: 182px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }
    
    .made-3 .m-line {
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 240px;
        left: 0%;
    }
    
    .made-4 h1 {
        width: 80%;
        position: absolute;
        top: 250px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }
    
    .made-4 .m-line {
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 310px;
        left: 0%;
    }
    
    
    .horizontal-line-2 {
        background-color: #cdb6ff;
        width: 50px;
        height: 2px;
        position: absolute;
        top: 1900px;
        left:10%;
        z-index: 3;
    }
    
    .header-2 {
        font-family: 'Poppins', sans-serif;
        font-size: 35px;
        color: #ffffff;
        position: absolute;
        top: 1875px;
        left: 14%;
        z-index: 3;
        cursor: default;
    }
    
    .offer-1 {
        background-color: #13171c;
        width: 17%;
        height: 500px;
        position: absolute;
        top: 2050px;
        left: 15%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 17%;
        height: 500px;
        position: absolute;
        top: 2050px;
        left: 35%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-3 {
        background-color: #13171c;
        width: 17%;
        height: 500px;
        position: absolute;
        top: 2050px;
        left: 55%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-4 {
        background-color: #13171c;
        width: 17%;
        height: 500px;
        position: absolute;
        top: 2050px;
        left: 75%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 16%;
        position: absolute;
        top: 20px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 25px;
        left: 25%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 75px;
        left: 0%;
        cursor: pointer;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        list-style: none;
        padding-top: 15px;
        cursor: pointer;
    }
    
    .line {
        width: 4px;
        height: 12440px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 2160px;
        left: 10%;
        border-radius: 20px;
        z-index: 3;
    }
    
    .horizontal-line-1 {
        background-color: #fff;
        width: 100px;
        height: 4px;
        position: absolute;
        top:2160px;
        left:10%;
    }
    
    .header-1 {
        font-family: 'Poppins', sans-serif;
        font-size: 70px;
        color: #fff;
        position: absolute;
        top: 2110px;
        left: 14%;
        cursor: default;
    }
    
    .welcome {
        background-color: #13171c;
        width: 70%;
        height: 900px;
        position: absolute;
        top: 2400px;
        left: 16%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 80px;
        position: absolute;
        top: 80px;
        left: 4%;
    }
    
    
    .welcome p {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        width: 35%;
        position: absolute;
        top: 300px;
        left: 4.5%;
    }
    
    .welcome h2 a{
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 32px;
        position: absolute;
        top: 700px;
        left: 4.5%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {
        background-color: #24292f;
        width: 40%;
        height: 800px;
        position: absolute;
        top: 100px;
        right: 0%;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 20px;
        transition: all .3s ease-in-out;
        box-shadow:
      0px 0px 2.4px rgba(0, 0, 0, 0.11),
      0px 0px 5.6px rgba(0, 0, 0, 0.158),
      0px 0px 20px rgba(0, 0, 0, 0.195),
      0px 0px 17.18px rgba(0, 0, 0, 0.232),
      0px 0px 33.8px rgba(0, 0, 0, 0.28),
      0px 0px 160px rgba(0, 0, 0, 0.39)
    ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .we-made-header {
        background-color: #30363d;
        width: 100%;
        height: 90px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 20px;
    }
    
    .we-made:hover .we-made-header{
        border-top-right-radius: 20px;
    }
    
    .we-made-header h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        position: absolute;
        top: 0px;
        left: 4%;
    }
    
    .we-made h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #747474;
        position: absolute;
        top: 660px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 28px;
    }
    
    
    
    .made-1 h1 {
        width: 80%;
        position: absolute;
        top: 110px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        font-weight: 100;
    }
    
    .made-1 span {
        color: #259140;
        position: absolute;
        top: 120px;
        right: 5%;
        font-size: 70px;
    }
    
    .made-2 span {
        color: #259140;
        position: absolute;
        top: 250px;
        right: 5%;
        font-size: 70px;
    }
    
    .made-3 span {
        color: #259140;
        position: absolute;
        top: 380px;
        right: 5%;
        font-size: 70px;
    }
    
    .made-4 span {
        color: #259140;
        position: absolute;
        top: 510px;
        right: 5%;
        font-size: 70px;
    }
    
    .made-1 .m-line {
        width: 100%;
        height: 2px;
        background-color: #3b3b3b;
        position: absolute;
        top: 220px;
        left: 0%;
    }
    
    .made-2 h1 {
        width: 80%;
        position: absolute;
        top: 240px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        font-weight: 100;
    }
    
    .made-2 .m-line {
        width: 100%;
        height: 2px;
        background-color: #3b3b3b;
        position: absolute;
        top: 350px;
        left: 0%;
    }
    
    .made-3 h1 {
        width: 80%;
        position: absolute;
        top: 364px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        font-weight: 100;
    }
    
    .made-3 .m-line {
        width: 100%;
        height: 2px;
        background-color: #3b3b3b;
        position: absolute;
        top: 480px;
        left: 0%;
    }
    
    .made-4 h1 {
        width: 80%;
        position: absolute;
        top: 500px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        font-weight: 100;
    }
    
    .made-4 .m-line {
        width: 100%;
        height: 2px;
        background-color: #3b3b3b;
        position: absolute;
        top: 620px;
        left: 0%;
    }
    
    
    .horizontal-line-2 {
        background-color: #cdb6ff;
        width: 100px;
        height: 4px;
        position: absolute;
        top: 3800px;
        left:10%;
        z-index: 3;
    }
    
    .header-2 {
        font-family: 'Poppins', sans-serif;
        font-size: 70px;
        color: #ffffff;
        position: absolute;
        top: 3750px;
        left: 14%;
        z-index: 3;
        cursor: default;
    }
    
    .offer-1 {
        background-color: #13171c;
        width: 17%;
        height: 1000px;
        position: absolute;
        top: 4100px;
        left: 15%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 17%;
        height: 1000px;
        position: absolute;
        top: 4100px;
        left: 35%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .offer-3 {
        background-color: #13171c;
        width: 17%;
        height: 1000px;
        position: absolute;
        top: 4100px;
        left: 55%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .offer-4 {
        background-color: #13171c;
        width: 17%;
        height: 1000px;
        position: absolute;
        top: 4100px;
        left: 75%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 2px 2px 4px black, 0 0 50px #7C40FF, 0 0 10px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 16%;
        position: absolute;
        top: 40px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        color: #fff;
        position: absolute;
        top: 50px;
        left: 25%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 150px;
        left: 10%;
        cursor: pointer;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        color: #fff;
        list-style: none;
        padding-top: 30px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 36px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 80%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 28px;
        color: #ffffffad;
        position: absolute;
        top: 700px;
        left: 10%;
        cursor: pointer;
        text-align: center;
    }
    
    .horizontal-line-3 {
        background-color: #cdb6ff;
        width: 100px;
        height: 4px;
        position: absolute;
        top: 5500px;
        left:10%;
        z-index: 3;
    }
    
    .header-3 {
        font-family: 'Poppins', sans-serif;
        font-size: 70px;
        color: #ffffff;
        position: absolute;
        top: 5450px;
        left: 14%;
        z-index: 3;
        cursor: default;
    }
    
    .develop-business {
        background-color: #13171c;
        width: 70%;
        height: 1100px;
        position: absolute;
        top: 5740px;
        left: 16%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .develop-business img { 
        width: 51%;
        border-radius: 20px;
        position: absolute;
        top: 0px;
        left: 0%;
    }
    
    .develop-business-1 img {
        width: 100px;
        position: absolute;
        top: 160px;
        left: 62%;
    }
    
    .develop-business-1 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 40px;
        color: #fff;
        position: absolute;
        top: 152px;
        left: 65.5%;
    }
    
    .develop-business-1 p {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #a0a0a0;
        position: absolute;
        top: 220px;
        left: 66%;
        width: 23%;
        text-align: left;
    }
    
    .dbl-1 {
        width: 4px;
        height: 200px;
        background-color: #999999;
        position: absolute;
        top: 260px;
        left: 63.45%;
    }
    
    .develop-business-2 img {
        width: 100px;
        position: absolute;
        top: 460px;
        left: 61.6%;
    }
    
    .develop-business-2 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 40px;
        color: #fff;
        position: absolute;
        top: 452px;
        left: 65.5%;
    }
    
    .develop-business-2 p {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #a0a0a0;
        position: absolute;
        top: 520px;
        left: 66%;
        width: 23%;
        text-align: left;
    }
    
    .dbl-2 {
        width: 4px;
        height: 200px;
        background-color: #999999;
        position: absolute;
        top: 560px;
        left: 63.45%;
    }
    
    .develop-business-3 img {
        width: 92px;
        position: absolute;
        top: 770px;
        left: 61.8%;
    }
    
    .develop-business-3 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 40px;
        color: #fff;
        position: absolute;
        top: 764px;
        left: 65.5%;
    }
    
    .develop-business-3 p {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #a0a0a0;
        position: absolute;
        top: 832px;
        left: 66%;
        width: 23%;
        text-align: left;
    }
    
    
    
    .horizontal-line-4 {
        background-color: #9f73ff;
        width: 100px;
        height: 4px;
        position: absolute;
        top: 7200px;
        left:10%;
        z-index: 3;
    }
    
    .header-4 {
        font-family: 'Poppins', sans-serif;
        font-size: 70px;
        color: #ffffff;
        position: absolute;
        top: 7150px;
        left: 14%;
        z-index: 3;
        cursor: default;
    }
    
    .web-services h2 {
        font-family: monospace;
        font-size: 32px;
        color: #7C40FF;
        position: absolute;
        top: 7500px;
        left: 17%;
    }
    
    .web-services h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 60px;
        color: #fff;
        position: absolute;
        top: 7520px;
        left: 17%;
    }
    
    .web-services p {
        font-family: 'Poppins', sans-serif;
        font-size: 40px;
        color: #eeeeee;
        width: 35%;
        position: absolute;
        top:  7860px;
        left: 17%;
    }
    
    .web-services button {
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 32px;
        border: none;
        border-radius: 10px;
        position: absolute;
        top: 8120px;
        left: 17%;
        width: 8%;
        height: 100px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }
    
    .search-for-domains input {
        width: 30%;
        height: 140px;
        position: absolute;
        top: 7696px;
        left: 17%;
        border-radius: 132px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        color: #fff;
        border-style: solid;
        border-width: 4px;
        border-color: #8d58ff;
        padding-left: 50px;
        padding-right: 120px;
    }
    
    .search-for-domains button  {
        background-color: #8d58ff;
        color: #fff; 
        text-align: center;
        font-size: 60px;
        position: absolute;
        top: 7710px;
        left: 43.7%;
        cursor: pointer;
        transition: all .3s ease-in-out;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        border: none;
    }
    
    .search-for-domains span:hover {
        background-color: #9261fd;
    }
    
    .domain-image img {
        position: absolute;
        top: 60px;
        left: 5%;
        width: 90%;
    }
    
    .price {
        color: #7C40FF;
        position: absolute;
        top: 220px;
        left: 0%;
        width: 100%;
        text-align: center;
    }
    
    .dot-com {
        font-family: 'Open Sans', sans-serif;
        font-size: 40px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 300px;
        border-radius: 20px;
        position: absolute;
        top: 7480px;
        left: 55%;
        border-style: solid;
        border-width: 2px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-net {
        font-family: 'Open Sans', sans-serif;
        font-size: 40px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 300px;
        border-radius: 20px;
        position: absolute;
        top: 7560px;
        left: 65%;
        border-style: solid;
        border-width: 2px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-org {
        font-family: 'Open Sans', sans-serif;
        font-size: 40px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 300px;
        border-radius: 20px;
        position: absolute;
        top: 7820px;
        left: 55%;
        border-style: solid;
        border-width: 2px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-io {
        font-family: 'Open Sans', sans-serif;
        font-size: 40px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 300px;
        border-radius: 20px;
        position: absolute;
        top: 7900px;
        left: 65%;
        border-style: solid;
        border-width: 2px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-site {
        font-family: 'Open Sans', sans-serif;
        font-size: 40px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 300px;
        border-radius: 20px;
        position: absolute;
        top: 7480px;
        left: 75%;
        border-style: solid;
        border-width: 2px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-online {
        font-family: 'Open Sans', sans-serif;
        font-size: 40px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 300px;
        border-radius: 20px;
        position: absolute;
        top: 7820px;
        left: 75%;
        border-style: solid;
        border-width: 2px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    
    .dot-com:hover,
    .dot-net:hover,
    .dot-org:hover,
    .dot-io:hover,
    .dot-store:hover,
    .dot-site:hover,
    .dot-store:hover,
    .dot-online:hover {
        transform: scale(1.1);
    
    }
    
    .website-type h2 {
        font-family: monospace;
        font-size: 32px;
        color: #7C40FF;
        position: absolute;
        top: 8680px;
        left: 17%;
    }
    
    .website-type h1{
        font-family: 'Poppins', sans-serif;
        font-size: 60px;
        color: #fff;
        position: absolute;
        top: 8700px;
        left: 17%;
    }
    
    .website-type p {
        font-family: 'Poppins', sans-serif;
        font-size: 40px;
        color: #eeeeee;
        position: absolute;
        top:  8840px;
        left: 17%;
    }
    
    .pack-1 {
        background-color: #13171c;
        width: 17%;
        height: 1000px;
        position: absolute;
        top: 9100px;
        left: 15%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .pack-2 {
        background-color: #13171c;
        width: 17%;
        height: 1000px;
        position: absolute;
        top: 9100px;
        left: 35%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .pack-3 {
        background-color: #13171c;
        width: 17%;
        height: 1000px;
        position: absolute;
        top: 9100px;
        left: 55%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .pack-4 {
        background-color: #13171c;
        width: 17%;
        height: 1000px;
        position: absolute;
        top: 9100px;
        left: 75%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1.1);
        box-shadow: 2px 2px 4px black, 0 0 50px #7C40FF, 0 0 10px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 16%;
        position: absolute;
        top: 40px;
        left: 3%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        color: #fff;
        position: absolute;
        top: 50px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 150px;
        left: 10%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        list-style: none;
        padding-top: 10px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 36px;
    }
    
    .pack-1 button, .pack-2 button, .pack-3 button, .pack-4 button {
        width: 60%;
        height: 120px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 30px;
        color: #fff;
        position: absolute;
        top: 920px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 2px;
        border-color: #00ff40;
        border-radius: 20px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar {
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 200px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        cursor: pointer;
    }
    
    .info-bar-icon {
        background-color: #7C40FF;
        width: 140px;
        height: 140px;
        position: absolute;
        top: 30px;
        left: 5%;
        border-radius: 20px;
        cursor: pointer;
    }
    
    .info-bar-icon img {
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        color: #fff;
        position: absolute;
        top: 50px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 {
        font-family: monospace;
        font-size: 32px;
        color: #7C40FF;
        position: absolute;
        top: 10480px;
        left: 17%;
    }
    
    .server-select h1{
        font-family: 'Poppins', sans-serif;
        font-size: 60px;
        color: #fff;
        position: absolute;
        top: 10500px;
        left: 17%;
    }
    
    .server-select p {
        font-family: 'Poppins', sans-serif;
        font-size: 40px;
        color: #eeeeee;
        position: absolute;
        top:  10640px;
        left: 17%;
    }
    
    
    .server-info {
        font-family: monospace;
        font-size: 32px;
        color: #5c5c5c;
        position: absolute;
        top: 10900px;
        left: 17%;
    }
    
    .service-point-1 {
        background-color: #13171c;
        width: 15%;
        height: 540px;
        position: absolute;
        top: 11000px;
        left: 17%;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 {
        background-color: #13171c;
        width: 15%;
        height: 540px;
        position: absolute;
        top: 11000px;
        left: 35%;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 {
        background-color: #13171c;
        width: 15%;
        height: 540px;
        position: absolute;
        top: 11000px;
        left: 53%;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 {
        background-color: #13171c;
        width: 15%;
        height: 540px;
        position: absolute;
        top: 11000px;
        left: 71%;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 {
        background-color: #13171c;
        width: 15%;
        height: 540px;
        position: absolute;
        top: 11600px;
        left: 17%;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 {
        background-color: #13171c;
        width: 15%;
        height: 540px;
        position: absolute;
        top: 11600px;
        left: 35%;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 {
        background-color: #13171c;
        width: 15%;
        height: 540px;
        position: absolute;
        top: 11600px;
        left: 53%;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 {
        background-color: #13171c;
        width: 15%;
        height: 540px;
        position: absolute;
        top: 11600px;
        left: 71%;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .server-info-2 {
        font-family: monospace;
        font-size: 32px;
        color: #5c5c5c;
        position: absolute;
        top: 12200px;
        right: 14%;
    }
    
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 20%;
        height: 86px;
        text-align: center;
        position: absolute;
        top: 60px;
        left: 40%;
        font-weight: 200;
        cursor: default;
        border-radius: 10px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 100%;
        text-align: center;
        font-size: 32px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 140px;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 210px;
        left: 18%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 100px;
        position: absolute;
        top: 160px;
        left: 18%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 192px;
        right: 8%;
        cursor: default;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 100px;
        position: absolute;
        top: 60px;
        right: 10%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 200px;
        position: absolute;
        top: 240px;
        left: 49.75%;
    }
    
    .enjoy h2 {
        font-family: monospace;
        font-size: 32px;
        color: #7C40FF;
        position: absolute;
        top: 12500px;
        left: 40%;
        width: 10%;
        display: none;
    }
    
    .enjoy h1{
        font-family: 'Poppins', sans-serif;
        font-size: 60px;
        color: #fff;
        position: absolute;
        top: 12520px;
        left: 30%;
        width: 40%;
        text-align: center;
    }
    
    .enjoy p {
        font-family: 'Poppins', sans-serif;
        font-size: 40px;
        color: #eeeeee;
        width: 35%;
        position: absolute;
        top:  12640px;
        left: 32.5%;
        text-align: center;
    }
    
    
    .start-create button {
        width: 40%;
        height: 160px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 48px;
        color: #7C40FF;
        border: none;
        border-radius: 20px;
        position: absolute;
        top: 13100px;
        left: 30%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 2px 2px 4px black, 0 0 50px #7C40FF, 0 0 10px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    /*Tree Container*/
    .tree-container {
        width: 100%;
        height: 1000px;
        position: absolute;
        top: 13600px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 70px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 200px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 44px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 400px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        color: #8a8a8a;
        width: 100%;
        text-align: center;
        position: absolute;
        bottom: 80px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .footer {
        position: absolute;
        top: 14600px;
        left: 0%;
    }
  }
       
  @media  (min-width: 7680px) and (max-width: 7681px) {  
    .line-1, .line-2, .line-3 {display: none;}

    body {
        background-color: #11151a;
    
    }
    
    .material-symbols-outlined {
        font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24
    }
    
    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 200px;
        font-weight: 800;
        position: absolute;
        top: 1200px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 100px;
        position: absolute;
        top: 1580px;
        left: 10%;
        width: 25%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 96px;
        border: none;
        border-radius: 20px;
        position: absolute;
        top: 2600px;
        left: 10%;
        width: 24%;
        height: 280px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 4px 4px 8px black, 0 0 100px #7C40FF, 0 0 20px #7C40FF;
     }
     
     .main-more button:hover{
       background-color: #8d58ff; 
       color: #fff;
         
     }
    
    .scroll-downs {
        position: absolute;
        bottom: 4%;
        right: 3%;
        width :136px;
        height: 220px;
        z-index: 1;
    }
    
    .mousey {
        width: 12px;
        padding: 40px 60px;
        height: 140px;
        border: 8px solid #fff;
        border-radius: 100px;
        opacity: 0.75;
        box-sizing: content-box;
    }
    
    .scroller {
        width: 12px;
        height: 40px;
        border-radius: 25%;
        background-color: #fff;
        animation-name: scroll;
        animation-duration: 2.2s;
        animation-timing-function: cubic-bezier(.15,.41,.69,.94);
        animation-iteration-count: infinite;
    }
    
     @keyframes scroll {
        0% { opacity: 0; }
        10% { transform: translateY(0); opacity: 1; }
        100% { transform: translateY(60px); opacity: 0;}
    }
    
    
    .Container {
        margin: 0 auto;
        padding: 0 60px;
        position: absolute;
        top: 720px;
        right: 6%;
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 3600px;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 1200px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 1200px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 1140px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 1080px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 1820px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 1000px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 1040px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 1040px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 1080px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 1120px;
    }
    /*Izmir*/
    .marker-11 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 53.5%;
        top: 1180px;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 81.5%;
        top: 1200px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 1240px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 88%;
        top: 1980px;
    }
    
    
    .animated-dot {
        width: 48px;
        height: 48px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
    
        width: 40px;
        height: 40px;
        border-radius: 120px;
        position: absolute;
        left: 8px;
        top: 8px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 720px;
        pointer-events: none;
        height: 720px;
        border-radius: 800px;
        position: absolute;
        left: -332px;
        top: -320px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        width: 720px;
        height: 720px;
        pointer-events: none;
        border-radius: 800px;
        position: absolute;
        left: -332px;
        top: -320px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    
    .line {
        width: 4px;
        height: 12440px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 2160px;
        left: 10%;
        border-radius: 20px;
        z-index: 3;
    }
    
    .horizontal-line-1 {
        background-color: #fff;
        width: 100px;
        height: 4px;
        position: absolute;
        top:2160px;
        left:10%;
    }
    
    .header-1 {
        font-family: 'Poppins', sans-serif;
        font-size: 70px;
        color: #fff;
        position: absolute;
        top: 2110px;
        left: 14%;
        cursor: default;
    }
    
    .welcome {
        background-color: #13171c;
        width: 70%;
        height: 900px;
        position: absolute;
        top: 2400px;
        left: 16%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 80px;
        position: absolute;
        top: 80px;
        left: 4%;
    }
    
    
    .welcome p {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        width: 35%;
        position: absolute;
        top: 300px;
        left: 4.5%;
        font-size: 64px;
    }
    
    .welcome h2 a{
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 32px;
        position: absolute;
        top: 700px;
        left: 4.5%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {
        background-color: #24292f;
        width: 40%;
        height: 800px;
        position: absolute;
        top: 100px;
        right: 0%;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 20px;
        transition: all .3s ease-in-out;
        box-shadow:
      0px 0px 2.4px rgba(0, 0, 0, 0.11),
      0px 0px 5.6px rgba(0, 0, 0, 0.158),
      0px 0px 20px rgba(0, 0, 0, 0.195),
      0px 0px 17.18px rgba(0, 0, 0, 0.232),
      0px 0px 33.8px rgba(0, 0, 0, 0.28),
      0px 0px 160px rgba(0, 0, 0, 0.39)
    ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .we-made-header {
        background-color: #30363d;
        width: 100%;
        height: 90px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 20px;
    }
    
    .we-made:hover .we-made-header{
        border-top-right-radius: 20px;
    }
    
    .we-made-header h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        position: absolute;
        top: 0px;
        left: 4%;
    }
    
    .we-made h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #747474;
        position: absolute;
        top: 660px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 28px;
    }
    
    
    
    .made-1 h1 {
        width: 80%;
        position: absolute;
        top: 110px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        font-weight: 100;
    }
    
    .made-1 span {
        color: #259140;
        position: absolute;
        top: 120px;
        right: 5%;
        font-size: 70px;
    }
    
    .made-2 span {
        color: #259140;
        position: absolute;
        top: 250px;
        right: 5%;
        font-size: 70px;
    }
    
    .made-3 span {
        color: #259140;
        position: absolute;
        top: 380px;
        right: 5%;
        font-size: 70px;
    }
    
    .made-4 span {
        color: #259140;
        position: absolute;
        top: 510px;
        right: 5%;
        font-size: 70px;
    }
    
    .made-1 .m-line {
        width: 100%;
        height: 2px;
        background-color: #3b3b3b;
        position: absolute;
        top: 220px;
        left: 0%;
    }
    
    .made-2 h1 {
        width: 80%;
        position: absolute;
        top: 240px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        font-weight: 100;
    }
    
    .made-2 .m-line {
        width: 100%;
        height: 2px;
        background-color: #3b3b3b;
        position: absolute;
        top: 350px;
        left: 0%;
    }
    
    .made-3 h1 {
        width: 80%;
        position: absolute;
        top: 364px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        font-weight: 100;
    }
    
    .made-3 .m-line {
        width: 100%;
        height: 2px;
        background-color: #3b3b3b;
        position: absolute;
        top: 480px;
        left: 0%;
    }
    
    .made-4 h1 {
        width: 80%;
        position: absolute;
        top: 500px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        font-weight: 100;
    }
    
    .made-4 .m-line {
        width: 100%;
        height: 2px;
        background-color: #3b3b3b;
        position: absolute;
        top: 620px;
        left: 0%;
    }
    
    
    .horizontal-line-2 {
        background-color: #cdb6ff;
        width: 100px;
        height: 4px;
        position: absolute;
        top: 3800px;
        left:10%;
        z-index: 3;
    }
    
    .header-2 {
        font-family: 'Poppins', sans-serif;
        font-size: 70px;
        color: #ffffff;
        position: absolute;
        top: 3750px;
        left: 14%;
        z-index: 3;
        cursor: default;
    }
    
    .offer-1 {
        background-color: #13171c;
        width: 17%;
        height: 1000px;
        position: absolute;
        top: 4100px;
        left: 15%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 17%;
        height: 1000px;
        position: absolute;
        top: 4100px;
        left: 35%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .offer-3 {
        background-color: #13171c;
        width: 17%;
        height: 1000px;
        position: absolute;
        top: 4100px;
        left: 55%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    }
    
    .offer-4 {
        background-color: #13171c;
        width: 17%;
        height: 1000px;
        position: absolute;
        top: 4100px;
        left: 75%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        border-color: #2a2a2a;
    
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 2px 2px 4px black, 0 0 50px #7C40FF, 0 0 10px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 16%;
        position: absolute;
        top: 40px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 36px;
        color: #fff;
        position: absolute;
        top: 50px;
        left: 25%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 150px;
        left: 0%;
        cursor: pointer;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        color: #fff;
        list-style: none;
        padding-top: 30px;
        cursor: pointer;
    }
    
    .line {
        width: 8px;
        height: 24880px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 4320px;
        left: 10%;
        border-radius: 40px;
        z-index: 3;
    }
    
    .horizontal-line-1 {
        background-color: #fff;
        width: 200px;
        height: 8px;
        position: absolute;
        top:4320px;
        left:10%;
    }
    
    .header-1 {
        font-family: 'Poppins', sans-serif;
        font-size: 140px;
        color: #fff;
        position: absolute;
        top: 4220px;
        left: 14%;
        cursor: default;
    }
    
    .welcome {
        background-color: #13171c;
        width: 70%;
        height: 1800px;
        position: absolute;
        top: 4800px;
        left: 16%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 160px;
        position: absolute;
        top: 160px;
        left: 4%;
    }
    
    
    .welcome p {
        color: #fff;
        font-family: 'Poppins', sans-serif;
        width: 35%;
        position: absolute;
        top: 600px;
        left: 4.5%;
    }
    
    .welcome h2 a{
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 64px;
        position: absolute;
        top: 1400px;
        left: 4.5%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {
        background-color: #24292f;
        width: 40%;
        height: 1600px;
        position: absolute;
        top: 200px;
        right: 0%;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
        transition: all .3s ease-in-out;
        box-shadow:
      0px 0px 2.8px rgba(0, 0, 0, 0.11),
      0px 0px 5.12px rgba(0, 0, 0, 0.158),
      0px 0px 40px rgba(0, 0, 0, 0.195),
      0px 0px 17.36px rgba(0, 0, 0, 0.232),
      0px 0px 33.16px rgba(0, 0, 0, 0.28),
      0px 0px 320px rgba(0, 0, 0, 0.39)
    ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 40px;
        border-top-right-radius: 40px;
    }
    
    .we-made-header {
        background-color: #30363d;
        width: 100%;
        height: 180px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 40px;
    }
    
    .we-made:hover .we-made-header{
        border-top-right-radius: 40px;
    }
    
    .we-made-header h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 64px;
        position: absolute;
        top: 0px;
        left: 4%;
    }
    
    .we-made h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 56px;
        color: #747474;
        position: absolute;
        top: 1320px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 56px;
    }
    
    
    
    .made-1 h1 {
        width: 80%;
        position: absolute;
        top: 220px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 72px;
        font-weight: 100;
    }
    
    .made-1 span {
        color: #259140;
        position: absolute;
        top: 240px;
        right: 5%;
        font-size: 140px;
    }
    
    .made-2 span {
        color: #259140;
        position: absolute;
        top: 500px;
        right: 5%;
        font-size: 140px;
    }
    
    .made-3 span {
        color: #259140;
        position: absolute;
        top: 760px;
        right: 5%;
        font-size: 140px;
    }
    
    .made-4 span {
        color: #259140;
        position: absolute;
        top: 1020px;
        right: 5%;
        font-size: 140px;
    }
    
    .made-1 .m-line {
        width: 100%;
        height: 4px;
        background-color: #3b3b3b;
        position: absolute;
        top: 440px;
        left: 0%;
    }
    
    .made-2 h1 {
        width: 80%;
        position: absolute;
        top: 480px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 72px;
        font-weight: 100;
    }
    
    .made-2 .m-line {
        width: 100%;
        height: 4px;
        background-color: #3b3b3b;
        position: absolute;
        top: 700px;
        left: 0%;
    }
    
    .made-3 h1 {
        width: 80%;
        position: absolute;
        top: 728px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 72px;
        font-weight: 100;
    }
    
    .made-3 .m-line {
        width: 100%;
        height: 4px;
        background-color: #3b3b3b;
        position: absolute;
        top: 960px;
        left: 0%;
    }
    
    .made-4 h1 {
        width: 80%;
        position: absolute;
        top: 1000px;
        left: 5%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 72px;
        font-weight: 100;
    }
    
    .made-4 .m-line {
        width: 100%;
        height: 4px;
        background-color: #3b3b3b;
        position: absolute;
        top: 1240px;
        left: 0%;
    }
    
    
    .horizontal-line-2 {
        background-color: #cdb6ff;
        width: 200px;
        height: 8px;
        position: absolute;
        top: 7600px;
        left:10%;
        z-index: 3;
    }
    
    .header-2 {
        font-family: 'Poppins', sans-serif;
        font-size: 140px;
        color: #ffffff;
        position: absolute;
        top: 7500px;
        left: 14%;
        z-index: 3;
        cursor: default;
    }
    
    .offer-1 {
        background-color: #13171c;
        width: 17%;
        height: 2000px;
        position: absolute;
        top: 8200px;
        left: 15%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 17%;
        height: 2000px;
        position: absolute;
        top: 8200px;
        left: 35%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .offer-3 {
        background-color: #13171c;
        width: 17%;
        height: 2000px;
        position: absolute;
        top: 8200px;
        left: 55%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .offer-4 {
        background-color: #13171c;
        width: 17%;
        height: 2000px;
        position: absolute;
        top: 8200px;
        left: 75%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 4px 4px 8px black, 0 0 100px #7C40FF, 0 0 20px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 16%;
        position: absolute;
        top: 80px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 72px;
        color: #fff;
        position: absolute;
        top: 100px;
        left: 25%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 300px;
        left: 10%;
        cursor: pointer;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 64px;
        color: #fff;
        list-style: none;
        padding-top: 60px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 72px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 80%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 56px;
        color: #ffffffad;
        position: absolute;
        top: 1400px;
        left: 10%;
        cursor: pointer;
        text-align: center;
    }
    
    .horizontal-line-3 {
        background-color: #cdb6ff;
        width: 200px;
        height: 8px;
        position: absolute;
        top: 11000px;
        left:10%;
        z-index: 3;
    }
    
    .header-3 {
        font-family: 'Poppins', sans-serif;
        font-size: 140px;
        color: #ffffff;
        position: absolute;
        top: 10900px;
        left: 14%;
        z-index: 3;
        cursor: default;
    }
    
    .develop-business {
        background-color: #13171c;
        width: 70%;
        height: 2200px;
        position: absolute;
        top: 11480px;
        left: 16%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .develop-business img { 
        width: 51%;
        border-radius: 40px;
        position: absolute;
        top: 0px;
        left: 0%;
    }
    
    .develop-business-1 img {
        width: 200px;
        position: absolute;
        top: 320px;
        left: 62%;
    }
    
    .develop-business-1 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 80px;
        color: #fff;
        position: absolute;
        top: 304px;
        left: 65.5%;
    }
    
    .develop-business-1 p {
        font-family: 'Poppins', sans-serif;
        font-size: 56px;
        color: #a0a0a0;
        position: absolute;
        top: 440px;
        left: 66%;
        width: 23%;
        text-align: left;
    }
    
    .dbl-1 {
        width: 8px;
        height: 400px;
        background-color: #999999;
        position: absolute;
        top: 520px;
        left: 63.45%;
    }
    
    .develop-business-2 img {
        width: 200px;
        position: absolute;
        top: 920px;
        left: 61.6%;
    }
    
    .develop-business-2 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 80px;
        color: #fff;
        position: absolute;
        top: 904px;
        left: 65.5%;
    }
    
    .develop-business-2 p {
        font-family: 'Poppins', sans-serif;
        font-size: 56px;
        color: #a0a0a0;
        position: absolute;
        top: 1040px;
        left: 66%;
        width: 23%;
        text-align: left;
    }
    
    .dbl-2 {
        width: 8px;
        height: 400px;
        background-color: #999999;
        position: absolute;
        top: 1120px;
        left: 63.45%;
    }
    
    .develop-business-3 img {
        width: 184px;
        position: absolute;
        top: 1540px;
        left: 61.8%;
    }
    
    .develop-business-3 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 80px;
        color: #fff;
        position: absolute;
        top: 1528px;
        left: 65.5%;
    }
    
    .develop-business-3 p {
        font-family: 'Poppins', sans-serif;
        font-size: 56px;
        color: #a0a0a0;
        position: absolute;
        top: 1664px;
        left: 66%;
        width: 23%;
        text-align: left;
    }
    
    
    
    .horizontal-line-4 {
        background-color: #9f73ff;
        width: 200px;
        height: 8px;
        position: absolute;
        top: 14400px;
        left:10%;
        z-index: 3;
    }
    
    .header-4 {
        font-family: 'Poppins', sans-serif;
        font-size: 140px;
        color: #ffffff;
        position: absolute;
        top: 14300px;
        left: 14%;
        z-index: 3;
        cursor: default;
    }
    
    .web-services h2 {
        font-family: monospace;
        font-size: 64px;
        color: #7C40FF;
        position: absolute;
        top: 15000px;
        left: 17%;
    }
    
    .web-services h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 120px;
        color: #fff;
        position: absolute;
        top: 15040px;
        left: 17%;
    }
    
    .web-services p {
        font-family: 'Poppins', sans-serif;
        font-size: 80px;
        color: #eeeeee;
        width: 35%;
        position: absolute;
        top:  15720px;
        left: 17%;
    }
    
    .web-services button {
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 64px;
        border: none;
        border-radius: 20px;
        position: absolute;
        top: 16240px;
        left: 17%;
        width: 8%;
        height: 200px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }
    
    .search-for-domains input {
        width: 30%;
        height: 280px;
        position: absolute;
        top: 15392px;
        left: 17%;
        border-radius: 264px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 72px;
        color: #fff;
        border-style: solid;
        border-width: 8px;
        border-color: #8d58ff;
        padding-left: 100px;
        padding-right: 240px;
    }
    
    .search-for-domains button  {
        background-color: #8d58ff;
        color: #fff; 
        text-align: center;
        font-size: 120px;
        position: absolute;
        top: 15420px;
        left: 43.7%;
        cursor: pointer;
        transition: all .3s ease-in-out;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        border: none;
    }
    
    .search-for-domains span:hover {
        background-color: #9261fd;
    }
    
    .domain-image img {
        position: absolute;
        top: 120px;
        left: 5%;
        width: 90%;
    }
    
    .price {
        color: #7C40FF;
        position: absolute;
        top: 440px;
        left: 0%;
        width: 100%;
        text-align: center;
    }
    
    .dot-com {
        font-family: 'Open Sans', sans-serif;
        font-size: 80px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 600px;
        border-radius: 40px;
        position: absolute;
        top: 14960px;
        left: 55%;
        border-style: solid;
        border-width: 4px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-net {
        font-family: 'Open Sans', sans-serif;
        font-size: 80px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 600px;
        border-radius: 40px;
        position: absolute;
        top: 15120px;
        left: 65%;
        border-style: solid;
        border-width: 4px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-org {
        font-family: 'Open Sans', sans-serif;
        font-size: 80px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 600px;
        border-radius: 40px;
        position: absolute;
        top: 15640px;
        left: 55%;
        border-style: solid;
        border-width: 4px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-io {
        font-family: 'Open Sans', sans-serif;
        font-size: 80px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 600px;
        border-radius: 40px;
        position: absolute;
        top: 15800px;
        left: 65%;
        border-style: solid;
        border-width: 4px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-site {
        font-family: 'Open Sans', sans-serif;
        font-size: 80px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 600px;
        border-radius: 40px;
        position: absolute;
        top: 14960px;
        left: 75%;
        border-style: solid;
        border-width: 4px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-online {
        font-family: 'Open Sans', sans-serif;
        font-size: 80px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 600px;
        border-radius: 40px;
        position: absolute;
        top: 15640px;
        left: 75%;
        border-style: solid;
        border-width: 4px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    
    .dot-com:hover,
    .dot-net:hover,
    .dot-org:hover,
    .dot-io:hover,
    .dot-store:hover,
    .dot-site:hover,
    .dot-store:hover,
    .dot-online:hover {
        transform: scale(1.1);
    
    }
    
    .website-type h2 {
        font-family: monospace;
        font-size: 64px;
        color: #7C40FF;
        position: absolute;
        top: 17360px;
        left: 17%;
    }
    
    .website-type h1{
        font-family: 'Poppins', sans-serif;
        font-size: 120px;
        color: #fff;
        position: absolute;
        top: 17400px;
        left: 17%;
    }
    
    .website-type p {
        font-family: 'Poppins', sans-serif;
        font-size: 80px;
        color: #eeeeee;
        position: absolute;
        top:  17680px;
        left: 17%;
    }
    
    .pack-1 {
        background-color: #13171c;
        width: 17%;
        height: 2000px;
        position: absolute;
        top: 18200px;
        left: 15%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .pack-2 {
        background-color: #13171c;
        width: 17%;
        height: 2000px;
        position: absolute;
        top: 18200px;
        left: 35%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .pack-3 {
        background-color: #13171c;
        width: 17%;
        height: 2000px;
        position: absolute;
        top: 18200px;
        left: 55%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .pack-4 {
        background-color: #13171c;
        width: 17%;
        height: 2000px;
        position: absolute;
        top: 18200px;
        left: 75%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1.1);
        box-shadow: 4px 4px 8px black, 0 0 100px #7C40FF, 0 0 20px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 16%;
        position: absolute;
        top: 80px;
        left: 3%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 64px;
        color: #fff;
        position: absolute;
        top: 100px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 300px;
        left: 10%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 56px;
        color: #fff;
        list-style: none;
        padding-top: 20px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 72px;
    }
    
    .pack-1 button, .pack-2 button, .pack-3 button, .pack-4 button {
        width: 60%;
        height: 240px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 60px;
        color: #fff;
        position: absolute;
        top: 1840px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 4px;
        border-color: #00ff40;
        border-radius: 40px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar {
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 400px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        cursor: pointer;
    }
    
    .info-bar-icon {
        background-color: #7C40FF;
        width: 280px;
        height: 280px;
        position: absolute;
        top: 60px;
        left: 5%;
        border-radius: 40px;
        cursor: pointer;
    }
    
    .info-bar-icon img {
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 72px;
        color: #fff;
        position: absolute;
        top: 100px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 {
        font-family: monospace;
        font-size: 64px;
        color: #7C40FF;
        position: absolute;
        top: 20960px;
        left: 17%;
    }
    
    .server-select h1{
        font-family: 'Poppins', sans-serif;
        font-size: 120px;
        color: #fff;
        position: absolute;
        top: 21000px;
        left: 17%;
    }
    
    .server-select p {
        font-family: 'Poppins', sans-serif;
        font-size: 80px;
        color: #eeeeee;
        position: absolute;
        top:  21280px;
        left: 17%;
    }
    
    
    .server-info {
        font-family: monospace;
        font-size: 64px;
        color: #5c5c5c;
        position: absolute;
        top: 21800px;
        left: 17%;
    }
    
    .service-point-1 {
        background-color: #13171c;
        width: 15%;
        height: 1080px;
        position: absolute;
        top: 22000px;
        left: 17%;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 {
        background-color: #13171c;
        width: 15%;
        height: 1080px;
        position: absolute;
        top: 22000px;
        left: 35%;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 {
        background-color: #13171c;
        width: 15%;
        height: 1080px;
        position: absolute;
        top: 22000px;
        left: 53%;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 {
        background-color: #13171c;
        width: 15%;
        height: 1080px;
        position: absolute;
        top: 22000px;
        left: 71%;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 {
        background-color: #13171c;
        width: 15%;
        height: 1080px;
        position: absolute;
        top: 23200px;
        left: 17%;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 {
        background-color: #13171c;
        width: 15%;
        height: 1080px;
        position: absolute;
        top: 23200px;
        left: 35%;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 {
        background-color: #13171c;
        width: 15%;
        height: 1080px;
        position: absolute;
        top: 23200px;
        left: 53%;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 {
        background-color: #13171c;
        width: 15%;
        height: 1080px;
        position: absolute;
        top: 23200px;
        left: 71%;
        border-radius: 40px;
        border-style: solid;
        border-width: 4px;
        border-color: #2a2a2a;
    }
    
    .server-info-2 {
        font-family: monospace;
        font-size: 64px;
        color: #5c5c5c;
        position: absolute;
        top: 24400px;
        right: 14%;
    }
    
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 20%;
        height: 172px;
        text-align: center;
        position: absolute;
        top: 120px;
        left: 40%;
        font-weight: 200;
        cursor: default;
        border-radius: 20px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 100%;
        text-align: center;
        font-size: 64px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 280px;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 56px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 420px;
        left: 18%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 200px;
        position: absolute;
        top: 320px;
        left: 18%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 56px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 384px;
        right: 8%;
        cursor: default;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 200px;
        position: absolute;
        top: 120px;
        right: 10%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 400px;
        position: absolute;
        top: 480px;
        left: 49.75%;
    }
    
    .enjoy h2 {
        font-family: monospace;
        font-size: 64px;
        color: #7C40FF;
        position: absolute;
        top: 25000px;
        left: 40%;
        width: 10%;
        display: none;
    }
    
    .enjoy h1{
        font-family: 'Poppins', sans-serif;
        font-size: 120px;
        color: #fff;
        position: absolute;
        top: 25040px;
        left: 30%;
        width: 40%;
        text-align: center;
    }
    
    .enjoy p {
        font-family: 'Poppins', sans-serif;
        font-size: 80px;
        color: #eeeeee;
        width: 35%;
        position: absolute;
        top:  25280px;
        left: 32.5%;
        text-align: center;
    }
    
    
    .start-create button {
        width: 40%;
        height: 320px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 96px;
        color: #7C40FF;
        border: none;
        border-radius: 40px;
        position: absolute;
        top: 26200px;
        left: 30%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 4px 4px 8px black, 0 0 100px #7C40FF, 0 0 20px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    /*Tree Container*/
    .tree-container {
        width: 100%;
        height: 2000px;
        position: absolute;
        top: 27200px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 140px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 400px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 88px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 800px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 64px;
        color: #8a8a8a;
        width: 100%;
        text-align: center;
        position: absolute;
        bottom: 160px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .footer {
        position: absolute;
        top: 29200px;
        left: 0%;
    }
  }
  

  

  /* LANDSCAPE RESPONSIVE*/
  @media (min-width: 500px) and (max-width: 639.98px) and (orientation: landscape) {
    .line-1, .line-2, .line-3 {display: none;}

    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        font-weight: 800;
        position: absolute;
        top: 310px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        position: absolute;
        top: 350px;
        left: 10%;
        width: 80%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 450px;
        left: 10%;
        width: 80%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
         
    .main-more button:hover{
        background-color: #8d58ff; 
        color: #fff; 
    }
    
    .scroll-downs {
        display: none;
    }
    
    .mousey {
        display: none;
    }
    
    .scroller {
        display: none;
    }
     
    .Container {
        transform: scale(1.1);
        max-width: 300px;
        margin: 0 auto;
        padding: 0 15px;
        position: absolute;
        top: 100px;
        left: 5%;
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 100%;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 90px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 95px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 85px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 80px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 140px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 78px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 80px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 85px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 87px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 89px;
    }
    /*Izmir*/
    .marker-11 {
        display: none;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 80%;
        top: 95px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 82%;
        top:  97px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 155px;
    }
    
    
    .animated-dot {
        width: 5px;
        height: 5px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
        width: 5px;
        height: 5px;
        border-radius: 30px;
        position: absolute;
        left: 2px;
        top: 2px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 60px;
        pointer-events: none;
        height: 60px;
        border-radius: 200px;
        position: absolute;
        left: -25px;
        top: -25px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        display: none;
        width: 180px;
        height: 180px;
        pointer-events: none;
        border-radius: 200px;
        position: absolute;
        left: -83px;
        top: -80px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    
    .line { display: none;
        width: 2px;
        height: 6220px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 1080px;
        left: 10%;
        border-radius: 10px;
        z-index: 3;
    }
    
    .horizontal-line-1 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 470px;
        left: 24%;
    }
    
    .header-1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 500px;
        left: 10%;
        cursor: default;
    }
    
    .welcome { 
        background-color: #13171c;
        width: 100%;
        height: 520px;
        position: absolute;
        top: 550px;
        left: 00%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 00px;
        border-style: solid;
        border-width: 0px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 20px;
        position: absolute;
        top: 20px;
        left: 10%;
    }
    
    
    .welcome p { 
        color: #ececec;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        width: 80%;
        position: absolute;
        top: 80px;
        left: 10%;
        text-align: left;
    }
    
    .welcome h2 a{ 
        display: none;
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 14px;
        position: absolute;
        top: 240px;
        left: 10%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {  
        background-color: #24292f;
        width: 80%;
        height: 190px;
        position: absolute;
        top: 270px;
        right: 10%;
        border-radius: 5px;
        transition: all .3s ease-in-out;
        box-shadow:
        0px 0px 0.3px rgba(0, 0, 0, 0.02),
        0px 0px 0.8px rgba(0, 0, 0, 0.028),
        0px 0px 1.5px rgba(0, 0, 0, 0.035),
        0px 0px 2.7px rgba(0, 0, 0, 0.042),
        0px 0px 5px rgba(0, 0, 0, 0.05),
        0px 0px 12px rgba(0, 0, 0, 0.07)
      ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header { 
        background-color: #30363d;
        width: 100%;
        height: 30px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 400;
        position: absolute;
        top: -5px;
        left: 4%;
    }
    
    .we-made h2 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #747474;
        position: absolute;
        top: 330px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 14px;
    }
    
    .made-1 h1 { 
        width: 80%;
        position: absolute;
        top: 32px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 100;
    }
    
    .made-1 span { 
        color: #259140;
        position: absolute;
        top: 38px;
        right: 5%;
        font-size: 24px;
    }
    
    .made-1 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 70px;
        left: 0%;
    }
    
    .made-2 h1 { 
        width: 80%;
        position: absolute;
        top: 70px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 100;
    }

    .made-2 span { 
        color: #259140;
        position: absolute;
        top: 78px;
        right: 5%;
        font-size: 24px;
    }
    
    .made-2 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 108px;
        left: 0%;
    }
    
    .made-3 h1 { 
        width: 80%;
        position: absolute;
        top: 108px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 100;
    }

    .made-3 span { 
        color: #259140;
        position: absolute;
        top: 115px;
        right: 5%;
        font-size: 24px;
    }
    
    .made-3 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 146px;
        left: 0%;
    }
    
    .made-4 h1 { 
        width: 80%;
        position: absolute;
        top: 145px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 100;
    }

    .made-4 span { 
        color: #259140;
        position: absolute;
        top: 155px;
        right: 5%;
        font-size: 24px;
    }
    
    .made-4 .m-line {
        display: none;
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 315px;
        left: 0%;
    }
    
    
    .horizontal-line-2 {  display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 1060px;
        left: 60%;
    }
    
    .header-2 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 1100px;
        left: 10%;
        cursor: default;
    }
    
    .offer-1 { 
        background-color: #13171c;
        width: 80%;
        height: 370px;
        position: absolute;
        top: 1160px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 80%;
        height: 370px;
        position: absolute;
        top: 1560px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-3 { 
        background-color: #13171c;
        width: 80%;
        height: 370px;
        position: absolute;
        top: 1960px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-4 { 
        background-color: #13171c;
        width: 80%;
        height: 370px;
        position: absolute;
        top: 2360px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-5 {
       display: none;
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 16%;
        position: absolute;
        top: 18px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 20px;
        left: 25%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 54px;
        left: -1;
        cursor: pointer;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #ececec;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 80%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        text-align: center;
        color: #ffffffad;
        position: absolute;
        top: 250px;
        left: 10%;
        cursor: pointer;
    }
    
    .horizontal-line-3 { display: none;  
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 2680px;
        left: 86%;
    }
    
    .header-3 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 2800px;
        left: 10%;
        cursor: default;
    }
    
    .develop-business { 
        background-color: #13171c;
        width: 100%;
        height: 840px;
        position: absolute;
        top: 2850px;
        left: 0%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border: none;
    }
    
    .develop-business img { 
        width: 80%;
        border-radius: 10px;
        position: absolute;
        top: 30px;
        left: 10%;
    }
    
    .develop-business-1 img { 
        width: 14%;
        position: absolute;
        top: 310px;
        left: 7%;
    }
    
    .develop-business-1 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 310px;
        left: 20%;
    }
    
    .develop-business-1 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #a0a0a0;
        position: absolute;
        top: 340px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    .dbl-1 { 
        width: 2px;
        height: 100px;
        background-color: #999999;
        position: absolute;
        top: 360px;
        left: 13.6%;
    }
    
    .develop-business-2 img { 
        width: 13%;
        position: absolute;
        top: 460px;
        left: 7%;
    }
    
    .develop-business-2 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 460px;
        left: 20%;
    }
    
    .develop-business-2 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #a0a0a0;
        position: absolute;
        top: 490px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    .dbl-2 { 
        width: 2px;
        height: 120px;
        background-color: #999999;
        position: absolute;
        top: 510px;
        left: 13.6%;
    }
    
    .develop-business-3 img { 
        width: 12%;
        position: absolute;
        top: 630px;
        left: 7%;
    }
    
    .develop-business-3 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 620px;
        left: 20%;
        width: 50%;
        text-align: left;
    }
    
    .develop-business-3 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #a0a0a0;
        position: absolute;
        top: 675px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    
    .horizontal-line-4 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 3410px;
        left: 47%;
    }
    
    .header-4 {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 3750px;
        left: 10%;
        cursor: default;
    }
    
    .web-services h2 { 
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 3800px;
        left: 10%;
    }
    
    .web-services h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 3820px;
        left: 10%;
    }
    
    .web-services p { 
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top:  3940px;
        left: 10%;
        z-index: 2;
    }
    
    .web-services button { display: none;
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 3960px;
        left: 17%;
        width: 8%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }
    
    .search-for-domains input { 
        width: 80%;
        height: 50px;
        position: absolute;
        top: 3880px;
        left: 10%;
        border-radius: 66px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 13px;
        color: #fff;
        border-style: solid;
        border-width: 1px;
        border-color: #8d58ff;
        padding-left: 15px;
        padding-right: 60px;
    }
    
    .search-for-domains button  { 
        background-color: #8d58ff;
        color: #fff; 
        text-align: center;
        font-size: 18px;
        position: absolute;
        top: 3886px;
        left: 77.5%;
        cursor: pointer;
        transition: all .3s ease-in-out;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
    }
    
    .search-for-domains span:hover {
        background-color: #9261fd;
    }
    
    .domain-image img { display: none;
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
    }
    
    .price { 
        color: #7C40FF;
        position: absolute;
        top: 4000px;
        left: 0%;
        width: 100%;
        text-align: center;
    }
    
    .dot-com { display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3740px;
        left: 55%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-net {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3780px;
        left: 65%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-org {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3910px;
        left: 55%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-io {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3950px;
        left: 65%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-site {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3740px;
        left: 75%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-online {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3910px;
        left: 75%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    
    .dot-com:hover,
    .dot-net:hover,
    .dot-org:hover,
    .dot-io:hover,
    .dot-store:hover,
    .dot-site:hover,
    .dot-store:hover,
    .dot-online:hover {
        transform: scale(1.1);
    
    }
    
    
    .website-type h2 { 
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 4120px;
        left: 10%;
    }
    
    .website-type h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 4140px;
        left: 10%;
    }
    
    .website-type p { display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  4420px;
        left: 17%;
    }
    
    .pack-1 { 
        background-color: #13171c;
        width: 80%;
        height: 400px;
        position: absolute;
        top: 4230px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-1 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 378px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-2 { 
        background-color: #13171c;
        width: 80%;
        height: 450px;
        position: absolute;
        top: 4680px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-2 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 428px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-3 { 
        background-color: #13171c;
        width: 80%;
        height: 400px;
        position: absolute;
        top: 5180px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-3 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 378px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-4 { 
        background-color: #13171c;
        width: 80%;
        height: 400px;
        position: absolute;
        top: 5630px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-4 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 378px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1.1);
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 15%;
        position: absolute;
        top: 17px;
        left: 5%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 45px;
        left: -2%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #ececec;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar { display: none;
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 100px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon {display: none;
        background-color: #7C40FF;
        width: 70px;
        height: 70px;
        position: absolute;
        top: 15px;
        left: 5%;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon img {display: none;
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 25px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 { 
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 6100px;
        left: 10%;
    }
    
    .server-select h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 6120px;
        left: 10%;
    }
    
    .server-select p {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  5320px;
        left: 17%;
    }
    
    .server-info {  
        font-family: monospace;
        font-size: 10px;
        color: #5c5c5c;
        position: absolute;
        top: 6900px;
        left: 10%;
        width: 80%;
        text-align: justify;
    }
    
    .service-point-1 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6200px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6285px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6370px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6455px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6540px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 {  
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6625px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6710px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 { 
        background-color: #13171c;
        width: 80%;
        height: 70px;
        position: absolute;
        top: 6795px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .server-info-2 {
        font-family: monospace;
        font-size: 10px;
        color: #5c5c5c;
        position: absolute;
        top: 6930px;
        left: 10%;
        width: 80%;
    }
    
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 42px;
        height: 30px;
        text-align: center;
        position: absolute;
        top: 20px;
        left: 5%;
        font-weight: 200;
        cursor: default;
        border-radius: 5px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 40%;
        text-align: left;
        font-size: 13px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 25%;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 8px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 10px;
        left: 63%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 16px;
        position: absolute;
        top: 10px;
        left: 64%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 8px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 6px;
        right: 2%;
        cursor: default;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 16px;
        position: absolute;
        top: -6px;
        right: 6.5%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 20px;
        position: absolute;
        top: 25px;
        left: 76%;
    }
    
    .enjoy h2 { display: none;
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 7100px;
        left: 10%;
    }
    
    .enjoy h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 6980px;
        left: 11%;
        width: 79%;
    }
    
    .enjoy p { 
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top: 7020px;
        left: 10%;
    }
    
    
    .start-create button {
        width: 80%;
        height: 45px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #7C40FF;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 7180px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    /*Tree Container*/
    .tree-container { 
        width: 100%; 
        height: 200px;
        position: absolute;
        top: 7300px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 25px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #fff;
        width: 95%;
        text-align: center;
        position: absolute;
        top: 70px;
        left: 2.5%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 9px;
        color: #8a8a8a;
        width: 80%;
        text-align: center;
        position: absolute;
        bottom: 5px;
        left: 10%;
        z-index: 5;
        cursor: default;
    }
    
    
    /*Bottom Container*/
    .mobile-footer { 
        position: absolute;
        top: 7500px;
        left: 0%;
    }
  }
  
  @media (min-width: 640px) and (max-width: 811.98px) and (orientation: landscape) {
    .line-1, .line-2, .line-3 {display: none;}

    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 800;
        position: absolute;
        top: 310px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        position: absolute;
        top: 350px;
        left: 10%;
        width: 80%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 440px;
        left: 10%;
        width: 40%;
        height: 60px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
         
    .main-more button:hover{
        background-color: #8d58ff; 
        color: #fff; 
    }
    
    .scroll-downs {
        display: none;
    }
    
    .mousey {
        display: none;
    }
    
    .scroller {
        display: none;
    }
     
    .Container {
        max-width: 300px;
        margin: 0 auto;
        padding: 0 15px;
        position: absolute;
        top: 140px;
        right: 15%;
        transform: scale(1.5);
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 100%;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 90px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 95px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 85px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 80px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 140px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 78px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 80px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 85px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 87px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 89px;
    }
    /*Izmir*/
    .marker-11 {
        display: none;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 80%;
        top: 95px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 82%;
        top:  97px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 155px;
    }
    
    .animated-dot {
        width: 5px;
        height: 5px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
        width: 5px;
        height: 5px;
        border-radius: 30px;
        position: absolute;
        left: 2px;
        top: 2px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 60px;
        pointer-events: none;
        height: 60px;
        border-radius: 200px;
        position: absolute;
        left: -25px;
        top: -25px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        display: none;
        width: 180px;
        height: 180px;
        pointer-events: none;
        border-radius: 200px;
        position: absolute;
        left: -83px;
        top: -80px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    
    .line { display: none;
        width: 2px;
        height: 6220px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 1080px;
        left: 10%;
        border-radius: 10px;
        z-index: 3;
    }
    
    .horizontal-line-1 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 470px;
        left: 24%;
    }
    
    .header-1 {  display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 500px;
        left: 10%;
        cursor: default;
    }
    
    .welcome { 
        background-color: #13171c;
        width: 100%;
        height: 560px;
        position: absolute;
        top: 550px;
        left: 00%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 00px;
        border-style: solid;
        border-width: 0px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 24px;
        position: absolute;
        top: 20px;
        left: 10%;
    }
    
    
    .welcome p { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        width: 80%;
        position: absolute;
        top: 80px;
        left: 10%;
        text-align: left;
    }
    
    .welcome h2 a{ 
        display: none;
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 14px;
        position: absolute;
        top: 240px;
        left: 10%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {  
        background-color: #24292f;
        width: 80%;
        height: 240px;
        position: absolute;
        top: 270px;
        right: 10%;
        border-radius: 5px;
        transition: all .3s ease-in-out;
        box-shadow:
        0px 0px 0.3px rgba(0, 0, 0, 0.02),
        0px 0px 0.8px rgba(0, 0, 0, 0.028),
        0px 0px 1.5px rgba(0, 0, 0, 0.035),
        0px 0px 2.7px rgba(0, 0, 0, 0.042),
        0px 0px 5px rgba(0, 0, 0, 0.05),
        0px 0px 12px rgba(0, 0, 0, 0.07)
      ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header { 
        background-color: #30363d;
        width: 100%;
        height: 40px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 400;
        position: absolute;
        top: -5px;
        left: 4%;
    }
    
    .we-made h2 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #747474;
        position: absolute;
        top: 330px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 14px;
    }
    
    .made-1 h1 { 
        width: 80%;
        position: absolute;
        top: 40px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }
    
    .made-1 span { 
        color: #259140;
        position: absolute;
        top: 50px;
        right: 5%;
        font-size: 30px;
    }
    
    .made-1 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 90px;
        left: 0%;
    }
    
    .made-2 h1 { 
        width: 80%;
        position: absolute;
        top: 90px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }

    .made-2 span { 
        color: #259140;
        position: absolute;
        top: 100px;
        right: 5%;
        font-size: 30px;
    }
    
    .made-2 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 140px;
        left: 0%;
    }
    
    .made-3 h1 { 
        width: 80%;
        position: absolute;
        top: 140px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }

    .made-3 span { 
        color: #259140;
        position: absolute;
        top: 150px;
        right: 5%;
        font-size: 30px;
    }
    
    .made-3 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 190px;
        left: 0%;
    }
    
    .made-4 h1 { 
        width: 80%;
        position: absolute;
        top: 190px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        font-weight: 100;
    }

    .made-4 span { 
        color: #259140;
        position: absolute;
        top: 200px;
        right: 5%;
        font-size: 30px;
    }
    
    .made-4 .m-line {
        display: none;
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 315px;
        left: 0%;
    }
    
    .horizontal-line-2 {  display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 1060px;
        left: 60%;
    }
    
    .header-2 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 1180px;
        left: 10%;
        cursor: default;
    }
    
    .offer-1 { 
        background-color: #13171c;
        width: 43%;
        height: 440px;
        position: absolute;
        top: 1260px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 43%;
        height: 440px;
        position: absolute;
        top: 1260px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-3 {
        background-color: #13171c;
        width: 43%;
        height: 440px;
        position: absolute;
        top: 1725px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-4 {
        background-color: #13171c;
        width: 43%;
        height: 440px;
        position: absolute;
        top: 1725px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-5 {
       display: none;
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 20%;
        position: absolute;
        top: 18px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 10px;
        left: 28%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 80px;
        left: -8%;
        cursor: pointer;
        text-align: left;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 90%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        text-align: center;
        color: #ffffffad;
        position: absolute;
        top: 320px;
        left: 5%;
        cursor: pointer;
    }
    
    .horizontal-line-3 { display: none;  
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 2680px;
        left: 86%;
    }
    
    .header-3 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 2300px;
        left: 10%;
        cursor: default;
    }
    
    .develop-business { 
        background-color: #13171c;
        width: 100%;
        height: 1080px;
        position: absolute;
        top: 2360px;
        left: 0%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border: none;
    }
    
    .develop-business img { 
        width: 80%;
        border-radius: 10px;
        position: absolute;
        top: 30px;
        left: 10%;
    }
    
    .develop-business-1 img { 
        width: 14%;
        position: absolute;
        top: 460px;
        left: 7%;
    }
    
    .develop-business-1 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 470px;
        left: 20%;
    }
    
    .develop-business-1 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #a0a0a0;
        position: absolute;
        top: 510px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    .dbl-1 { 
        width: 2px;
        height: 100px;
        background-color: #999999;
        position: absolute;
        top: 530px;
        left: 13.6%;
    }
    
    .develop-business-2 img {  
        width: 13%;
        position: absolute;
        top: 624px;
        left: 7%;
    }
    
    .develop-business-2 h1 {  
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 640px;
        left: 20%;
    }
    
    .develop-business-2 p {  
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #a0a0a0;
        position: absolute;
        top: 680px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    .dbl-2 {  
        width: 2px;
        height: 120px;
        background-color: #999999;
        position: absolute;
        top: 700px;
        left: 13.6%;
    }
    
    .develop-business-3 img { 
        width: 12%;
        position: absolute;
        top: 820px;
        left: 7%;
    }
    
    .develop-business-3 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 820px;
        left: 20%;
        width: 50%;
        text-align: left;
    }
    
    .develop-business-3 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #a0a0a0;
        position: absolute;
        top: 890px;
        left: 22%;
        width: 65%;
        text-align: left;
    }
    
    
    .horizontal-line-4 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 3410px;
        left: 47%;
    }
    
    .header-4 {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 3450px;
        left: 10%;
        cursor: default;
    }
    
    .web-services h2 { 
        font-family: monospace;
        font-size: 18px;
        color: #7C40FF;
        position: absolute;
        top: 3500px;
        left: 10%;
    }
    
    .web-services h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 3530px;
        left: 10%;
    }
    
    .web-services p { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top:  3660px;
        left: 10%;
        z-index: 2;
    }
    
    .web-services button { display: none;
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 3960px;
        left: 17%;
        width: 8%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }
    
    .search-for-domains input { 
        width: 80%;
        height: 60px;
        position: absolute;
        top: 3600px;
        left: 10%;
        border-radius: 66px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        border-style: solid;
        border-width: 1px;
        border-color: #8d58ff;
        padding-left: 15px;
        padding-right: 60px;
    }
    
    .search-for-domains button  { 
        background-color: #8d58ff;
        color: #fff; 
        text-align: center;
        font-size: 18px;
        position: absolute;
        top: 3608px;
        left: 81%;
        cursor: pointer;
        transition: all .3s ease-in-out;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: none;
    }
    
    .search-for-domains span:hover {
        background-color: #9261fd;
    }
    
    .domain-image img { display: none;
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
    }
    
    .price { 
        color: #7C40FF;
        position: absolute;
        top: 4000px;
        left: 0%;
        width: 100%;
        text-align: center;
    }
    
    .dot-com { display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3740px;
        left: 55%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-net {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3780px;
        left: 65%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-org {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3910px;
        left: 55%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-io {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3950px;
        left: 65%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-site {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3740px;
        left: 75%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-online {display: none;
        font-family: 'Open Sans', sans-serif;
        font-size: 20px;
        color: #fff;
        background-color: #13171c;
        width: 9%;
        height: 150px;
        border-radius: 10px;
        position: absolute;
        top: 3910px;
        left: 75%;
        border-style: solid;
        border-width: 1px;
        border-color: #7C40FF;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .dot-com:hover,
    .dot-net:hover,
    .dot-org:hover,
    .dot-io:hover,
    .dot-store:hover,
    .dot-site:hover,
    .dot-store:hover,
    .dot-online:hover {
        transform: scale(1.1);
    }
    
    
    .website-type h2 { 
        font-family: monospace;
        font-size: 18px;
        color: #7C40FF;
        position: absolute;
        top: 3800px;
        left: 10%;
    }
    
    .website-type h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 3830px;
        left: 10%;
    }
    
    .website-type p { display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  4420px;
        left: 17%;
    }
    
    .pack-1 { 
        background-color: #13171c;
        width: 43%;
        height: 430px;
        position: absolute;
        top: 3920px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-1 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 406px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-2 { 
        background-color: #13171c;
        width: 43%;
        height: 430px;
        position: absolute;
        top: 3920px;
        left: 52%;
        transiion: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-2 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 406px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-3 { 
        background-color: #13171c;
        width: 43%;
        height: 430px;
        position: absolute;
        top: 4400px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-3 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 406px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-4 { 
        background-color: #13171c;
        width: 43%;
        height: 430px;
        position: absolute;
        top: 4400px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-4 button {
        width: 60%;
        height: 44px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 12px;
        color: #fff;
        position: absolute;
        top: 406px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1.1);
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 15%;
        position: absolute;
        top: 17px;
        left: 5%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 17px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 45px;
        left: -2%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar { display: none;
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 100px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon {display: none;
        background-color: #7C40FF;
        width: 70px;
        height: 70px;
        position: absolute;
        top: 15px;
        left: 5%;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon img {display: none;
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 25px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 { 
        font-family: monospace;
        font-size: 18px;
        color: #7C40FF;
        position: absolute;
        top: 4900px;
        left: 10%;
    }
    
    .server-select h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 4930px;
        left: 10%;
    }
    
    .server-select p {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #ececec;
        position: absolute;
        top:  4980px;
        left: 10%;
    }
    
    .server-info {  
        font-family: monospace;
        font-size: 16px;
        color: #5c5c5c;
        position: absolute;
        top: 5940px;
        left: 10%;
        width: 80%;
        text-align: justify;
    }
    
    .service-point-1 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5100px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5200px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5300px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5400px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5500px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 {  
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5600px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5700px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 { 
        background-color: #13171c;
        width: 80%;
        height: 80px;
        position: absolute;
        top: 5800px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .server-info-2 {
        font-family: monospace;
        font-size: 16px;
        color: #5c5c5c;
        position: absolute;
        top: 6000px;
        left: 10%;
        width: 80%;
    }
    
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 56px;
        height: 38px;
        text-align: center;
        position: absolute;
        top: 20px;
        left: 5%;
        font-weight: 200;
        cursor: default;
        border-radius: 5px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 40%;
        text-align: left;
        font-size: 20px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 6px;
        left: 22%;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 0px;
        left: 60%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 20px;
        position: absolute;
        top: 10px;
        left: 62%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: -10px;
        right: 2%;
        cursor: default;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 20px;
        position: absolute;
        top: -10px;
        right: 10%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 26px;
        position: absolute;
        top: 25px;
        left: 74%;
    }
    
    .enjoy h2 { display: none;
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 7100px;
        left: 10%;
    }
    
    .enjoy h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 6100px;
        left: 11%;
        width: 79%;
    }
    
    .enjoy p { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top: 6160px;
        left: 10%;
    }
    
    
    .start-create button {
        width: 80%;
        height: 55px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #7C40FF;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 6340px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    /*Tree Container*/
    .tree-container { 
        width: 100%; 
        height: 300px;
        position: absolute;
        top: 6500px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 40px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        width: 95%;
        text-align: center;
        position: absolute;
        top: 110px;
        left: 2.5%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #8a8a8a;
        width: 80%;
        text-align: center;
        position: absolute;
        bottom: 10px;
        left: 10%;
        z-index: 5;
        cursor: default;
    }
    
    .mobile-footer { 
        position: absolute;
        top: 6800px;
        left: 0%;
    }
  }
  
  @media (min-width: 812px) and (max-width: 959.98px) and (orientation: landscape) {
    .line-1, .line-2, .line-3 {display: none;}

    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        font-weight: 800;
        position: absolute;
        top: 310px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        position: absolute;
        top: 360px;
        left: 10%;
        width: 80%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 470px;
        left: 10%;
        width: 30%;
        height: 60px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
         
    .main-more button:hover{
        background-color: #8d58ff; 
        color: #fff; 
    }
    
    .scroll-downs {
        display: none;
    }
    
    .mousey {
        display: none;
    }
    
    .scroller {
        display: none;
    }
     
    .Container {
        max-width: 300px;
        margin: 0 auto;
        padding: 0 15px;
        position: absolute;
        top: 180px;
        right: 20%;
        transform: scale(1.8);
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 100%;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 90px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 95px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 85px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 80px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 140px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 78px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 80px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 85px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 87px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 89px;
    }
    /*Izmir*/
    .marker-11 {
        display: none;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 80%;
        top: 95px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 82%;
        top:  97px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 155px;
    }
    
    .animated-dot {
        width: 5px;
        height: 5px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
        width: 5px;
        height: 5px;
        border-radius: 30px;
        position: absolute;
        left: 2px;
        top: 2px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 60px;
        pointer-events: none;
        height: 60px;
        border-radius: 200px;
        position: absolute;
        left: -25px;
        top: -25px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        display: none;
        width: 180px;
        height: 180px;
        pointer-events: none;
        border-radius: 200px;
        position: absolute;
        left: -83px;
        top: -80px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    
    .line { display: none;
        width: 2px;
        height: 6220px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 1080px;
        left: 10%;
        border-radius: 10px;
        z-index: 3;
    }
    
    .horizontal-line-1 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 470px;
        left: 24%;
    }
    
    .header-1 {  display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 500px;
        left: 10%;
        cursor: default;
    }
    
    .welcome { 
        background-color: #13171c;
        width: 100%;
        height: 600px;
        position: absolute;
        top: 550px;
        left: 00%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 00px;
        border-style: solid;
        border-width: 0px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 28px;
        position: absolute;
        top: 20px;
        left: 10%;
    }
    
    
    .welcome p { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        width: 80%;
        position: absolute;
        top: 80px;
        left: 10%;
        text-align: left;
    }
    
    .welcome h2 a{ 
        display: none;
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 14px;
        position: absolute;
        top: 240px;
        left: 10%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {  
        background-color: #24292f;
        width: 80%;
        height: 300px;
        position: absolute;
        top: 270px;
        right: 10%;
        border-radius: 5px;
        transition: all .3s ease-in-out;
        box-shadow:
        0px 0px 0.3px rgba(0, 0, 0, 0.02),
        0px 0px 0.8px rgba(0, 0, 0, 0.028),
        0px 0px 1.5px rgba(0, 0, 0, 0.035),
        0px 0px 2.7px rgba(0, 0, 0, 0.042),
        0px 0px 5px rgba(0, 0, 0, 0.05),
        0px 0px 12px rgba(0, 0, 0, 0.07)
      ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header { 
        background-color: #30363d;
        width: 100%;
        height: 60px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 400;
        position: absolute;
        top: -5px;
        left: 4%;
    }
    
    .we-made h2 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #747474;
        position: absolute;
        top: 330px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 14px;
    }
    
    .made-1 h1 { 
        width: 80%;
        position: absolute;
        top: 56px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }
    
    .made-1 span { 
        color: #259140;
        position: absolute;
        top: 70px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-1 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 120px;
        left: 0%;
    }
    
    .made-2 h1 { 
        width: 80%;
        position: absolute;
        top: 120px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-2 span { 
        color: #259140;
        position: absolute;
        top: 130px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-2 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 180px;
        left: 0%;
    }
    
    .made-3 h1 { 
        width: 80%;
        position: absolute;
        top: 176px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-3 span { 
        color: #259140;
        position: absolute;
        top: 190px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-3 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 240px;
        left: 0%;
    }
    
    .made-4 h1 { 
        width: 80%;
        position: absolute;
        top: 236px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-4 span { 
        color: #259140;
        position: absolute;
        top: 250px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-4 .m-line {
        display: none;
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 315px;
        left: 0%;
    }
    
    .horizontal-line-2 {  display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 1060px;
        left: 60%;
    }
    
    .header-2 { 
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        position: absolute;
        top: 1180px;
        left: 10%;
        cursor: default;
    }
    
    .offer-1 { 
        background-color: #13171c;
        width: 40%;
        height: 460px;
        position: absolute;
        top: 1280px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 40%;
        height: 460px;
        position: absolute;
        top: 1280px;
        left: 51%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-3 {
        background-color: #13171c;
        width: 40%;
        height: 460px;
        position: absolute;
        top: 1760px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-4 {
        background-color: #13171c;
        width: 40%;
        height: 460px;
        position: absolute;
        top: 1760px;
        left: 51%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-5 {
       display: none;
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 20%;
        position: absolute;
        top: 18px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 28%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 80px;
        left: -8%;
        cursor: pointer;
        text-align: left;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 90%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 14px;
        text-align: center;
        color: #ffffffad;
        position: absolute;
        top: 320px;
        left: 5%;
        cursor: pointer;
    }
    
    .horizontal-line-3 { display: none;  
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 2680px;
        left: 86%;
    }
    
    .header-3 { 
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        position: absolute;
        top: 2340px;
        left: 10%;
        cursor: default;
    }
    
    .develop-business {
        background-color: #13171c;
        width: 100%;
        height: 600px;
        position: absolute;
        top: 2450px;
        left: 0%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border: none;
    }
    
    .develop-business img { 
        width: 45%;
        border-radius: 10px;
        position: absolute;
        top: 100px;
        left: 5%;
    }
    
    .develop-business-1 img { 
        width: 8%;
        position: absolute;
        top: 45px;
        left: 53%;
    }
    
    .develop-business-1 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #fff;
        position: absolute;
        top: 45px;
        left: 60.5%;
    }
    
    .develop-business-1 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #a0a0a0;
        position: absolute;
        top: 86px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    .dbl-1 { 
        width: 2px;
        height: 100px;
        background-color: #999999;
        position: absolute;
        top: 100px;
        left: 56.5%;
    }
    
    .develop-business-2 img {  
        width: 8%;
        position: absolute;
        top: 200px;
        left: 53%;
    }
    
    .develop-business-2 h1 {  
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 205px;
        left: 60.5%;
    }
    
    .develop-business-2 p {  
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #a0a0a0;
        position: absolute;
        top: 240px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    .dbl-2 {  
        width: 2px;
        height: 130px;
        background-color: #999999;
        position: absolute;
        top: 260px;
        left: 56.5%;
    }
    
    .develop-business-3 img { 
        width: 7%;
        position: absolute;
        top: 390px;
        left: 53.5%;
    }
    
    .develop-business-3 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 380px;
        left: 60.5%;
        width: 35%;
    }
    
    .develop-business-3 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #a0a0a0;
        position: absolute;
        top: 440px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    
    .horizontal-line-4 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 3410px;
        left: 47%;
    }
    
    .header-4 {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        position: absolute;
        top: 3150px;
        left: 10%;
        cursor: default;
    }
    
    .web-services h2 { 
        font-family: monospace;
        font-size: 20px;
        color: #7C40FF;
        position: absolute;
        top: 3250px;
        left: 10%;
    }
    
    .web-services h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 3280px;
        left: 10%;
    }
    
    .web-services p { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top:  3440px;
        left: 10%;
        z-index: 2;
    }
    
    .web-services button { display: none;
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 3960px;
        left: 17%;
        width: 8%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }
    
    .search-for-domains input { 
        width: 80%;
        height: 65px;
        position: absolute;
        top: 3350px;
        left: 10%;
        border-radius: 10px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        border-style: solid;
        border-width: 1px;
        border-color: #8d58ff;
        padding-left: 15px;
        padding-right: 60px;
    }
    
    .search-for-domains button  { 
        background-color: #8d58ff;
        color: #fff; 
        text-align: center;
        font-size: 18px;
        position: absolute;
        top: 3357px;
        left: 82.5%;
        cursor: pointer;
        transition: all .3s ease-in-out;
        width: 50px;
        height: 50px;
        border-radius: 10px;
        border: none;
    }
    
    .search-for-domains span:hover {
        background-color: #9261fd;
    }
    
    .domain-image img { display: none;
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
    }
 
    
    .dot-com { display: none;}
    
    .dot-net { display: none;}
    
    .dot-org { display: none;}
    
    .dot-io { display: none;}
    
    .dot-site { display: none;}
    
    .dot-online { display: none;}
    
    
    .website-type h2 { 
        font-family: monospace;
        font-size: 20px;
        color: #7C40FF;
        position: absolute;
        top: 3600px;
        left: 10%;
    }
    
    .website-type h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 3630px;
        left: 10%;
    }
    
    .website-type p { display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  4420px;
        left: 17%;
    }
    
    .pack-1 { 
        background-color: #13171c;
        width: 43%;
        height: 480px;
        position: absolute;
        top: 3760px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-1 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 456px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-2 { 
        background-color: #13171c;
        width: 43%;
        height: 480px;
        position: absolute;
        top: 3760px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-2 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 456px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-3 { 
        background-color: #13171c;
        width: 43%;
        height: 480px;
        position: absolute;
        top: 4300px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-3 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 456px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-4 { 
        background-color: #13171c;
        width: 43%;
        height: 480px;
        position: absolute;
        top: 4300px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-4 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 456px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1.1);
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 15%;
        position: absolute;
        top: 17px;
        left: 5%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 60px;
        left: -2%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar { display: none;
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 100px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon {display: none;
        background-color: #7C40FF;
        width: 70px;
        height: 70px;
        position: absolute;
        top: 15px;
        left: 5%;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon img {display: none;
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 25px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 { 
        font-family: monospace;
        font-size: 20px;
        color: #7C40FF;
        position: absolute;
        top: 4900px;
        left: 10%;
    }
    
    .server-select h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 4930px;
        left: 10%;
    }
    
    .server-select p {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #ececec;
        position: absolute;
        top:  4980px;
        left: 10%;
    }
    
    .server-info {  
        font-family: monospace;
        font-size: 18px;
        color: #5c5c5c;
        position: absolute;
        top: 5900px;
        left: 10%;
        width: 80%;
        text-align: justify;
    }
    
    .service-point-1 {
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5100px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5100px;
        left: 50%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5300px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5300px;
        left: 50%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5500px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5500px;
        left: 50%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5700px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5700px;
        left: 50%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .server-info-2 {
        font-family: monospace;
        font-size: 18px;
        color: #5c5c5c;
        position: absolute;
        top: 5960px;
        left: 10%;
        width: 80%;
    }
    
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 56px;
        height: 38px;
        text-align: center;
        position: absolute;
        top: 20px;
        left: 8%;
        font-weight: 200;
        cursor: default;
        border-radius: 5px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 80%;
        text-align: left;
        font-size: 20px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 6px;
        left: 35%;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 70px;
        left: 15%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 22px;
        position: absolute;
        top: 90px;
        left: 21%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 60px;
        left: 52%;
        cursor: default;
        width: 45%;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 22px;
        position: absolute;
        top: 70px;
        right: 24%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 40px;
        position: absolute;
        top: 100px;
        left: 45%;
    }
    
    .enjoy h2 { display: none;
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 7100px;
        left: 10%;
    }
    
    .enjoy h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 6060px;
        left: 11%;
        width: 79%;
    }
    
    .enjoy p { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top: 6120px;
        left: 10%;
    }
    
    
    .start-create button {
        width: 80%;
        height: 65px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #7C40FF;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 6310px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    /*Tree Container*/
    .tree-container { 
        width: 100%; 
        height: 340px;
        position: absolute;
        top: 6500px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 40px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        width: 95%;
        text-align: center;
        position: absolute;
        top: 110px;
        left: 2.5%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #8a8a8a;
        width: 80%;
        text-align: center;
        position: absolute;
        bottom: 10px;
        left: 10%;
        z-index: 5;
        cursor: default;
    }
    
    .mobile-footer { 
        position: absolute;
        top: 6840px;
        left: 0%;
    }
  }
  
  @media (min-width: 960px) and (max-width: 999.98px) and (orientation: landscape) {
   
    .line-1, .line-2, .line-3 {display: none;}
    
    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        font-weight: 800;
        position: absolute;
        top: 310px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        position: absolute;
        top: 360px;
        left: 10%;
        width: 80%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 470px;
        left: 10%;
        width: 30%;
        height: 60px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
         
    .main-more button:hover{
        background-color: #8d58ff; 
        color: #fff; 
    }
    
    .scroll-downs {
        display: none;
    }
    
    .mousey {
        display: none;
    }
    
    .scroller {
        display: none;
    }
     
    .Container {
        max-width: 300px;
        margin: 0 auto;
        padding: 0 15px;
        position: absolute;
        top: 180px;
        right: 20%;
        transform: scale(1.8);
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 100%;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 90px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 95px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 85px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 80px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 140px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 78px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 80px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 85px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 87px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 89px;
    }
    /*Izmir*/
    .marker-11 {
        display: none;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 80%;
        top: 95px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 82%;
        top:  97px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 155px;
    }
    
    .animated-dot {
        width: 5px;
        height: 5px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
        width: 5px;
        height: 5px;
        border-radius: 30px;
        position: absolute;
        left: 2px;
        top: 2px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 60px;
        pointer-events: none;
        height: 60px;
        border-radius: 200px;
        position: absolute;
        left: -25px;
        top: -25px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        display: none;
        width: 180px;
        height: 180px;
        pointer-events: none;
        border-radius: 200px;
        position: absolute;
        left: -83px;
        top: -80px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    
    .line { display: none;
        width: 2px;
        height: 6220px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 1080px;
        left: 10%;
        border-radius: 10px;
        z-index: 3;
    }
    
    .horizontal-line-1 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 470px;
        left: 24%;
    }
    
    .header-1 {  display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 500px;
        left: 10%;
        cursor: default;
    }
    
    .welcome { 
        background-color: #13171c;
        width: 100%;
        height: 600px;
        position: absolute;
        top: 550px;
        left: 00%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 00px;
        border-style: solid;
        border-width: 0px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 28px;
        position: absolute;
        top: 20px;
        left: 10%;
    }
    
    
    .welcome p { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        width: 80%;
        position: absolute;
        top: 80px;
        left: 10%;
        text-align: left;
    }
    
    .welcome h2 a{ 
        display: none;
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 14px;
        position: absolute;
        top: 240px;
        left: 10%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {  
        background-color: #24292f;
        width: 80%;
        height: 300px;
        position: absolute;
        top: 270px;
        right: 10%;
        border-radius: 5px;
        transition: all .3s ease-in-out;
        box-shadow:
        0px 0px 0.3px rgba(0, 0, 0, 0.02),
        0px 0px 0.8px rgba(0, 0, 0, 0.028),
        0px 0px 1.5px rgba(0, 0, 0, 0.035),
        0px 0px 2.7px rgba(0, 0, 0, 0.042),
        0px 0px 5px rgba(0, 0, 0, 0.05),
        0px 0px 12px rgba(0, 0, 0, 0.07)
      ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header { 
        background-color: #30363d;
        width: 100%;
        height: 60px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 400;
        position: absolute;
        top: -5px;
        left: 4%;
    }
    
    .we-made h2 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #747474;
        position: absolute;
        top: 330px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 14px;
    }
    
    .made-1 h1 { 
        width: 80%;
        position: absolute;
        top: 56px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }
    
    .made-1 span { 
        color: #259140;
        position: absolute;
        top: 70px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-1 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 120px;
        left: 0%;
    }
    
    .made-2 h1 { 
        width: 80%;
        position: absolute;
        top: 120px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-2 span { 
        color: #259140;
        position: absolute;
        top: 130px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-2 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 180px;
        left: 0%;
    }
    
    .made-3 h1 { 
        width: 80%;
        position: absolute;
        top: 176px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-3 span { 
        color: #259140;
        position: absolute;
        top: 190px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-3 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 240px;
        left: 0%;
    }
    
    .made-4 h1 { 
        width: 80%;
        position: absolute;
        top: 236px;
        left: 10%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-4 span { 
        color: #259140;
        position: absolute;
        top: 250px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-4 .m-line {
        display: none;
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 315px;
        left: 0%;
    }
    
    .horizontal-line-2 {  display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 1060px;
        left: 60%;
    }
    
    .header-2 { 
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        position: absolute;
        top: 1180px;
        left: 10%;
        cursor: default;
    }
    
    .offer-1 { 
        background-color: #13171c;
        width: 40%;
        height: 460px;
        position: absolute;
        top: 1280px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 40%;
        height: 460px;
        position: absolute;
        top: 1280px;
        left: 51%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-3 {
        background-color: #13171c;
        width: 40%;
        height: 460px;
        position: absolute;
        top: 1760px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-4 {
        background-color: #13171c;
        width: 40%;
        height: 460px;
        position: absolute;
        top: 1760px;
        left: 51%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-5 {
       display: none;
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 20%;
        position: absolute;
        top: 18px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 28%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 80px;
        left: -8%;
        cursor: pointer;
        text-align: left;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 90%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 14px;
        text-align: center;
        color: #ffffffad;
        position: absolute;
        top: 320px;
        left: 5%;
        cursor: pointer;
    }
    
    .horizontal-line-3 { display: none;  
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 2680px;
        left: 86%;
    }
    
    .header-3 { 
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        position: absolute;
        top: 2340px;
        left: 10%;
        cursor: default;
    }
    
    .develop-business {
        background-color: #13171c;
        width: 100%;
        height: 600px;
        position: absolute;
        top: 2450px;
        left: 0%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border: none;
    }
    
    .develop-business img { 
        width: 45%;
        border-radius: 10px;
        position: absolute;
        top: 100px;
        left: 5%;
    }
    
    .develop-business-1 img { 
        width: 8%;
        position: absolute;
        top: 45px;
        left: 53%;
    }
    
    .develop-business-1 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #fff;
        position: absolute;
        top: 45px;
        left: 60.5%;
    }
    
    .develop-business-1 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #a0a0a0;
        position: absolute;
        top: 86px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    .dbl-1 { 
        width: 2px;
        height: 100px;
        background-color: #999999;
        position: absolute;
        top: 100px;
        left: 56.5%;
    }
    
    .develop-business-2 img {  
        width: 8%;
        position: absolute;
        top: 200px;
        left: 53%;
    }
    
    .develop-business-2 h1 {  
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 205px;
        left: 60.5%;
    }
    
    .develop-business-2 p {  
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #a0a0a0;
        position: absolute;
        top: 240px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    .dbl-2 {  
        width: 2px;
        height: 130px;
        background-color: #999999;
        position: absolute;
        top: 260px;
        left: 56.5%;
    }
    
    .develop-business-3 img { 
        width: 7%;
        position: absolute;
        top: 390px;
        left: 53.5%;
    }
    
    .develop-business-3 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 380px;
        left: 60.5%;
        width: 35%;
    }
    
    .develop-business-3 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #a0a0a0;
        position: absolute;
        top: 440px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    
    .horizontal-line-4 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 3410px;
        left: 47%;
    }
    
    .header-4 {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        position: absolute;
        top: 3150px;
        left: 10%;
        cursor: default;
    }
    
    .web-services h2 { 
        font-family: monospace;
        font-size: 20px;
        color: #7C40FF;
        position: absolute;
        top: 3250px;
        left: 10%;
    }
    
    .web-services h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 3280px;
        left: 10%;
    }
    
    .web-services p { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top:  3440px;
        left: 10%;
        z-index: 2;
    }
    
    .web-services button { display: none;
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 3960px;
        left: 17%;
        width: 8%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }
    
    .search-for-domains input { 
        width: 80%;
        height: 65px;
        position: absolute;
        top: 3350px;
        left: 10%;
        border-radius: 10px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        border-style: solid;
        border-width: 1px;
        border-color: #8d58ff;
        padding-left: 15px;
        padding-right: 60px;
    }
    
    .search-for-domains button  { 
        background-color: #8d58ff;
        color: #fff; 
        text-align: center;
        font-size: 18px;
        position: absolute;
        top: 3357px;
        left: 82.5%;
        cursor: pointer;
        transition: all .3s ease-in-out;
        width: 50px;
        height: 50px;
        border-radius: 10px;
        border: none;
    }
    
    .search-for-domains span:hover {
        background-color: #9261fd;
    }
    
    .domain-image img { display: none;
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
    }
 
    
    .dot-com { display: none;}
    
    .dot-net { display: none;}
    
    .dot-org { display: none;}
    
    .dot-io { display: none;}
    
    .dot-site { display: none;}
    
    .dot-online { display: none;}
    
    
    .website-type h2 { 
        font-family: monospace;
        font-size: 20px;
        color: #7C40FF;
        position: absolute;
        top: 3600px;
        left: 10%;
    }
    
    .website-type h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 3630px;
        left: 10%;
    }
    
    .website-type p { display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  4420px;
        left: 17%;
    }
    
    .pack-1 { 
        background-color: #13171c;
        width: 43%;
        height: 480px;
        position: absolute;
        top: 3760px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-1 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 456px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-2 { 
        background-color: #13171c;
        width: 43%;
        height: 480px;
        position: absolute;
        top: 3760px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-2 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 456px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-3 { 
        background-color: #13171c;
        width: 43%;
        height: 480px;
        position: absolute;
        top: 4300px;
        left: 5%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-3 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 456px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-4 { 
        background-color: #13171c;
        width: 43%;
        height: 480px;
        position: absolute;
        top: 4300px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-4 button {
        width: 60%;
        height: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 16px;
        color: #fff;
        position: absolute;
        top: 456px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1.1);
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 15%;
        position: absolute;
        top: 17px;
        left: 5%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 60px;
        left: -2%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar { display: none;
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 100px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon {display: none;
        background-color: #7C40FF;
        width: 70px;
        height: 70px;
        position: absolute;
        top: 15px;
        left: 5%;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon img {display: none;
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 25px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 { 
        font-family: monospace;
        font-size: 20px;
        color: #7C40FF;
        position: absolute;
        top: 4900px;
        left: 10%;
    }
    
    .server-select h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 4930px;
        left: 10%;
    }
    
    .server-select p {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #ececec;
        position: absolute;
        top:  4980px;
        left: 10%;
    }
    
    .server-info {  
        font-family: monospace;
        font-size: 18px;
        color: #5c5c5c;
        position: absolute;
        top: 5900px;
        left: 10%;
        width: 80%;
        text-align: justify;
    }
    
    .service-point-1 {
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5100px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5100px;
        left: 50%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5300px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5300px;
        left: 50%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5500px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5500px;
        left: 50%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5700px;
        left: 10%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 { 
        background-color: #13171c;
        width: 36%;
        height: 170px;
        position: absolute;
        top: 5700px;
        left: 50%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .server-info-2 {
        font-family: monospace;
        font-size: 18px;
        color: #5c5c5c;
        position: absolute;
        top: 5960px;
        left: 10%;
        width: 80%;
    }
    
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 56px;
        height: 38px;
        text-align: center;
        position: absolute;
        top: 20px;
        left: 8%;
        font-weight: 200;
        cursor: default;
        border-radius: 5px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 80%;
        text-align: left;
        font-size: 20px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 6px;
        left: 35%;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 70px;
        left: 15%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 22px;
        position: absolute;
        top: 90px;
        left: 21%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 60px;
        left: 52%;
        cursor: default;
        width: 45%;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 22px;
        position: absolute;
        top: 70px;
        right: 24%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 40px;
        position: absolute;
        top: 100px;
        left: 45%;
    }
    
    .enjoy h2 { display: none;
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 7100px;
        left: 10%;
    }
    
    .enjoy h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 6060px;
        left: 11%;
        width: 79%;
    }
    
    .enjoy p { 
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top: 6120px;
        left: 10%;
    }
    
    
    .start-create button {
        width: 80%;
        height: 65px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #7C40FF;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 6310px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    /*Tree Container*/
    .tree-container { 
        width: 100%; 
        height: 340px;
        position: absolute;
        top: 6500px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 40px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        width: 95%;
        text-align: center;
        position: absolute;
        top: 110px;
        left: 2.5%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #8a8a8a;
        width: 80%;
        text-align: center;
        position: absolute;
        bottom: 10px;
        left: 10%;
        z-index: 5;
        cursor: default;
    }
    
    .mobile-footer { 
        position: absolute;
        top: 6840px;
        left: 0%;
    }
  }
  
  @media (min-width: 1000px) and (max-width: 1200px) and (orientation: landscape) {
    .line-1, .line-2, .line-3 {display: none;}

    .main-header {
        color: #ffff;
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        font-weight: 800;
        position: absolute;
        top: 300px;
        left: 10%;
        cursor: default;
    }
    
    .main-title {
        color: #5c5c5c;
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        position: absolute;
        top: 350px;
        left: 10%;
        width: 40%;
        cursor: default;
    }
    
    .main-more button {
        background-color: #11151a;
        color: #7C40FF;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 450px;
        left: 10%;
        width: 25%;
        height: 70px;
        cursor: pointer;
        transition: all .3s ease-in-out;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
         
    .main-more button:hover{
        background-color: #8d58ff; 
        color: #fff; 
    }
    
    .scroll-downs {
        display: none;
    }
    
    .mousey {
        display: none;
    }
    
    .scroller {
        display: none;
    }
     
    .Container {
        max-width: 300px;
        margin: 0 auto;
        padding: 0 15px;
        position: absolute;
        top: 240px;
        right: 20%;
        transform: scale(2.2);
    }
    
    .Map-container {
        position: relative;
    }
    
    #Map-svg {
        width: 100%;
        height: auto;
    }
    
    /*Los Angeles */
    .marker-1 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 15%;
        top: 90px;
    }
    /*New York*/
    .marker-2 { 
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 26%;
        top: 95px;
    }
    /*Chicago*/
    .marker-3 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 23%;
        top: 85px;
    }
    /*Toronto*/
    .marker-4 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 25%;
        top: 80px;
    }
    /*Brasilia*/
    .marker-5 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 32%;
        top: 140px;
    }
    /*London*/
    .marker-6 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 46%;
        top: 78px;
    }
    /*Amsterdam*/
    .marker-7 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 48%;
        top: 80px;
    }
    /*Berlin*/
    .marker-8 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 50%;
        top: 85px;
    }
    /*Munich*/
    .marker-9 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 49%;
        top: 87px;
    }
    /*Istanbul*/
    .marker-10 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 54%;
        top: 89px;
    }
    /*Izmir*/
    .marker-11 {
        display: none;
    }
    /*Seoul*/
    .marker-12 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 80%;
        top: 95px;
    }
    /*Tokyo*/
    .marker-13 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 82%;
        top:  97px;
    }
    /*Sydney*/
    .marker-14 {
        position: absolute;
        padding-left: 0px;
        cursor: pointer;
        left: 85%;
        top: 155px;
    }
    
    .animated-dot {
        width: 5px;
        height: 5px;
        position: relative;
        background-color: transparent;
        border-radius: 50%;
    }
    
    .animated-dot .middle-dot {
        width: 5px;
        height: 5px;
        border-radius: 30px;
        position: absolute;
        left: 2px;
        top: 2px;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
        background-color: #b4b4b4;
    }
    
    .animated-dot .signal {
        width: 60px;
        pointer-events: none;
        height: 60px;
        border-radius: 200px;
        position: absolute;
        left: -25px;
        top: -25px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 0.78s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    .animated-dot .signal2 {
        display: none;
        width: 180px;
        height: 180px;
        pointer-events: none;
        border-radius: 200px;
        position: absolute;
        left: -83px;
        top: -80px;
        opacity: 0;
        -webkit-animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        animation: animationSignal cubic-bezier(0,.55,.55,1) 2s;
        transform-origin: 50% 50%;
        animation-fill-mode: forwards;
        animation-delay: 1s;
        animation-iteration-count: infinite;
        background-color: #7C40FF;
    }
    
    @-webkit-keyframes animationSignal {
        0% {
            opacity: 0;
            transform: scale(0.00)
        }
    
        1% {
            opacity: 0.25
        }
    
        20% {
            opacity: 0.25
        }
    
        60% {
            transform: scale(1);
            opacity: 0
        }
    }
    
    @-webkit-keyframes animationSignal2 {
        0% {
            opacity: 0
        }
    
        1% {
            opacity: 0.2
        }
    
        20% {
            opacity: 0.17
        }
    
        60% {
            opacity: 0
        }
    }
    
    
    .line { display: none;
        width: 2px;
        height: 6220px;
        background-image: linear-gradient(to bottom, #ffffff , #7C40FF);
        position: absolute;
        top: 1080px;
        left: 10%;
        border-radius: 10px;
        z-index: 3;
    }
    
    .horizontal-line-1 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 470px;
        left: 24%;
    }
    
    .header-1 {  display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        position: absolute;
        top: 500px;
        left: 10%;
        cursor: default;
    }
    
    .welcome { 
        background-color: #13171c;
        width: 100%;
        height: 400px;
        position: absolute;
        top: 550px;
        left: 00%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border-radius: 00px;
        border-style: solid;
        border-width: 0px;
        border-color: #2a2a2a;
    }
    
    .welcome h1 { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 28px;
        position: absolute;
        top: 20px;
        left: 10%;
    }
    
    
    .welcome p { 
        color: #fff;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        width: 47%;
        position: absolute;
        top: 80px;
        left: 10%;
        text-align: left;
    }
    
    .welcome h2 a{ 
        display: none;
        color: #777777;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        font-size: 14px;
        position: absolute;
        top: 240px;
        left: 10%;
        text-decoration: none;
        transition: all .3s ease-in-out;
    }
    
    .welcome h2 a:hover {
        left: 5%;
        color: #fff;
    }
    
    .we-made {  
        background-color: #24292f;
        width: 40%;
        height: 300px;
        position: absolute;
        top: 100px;
        right: 1%;
        border-radius: 5px;
        transition: all .3s ease-in-out;
        box-shadow:
        0px 0px 0.3px rgba(0, 0, 0, 0.02),
        0px 0px 0.8px rgba(0, 0, 0, 0.028),
        0px 0px 1.5px rgba(0, 0, 0, 0.035),
        0px 0px 2.7px rgba(0, 0, 0, 0.042),
        0px 0px 5px rgba(0, 0, 0, 0.05),
        0px 0px 12px rgba(0, 0, 0, 0.07)
      ;
    }
    
    .we-made:hover {
        transform: scale(1.1);
        border-bottom-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header { 
        background-color: #30363d;
        width: 100%;
        height: 60px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    
    .we-made-header h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 400;
        position: absolute;
        top: -5px;
        left: 4%;
    }
    
    .we-made h2 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        color: #747474;
        position: absolute;
        top: 330px;
        right: 5%;
        font-weight: 100;
    }
    
    .we-made h2 span {
        font-size: 14px;
    }
    
    .made-1 h1 { 
        width: 80%;
        position: absolute;
        top: 56px;
        left: 7%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }
    
    .made-1 span { 
        color: #259140;
        position: absolute;
        top: 70px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-1 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 120px;
        left: 0%;
    }
    
    .made-2 h1 { 
        width: 80%;
        position: absolute;
        top: 120px;
        left: 7%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-2 span { 
        color: #259140;
        position: absolute;
        top: 130px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-2 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 180px;
        left: 0%;
    }
    
    .made-3 h1 { 
        width: 80%;
        position: absolute;
        top: 176px;
        left: 7%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-3 span { 
        color: #259140;
        position: absolute;
        top: 190px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-3 .m-line { 
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 240px;
        left: 0%;
    }
    
    .made-4 h1 { 
        width: 80%;
        position: absolute;
        top: 236px;
        left: 7%;
        transition: all .3s ease-in-out;
        color: #cfcfcf;
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 100;
    }

    .made-4 span { 
        color: #259140;
        position: absolute;
        top: 250px;
        right: 5%;
        font-size: 40px;
    }
    
    .made-4 .m-line {
        display: none;
        width: 100%;
        height: 1px;
        background-color: #3b3b3b;
        position: absolute;
        top: 315px;
        left: 0%;
    }
    
    .horizontal-line-2 {  display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 1060px;
        left: 60%;
    }
    
    .header-2 { 
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        color: #fff;
        position: absolute;
        top: 1000px;
        left: 10%;
        cursor: default;
    }
    
    .offer-1 { 
        background-color: #13171c;
        width: 40%;
        height: 550px;
        position: absolute;
        top: 1120px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-2 { 
        background-color: #13171c;
        width: 40%;
        height: 550px;
        position: absolute;
        top: 1120px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-3 { 
        background-color: #13171c;
        width: 40%;
        height: 550px;
        position: absolute;
        top: 1700px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-4 { 
        background-color: #13171c;
        width: 40%;
        height: 550px;
        position: absolute;
        top: 1700px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .offer-5 {
       display: none;
    }
    
    .offer-1:hover, .offer-2:hover, .offer-3:hover, .offer-4:hover, .offer-5:hover {
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .offer-1 img, .offer-2 img, .offer-3 img, .offer-4 img, .offer-5 img {
        width: 20%;
        position: absolute;
        top: 18px;
        left: 5%;
        cursor: pointer;
    }
    
    .offer-1 h1, .offer-2 h1, .offer-3 h1, .offer-4 h1, .offer-5 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        position: absolute;
        top: 20px;
        left: 28%;
        cursor: pointer;
    }
    
    .offer-1 ul, .offer-2 ul, .offer-3 ul, .offer-4 ul, .offer-5 ul {
        position: absolute;
        top: 110px;
        left: 0%;
        cursor: pointer;
        text-align: left;
    }
    
    .offer-1 ul li, .offer-2 ul li, .offer-3 ul li, .offer-4 ul li, .offer-5 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .offer-1 ul li span, .offer-2 ul li span, .offer-3 ul li span, .offer-4 ul li span, .offer-5 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .offer-1 p, .offer-2 p, .offer-3 p, .offer-4 p, .offer-5 p {
        width: 90%;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 18px;
        text-align: center;
        color: #ffffffad;
        position: absolute;
        top: 400px;
        left: 5%;
        cursor: pointer;
    }
    
    .horizontal-line-3 { display: none;  
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 2680px;
        left: 86%;
    }
    
    .header-3 { 
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        color: #fff;
        position: absolute;
        top: 2340px;
        left: 10%;
        cursor: default;
    }
    
    .develop-business {
        background-color: #13171c;
        width: 100%;
        height: 600px;
        position: absolute;
        top: 2450px;
        left: 0%;
        text-align: justify;
        cursor: default;
        transition: all .3s ease-in-out;
        border: none;
    }
    
    .develop-business img { 
        width: 45%;
        border-radius: 10px;
        position: absolute;
        top: 100px;
        left: 5%;
    }
    
    .develop-business-1 img { 
        width: 8%;
        position: absolute;
        top: 45px;
        left: 53%;
    }
    
    .develop-business-1 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 45px;
        left: 60.5%;
    }
    
    .develop-business-1 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #a0a0a0;
        position: absolute;
        top: 86px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    .dbl-1 { 
        width: 2px;
        height: 100px;
        background-color: #999999;
        position: absolute;
        top: 100px;
        left: 56.5%;
    }
    
    .develop-business-2 img {  
        width: 8%;
        position: absolute;
        top: 200px;
        left: 53%;
    }
    
    .develop-business-2 h1 {  
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 205px;
        left: 60.5%;
    }
    
    .develop-business-2 p {  
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #a0a0a0;
        position: absolute;
        top: 240px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    .dbl-2 {  
        width: 2px;
        height: 130px;
        background-color: #999999;
        position: absolute;
        top: 260px;
        left: 56.5%;
    }
    
    .develop-business-3 img { 
        width: 7%;
        position: absolute;
        top: 390px;
        left: 53.5%;
    }
    
    .develop-business-3 h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 380px;
        left: 60.5%;
        width: 35%;
    }
    
    .develop-business-3 p { 
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #a0a0a0;
        position: absolute;
        top: 440px;
        left: 61%;
        width: 35%;
        text-align: left;
    }
    
    
    .horizontal-line-4 { display: none;
        background-color: #fff;
        width: 14px;
        height: 2px;
        position: absolute;
        top: 3410px;
        left: 47%;
    }
    
    .header-4 {
        font-family: 'Poppins', sans-serif;
        font-size: 30px;
        color: #fff;
        position: absolute;
        top: 3150px;
        left: 10%;
        cursor: default;
    }
    
    .web-services h2 { 
        font-family: monospace;
        font-size: 22px;
        color: #7C40FF;
        position: absolute;
        top: 3250px;
        left: 10%;
    }
    
    .web-services h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        position: absolute;
        top: 3280px;
        left: 10%;
    }
    
    .web-services p { 
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top:  3440px;
        left: 10%;
        z-index: 2;
    }
    
    .web-services button { display: none;
        background-color: #7C40FF;
        color: #ffff;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 3960px;
        left: 17%;
        width: 8%;
        height: 50px;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    
    .web-services button:hover {
        background-color: #8d58ff;
    }
    
    .search-for-domains input { 
        width: 80%;
        height: 80px;
        position: absolute;
        top: 3350px;
        left: 10%;
        border-radius: 10px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        border-style: solid;
        border-width: 1px;
        border-color: #8d58ff;
        padding-left: 15px;
        padding-right: 60px;
    }
    
    .search-for-domains button  { 
        background-color: #8d58ff;
        color: #fff; 
        text-align: center;
        font-size: 18px;
        position: absolute;
        top: 3360px;
        left: 82.5%;
        cursor: pointer;
        transition: all .3s ease-in-out;
        width: 60px;
        height: 60px;
        border-radius: 10px;
        border: none;
    }
    
    .search-for-domains span:hover {
        background-color: #9261fd;
    }
    
    .domain-image img { display: none;
        position: absolute;
        top: 30px;
        left: 5%;
        width: 90%;
    }
 
    
    .dot-com { display: none;}
    
    .dot-net { display: none;}
    
    .dot-org { display: none;}
    
    .dot-io { display: none;}
    
    .dot-site { display: none;}
    
    .dot-online { display: none;}
    
    
    .website-type h2 { 
        font-family: monospace;
        font-size: 22px;
        color: #7C40FF;
        position: absolute;
        top: 3600px;
        left: 10%;
    }
    
    .website-type h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        position: absolute;
        top: 3630px;
        left: 10%;
    }
    
    .website-type p { display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #eeeeee;
        position: absolute;
        top:  4420px;
        left: 17%;
    }
    
    .pack-1 { 
        background-color: #13171c;
        width: 40%;
        height: 560px;
        position: absolute;
        top: 3760px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-1 button {
        width: 60%;
        height: 60px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 530px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-2 { 
        background-color: #13171c;
        width: 40%;
        height: 560px;
        position: absolute;
        top: 3760px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-2 button {
        width: 60%;
        height: 60px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 530px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-3 { 
        background-color: #13171c;
        width: 40%;
        height: 560px;
        position: absolute;
        top: 4400px;
        left: 9%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-3 button {
        width: 60%;
        height: 60px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 530px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-4 { 
        background-color: #13171c;
        width: 40%;
        height: 560px;
        position: absolute;
        top: 4400px;
        left: 52%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }

    .pack-4 button {
        width: 60%;
        height: 60px;
        font-family: 'Poppins', sans-serif;
        font-weight: 100;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 530px;
        left: 20%;
        cursor: pointer;
        text-align: center;
        background-color: #13171c;
        border: solid;
        border-width: 1px;
        border-color: #00ff40;
        border-radius: 5px;
        transition: all .3s ease-in-out;
    }
    
    .pack-1:hover, .pack-2:hover, .pack-3:hover, .pack-4:hover {
        transform: scale(1.1);
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .pack-1 img, .pack-2 img, .pack-3 img, .pack-4 img {
        width: 15%;
        position: absolute;
        top: 17px;
        left: 5%;
        cursor: pointer;
    }
    
    .pack-1 h1, .pack-2 h1, .pack-3 h1, .pack-4 h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        color: #fff;
        position: absolute;
        top: 15px;
        left: 22%;
        cursor: pointer;
    }
    
    .pack-1 ul, .pack-2 ul, .pack-3 ul, .pack-4 ul {
        position: absolute;
        top: 80px;
        left: 0%;
        cursor: pointer;
    }
    
    .pack-1 ul li, .pack-2 ul li, .pack-3 ul li, .pack-4 ul li {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        list-style: none;
        padding-top: 5px;
        cursor: pointer;
    }
    
    .pack-1 ul li span, .pack-2 ul li span, .pack-3 ul li span, .pack-4 ul li span {
        color: #7C40FF;
        font-size: 18px;
    }
    
    .pack-1:hover button, .pack-2:hover button, .pack-3:hover button, .pack-4:hover button{
        background-color: #00dd37;
        color: #fff;
    }
    
    .info-bar { display: none;
        background: linear-gradient(to right, #13171c, #1b2027);
        width: 100%;
        height: 100px;
        position: absolute;
        bottom: 0px;
        left: 0px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon {display: none;
        background-color: #7C40FF;
        width: 70px;
        height: 70px;
        position: absolute;
        top: 15px;
        left: 5%;
        border-radius: 10px;
        cursor: pointer;
    }
    
    .info-bar-icon img {display: none;
        width: 70%;
        position: absolute;
        top: 15%;
        left: 15%;
        cursor: pointer;
    }
    
    .info-bar h1 {display: none;
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: 25px;
        left: 30%;
        cursor: default;
    }
    
    .server-select h2 { 
        font-family: monospace;
        font-size: 22px;
        color: #7C40FF;
        position: absolute;
        top: 5100px;
        left: 10%;
    }
    
    .server-select h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        color: #fff;
        position: absolute;
        top: 5160px;
        left: 10%;
    }
    
    .server-select p {
        font-family: 'Poppins', sans-serif;
        font-size: 22px;
        color: #ececec;
        position: absolute;
        top:  5220px;
        left: 10%;
    }
    
    .server-info {  display: none;
        font-family: monospace;
        font-size: 18px;
        color: #5c5c5c;
        position: absolute;
        top: 5900px;
        left: 10%;
        width: 80%;
        text-align: justify;
    }
    
    .service-point-1 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 5380px;
        left: 7%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-2 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 5380px;
        left: 37%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-3 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 5380px;
        left: 67%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-4 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 5720px;
        left: 7%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-5 {  
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 5720px;
        left: 37%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-6 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 5720px;
        left: 67%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-7 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 6060px;
        left: 21%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .service-point-8 { 
        background-color: #13171c;
        width: 27%;
        height: 300px;
        position: absolute;
        top: 6060px;
        left: 51%;
        border-radius: 10px;
        border-style: solid;
        border-width: 1px;
        border-color: #2a2a2a;
    }
    
    .server-info-2 { display: none;
        font-family: monospace;
        font-size: 18px;
        color: #5c5c5c;
        position: absolute;
        top: 5960px;
        left: 10%;
        width: 80%;
    }
    
    .service-point-1 img, 
    .service-point-2 img, 
    .service-point-3 img,
    .service-point-4 img,
    .service-point-5 img,
    .service-point-6 img, 
    .service-point-7 img,
    .service-point-8 img
     {
        width: 80px;
        height: 56px;
        text-align: center;
        position: absolute;
        top: 20px;
        left: 35%;
        font-weight: 200;
        cursor: default;
        border-radius: 5px;
    }
    
    .service-point-1 h2, 
    .service-point-2 h2, 
    .service-point-3 h2,
    .service-point-4 h2,
    .service-point-5 h2,
    .service-point-6 h2, 
    .service-point-7 h2,
    .service-point-8 h2
     {
        width: 80%;
        text-align: center;
        font-size: 24px;
        font-family: 'Poppins', sans-serif;
        color: #fff;
        position: absolute;
        top: 80px;
        left: 10%;
        font-weight: 200;
        cursor: default;
    }
    
    .service-point-1 h3, 
    .service-point-2 h3, 
    .service-point-3 h3,
    .service-point-4 h3,
    .service-point-5 h3,
    .service-point-6 h3, 
    .service-point-7 h3,
    .service-point-8 h3
    {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 133px;
        left: 13%;
        cursor: default;
    }
    
    .service-point-1 h4, 
    .service-point-2 h4, 
    .service-point-3 h4,
    .service-point-4 h4,
    .service-point-5 h4,
    .service-point-6 h4, 
    .service-point-7 h4,
    .service-point-8 h4
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 40px;
        position: absolute;
        top: 150px;
        left: 21%;
        cursor: default;
    }
    
    .service-point-1 h5, 
    .service-point-2 h5, 
    .service-point-3 h5,
    .service-point-4 h5,
    .service-point-5 h5,
    .service-point-6 h5, 
    .service-point-7 h5,
    .service-point-8 h5
    {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        color: #fff;
        font-weight: 100;
        position: absolute;
        top: 120px;
        left: 45%;
        cursor: default;
        width: 55%;
    }
    
    .service-point-1 h6, 
    .service-point-2 h6, 
    .service-point-3 h6,
    .service-point-4 h6,
    .service-point-5 h6,
    .service-point-6 h6, 
    .service-point-7 h6,
    .service-point-8 h6
    {
        font-family: monospace;
        color: #7C40FF;
        font-size: 40px;
        position: absolute;
        top: 110px;
        right: 20%;
        cursor: default;
    }
    
    .service-point-line {
        width: 0.5%;
        background-color: #8a8a8a;
        height: 60px;
        position: absolute;
        top: 200px;
        left: 45%;
    }
    
    .enjoy h2 { display: none;
        font-family: monospace;
        font-size: 14px;
        color: #7C40FF;
        position: absolute;
        top: 7100px;
        left: 10%;
    }
    
    .enjoy h1 { 
        font-family: 'Poppins', sans-serif;
        font-size: 34px;
        color: #fff;
        position: absolute;
        top: 6500px;
        left: 11%;
        width: 79%;
    }
    
    .enjoy p { 
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #ececec;
        width: 80%;
        position: absolute;
        top: 6600px;
        left: 10%;
    }
    
    
    .start-create button {
        width: 80%;
        height: 90px;
        background-color: transparent;
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #7C40FF;
        border: none;
        border-radius: 5px;
        position: absolute;
        top: 6870px;
        left: 10%;
        transition: all .3s ease-in-out;
        cursor: pointer;
        box-shadow: 1px 1px 2px black, 0 0 25px #7C40FF, 0 0 5px #7C40FF;
    }
    
    .start-create button:hover {
        background-color: #8d58ff;
        color: #fff;
    }
    
    /*Tree Container*/
    .tree-container { 
        width: 100%; 
        height: 400px;
        position: absolute;
        top: 7200px;
        left: 0%;
        z-index: 3;
    }
    
    .tree-container img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 3;
    }
    
    .tree-container-layer {
        background-color: #000;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 4;
        opacity: 0.25;
    }
    
    .tree-container h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        color: #fff;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 40px;
        left: 0%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #fff;
        width: 95%;
        text-align: center;
        position: absolute;
        top: 110px;
        left: 2.5%;
        z-index: 5;
        cursor: default;
    }
    
    .tree-container p2 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #8a8a8a;
        width: 80%;
        text-align: center;
        position: absolute;
        bottom: 10px;
        left: 10%;
        z-index: 5;
        cursor: default;
    }
    
    .mobile-footer { 
        position: absolute;
        top: 7600px;
        left: 0%;
    }
  }