/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 29-Dec-2015, 08:38:07
    Updated on : 29-Dec-2015, 08:38:07
    Author     : Mansaf Jafran
*/



::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background-color: #ccc;
    border-left: 1px solid #fff;
}
::-webkit-scrollbar-thumb {
    background-color:#2059a8;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
}


@import 'config';

body {
    background: #1060e2;
    max-width: 2000px;
    font-family: $font_2;
    font-size: 14px;
    overflow-x: hidden;
    color : #fff;
    margin: 0 auto;
    *{
        /*border: 1px solid red;*/
    }
}
html,body{
    /*min-width: 1141px;*/
}

.hide{
    display: none;
}

p{
    line-height: 25px;
}

.left{
    float: left;
}

.abs-left{
    left: 0;
}

.right{
    float: right;
}
.abs-right{
    right: 0;
}

.rtl{
    direction: rtl;
}

.clear:after{
    clear: both;
    display: block;
    content: ' ';
}

.p-relative{
    position: relative;
}
.p-absolute{
    position: absolute;
}

.v-center{
    top: 50%;
    transform: translateY(-50%);
}
.h-center{
    left: 50%;
    transform: translateX(-50%);
}
.v-h-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.clear-float{
    display: block;
    clear: both;
    height: 1px;
}

br.minus{
    margin-bottom: -20px;
    display: block;
    content: '';
}

.wrapper{
    width: $wrapper_width;
    margin: 0 auto;
    position: relative;
}

.title-b{
    display: block;
}

.margin-zero{
    margin: 0 !important;
}
.margin-top-zero{
    margin-top: 0 !important;
}
.margin-bottom-zero{
    margin-bottom: 0 !important;
}

br{
    &.px-10{
        content: " ";
        display: block;
        margin: 10px 0 0;
        line-height:10px;
    }
    &.px-20{
        content: " ";
        display: block;
        margin: 20px 0 0;
        line-height:20px;
    }
    &.px-30{
        content: " ";
        display: block;
        margin: 30px 0 0;
        line-height:30px;
    }
    &.px-40{
        content: " ";
        display: block;
        margin: 40px 0 0;
        line-height:40px;
    }
    &.px-50{
        content: " ";
        display: block;
        margin: 50px 0 0;
        line-height:50px;
    }
    &.px-60{
        content: " ";
        display: block;
        margin: 60px 0 0;
        line-height:60px;
    }
    &.px-70{
        content: " ";
        display: block;
        margin: 70px 0 0;
        line-height:70px;
    }
    &.px-80{
        content: " ";
        display: block;
        margin: 80px 0 0;
        line-height:80px;
    }
    &.px-90{
        content: " ";
        display: block;
        margin: 90px 0 0;
        line-height:90px;
    }
    &.px-100{
        content: " ";
        display: block;
        margin: 100px 0 0;
        line-height:100px;
    }
    &.px-10-minus{
        content: " ";
        display: block;
        margin: -10px 0 0;
        line-height:0px;
    }
    &.px-20-minus{
        content: " ";
        display: block;
        margin: -20px 0 0;
        line-height:0px;
    }
    &.px-30-minus{
        content: " ";
        display: block;
        margin: -30px 0 0;
        line-height:0px;
    }
    &.px-40-minus{
        content: " ";
        display: block;
        margin: -40px 0 0;
        line-height:0px;
    }
    &.px-50-minus{
        content: " ";
        display: block;
        margin: -50px 0 0;
        line-height:0px;
    }
    &.px-60-minus{
        content: " ";
        display: block;
        margin: -60px 0 0;
        line-height:0px;
    }
}

.common-a{

}

.common-title{
    font-size: 46px;
    line-height: 55px;
    margin-bottom: 20px;
}
.common-btn{
    padding: 11px 20px;
    padding-right: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    text-align: left;
    position: relative;
    display: inline-block;
    &.white{
        color: #0b2037;
        background: #fff;
        &:after{
            background: url(../img/banner-icon-arrow.png) no-repeat center center;
        }
        &:hover{
            background: #0b2037;
            color: #fff;
            &:after{
                background: url(../img/arrow-right-white.png) no-repeat center center;
                background-size: 19px;
            }
        }
    }
    &:after{
        content: ' ';
        position: absolute;
        right: 0;
        top: 0;
        width: 60px;
        height: 100%;
        background: url(../img/arrow-right-white.png) no-repeat center center;
    }
    &:hover{
        background: rgba(255, 255, 255, 0.4);
    }
}
header{
    padding: 50px 0;
    .inner-header{
        display: grid;
        grid-template-columns: 270px calc(100% - 320px);
        gap: 50px;
        background: rgba(255, 255, 255, .2);
        border-radius: 50px;
        padding-right: 20px;
    }
    .logo{
        padding: 13px 0 10px;
        border-radius: 50px;
        text-align: CENTER;
        background: rgba(255, 255, 255, .2);
        img{
            width: 80%;
        }
    }
    ul{
        display: flex;
        gap: 20px;
        justify-content: flex-end;
        align-items: center;
        color: #fff;
        text-transform: uppercase;
        a:hover{
            color: #032b6a;
        }
    }
}

footer{
    margin-top: 100px;
    .blks{
        border-top: 2px solid #fff;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        padding-top: 50px;
        margin-bottom: 100px;
        gap: 150px;
        ul li{
            margin-top: 20px;
            a:hover{
                color: #032b6a;
            }
        }
        .blk-1{
            display: grid;
            align-content: space-between;
        }
        .social{
            a{
                display: inline-block;
                width: 20px;
                height: 25px;
                margin-right: 20px;
                &.icon-1{
                    background: url(../img/sm-icon-1.png) no-repeat center center;
                }
                &.icon-2{
                    background: url(../img/sm-icon-2.png) no-repeat center center;
                }
                &.icon-3{
                    background: url(../img/sm-icon-3.png) no-repeat center center;
                }
                &.icon-4{
                    background: url(../img/sm-icon-4.png) no-repeat center center;
                }
                &:hover{
                    opacity: .5;
                }
            }
        }
    }
    .copyright{
        text-align: center;
    }
}


.toggle-menu{
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    .bar1, .bar2, .bar3 {
        width: 35px;
        height: 5px;
        border-radius: 20px;
        background-color: #fff;
        margin: 6px 0;
        transition: 0.4s;
        cursor: pointer;
    }

    &.active .bar1 {
        -webkit-transform: rotate(-45deg) translate(-8px, 7px);
        transform: rotate(-45deg) translate(-8px, 7px);
    }

    &.active .bar2 {
        opacity: 0;
    }

    &.active .bar3 {
        -webkit-transform: rotate(45deg) translate(-8px, -8px);
        transform: rotate(45deg) translate(-8px, -8px);
    }
}

.slide-menu{
    display: none;
    position: absolute;
    top: 0;
    left: -340px;
    width: 340px;
    background: #2d73e6;
    z-index: 99999;
    padding: 30px;
    padding-top: 20px;
    @include delay(1s);
    &:after{
        content: ' ';
        position: fixed;
        top: 0;
        left:-340px;
        width: 340px;
        height: 100%;
        z-index: -1;
        background: #2d73e6;
        @include delay(1s);
    }

    .top-part{
        margin-bottom: 25px;
        .links{
            text-align: center;
            margin-bottom: 20px ;
            margin-left: -30px;
            margin-top: -20px;
            width: calc(100% + 60px);
            background: #2059a8;
            height: 49px;
            padding-top: 16px;
            box-shadow: 3px -2px 5px rgba(0, 0, 0, 0.1098039);
            a{
                color: #fff;
                text-transform:uppercase;
                position:relative;
                padding: 0 15px;
                &:after{
                    content: " ";
                    position: absolute;
                    right: 0;
                    top: 2px;
                    border-left: 1px solid #fff;
                    height: 15px;
                }
                &:last-child:after{
                    display: none;
                }
            }
        }
    }

    & > ul > li{
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 5px;
        padding-top: 5px;
        padding-bottom: 10px;
        background: rgba(255, 255, 255, 0.2);
        padding: 10px;
        border-radius: 30px;
        text-align: center;
        &.has-sub{
            margin-left: 0;
            & > span{
                padding-left: 37px;
                background: url(../img/icons/slide-menu-main-plus.png) no-repeat left top;
                background-size: 27px;
                display: block;
            }
            &.active > span {
                background: url(../img/icons/slide-menu-main-minus.png) no-repeat left top;
                background-size: 27px;
            }
        }
        &:last-child{
            border-bottom: none;
        }
        & > span a{
            position:relative;
            padding: 0px;
            font-size: 16px;
            line-height: 27px;
        }
        &:first-child a{
            padding-left: 0;
        }
        &:last-child{
            a:after{
                display: none;
            }
            padding-right: 0;
        }
        a{
            @include delay(.2s);
        }
        /*        a:hover{
                    color: #2059a8; 
                }*/

        .sub-menu{
            width: 100%;
            margin-top: 8px;
            display:none;
            .logo{
                width: 180px;
            }
            ul.main{
                width: calc(100% - 30px);
                margin-left: 30px;
                & > li{
                    text-transform: uppercase;
                    border-top: 1px dotted #fff;
                    &.has-sub{
                        & > span{
                            padding-right: 35px;
                            background: url(../img/icons/slide-menu-second-plus.png) no-repeat right 9px;
                            background-size: 13px;
                            display: block;
                        }
                        ul{
                            display: none;
                        }
                        &.active{
                            & > span{
                                background: url(../img/icons/slide-menu-second-minus.png) no-repeat right 9px;
                                background-size: 13px;
                            }
                            ul{
                                display: block;
                            }
                        }
                    }
                    & > a, & > span a{
                        padding: 5px 0;
                        font-weight: normal;
                        display: block;
                    }
                    ul{
                        margin-bottom: 10px;
                        li{
                            position: relative;
                            padding-left: 15px;
                            margin-bottom: 6px;
                            color: #ccc;
                            &:after{
                                content: ' ';
                                position: absolute;
                                left: 0;
                                top: 7px;
                                width: 5px;
                                height: 5px;
                                background: #7a8295;
                            }
                            &:last-child{
                                margin-bottom: 0;
                            }
                            a{
                                font-weight: normal;
                            }
                        }
                    }
                }
            }
        }
        &.active{
            .sub-menu{
                display: block;
            }
        }
    }
    &.active{
        left: 0;
        &:after{
            left: 0;
        }
    }
}


.banner{
    min-height: 750px;
    .bg{
        position: relative;
        left: 0;
        width: 100%;
        z-index: -1;
        margin-bottom: -190px;
    }
    .banner-text{
        padding: 80px 0 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 265px;
        h5{
            margin-bottom: 0px;
            font-weight: bold;
            text-align: center;
            b{
                display: block;
                font-style: italic;
            }
        }
        .metrics{
            display: grid;
            gap: 30px;
            grid-template-columns: 1fr 1fr;
            .metric{
                padding: 20px;
                border-radius: 20px;
                background: rgba(255, 255, 255, .2);
                span{
                    display: block;
                    &.num{
                        font-size: 40px;
                    }
                    &.publication{
                        background: url(../img/banner-icon-1.png) no-repeat right center;
                    }
                    &.labs{
                        background: url(../img/banner-icon-2.png) no-repeat right center;
                    }
                    &.partnerships{
                        background: url(../img/banner-icon-3.png) no-repeat right center;
                    }
                    &.engaged{
                        background: url(../img/banner-icon-4.png) no-repeat right center;
                    }
                }
            }
        }
    }
    .banner-bottom{
        margin: 180px auto 0;
        width: 70%;
        text-align: center;
        p{
            font-size: 20px;
        }
        .banner-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
            .common-btn{
                &.expolore:after{
                    background: url(../img/banner-icon-5.png) no-repeat center center;
                }
                &.partner:after{
                    background: url(../img/banner-icon-6.png) no-repeat center center;
                }
            }
        }
    }
}
.why-at-ku{
    margin-top: 150px;
    margin-bottom: 100px;
    .wrapper{
        position: relative;
    }
    .content{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: center;
        .img{
            text-align: right;
            img{
                display: inline-block;
            }
        }
        .text{
            width: 70%;
        }
    }
}
.program{
    .pathway{
        background: url(../img/pathway.png) no-repeat center 30px;
        background-size: 100% auto;
        display: grid;
        grid-template-columns: 44% 56%;
        .blk{
            span{
                display: block;
                &.icon{
                    background: #45c8fc;
                    display: inline-block;
                    padding: 13px;
                    width: 70px;
                    height: 70px;
                    border-radius: 51px;
                    display: grid;
                    align-items: center;
                    justify-content: center;
                }
                &.label{
                    display: inline-block;
                    padding: 7px 20px;
                    background: rgba(255, 255, 255, 0.2);
                    border-radius: 20px;
                    margin: 12px 0px;
                }
                &.title{
                    font-size: 20px;
                }
            }
            &.blk-1{
                padding-top: 19px;
            }
            &.blk-2{
                display: grid;
                grid-template-columns: 345px 70px;
                justify-content: end;
                padding-top: 24px;
                margin-right: -6px;
            }
            &.blk-2-1{
                padding-left: 195px;
                padding-top: 71px;
            }
            &.blk-3{
                padding-top: 73px;
                padding-left: 200px;
            }
            &.blk-4{
                display: grid;
                grid-template-columns: 90px 180px ;
                padding-top: 42px;
                margin-left: -6px;
            }
            &.blk-7 {
                padding-top: 65px;
                display: grid;
                grid-template-columns: 1fr 1fr;
                a:first-child{
                    margin-left: -100px;
                }
                a:hover{
                    span.icon{
                        background: #164990;
                    }
                }
                span.icon.explore{
                    width: auto;
                    display: inline-flex ;
                    height: 70px;
                    align-items: center;
                    padding: 10px 40px;
                    font-weight: bold;
                    img{
                        margin-right: 20px;
                    }
                }
            }
            &:hover{
                span.icon.icon-hvr{
                    background: #164990;
                }
                span.title{
                    padding-left: 15px;
                }
            }
        }
    }
}

.research-pillars{
    padding: 130px 0 100px;
    .wrapper{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        .btn{
            text-align: right;
            .common-btn{
                margin-top: 6px;
            }
        }
        .pillar{
            background: rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: 20px;
            h5{
                font-size: 20px;
                font-weight: 100;
            }
            .common-btn{
                margin-top: 20px;
            }
        }
    }
}

.flagship{
    margin-bottom: 100px;
    .common-title{
        text-align: center;
        margin-bottom: 50px;
    }
    .flags{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
        .owl-item{
            height: 100%;
        }
        .blk{
            padding: 40px;
            border-radius: 20px;
            height: 100%;
            h5{
                font-size: 20px;
                font-weight: bold;
                margin-bottom: 10px;
            }
            span{
                display: block;
                padding: 30px 0;
                padding-left: 50px;
                border-bottom: 1px solid #187ce8;
                &:last-child{
                    border-bottom: none;
                    padding-bottom: 0;
                }
                &.challange{
                    background: url(../img/flagship-icon-1.png) no-repeat left 30px;
                }
                &.approach{
                    background: url(../img/flagship-icon-2.png) no-repeat left 30px;
                }
                &.result{
                    background: url(../img/flagship-icon-3.png) no-repeat left 30px;
                }
            }
            ul{
                li{
                    padding-left: 20px;
                    background: url(../img/li-bg.png) no-repeat left center;
                    margin-bottom: 5px;
                }
            }
            &.blk-1{
                background: #115cd2;
            }
            &.blk-2{
                background: #1353b3;
            }
            &.blk-3{
                background: #164990;
            }
        }
    }
    .owl-controls-wrapper {
        display: flex;
        align-items: center;
        gap: 10px; /* spacing between dots and arrows */
        justify-content: center;
        margin-top: 15px;
    }

    .owl-dots {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .owl-dot span {
        width: 10px;
        height: 10px;
        background: rgba(255,255,255,.3);
        display: block;
        border-radius: 50%;
    }

    .owl-dot.active span {
        background: #fff;
    }

    .owl-prev, .owl-next {
        font-size: 18px;
        padding: 5px 10px;
        cursor: pointer;
        border: none;
    }

    .owl-next{
        background: #fff url(../img/carousal-arrow.png) no-repeat center center;
        width: 40px;
        height: 40px;
        border-radius: 50px;
        &:hover{
            opacity: .9;
        }
    }
    .owl-prev {
        transform: rotate(180deg);

        background: #fff url(../img/carousal-arrow.png) no-repeat center center;
        width: 40px;
        height: 40px;
        border-radius: 50px;
    }

}

.partnerships{
    .dbl-blks{
        display: grid;
        grid-template-columns: calc(35% - 50px) 65%;
        gap: 50px;
        .blk{
            padding: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            height: 100%;
            text-align: center;
            span{
                display: block;
                padding-top: 40px;
            }
            .img{
                height: 30px;
            }
            img{
                display: inline-block;
                width: auto !important;
            }
        }
        .owl-item{
            height: 100%;
        }
        .owl-nav button.owl-next{
            position: absolute;
            top: 41%;
            transform: translateY(-50%);
            right: -20px;
            background: #fff url(../img/carousal-arrow.png) no-repeat center center;
            width: 40px;
            height: 40px;
            border-radius: 50px;
            &:hover{
                opacity: .9;
            }
        }
        .owl-nav button.owl-prev {
            display: none;
            position: absolute;
            transform: rotate(180deg);
            top: 0;
            right: 50px;
            background: #fff url(../img/carousal-arrow.png) no-repeat center center;
            width: 40px;
            height: 40px;
            border-radius: 50px;
        }
    }
    .btns{
        padding: 10px;
        a{
            margin-right: 10px;
            background: #165ac3;
            display: inline-block;
            padding: 13px 23px;
            border-radius: 10px;
            &:hover{
                opacity: .8;
            }
        }
        .btn-2{
            background: #164990;
        }
    }
}

.news-events{
    margin: 100px 0 120px;
    .common-title{
        text-align: center;
        margin-bottom: 50px;
    }
    .blks{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px;
        .blk{
            background: #fff;
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            &:hover{
                box-shadow: 6px 7px 8px rgba(90, 90, 90, 0.5);
            }
            img{
                display: inline-block;
            }
            span{
                color: #1060e2;
                display: block;
                margin: 10px 0;
            }
            a{
                color: #000;
                display: inline-block;
                padding-right: 10px;
                background: url(../img/arrow-black.png) no-repeat right 5px;
                background-size: 5px;
                font-weight: bold;
                &:hover{
                    padding-right: 15px;
                }
            }
        }
    }
}

.ethics{
    .common-title{
        margin-top: -15px;
        margin-bottom: 0;
        font-size: 40px;
        line-height: 50px;
    }
    .blks{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
        align-items: center;
        .blk{
            position: relative;
            border-radius: 20px;
            background: rgba(255,255,255,0.1);
            padding: 20px;
            height: 100%;
            span{
                font-weight: bold;
                font-size: 20px;
            }
            p{
                margin-bottom: 0;
                margin-top: 2px;
            }

            &:nth-child(1){
                border: none;
                background: none;
                padding: 0;
                text-align: left;
                padding-top: 25px;
            }
        }
    }
}

























