/* fonts link  */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: "Roboto", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* font-family: "Playfair Display", serif; */



:root {
    --primary-font: "Roboto", sans-serif;
    --heading-font: "Playfair Display", serif;
    --primary-color: #0e161a;
    --yellow: #FF8D00;
    --blue: #0182C3;
}

::selection {
    background-color: #ff8c008d;
}

body {
    color: var(--primary-color);
}

.toTop {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #0e161a;
    color: var(--yellow);
    position: fixed;
    bottom: 50px;
    right: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 20px #0e161a62;
    animation: showSmooth 1s ease-in-out 1 forwards;
    z-index: 1000;
}

@keyframes showSmooth {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



header {
    position: sticky;
    top: 0;
    background-color: var(--blue);
    z-index: 1000;
}

.fadeOut {
    animation: fadeOut 1s linear 1 forwards;
}

.fadeIn {
    animation: fadeIn 1s linear 1 forwards;
}

@keyframes fadeIn {
    0% {
        top: -100px;
    }

    100% {
        top: 0;
    }
}

@keyframes fadeOut {
    100% {
        top: -100px;
    }
}

.logo {
    width: 80px;

    & img {
        border-radius: 50%;
    }
}

nav ul li {

    margin: 0 10px;

    &:last-child {
        margin-right: 0;
    }
}

nav ul li a {
    display: inline-block !important;
    color: #0e161a !important;
    font-size: 16px !important;
    font-weight: 500 !important;

    &:hover {
        color: var(--yellow) !important;
    }
}

.link.active {
    color: var(--yellow) !important;
}

.banner {
    min-height: 100vh;
    /* margin-top: -96px; */
    padding-top: 250px;
    background-image: url(../images/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #0e161a;
    background-blend-mode: overlay;
}

.banner .title h1 {
    font-family: var(--heading-font);
    font-size: 90px;
    font-weight: 700;
    color: #ffffff;

    & span {
        color: var(--yellow);
    }
}

.banner .title p {
    margin-top: 50px;
    color: #ffffff;
}

/***** Common Section & Parts *****/
.common_section {
    padding: 100px 0;
}

.common_title h2 {
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 600;
}

.common_btn {
    padding: 10px 20px;
    text-decoration: none;
    background-color: var(--yellow);
    border-radius: 4px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    transition: .2s ease-in-out;

    &:hover {
        background-color: var(--blue);
    }
}

.banner,
.about,
.goal,
.server,
.packages {
    padding-bottom: 0;
}

/***** Common Section & Parts *****/

.banner .title .button {
    width: 200px;
    height: 50px;
    margin: 0 auto;
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid var(--yellow);
    border-radius: 8px;
    overflow: hidden;

    & .action {
        width: 100%;
        height: 80%;
        margin-top: 10px;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        border: none;
        outline: none;
        font-size: 20px;
        background: transparent;
        color: #ffffff;
        text-decoration: none;
        z-index: 2;
    }

    &::after {
        content: '';
        width: 0%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: linear-gradient(45deg, #0e161a, var(--blue));
        z-index: 1;
        transition: .3s ease-in-out;
    }

    &:hover {
        border: 1px solid transparent;
    }

    &:hover::after {
        background: linear-gradient(45deg, var(--blue), #0e161a);
        width: 100%;
        left: 0;
    }
}

/* * About Section  * */
.about .a_img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
}

.about .a_text span {
    background-color: var(--yellow);
}

.icons {
    text-align: center;
}

.icons svg {
    margin-top: 30px;
    font-size: 60px;
    color: var(--yellow);
    transition: .3s ease-in-out;

    &:hover {
        color: var(--blue);
    }
}

/* * About Section  * */


/* * Package Section * */
.single_package {
    width: 250px;
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--blue), var(--primary-color));
    box-shadow: 0 0 15px #0e161a45;

    & h5 {
        color: #ffffff;
        text-transform: uppercase;

        & span {
            color: var(--yellow);
        }
    }
}

/* * Package Section * */

/* * Server Section * */
.server .s_server {
    width: 300px;
    height: 200px;
    margin-top: 50px;
    position: relative;
    /* border: 1px solid black; */
    /* position: relative; */
}

.s_server .single_server {
    width: 300px;
    height: 200px;
    position: absolute;
    inset: 0 0 0 0;
    transition: .3s linear;

    &:hover {
        width: 350px;
        height: 250px;
        top: -20px;
        left: -20px;
    }
}

.s_server h5 {
    font-size: 30px;
    position: absolute;
    width: fit-content;
    padding: 5px;
    background-color: var(--blue);
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    color: #ffffff;
    z-index: 20;
}

/* * Server Section * */

/* * Area Section * */
.area .icons svg {
    font-size: 35px;
}

/* * Area Section * */


/* * Footer* */
.footer {
    padding: 50px 0;
    background-color: var(--blue);
}

.footer .f_servers ul li a {
    text-decoration: none;
    color: #0e161a !important;
    display: inline-block;
    transition: .2s ease-in-out;

    &:hover {
        color: var(--yellow) !important;
    }
}

.footer .f_socials a {
    font-size: 25px;
    margin: 0 5px;
}

/* * Footer* */