/* Common classes */

.hide {
    display: none !important;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary {
    color: var(--accent-color);
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s 
    ease;
    display: inline-block;
    border: 1px solid var(--accent-color);
}



/* Rest of the CSS */

.mypic {
    width: 150px;
    border-radius: 105px;
}

.home-page #header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.home-page .page-title {
    display: none;
}

.about .secondary-images .secondary-img {
    border: 1px solid #ccc;
    padding: 18px;
    margin-bottom: 30px;
}

#yoganandadocs .btn-primary {
    margin: 0 auto;
    display: block;
    width: fit-content;
}

#lifestory .btn-secondary {
    margin-top: 15px;
}





#mywork iframe {
    width: 700px;
    height: 425px; 
}

@media screen and (max-width: 600px) {

    .hero .hero-visual .hero-image-wrapper .hero-image {
        width: 70%;
        height: 68%;
        object-fit: cover;
        margin: 25px auto 14px;
        border-radius: 23px;
    }
    
    .hero-image-wrapper {
        text-align: center;
    }

    #mywork iframe {
        width: 300px;
    }

    #mywork .icon-badge {
        display: none;
    }
}