*, ::before, ::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #0A0A0A;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
}

.sect-head{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.sect-wrap{
    width: 1200px;
    height: 100%;
}

.h-btns{
    color: white;
    text-decoration: none;
}
@media (max-width: 1220px){
    .sect-wrap{
        width: 100%;
        padding: 20px;
        height: 100%;
    }
}

@media(max-width: 820px){
    .header-content{
        width: 100% !important;
    }
}

/* Nav */

nav{
    height: 100px;
    width: 100%;
    transition: 0.4s;
    position: fixed;
    display: flex;
    z-index: 100;
}

nav .sect-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo{
    flex: 1;
}

.nav-links{
    flex: 1;
    text-align: center;
}

.nav-links ul{
    list-style: none;
}
.nav-links ul li{
    display: inline;
}
.nav-links a{
    padding: 6px 12px;
    text-decoration: none;
    color: #ffffff;
    transition: 0.4s;
    opacity: 0.9;
    font-weight: 600;
}

.nav-links a:hover{
    color: #FF0000;
    opacity: 1;
}

.nav-active{
    color: #FF0000;
    opacity: 1;
}

.nav-btns{
    display: flex;
    justify-content: right;
    align-items: center;
    flex: 1;
}

.nav-btns a{
    text-decoration: none;
    color: white;
}

.register-btn{
    margin-left: 24px;
}

.login-btn{
    margin: 0px 6px;
    font-weight: 600;
}

.login-btn:hover{
    text-decoration: underline;
    cursor: pointer;
}

.btn-primary{
    padding: 10px 26px;
    border-radius: 8px;
    background-color: #FF0000;
    transition: 0.4s;
    display: flex;
    cursor: pointer;
    align-items: center;
}

.btn-primary img{
    margin-right: 8px;
}


.btn-primary:hover{
    opacity: 0.9;
}

.mobile-menu{
    margin-left: 12px;
    height: 46px;
    width: 46px;
    display: none;
    align-items: center;
    position: fixed;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
    z-index: 104;
}

.mobile-nav{
    display: none;
}

@media screen and (max-width: 900px) {
    nav .sect-wrap{
        flex-direction: column;
        background-color: #0A0A0A;
        position: relative;
    }

    .mobile-nav{
        display: none;
        height: 100vh;
        width: 100%;
        z-index: 102;
    }

    .mobile-menu{
        display: flex;
        top: 12px;
        right: 12px;
    }

    nav.sect-head .nav-links{
        display: none;
    }

    nav.mobile-nav .nav-links{
        display: inline;
    }

    nav.mobile-nav{
        height: 100vh;
        width: 100%;
        background-color: #0A0A0A;
    }

    nav.sect-head .nav-btns{
        display: none;
    }

    .nav-links ul li{
        display: block;
        margin: 12px 0px;
    }

    .mobile-menu{
        position: absolute;
        right: 12px;
    }

    .mobile-menu{
        right: 12px;
        top: 12px;
    }
}
  

header{
    height: 500px;
    /* background: url('../assets/svg/grid.svg');
    background-size: auto, 600px; */
}

header .sect-wrap{
    height: 100%;
    text-align: center;
    padding-top: 80px;
    /* background: url('../assets/svg/host.svg') center right no-repeat; */
    background-size: 400px;
}

.header-content{
    display: flex;
    align-items: center;
    height: 100%;
    
}

.hc-info{
    width: 100%;
}

.hc-info h1{
    font-size: 62px;
    line-height: 62px;
    margin-bottom: 18px;
}

.hc-info p{
    opacity: 0.9;
    margin-bottom: 12px;
}

/* Footer */

footer{
    height: fit-content;
}

footer .sect-wrap{
    padding: 32px 0 0 0;
    background-color: #FF0000;
    border-top-right-radius: 32px;
    border-top-left-radius: 32px;
}

.foot-links{
    margin-top: 32px;
}

.foot-social ul, .foot-links ul{
    list-style: none;
    text-align: center;
}

.foot-social ul li{
    display: inline;
    margin: 0px 2px;
}

.foot-social ul li a img{
    height: 20px;
    width: 20px;
}

.foot-links ul li{
    display: inline;
}

.foot-links ul li a{
    text-decoration: none;
    color: white;
    margin: 0px 6px;
    opacity: 0.8;
    transition: 0.4s;
}

.foot-links ul li a:hover{
    opacity: 1;
}

.foot-bottom{
    margin-top: 20px;
    background-color: #b30000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px; 
}

.foot-bottom .legal ul{
    list-style: none;
}

.foot-bottom .legal ul li{
    display: inline;
}

.foot-bottom .legal ul li{
    margin-right: 12px;
}

.foot-bottom .legal ul li:last-child{
    margin-right: 0px;
}

.foot-bottom .legal ul li a{
    text-decoration: none;
    color: white;
    opacity: 0.8;
    transition: 0.4s;
}

.foot-bottom .legal ul li a:hover{
    opacity: 1;
}

/* Team Section */

.team-content{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 100px;
    justify-content: center;
}

.team-card{
    width: 280px;
    height: 340px;
    color: #0A0A0A;
    border-radius: 16px;
    margin: 12px;
    text-align: center;
    background-color: rgba(255,255,255,0.98);
    cursor: pointer;
}

.team-card:hover .team-picture img{
    margin-bottom: 20px
}

.tc-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.team-card .team-picture{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70%;
}

.team-card .team-picture img{
    height: 200px;
    transition: 0.4s;
    border-radius: 50%;
}

.team-info{
    background-color: rgba(0,0,0,0.1);
    padding: 12px 0px;
    width: 100%;
}

.team-info p{
    opacity: 0.8;
}
