* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI';
}

html {
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 1rem;
}
::-webkit-scrollbar-track {
    background-color: rgb(50, 100, 150);
}
::-webkit-scrollbar-thumb {
    background-color: rgba(5, 3, 45, 0.977);
    border-radius: 0.25rem;
    border: .1rem solid transparent;
    background-clip: content-box;
}

.home {
    width: 100%;
}

.heading {
    justify-content: space-around;
    align-items: center;
    display: flex;
    background: rgb(50, 100, 150);
    padding: 0.5rem 1rem;
}

.info {
    font-size: 1.5vmin;
    width: 50%;
    color: lavender;
}

.info-1 {
    font-weight: 600;
    display: flex;
    justify-content: start;
}

.info-1 p {
    margin: 0.5rem 0;
}

.info-2 {
    display: flex;
    color: lavender;
    justify-content: space-around;
}

.info-2 a {
    color: lavender;
    padding: 0 0.5rem;
}

.navbar {
    background: rgba(10, 20, 100, 0.75);
    position: fixed;
    z-index: 5;
    width: 100%;
    padding: 15px 0;
    transition: all 0.5s ease;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(5, 3, 45, 0.977);
    padding: 10px 0;
}

.content {
    width: 100%;
    margin: auto;
    padding: 0px 30px;
    display: flex;
    justify-content: space-around;
}

.container-1 {
    width: 10%;
}

.container-1 .logo img {
    width: 50%;
}

.container-2 {
    display: flex;
    align-items: center;
}

.navbar .menu-list {
    display: inline-flex;
}

.menu-list li {
    list-style: none;
    position: relative;
}

.menu-list li a {
    color: rgb(182, 187, 207);
    font-size: 2.3vmin;
    font-weight: 700;
    margin-left: 1rem;
    text-decoration: none;
    transition: all 1s ease;
}

.menu-list li a:focus {
    outline-style: none;
    border-bottom: 3px solid blue;
    color: #ff9900;
}

.menu-list li a:hover {
    color: #ff9900;
    border-bottom: 3px solid blue;
}

.fatu {
    color: #aaa;
}

.fatu:hover {
    color: #fff;
}

.fati {
    font-size: 10vmin;
    text-align: center;
    padding: 5% 0;
}

.icon {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.icon .cancel-btn {
    position: absolute;
    right: 30px;
    top: 20px;
}

.text-blue {
    color: #4582ff;
}

.text-orange {
    color: #ff9900;
}
/* =======================================Nested Dropdown code Starts Here=============================== */
.submenu {
    position: absolute;
    top: 100%;
    left: 20%;
    padding: 0.5rem;
    background-color: rgb(70, 70, 140);
    width: max-content;
    border-radius: 5px;
    display: none;
}

.submenu li,
.submenu2 li {
    padding: 0.5rem;
}

.submenu2 {
    position: absolute;
    top: 0;
    left: 100%;
    padding: 0.5rem;
    background-color: rgb(70, 70, 140);
    width: max-content;
    border-radius: 5px;
    display: none;
}


.menu-list li:hover>.submenu {
    display: block;
}

.submenu li:hover>.submenu2 {
    display: block;
}

/* =======================================Nested Dropdown code Ends Here=============================== */

.typing {
    position: absolute;
    top: 30%;
    left: 10%;
    font-size: 5vmin;
    color: #ff9900;
    z-index: 1;
}

.typing p {
    color: white;
    font-size: 7vmin;
}
.vision {
    /* background: url("../imgs/Bg-4.jpg") rgba(10, 20, 100, 0.75); */
    background: radial-gradient(rgb(0, 0, 101), rgb(14, 65, 141), rgb(6, 6, 35));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 45vh;
    background-blend-mode: darken;
    position: relative;
}
.vision img{
    width: 50%;
    position: absolute;
    transform: translate(80%, 5%);
}
@media(max-width: 800px){
    .typing{
        top: 20%;
    }
    .vision img{
        position: absolute;
        transform:  translate(0%, 25%);
        width: 100%;
    }
}
/* ========================================Footer Code Starts Here========================================= */
.subscribe {
    background: rgb(5, 10, 50);
}

.footer {
    background: rgb(5, 10, 50);
    color: white;
}

.footer .btn.btn-link {
    display: block;
    text-align: left;
    color: white;
    text-transform: capitalize;
    transition: 1s;
    text-decoration: none;
}

.footer .btn.btn-link:hover {
    color: #00f;
    letter-spacing: 1px;
    box-shadow: none;
    text-decoration: underline;
}

/* ========================================Footer Code Ends Here========================================= */

/* *************************************************************************************************************************************
==========================================================RESPONSSIVE CODE STARTSHERE===================================================
****************************************************************************************************************************************/
@media (max-width: 1000px) {
    .content {
        display: block;
    }

    .content .logo img {
        width: 40%;
    }
}

@media (max-width: 800px) {
    body.disabledScroll {
        overflow: hidden;
    }
    .heading {
        display: none;
    }
    .navbar {
        width: 100%;
    }
    .content {
        display: flex;
        justify-content: space-between;
        padding: 10px;
    }

    .content .logo img {
        width: 70%;
    }

    .icon {
        display: block;
    }

    .icon.hide {
        display: none;
    }

    .navbar .menu-list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #222;
        text-align: center;
        display: block;
        padding: 10px 10px;
        transition: all 0.5s ease;
        overflow-y: scroll;
    }

    .navbar .menu-list.active {
        left: 0%;
    }

    .navbar .menu-list li {
        margin-top: 5%;
    }

    .navbar .menu-list li a {
        font-size: 5vmin;
    }
    .submenu {
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
        display: none;
        width: 100%;
    }

    .submenu2 {
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
        background-color: rgb(70, 70, 140);
        width: 100%;
        display: none;
    }
    .activate {
        background-color: rgb(70, 70, 140);
        display: block;
    }
    
    .activate2 {
        background-color: #222;
        display: block;
    }
}