@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;
  }
  p{
    margin-bottom: 0;
  }
: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;
   
}

.job1{
    color: var(--primary-color);
    text-align: center;
  
}
.job_form{
     margin-left: 370px;
     margin-bottom: 10px;
}
.jobBox{
    width: 350px; 
    height: 100%;
    background-color: rgb(226, 223, 223);
    box-shadow: 5px 5px rgba(0,0,0,0.2);
}
.job_opp{
    margin-bottom: 90px;
}
.job_title{
    font-family: var(--primary-font);
}
p{
    font-family: var(--secondary-font);
}
.comapny_name{
    font-family: var(--primary-font);
}

/* inverted border */

.job_border{
    /* inverted border */
    position: relative;
    width: 100%;
    margin-top: -11px;  
}
/* inverted border */
.job_border::after, .job_border::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.job_border::after{
    background: white;
  top: 0;
  right: 0;
  border-top-right-radius: 40px;
  box-shadow: 40px 0 0 var(--primary-color);
}
.job_border::before{
    height: 80px;
  width: 40px;
  background: transparent;
  bottom: 100%;
  left: 0;
  border-bottom-left-radius: 40px;
  box-shadow: 0 40px 0 white;
}
.AtEmail{
    font-family: var(--primary-font);
    /* color: var(--primary-color); */
}
.mailId{
    color: var(--primary-color);
    cursor: pointer;
}
/* p{
   margin-bottom: 0;
} */

/* reponsive design */

@media only screen and (max-width:475px){
    .job2{
        margin-top: 0;
    }
    .job_form{
        margin-left: 100px;
    }
    .btn_mobile{
        margin-left: 68px;
    }
    .job_opp{
        display: flex;
        flex-direction: column;
    }
    .jobBox{
        margin-bottom: 25px;
    }
}