@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --curly-font: "Cormorant Garamond", serif;
  --dark-blue: #000e67;
  --light-blue: #54758a;
  --yellow: #f0b323;
  --bright-blue: #0032a0;
  --deep-blue: #2e364a;
  --gray: #00000070;
  --sky-blue:#257aa4;
}

.wrap{
    flex-wrap: wrap;
  }

body {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.flex-class {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-class {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

ul {
  list-style: none;
}

h1{
    color: var(--sky-blue);
    font-size: 35px;
    margin-bottom: 20px;
}


.hero .left{
        width: 60%;
        min-width: 300px;
}

.hero .right{
    width: 40%;
    flex-direction: column;

}

.right .img{
    background-color: var(--sky-blue);
    height: 400px;
    width: 400px;
    border-radius: 100%;
    border: 5px solid var(--sky-blue);
    background-image: url(../assests/new_home_page/jk\ shah.png);
}

.right .img.vishal-img{
  height: 300px;
    width: 300px;
  background-image: url(../assests/new_home_page/pro\ pic.png);
}

.hero .left{
    padding: 60px;
    
}

.hero .left {
  text-align: justify;
}



.hero .left .text{
    font-size: 187x;
    color: #333333;
    line-height: 25px;
}


.name{
    font-size: 30px;
    font-weight: 700;
    color: var(--sky-blue);
    margin-top: 20px;
}

.staus{
    margin-top: 10px;
}

@media only screen and (max-width:1000px){
    .right .img{
        width: 280px;
        height: 280px;
    }
}

@media only screen and (max-width:800px){
    .hero{
        flex-direction: column-reverse;
        padding-top: 60px;
    }

    .hero .left , .hero .right{
        width: 100%;
    }
}


@media only screen and (max-width:500px){
    .hero .left{
        padding: 28px;
        padding-top: 40px;
    }
}