* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-padding-top: 20px;
    scroll-behavior: smooth;
}

#header {
    background-color: grey;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
}

.menu {
    list-style: none;
    float: right;
    padding: 0 20px;
}

.menu li {
    display: inline-block;
    line-height: 60px;
}

.menu li a {
    transition: 0.4s;
    /* display: block; */
    text-decoration: none;
    color: white;
    padding: 0px 30px;
    font-size: 30px;
    /* margin-top: 10px; */
}

.menu li a:hover {
    color: red;
}

.show-btn {
    font-size: 30px;
    line-height: 60px;
    color: white;
    display: none;
    position: absolute;
    top: 0px;
    right: 20px;
    /* margin-top: 10px; */
    transition: .4s;
}

.hide-btn {
    font-size: 30px;
    line-height: 60px;
    color: white;
    display: none;
    position: absolute;
    right: 20px;
    top: 0px;
    /* margin-top: 100px; */
    transition: .4s;
}

.hide-btn:hover {
    color: royalblue
}

.show-btn:hover {
    color: royalblue
}

#chk {
    position: absolute;
    visibility: hidden;
    z-index: -10;
}

#banner {
    width: 100%;
    height: 100vh;
    color: white;
    font-size: 30px;
    /* margin-top:90px; */
    margin-bottom: 30px;
    /* display: flex; */
    background-image: url(../images/background.jpg);
    background-size: cover;
    background-position: center;
}

#banner h2 {
    padding: 70px 20px;
    color: blanchedalmond;
}

#team {
    width: 100%;
    color: red;
}

#team::after {
    content: '';
    display: block;
    clear: both;
}

h1 {
    justify-content: center;
    display: flex;
    font-size: 40px;
    margin: 50px 0 20px 0;
}

.t img {
    height: 20%;
    width: 20%;
    border-radius: 50%;
    float: left;
    /* display:inline-block;*/
    justify-content: center;
    /* margin-left: 60;
      margin-bottom: 20px;
      margin-top: 20px; */
    margin: 2.5%;
}

#section::after {
    content: '';
    display: block;
    clear: both;
}

#left-side {
    width: 50%;
    height: 600px;
    background-color: lightgreen;
    float: left;
    color: rgb(37, 35, 201);
}

#left-p p {
    text-align: left;
    margin: 10px 5px;
    font-size: 15px;
    padding: 10px;
    text-align: justify;
    line-height: 30px;
    margin-top: 20px;
}

#left-p h2 {
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    color: red;
    justify-content: center;
    display: flex;
    align-items: center;
}

#right-side {
    width: 48%;
    height: 600px;
    float: right;
}

.artical {
    height: 31%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: red;
    overflow: hidden;
}

#p1 {
    background-image: url(../images/team1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

#p2 {
    background-image: url(../images/team2.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
}

#p3 {
    background-image: url(../images/tech.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.box a {
    display: block;
    margin: 10px;
    padding: 10px;
    font-size: 20px;
    border-radius: 8px;
    text-align: center;
    color: white;
    background-color: red;
    text-decoration: none;
}

.box a:hover {
    background-color: blue;
    color: white;
}

.box h4 {
    margin: 10px;
    text-align: center;
}

.box {
    width: 22%;
    float: left;
    margin-left: 2.4vw;
    color: aliceblue;
    background-color: royalblue;
    padding: 15px;
    border-radius: 8px;
    height: 60%;
    box-shadow: 0 5px 5px rgb(52, 156, 216);
    margin-bottom: 6vh;
    text-align: justify;
}

.box img {
    width: 100%;
    height: 167px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: 0.3s;
    border: 2px solid black;
}

#contact {
    text-align: center;
    height: 120px;
    clear: both;
    margin-bottom: 0;
    bottom: 0;
    background-color: rgb(223, 159, 248);
}

@media (min-width: 801px) and (max-width: 1199px) {
    * {
        transition: .7s;
    }
    #header {
        background-color: grey;
        width: 100%;
        height: 60px;
        position: fixed;
        top: 0;
    }
    .menu {
        list-style: none;
        float: right;
        padding: 0 20px;
    }
    .menu li {
        display: inline-block;
        line-height: 60px;
    }
    .menu li a {
        transition: 0.4s;
        /* display: block; */
        text-decoration: none;
        color: white;
        padding: 0px 20px;
        font-size: 30px;
        /* margin-top: 10px; */
    }
    .menu li a:hover {
        color: red;
    }
    .show-btn {
        font-size: 30px;
        line-height: 60px;
        color: white;
        display: none;
        position: absolute;
        top: 0px;
        right: 20px;
        /* margin-top: 10px; */
        transition: .4s;
    }
    .hide-btn {
        font-size: 30px;
        line-height: 60px;
        color: white;
        display: none;
        position: absolute;
        right: 20px;
        top: 0px;
        /* margin-top: 10px; */
        transition: .4s;
    }
    .hide-btn:hover {
        color: royalblue
    }
    .show-btn:hover {
        color: royalblue
    }
    #chk {
        position: absolute;
        visibility: hidden;
        z-index: -10;
    }
    #banner {
        width: 100%;
        height: 100vh;
        color: white;
        font-size: 30px;
        /* margin-top:90px; */
        margin-bottom: 30px;
        /* display: flex; */
        background-image: url(../images/background.jpg);
        background-size: cover;
        background-position: center;
    }
    #banner h2 {
        padding: 70px 20px;
        color: blanchedalmond;
    }
    #team {
        width: 100%;
        color: red;
    }
    #team::after {
        content: '';
        display: block;
        clear: both;
    }
    h1 {
        justify-content: center;
        display: flex;
        font-size: 40px;
        margin: 50px 0 20px 0;
    }
    .t img {
        /* height: 250px; */
        width: 30%;
        border-radius: 50%;
        float: left;
        /* display:inline-block;*/
        justify-content: center;
        /* margin-left: 60;
        margin-bottom: 20px;
        margin-top: 20px; */
        margin: 33px;
        margin-left: 13%;
    }
    #section::after {
        content: '';
        display: block;
        clear: both;
    }
    #left-side {
        width: 50%;
        height: 600px;
        background-color: lightgreen;
        float: left;
        color: rgb(37, 35, 201);
        overflow: scroll;
    }
    #left-p p {
        text-align: left;
        margin: 10px 5px;
        font-size: 15px;
        padding: 10px;
        text-align: justify;
        line-height: 30px;
        margin-top: 20px;
    }
    #left-p h2 {
        font-size: 30px;
        font-family: Arial, Helvetica, sans-serif;
        color: red;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    #right-side {
        width: 48%;
        height: 600px;
        float: right;
    }
    .artical {
        height: 31%;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        font-size: 20px;
        font-family: Arial, Helvetica, sans-serif;
        color: red;
        overflow: hidden;
    }
    #p1 {
        background-image: url(../images/team1.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    #p2 {
        background-image: url(../images/team2.jpeg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    #p3 {
        background-image: url(../images/tech.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .box {
        width: 40%;
        height: 70%;
        margin-left: 7%;
    }
    /* .box a:hover{
            background-color:blue ;
            color: white;
        }
        .box h4{
            margin:10px;
            text-align: center;
        }
        .box{
            width: 22%;
            float: left;
            margin-left:2.4vw;
            color: aliceblue;
            background-color: royalblue;
            padding: 15px;
            border-radius: 8px;
            height:60%;
            box-shadow: 0 5px 5px rgb(52, 156, 216);
            margin-bottom:6vh;
            text-align: justify;
        }
    
        .box img{
            width: 100%;
            height: 167px;
            border-radius: 8px;
            margin-bottom: 10px;
            transition: 0.3s;   
            border: 2px solid black;     
        } */
    #contact {
        text-align: center;
        height: 120px;
        clear: both;
        margin-bottom: 0;
        bottom: 0;
        background-color: rgb(223, 159, 248);
    }
}

@media(max-width: 800px) {
    * {
        transition: .7s;
    }
    #header {
        background-color: grey;
        width: 100%;
        height: 60px;
        position: fixed;
        top: 0;
    }
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        list-style: none;
        float: right;
        padding: 0 20px;
        background-color: black;
        width: 100%;
        text-align: center;
    }
    #chk:checked~.menu {
        right: 0;
    }
    .menu li {
        display: block;
        line-height: 60px;
    }
    .menu li a {
        transition: 0.4s;
        /* display: block; */
        text-decoration: none;
        color: white;
        padding: 0px 20px;
        font-size: 30px;
        /* margin-top: 10px; */
    }
    .menu li a:hover {
        color: red;
    }
    .show-btn {
        font-size: 30px;
        line-height: 60px;
        color: white;
        display: block;
        position: absolute;
        top: 0px;
        right: 20px;
        /* margin-top: 10px; */
        transition: .4s;
    }
    .hide-btn {
        font-size: 30px;
        line-height: 60px;
        color: white;
        display: block;
        position: absolute;
        right: 20px;
        top: 0px;
        /* margin-top: 10px; */
        transition: .4s;
    }
    .hide-btn:hover {
        color: royalblue
    }
    .show-btn:hover {
        color: royalblue
    }
    #chk {
        position: absolute;
        visibility: hidden;
        z-index: -10;
    }
    #banner {
        width: 100%;
        height: 100vh;
        color: white;
        font-size: 30px;
        /* margin-top:90px; */
        margin-bottom: 30px;
        /* display: flex; */
        background-image: url(../images/background.jpg);
        background-size: cover;
        background-position: center;
    }
    #banner h2 {
        padding: 70px 20px;
        color: blanchedalmond;
    }
    #team {
        width: 100%;
        color: red;
    }
    #team::after {
        content: '';
        display: block;
        clear: both;
    }
    h1 {
        justify-content: center;
        display: flex;
        font-size: 40px;
        margin: 50px 0 20px 0;
    }
    .t img {
        /* height: 250px; */
        width: 30%;
        border-radius: 50%;
        float: left;
        /* display:inline-block;*/
        justify-content: center;
        /* margin-left: 60;
                margin-bottom: 20px;
                margin-top: 20px; */
        margin: 33px;
        margin-left: 13%;
    }
    #section::after {
        content: '';
        display: block;
        clear: both;
    }
    #left-side {
        width: 100%;
        height: 600px;
        background-color: lightgreen;
        /* float: left; */
        color: rgb(37, 35, 201);
        overflow: scroll;
        margin-bottom: 20px;
    }
    #left-p p {
        text-align: left;
        margin: 10px 5px;
        font-size: 15px;
        padding: 10px;
        text-align: justify;
        line-height: 30px;
        margin-top: 20px;
    }
    #left-p h2 {
        font-size: 30px;
        font-family: Arial, Helvetica, sans-serif;
        color: red;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    #right-side {
        width: 100%;
        height: 600px;
        /* float:right; */
    }
    .artical {
        height: 31%;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        font-size: 20px;
        font-family: Arial, Helvetica, sans-serif;
        color: red;
        overflow: hidden;
    }
    #p1 {
        background-image: url(../images/team1.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    #p2 {
        background-image: url(../images/team2.jpeg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    #p3 {
        background-image: url(../images/tech.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .box {
        width: 40%;e
        height: 70%;
        margin-left: 7%;
    }
    /* .box a:hover{
                    background-color:blue ;
                    color: white;
                }
                .box h4{
                    margin:10px;
                    text-align: center;
                }
                .box{
                    width: 22%;
                    float: left;
                    margin-left:2.4vw;
                    color: aliceblue;
                    background-color: royalblue;
                    padding: 15px;
                    border-radius: 8px;
                    height:60%;
                    box-shadow: 0 5px 5px rgb(52, 156, 216);
                    margin-bottom:6vh;
                    text-align: justify;
                }
            
                .box img{
                    width: 100%;
                    height: 167px;
                    border-radius: 8px;
                    margin-bottom: 10px;
                    transition: 0.3s;   
                    border: 2px solid black;     
                } */
    #contact {
        text-align: center;
        height: 120px;
        clear: both;
        margin-bottom: 0;
        bottom: 0;
        background-color: rgb(223, 159, 248);
    }
}

@media(max-width: 625px) {
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        list-style: none;
        float: right;
        padding: 0 20px;
        background-color: black;
        width: 100%;
        text-align: center;
    }
    #chk:checked~.menu {
        right: 0;
    }
    .menu li {
        display: block;
        line-height: 60px;
    }
    .menu li a {
        transition: 0.4s;
        /* display: block; */
        text-decoration: none;
        color: white;
        padding: 0px 20px;
        font-size: 30px;
        /* margin-top: 10px; */
    }
    .menu li a:hover {
        color: red;
    }
    .show-btn {
        font-size: 30px;
        line-height: 60px;
        color: white;
        display: block;
        position: absolute;
        top: 0px;
        right: 20px;
        /* margin-top: 10px; */
        transition: .4s;
    }
    .hide-btn {
        font-size: 30px;
        line-height: 60px;
        color: white;
        display: block;
        position: absolute;
        right: 20px;
        top: 0px;
        /* margin-top: 10px; */
        transition: .4s;
    }
    .hide-btn:hover {
        color: royalblue
    }
    .show-btn:hover {
        color: royalblue
    }
    #chk {
        position: absolute;
        visibility: hidden;
        z-index: -10;
    }
    #banner {
        width: 100%;
        height: 100vh;
        color: white;
        font-size: 30px;
        /* margin-top:90px; */
        margin-bottom: 30px;
        /* display: flex; */
        background-image: url(../images/background.jpg );
        background-size: cover;
        background-position: center;
    }
    #banner h2 {
        padding: 70px 20px;
        color: blanchedalmond;
    }
    #team {
        width: 100%;
        color: red;
    }
    #team::after {
        content: '';
        display: block;
        clear: both;
    }
    h1 {
        justify-content: center;
        display: flex;
        font-size: 40px;
        margin: 50px 0 20px 0;
    }
    .t img {
        /* height: 250px; */
        width: 70%;
        border-radius: 50%;
        float: left;
        /* display:inline-block;*/
        justify-content: center;
        /* margin-left: 60;
                margin-bottom: 20px;
                margin-top: 20px; */
        margin: 33px;
        margin-left: 15%;
    }
    #section::after {
        content: '';
        display: block;
        clear: both;
    }
    #left-side {
        width: 100%;
        height: 600px;
        background-color: lightgreen;
        /* float: left; */
        color: rgb(37, 35, 201);
        overflow: scroll;
        margin-bottom: 20px;
    }
    #left-p p {
        text-align: left;
        margin: 10px 5px;
        font-size: 15px;
        padding: 10px;
        text-align: justify;
        line-height: 30px;
        margin-top: 20px;
    }
    #left-p h2 {
        font-size: 30px;
        font-family: Arial, Helvetica, sans-serif;
        color: red;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    #right-side {
        width: 100%;
        height: 600px;
        /* float:right; */
    }
    .artical {
        height: 31%;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        font-size: 20px;
        font-family: Arial, Helvetica, sans-serif;
        color: red;
        overflow: hidden;
    }
    #p1 {
        background-image: url(../images/team1.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    #p2 {
        background-image: url(../images/team2.jpeg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    #p3 {
        background-image: url(../images/tech.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .box {
        width: 80%;
        height: 70%;
        margin-left: 10%;
    }
    /* .box a:hover{
                    background-color:blue ;
                    color: white;
                }
                .box h4{
                    margin:10px;
                    text-align: center;
                }
                .box{
                    width: 22%;
                    float: left;
                    margin-left:2.4vw;
                    color: aliceblue;
                    background-color: royalblue;
                    padding: 15px;
                    border-radius: 8px;
                    height:60%;
                    box-shadow: 0 5px 5px rgb(52, 156, 216);
                    margin-bottom:6vh;
                    text-align: justify;
                }
            
                .box img{
                    width: 100%;
                    height: 167px;
                    border-radius: 8px;
                    margin-bottom: 10px;
                    transition: 0.3s;   
                    border: 2px solid black;     
                } */
    #contact {
        text-align: center;
        height: 120px;
        clear: both;
        margin-bottom: 0;
        bottom: 0;
        background-color: rgb(223, 159, 248);
    }
}
