/* 
    Created on : May 2, 2024, 11:07:55 AM
    Author     : Asus
*/
/*ScrollBar*/
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@font-face {
    font-family: 'RajdhaniReg';
    src: url('../fonts/Rajdhani/Rajdhani-Regular.ttf') format("truetype");
}
@font-face {
    font-family: 'RajdhaniMed';
    src: url('../fonts/Rajdhani/Rajdhani-Medium.ttf') format("truetype");
}
@font-face {
    font-family: 'RajdhaniBld';
    src: url('../fonts/Rajdhani/Rajdhani-SemiBold.ttf') format("truetype");
}
@font-face {
    font-family: 'UbuntuReg';
    src: url('../fonts/Ubuntu/Ubuntu-Regular.ttf') format("truetype");
}
@font-face {
    font-family: 'UbuntuLight';
    src: url('../fonts/Ubuntu/Ubuntu-Light.ttf') format("truetype");
}

body{
}


/*HEADER*/
header{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99
}
.headerLogo{
    padding: 15px 0;
}
.headerLogo a img{
    width: 70px;
}
.headerInfo{
    text-align: right
}
.headerInfo a{
    font-family: RajdhaniBld;
    font-size: 16px;
    color: #FFF;
    letter-spacing: .1em;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}
.headerInfo a .feather{
    width: 20px;
    height: 20px;
    margin-top: -5px;
    margin-right: 10px
}

@media(max-width: 992px){
    header{
        background: rgba(0,0,0, 0.9);
    }
    .headerLogo{
        padding: 10px 0;
    }
    .headerLogo a img{
        width: 50px;
    }
    .headerInfo a{
        margin-top: 15px;
    }
}

/*MAINBODY*/
.mbLayer {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 120px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:url(../../images/web/iid-banner-collage.png);
    background-size:cover;
    background-attachment:fixed
}
.mbLayer:before {
    content: "";
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    inset: 0;
    z-index: 2;
}
.mbContent{
    position: relative;
    z-index: 3;
}
@media(max-width: 992px){
    .mbLayer {
        background-position: 40%!important;
    }
}

/*SECTION TITLE*/
.heroTitle{
    padding: 50px 0 10px;
    text-align: center;
    margin-bottom: 70px;
}
.heroTitle h2{
    font-family: RajdhaniBld;
    text-transform: uppercase;
    color: #FFF;
    font-size: 70px;
    line-height: 1.1em;
    letter-spacing: .1em;
}
.heroTitle p{
    font-family: UbuntuLight;
    font-size: 18px;
    color: #FFF;
    letter-spacing: 0;
}
@media(max-width: 992px){
    .heroTitle h4{
        letter-spacing: 0;
    }
    .heroTitle h2{
        font-size: 44px;
        line-height: 1em;
        letter-spacing: 0;
    }
    .heroTitle p{
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*WHAT WE DO*/
.wwDo{
    margin-bottom: 50px;
}
.wwDoBox{
    padding: 10px;
}
.wwDoItem{
    text-align: center;
    padding: 20px;
    border: 1px solid #CCC;
}
.wwDoItem:hover{
    border-color: #FFF;
}
.wwDoItem .feather{
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    stroke-width: 0.7
}
.wwDoItem h4{
    font-family: RajdhaniBld;
    font-size: 20px;
    text-transform: uppercase;
    color: #FFF;
    line-height: 1.2em;
    letter-spacing: .1em;
    margin-bottom: 10px
}
.wwDoItem p{
    font-family: UbuntuLight;
    font-size: 12px;
    color: #FFF;
    line-height: 1.4;
}
.wwDoItem a{
    font-family: RajdhaniBld;
    letter-spacing: .05em;
    text-decoration: none;
}
.wwDoItem a:hover{
    opacity: 0.8;
}
@media(max-width: 992px){
    .wwDoItem .feather{
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
        stroke-width: 0.7
    }
    .wwDoItem h4{
        font-size: 24px;
        line-height: 1em;
        letter-spacing: 0;
        margin-bottom: 15px
    }
    .wwDoItem p{
        font-size: 14px;
        line-height: 1.5
    }
}



