@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@100..900&family=Paytone+One&display=swap');




@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');



html, body {
     overflow-x: hidden; 
  }
  
:root{
    --primary-font:Merriweather ;
    --secondary-font:Noto Sans Georgian ;
    --primary-color:#135AFD;
    --secondary-color:#FFFF00;
}

.customNav2{
    font-size: 50px;
    font-weight: 350;
    font-family: var(--secondary-font);
}
.navbar{
    padding-top: 0;
}
.navbar-nav{
    margin-left: 170px;
}
.nav-link{
    padding-bottom: 0;
    padding-top: 0;
    transition: all 0.5s;
    color: white;
}
.nav-link:hover{
    background-color: blue;
    border-radius: 20px;
}

.niche{
    height: 400px;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 4.5rem;
}
.niche-left{
    height: 100%;
    width: 50%;
}
.niche-right{
    height: 100%;
    width: 50%;
}
.niche-img{
    width: 100%;
    height:350px;
    padding-bottom: 20px;
    border-top-left-radius: 30px;
    border-bottom-right-radius:30px ;
}



.opp{
    height: 400px;
    width: 100%;
    justify-content: space-between;
}
.opp-left{
    height: 100%;
    width: 50%;
}
.opp-right{
    height: 100%;
    width: 50%;
}
.opp-box{
    border: 3px solid var(--primary-color);
} 

/* inverted border */

.niche_hiring{
    /* inverted border */
    position: relative;
    width: 100%;
    margin-top: -11px;  
}
/* inverted border */
.niche_hiring::after, .niche_hiring::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.niche_hiring::after{
    background: white;
    top: 0;
    right: 0;
    border-top-right-radius: 40px;
    box-shadow: 40px 0 0 var(--primary-color);
}
.niche_hiring::before{
    height: 80px;
    width: 40px;
    background: transparent;
    bottom: 100%;
    left: 0;
    border-bottom-left-radius: 40px;
    box-shadow: 0 40px 0 white;
}



.leadership{
    /* inverted border */
    position: relative;
    width: 100%;
    margin-top: -40px;
    
}
/* inverted border */
.leadership::after, .leadership::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.leadership::after{
    background: var(--primary-color);
    top: 0;
    right: 0;
    border-top-right-radius: 40px;
    box-shadow: 40px 0 0 white;
}
.leadership::before{
    height: 80px;
    width: 40px;
    background: transparent;
    bottom: 100%;
    left: 0;
    border-bottom-left-radius: 40px;
    box-shadow: 0 40px 0 var(--primary-color);
}



.contractual{
    /* inverted border */
    position: relative;
    width: 100%;
    margin-top: -40px;
}
/* inverted border */
.contractual::after, .contractual::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.contractual::after{
    background: white;
    top: 0;
    right: 0;
    border-top-right-radius: 40px;
    box-shadow: 40px 0 0 var(--primary-color);
}
.contractual::before{
    height: 80px;
    width: 40px;
    background: transparent;
    bottom: 100%;
    left: 0;
    border-bottom-left-radius: 40px;
    box-shadow: 0 40px 0 white;
}



.onboarding{
    /* inverted border */
    position: relative;
    width: 100%;
    margin-top: -40px;
}
/* inverted border */
.onboarding::after, .onboarding::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.onboarding::after{
    background: var(--primary-color);
    top: 0;
    right: 0;
    border-top-right-radius: 40px;
    box-shadow: 40px 0 0 white;
}
.onboarding::before{
    height: 80px;
    width: 40px;
    background: transparent;
    bottom: 100%;
    left: 0;
    border-bottom-left-radius: 40px;
    box-shadow: 0 40px 0 var(--primary-color);
}



.upskilling{
    /* inverted border */
    position: relative;
    width: 100%;
    margin-top: -40px;
}
/* inverted border */
.upskilling::after, .upskilling::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.upskilling::after{
    background: white;
    top: 0;
    right: 0;
    border-top-right-radius: 40px;
    box-shadow: 40px 0 0 var(--primary-color);
}
.upskilling::before{
    height: 80px;
    width: 40px;
    background: transparent;
    bottom: 100%;
    left: 0;
    border-bottom-left-radius: 40px;
    box-shadow: 0 40px 0 white;
}

@media only screen and (max-width:475px){

    .niche{
        display: flex;
        flex-direction: column;
        height: 100%;
        text-align: start;
        padding-right: 20px;
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    .niche-left {
        width: 100%;
        margin: 0;padding: 0;

    }
    .niche-right{
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .niche-img{
        margin-right: 20px;
        padding-right: 20px;
        margin-left: 0;
        padding-left: 0;
        padding-bottom: 0;
        width: 90%;
    }

    .opp{
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .opp-left {
        width: 100%;
    }
    .opp-right{
        width: 100%;

    }
}
