/* .section-body {
    padding-top: 110px;
    padding-bottom: 30px;
    background: fixed;
    background-position: center;
    background-size: cover;
} */

.heading-container .main-heading {
    text-align: center;
    padding-bottom: 30px;
}

.section-body .heading-container .main-heading h2 {
    font-weight: 700;
}

@media (max-width:768px) {
    .section-body .heading-container .main-heading h2 {
        font-size: 40px;
    }
}

@media (max-width:440px) {
    .section-body .heading-container .main-heading h2 {
        font-size: 40px;
    }
}

.tribute {
    display: grid;
    grid-template-columns: 2fr 1fr;
    width: auto;
    margin: 0px auto;
    background: orange;
    color: whitesmoke;
    align-items: center;
    padding: 0px 0px 0px 0px;
    margin-bottom: 25px;
}

.tribute blockquote {
    padding: 10px;
    padding-top: 7%;
    text-align: center;
    font-size: 2rem;
    line-height: 50px;
    height: 200px;
    font-weight: 600;
    font-family: monospace;
}

.tribute img {
    max-width: 100%;
}

.section-body .container h3 {
    text-decoration: underline;
}

.section-body .container p {
    font-size: 18px;
    line-height: 30px;
}

.section-body .container .p-1 {
    text-indent: 4em;
}

@media (max-width:768px) {
    .tribute {
        grid-template-columns: 1fr;
    }
    .tribute blockquote {
        font-size: 20px;
        line-height: 40px;
    }
    .section-body .container p {
        font-size: 15px;
        line-height: 30px;
    }
}

@media (max-width:440px) {
    .tribute {
        grid-template-columns: 1fr;
    }
    .tribute blockquote {
        font-size: 15px;
        line-height: 25px;
    }
    .section-body .container p {
        font-size: 12px;
        line-height: 20px;
    }
    .flicker-img ul li a {
        text-decoration: none; 
        color: #000; 
        transition: color 0.3s ease-in-out; 
    }

   
    .flicker-img ul li a:hover {
        color: #ff5722; 
    }
}


/* Iframe respnsive */

.videowrapper-yt {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}
.videowrapper-yt iframe {
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 80%;
}





.portfolio {
    padding: 60px 0;
    overflow: hidden;
    background: fixed;
    background-size: cover;
    background-position: center;
}



        @keyframes fadeInAndMove {
            0% {
                opacity: 0;
                transform: translateY(-50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

      
        /* p {
            animation: fadeInAndMove 2s ease-in-out;
            text-align: center;
            
        } */
        @keyframes slideInLeft {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        @keyframes slideInLeft {
            0% {
                transform: translateX(-100%);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .quote {
            animation: slideInLeft 2s ease-in-out;
        }

        .main-heading h2 {
            animation: fadeInDown 2s;
        }

        @keyframes fadeInDown {
            0% {
                transform: translateY(-50%);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }