@font-face {
    font-family: nb;
    src: url(./Fonts/NBInternationalProBoo.ttf);
}

@font-face {
    font-family: rejoy;
    src: url(./Fonts/Rejouice-Headline.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: nb;
}    

html, body {
    height: 100%;
    width: 100%;
}

/*-------------------page 1 starts here----------------------------------------------*/

#page1{
    height: 100vh;
    width: 100%;
    background-color: white;
    position: relative;
}

#page1 h1{
    font-family: rejoy;
    font-weight: 500;
    font-size: 5vw;
    padding: 4px 4px;
}

#page1 h2{
    font-family: rejoy;
    font-weight: 500;
    font-size: 3vw;
    padding: 4px 4px;
}

#page1 p{
    font-family: nb;
    font-weight: 200;
    font-size: 2vw;
    padding: 4px 4px;
}


/*------------------------------------------page 2 our team ------------------------------------------------*/

#page2{
    height: 100vh;
    width: 100%;
    background-color: white;
    position: relative;
}

#page2 .team{
    margin:75px 0;
}

#page2 .team h1{
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
    color: #333;
    padding-bottom: 10px;
    font-family: rejoy;
}
#page2 .team h1:after{
    content: '';
    background: #333;
    display: block;
    height: 3px;
    width: 150px;
    margin: 10px auto;
}

.profile{
    margin-top: 25px;
}
.profile .img-box{
    opacity: 1;
    display: block;
    position: relative;
}
.profile h2{
    font-size: 22px;
    font-weight: bold;
    margin-top: 15px;
    font-family: nb;
}
.profile h3{
    font-size: 15px;
    font-weight: bold;
    margin-top: 15px;
    font-family: nb;
}
.img-box:after{
    content: '';
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}
.img-box ul {
    margin: 0;
    padding: 20px 0;
    position: absolute;
    z-index: 1;
    bottom: 0;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;

}

.img-box ul li{
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin: 3px;
    padding: 7px;
    display: inline-block;
}
.img-box a{
    color: #fff;

}
.img-box:hover:after{
    opacity: 1;

}
.img-box:hover ul{
    opacity: 1;
}
.img-box a:hover{
    color: #007bff;
    border: 1px solid #007bff;
}
.img-box:after, .img-box ul, .img-box ul li
{
    transition: all 0.5s ease-in-out 0s;
}


/*----------------------------------page 3 ------------------------------------*/

#page4{
    height: 100vh;
    width: 100%;
    background-color: white;
    position: relative;
}

#page3 h1{
    font-family: rejoy;
    font-weight: 500;
    font-size: 5vw;
    padding: 4px 4px;
}


#page3 center iframe{
    padding: 25px 25px 25px 25px;
    margin: 10px 10px;
    
}