/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    --color-scheme: dark;
    --text-color: #fff;
    --bg: #121212;
    --navbar-bg: #383838;
    --navbar-text: #ffffff;
    --navbar-hover: #ffffff90;
    --navbar-img-size: 40px;
    --FadeIN-ani: ease-in-out fade 1.5s;
    --FadeIN-trans: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

.display-none {
    display: none !important;
}

.color-scheme {
    color-scheme: var(--color-scheme);
}

.user-select-none {
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
        -ms-user-select: none !important;
            user-select: none !important;
}

a, p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    text-decoration: none
}

section {
    padding: 90px 0;
}
.max-width {
    max-width: 1700px;
    padding: 0 80px;
    margin: auto;
}


/* navbar styling */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: var(--FadeIN-trans);
    animation: var(--FadeIN-ani);
}
.navbar.sticky {
    padding: 15px 0;
    background: var(--navbar-bg);
}
.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo img {
    width: var(--navbar-img-size);
    cursor: pointer;
}
.navbar .max-width .menu {
    display: flex;
    align-items: center;
}
.navbar .max-width .menu li a img {
    width: 40px;
}
.navbar .menu li {
    list-style: none;
    display: inline-block;
}
.navbar .menu li a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover {
    color: var(--navbar-hover);
}
.navbar.sticky .menu li a:hover {
    color: rgb(200, 200, 200);
}


/* menu btn styling */
.menu-btn {
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn {
    position: fixed;
    height: 45px;
    width: 42px;
    background: var(--navbar-bg);
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--FadeIN-trans);
}
.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover {
    filter: brightness(90%);
}

/* home section styling */
.home {
    display: flex;
    /* background: url("BG.jpg") no-repeat center; */
    height: 100vh;
    color: #fff;
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
}
.home .max-width {
  /* width: 100%; */
  display: flex;
}
.home .max-width .row {
  margin-right: 0;
}
.home .home-content .text-1 {
    font-size: 27px;
    user-select: none;
}
.home .home-content .text-2 {
    font-size: 65px;
    font-weight: 600;
    margin-left: -3px;
    user-select: none;
}
.home .home-content .text-3 {
    font-size: 40px;
    margin: 5px 0;
    user-select: none;
}
.home .home-content .text-3 span {
    color: var(--navbar-hover);
    font-weight: 500;
    user-select: none;
}
.home .home-content a {
    display: inline-block;
    background: var(--navbar-hover);
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid var(--navbar-hover);
}
.home .home-content a:hover {
    color: var(--navbar-hover);
    background: none;
}

/* Load animation */
@keyframes fade {
    0%{
        opacity: 0;
        transform: translateY(-20px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

/* responsive media query start */
@media (max-width: 1155px) {
    .menu-btn {
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before {
        content: "\f00d";
    }
    .navbar .max-width .menu {
        display: inline-block;
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar .menu.active {
        left: 0;
    }
    .navbar .menu li {
        display: block;
    }
    .navbar .menu li a {
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
}
@media (max-width: 991px) {
    .max-width {
        padding: 0 50px;
    }
}
@media (max-width: 947px){
    .home .home-content .text-2 {
        font-size: 60px;
    }
    .home .home-content .text-3 {
        font-size: 30px;
    }
    .home .home-content a {
        font-size: 25px;
        padding: 10px 30px;
    }
    .max-width {
        max-width: 930px;
    }
}
@media (max-width: 690px) {
    .max-width {
        padding: 0 23px;
    }
    .home .home-content .text-2 {
        font-size: 60px;
    }
    .home .home-content .text-3 {
        font-size: 28px;
    }
    .home .home-content a {
        font-size: 20px;
    }
    .home .home-content a {
        font-size: 25px;
    }
}
@media (max-width: 550px) {
    .home .home-content .text-2 {
        font-size: 40px;
    }
    .home .home-content .text-3 {
        font-size: 20px;
    }
    .scroll-up-btn {
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
    .navbar .logo a {
        font-size: 25px;
    }
}
/* responsive media query end */