@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;
   
} 

.contact{
    /* width: 100%;
    height: 500px; */
    background-color: white;
}
.contact-left{
    margin-top: 50px;
    margin-left: 100px;
    height: 100%;
    width: 30%;
}
.contact-right{
    text-align: center;
    height: 100%;
    width: 70%;
}
.contact-form{
    margin-top: 5px;
    padding-top: 0px;
    padding: 30px;
    height: 500px;
    width: 450px;
    border-radius: 20px;
    text-align: left;
    margin-bottom: 100px;
}


.input_border{
    border: 1px solid black;
    
}


/* contact_border */

/* inverted border */

.contact_border{
    /* inverted border */
    position: relative;
    width: 100%;
    margin-top: -11px;  
}
/* inverted border */

.contact_border::after, .contact_border::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40px;
    z-index: 1;
}
.contact_border::after{
    background: white;
    top: 0;
    right: 0;
    border-top-right-radius: 40px;
    box-shadow: 40px 0 0 var(--primary-color);
}
.contact_border::before{
    height: 80px;
    width: 40px;
    background: transparent;
    bottom: 100%;
    left: 0;
    border-bottom-left-radius: 40px;
    box-shadow: 0 40px 0 white;
}


/* reponsive design */

@media only screen and (max-width:475px){
    .contact{
        flex-direction: column;
    }
    .contact-left{
        width: 100%;
        text-align: start;
        margin-left: 40px;
    }
    .contact-right{
        width: 100%;
    }
    .contact_line{
        width: 350px;
        margin-right: 40px;
        padding-right: 40px;
    }
}
