/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
    position: relative;
    width: 100%; 
    overflow: hidden;
    background-image:linear-gradient(to right, rgba(35, 185, 239, 0.95) 0%, rgb(58, 123, 213, 0.95) 100%), url(./hero-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top:120px;
}

.hero .container-fluid {
    padding:0;
}

.hero .hero-image {
    position: relative;
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

.hero .hero-image img {
    position:relative;
    max-width: 100%;
    max-height: 100%;
    right:-50px;
    
}

.hero .hero-content {
    position: relative;
    padding-left: 5px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero .hero-text p {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero .hero-text h1 {
    /* Dr pankaj kumar gupta Text */
    color: #ffffff;
    font-size: 60px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-family: "Kaushan Script", cursive;
    font-weight: 300;
    font-style: normal;
}

.hero .hero-text h2 {
    display: inline-block;
    margin: 0;
    height: 35px;
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
}

.hero .hero-text h3 {
    display: inline-block;
    margin-bottom: 10px;
    height: 30px;
    color: #ffffff;
    font-size: 24px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .hero .hero-text h4 {
    display: inline-block;
    margin-top: 5px;
    height: 30px;
    color: #ffffff;
    font-size: 20px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-style: normal;
  }

.hero .hero-btn .btn {
    margin-top: 35px;
    color: rgba(35, 185, 239, 0.90);
    background: #ffffff;
    box-shadow: inset 0 0 0 50px #ffffff;
    border-radius: 50px;
}

.hero .hero-btn .btn:hover {
    color: #ffffff;
    background: transparent;
    box-shadow: inset 0 0 0 0 #ffffff;
    border-color: #ffffff;
}

.hero .hero-btn .btn:first-child {
    margin-right: 10px;
}

@media (max-width: 991.98px) {
    .hero {
        padding-top: 60px;
    }
    
    .hero .hero-content {
        padding: 0 15px;
    }
    .hero .hero-image img {
        max-width: 80%;
        max-height: 80%;
    }
    .hero .hero-text p {
        font-size: 20px;
    }
    
    .hero .hero-text h1 {
        font-size: 45px;
    }
    
    .hero .hero-text h2 {
        font-size: 25px;
        height: 25px;
    }
    
    .hero .hero-btn .btn {
        padding: 12px 30px;
        letter-spacing: 1px;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .hero .hero-image img {
        max-width: 50%;
        max-height: 50%;
    }
    .hero,
    .hero .hero-text,
    .hero .hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero .hero-text p {
        font-size: 18px;
    }
    
    .hero .hero-text h1 {
        font-size: 35px;
    }
    
    .hero .hero-text h2 {
        font-size: 22px;
        height: 22px;
    }
    
    .hero .hero-btn .btn {
        padding: 10px 15px;
        letter-spacing: 1px;
    }
}

@media (max-width: 575.98px) {
    
    .hero {
    padding-top:90px;
}

    .hero .hero-image img {
    position:relative;
    max-width: 100%;
    max-height: 100%;
    right:0px;
    
}

    .hero .hero-text p {
        font-size: 16px;
    }
    
    .hero .hero-text h1 {
        font-size: 30px;
    }
    
    .hero .hero-text h2 {
        font-size: 18px;
        height: 18px;
    }
    
    .hero .hero-btn .btn {
        padding: 8px 10px;
        letter-spacing: 0;
    }
}

