@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300&display=swap');

* {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
    font-family: 'Unbounded', cursive;
}

header {
    height: 80px;
    width: 100%;
    background-color: #3176a1;
    cursor: pointer;
    position: sticky;
    z-index: 9999;
    top: 0;

}

.hdr_logo {
    height: 80px;
    display: flex;
    align-items: flex-start;
    float: left;
}

.logo {
    margin: 0 auto;
}

.bkground {
    background-image: url('https://user-images.githubusercontent.com/116996040/210163566-ef877352-7dce-4067-8c8c-5fb26163d9ee.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@media (min-width:949px) {
    #menu_toggle {
        display: none;
    }

    .hdr_menu {
        margin: 27px 20px 0px 20px;
        display: flex;
        align-items: flex-end;
        float: right;
    }

    .hdr_menu ul li {
        display: inline-block;
    }

    .hdr_menu ul li a {
        text-decoration: none;
        padding: 10px 30px;
        color: #e1f6f7;
        font-size: 0.8rem;
        font-weight: bold;
        background-color: #3176a1;
        border-radius: 8px;
        margin: 5px 5px 0 5px;
        /* font-size: 18px; */
        transition: 0.5s;

    }

    .hdr_menu ul li a:hover {
        background-color: #3176a1;
        box-shadow: 0 5px 10px rgba(12, 1, 1, 0.4);
    }

    .dv_profil_2_chld {
        margin: 100px auto 0 auto;
        border-left-width: 3px;
        border-left-style: solid;
        border-image: linear-gradient(to bottom, #30CFD0 0%, #330867 100%) 1;
        width: 80%;
    }

    .menu_box {
        display: flex;
        gap: 5px;
        flex-wrap: nowrap;

    }
}

@media (max-width:950px) {
    /* @media only screen and (max-width: 1100px) { */

    #menu_toggle {
        opacity: 0;
    }

    #menu_toggle:checked+.menu_btn>span {
        transform: rotate(45deg);
    }

    #menu_toggle:checked+.menu_btn>span::before {
        top: 0;
        transform: rotate(0deg);
    }

    #menu_toggle:checked+.menu_btn>span::after {
        top: 0;
        transform: rotate(90deg);
    }

    #menu_toggle:checked~.menu_box {
        visibility: visible !important;
        transition: visibility 0.ms;
    }

    .menu_btn {
        position: absolute;
        top: 40px;
        right: 40px;
        width: 26px;
        height: 26px;
        cursor: pointer;
        z-index: 1;
    }

    .menu_btn>span,
    .menu_btn>span::before,
    .menu_btn>span::after {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: rgb(236, 186, 120);
        transition-duration: .25s;
    }

    .menu_btn>span::before {
        content: '';
        top: -8px;
    }

    .menu_btn>span::after {
        content: '';
        top: 8px;
    }

    .hdr_menu {
        display: flex;
        flex-flow: column;
        margin: 0px auto;
    }

    .menu_box {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0 0 280px 0;
        padding: 80px 0;
        list-style: none;
        background-color: #3176a1;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
        /* transition-duration: s; */
        visibility: hidden;
    }

    .mnu_link {
        display: block;
        padding: 12px 24px;
        color: rgba(241, 241, 248, 0.829);
        /* font-size: 20px; */
        font-weight: 600;
        text-decoration: none;
        /* transition-duration: .25s; */
    }

    .mnu_link:hover {
        background-color: #CFD8DC;
        color: #333;
    }

    .dv_profil_2_chld {
        margin: 100px auto 0 auto;
        border-left-width: 3px;
        border-left-style: solid;
        border-image: linear-gradient(to bottom, #30CFD0 0%, #330867 100%) 1;
        width: 80%;
    }
}

.skill_baz {
    padding-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;

}

.sec_2 {
    padding-top: 20px;
    background-color: #e1f6f7;
}

.skilltxt {
    width: 210px;
    background-color: #e1f6f7;
    margin: 0 0 0 30px;
    font-weight: 600;
    font-size: 1.5rem;
    height: 45px;
    transition: 0.5s;
}

.myhero_tg {
    padding: 30px 0;
}

.skilltxt:hover {
    font-size: 1.8rem;
    height: 45px;
}

.myTx {
    border-bottom: 2px solid #30bec7;
}

.sec_1 {
    width: 100%;
    height: 500px;
}


/* Less then Extra Small Devices */
@media (min-width:200px) and (max-width:400px) {
    .sec_1 {
        height: 800px;
    }

    .profile_img {
        height: 200px !important;
        max-width: 200px !important;
    }

    .getinText p {
        font-size: 0.8em !important;
    }

    .getinText h2 {
        font-size: 1.3em !important;
    }

}



@media (max-width:767px) {
    .sec_1 {
        height: 850px;
    }

}

/* Different width for Different Devices */

/* @media (max-width:767px) {}

@media (min-width:768px) and (max-width:991px) {}

@media (min-width:992px) and (max-width:1199px) {}

@media (min-width:1200px) {} */