body{
    padding: 0px;
    margin: 0px;
}
nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    /* margin: 0 40px; */
}
header{
    position: sticky;
    top: 0;
    background-color: white;
    /* backdrop-filter:  blur(50px); */
    box-shadow: 0 2px 0px rgba(0, 0, 0, 0.1);
    
}
.logo{
    width: 75px;
    cursor: pointer;
    margin-left: 50px;
    /* margin-right: 30px; */
}
nav ul{
    width: 90%;
    list-style: none;
    text-align: left;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
}
.th{
    text-align: right;
    margin-right: 50px;
    display: flex;
    
}
.th i{
    padding: 0 15px;
    margin: 0 5px;
    cursor: pointer;
    font-weight: 600;
}
nav ul li{
    display: inline-block;
    margin: 10px 20px;
    /* padding: 0 10px; */
}
nav ul li a{
    text-decoration: none;
    color: #1c2a44;
    font-size: 16.5px;
    font-weight: 500;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
h1{
    font-family: poppins;
}
main{
    /* display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex; */
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    /* line-height: 3.8; */
    color: #9b9b9b;
    font-size: 15px;
    
}
.para{
    font-size: 10px;
}
.img-bg{
    width: 100px;
}
main h1{
    font-size: 40px;
    font-weight: bold;
}
footer{
    font-family: poppins;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
    padding: 50px;
    padding-bottom: 0px;
    color: white;
    background-color: #1c2a44;
    
}
.footer > *{
    flex: 1 100%;
}
.footer-left{
    margin-right: 1.25em;
    margin-bottom: 2em;
}
.footer-left img{
    width: 50%;
}
.footer ul{
    list-style: none;
    padding-left: 0;
}
.footer li{
    line-height: 2em;
}
.footer a{
    text-decoration: none;
    font-size: 14px;
}
.footer-right{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;

}
.footer-right > *{
    flex: 1 50%;
    margin-right: 1.25em;
}
.box a{
    color: #999;
}
.footer-bottom{
    text-align: center;
    color: #999;
    padding-top: 50px;
    margin-bottom: 10px;
}
.footer-left p{
    padding-right: 20%;
    color: #999;
    font-size: 13px;

}
@media screen and (min-width: 600px) {
    .footer-right> *{
        flex: 1;

    }
    .footer-left{
        flex: 1 0px;
    }
    .footer-right{
        flex: 2 0px;
    }
    
}
@media screen and (max-width: 1305px) {
    .th{
        /* margin-left: 40px; */
        margin-right: 50px;
        /* background-color: black; */
    }
}
@media screen and (max-width: 947px) {
    nav ul{
        display: none;
    }
    .navbar{
        position: absolute;
        top: 10%;
        background-color: black;
        left: 0;
        width: 100%;
        height: 17.7rem;
    }

}
@media screen and (max-width: 800px) {
    .th{
        margin-right: 15px;
        font-size: 15px;
    }
    .logo{
        margin-left: 15px;
        width: 65px;
    }
}
@media screen and (max-width: 333px) {
    .th{
        margin-right: 10px;
        font-size: 15px;
    }
    .logo{
        margin-left: 10px;
        width: 65px;
    }
    .footer-bottom{
        font-size: 12px;
    }
}