main{
    min-height: 60vh;
}

main .banner-section{
    padding: 30px 0;
}
main .banner-section .decl{
    display: flex;
    gap: 24px;
    padding: 10px 0 30px;
    @media(max-width: 991px){
        flex-direction: column;
        gap: 25px;
    }
}
main .banner-section .decl .box{
    width: 100%;
}
main .banner-section .decl .box h5{
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Roboto-r';
    font-size: 18px;
}
main .banner-section .decl .box a{
    width: 100%;
    background-color: var(--dark-blue);
    display: flex;
    align-content: center;
    justify-content: center;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white-color);
    text-decoration: none;
    font-family: 'Roboto-b';
    padding: 10px 40px;
    border-radius: 10px;
    text-align: center;
    &:hover{
        background-color: var(--main-color);
        transition: all 0.5s ease-in-out;
    }
    @media(max-width: 991px){
        font-size: 16px;
        padding: 10px 20px;
    }
}
main .banner-section .decl .img{
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
main .banner-section .decl .img .image{
    width: 85px;
    height: 85px;
    border: 1px solid var(--dark-color);
    border-radius: 100%;
    @media(max-width: 576px){
        width: 70px;
        height: 70px;
    }
}
main .banner-section .decl .img .image img{
    width: 100%;
    border-radius: 100%;
}
main .banner-section .decl .img .text{
    flex: 1;
}
main .banner-section .decl .img .text p{
   font-style: italic;
   font-family: 'Roboto-r';
   font-size: 15px;
    @media(max-width: 767px){
        font-size: 13px;
    }
}
main .banner-section .dark-box{
    display: flex;
    flex-direction: column;
    margin: 20px 0 35px;
}
main .banner-section .video-section{
    display: flex;
    padding: 10px 0;
    gap: 24px;
    @media(max-width: 767px){
        flex-direction: column;
    }
}
main .banner-section .video-section .video{
    width: calc(50% - 12px);
    box-shadow: 0 0 5px #c2c1c1;
    border-radius: 10px;
    overflow: hidden;
    @media(max-width: 767px){
        width: 100%;
    }
}
main .banner-section .dark-box .dark-top{
    background-color: var(--dark-blue);
    border-radius: 10px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    flex-direction: column;
    @media(max-width: 767px){
        padding: 10px;
    }
}
main .banner-section .dark-box .dark-top .coll{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
main .banner-section .dark-box .dark-top .coll .img{
    width: 130px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
    @media(max-width: 767px){
        width: 80px;
        height: 80px;
    }
}
main .banner-section .dark-box .dark-top .coll .img img{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
main .banner-section .dark-box .dark-top .coll .txt{
    flex: 1;
}
main .banner-section .dark-box .dark-top .coll .txt p{
    color: white;
    font-family: 'Roboto-r';
    margin: 0;
    @media(max-width: 767px){
        font-size: 13px;
    }
}
main .banner-section .dark-box .white{
    border-radius: 0 0 10px 10px;
    border: 1px solid var(--dark-blue);
    padding: 10px 30px;
    @media(max-width: 767px){
        padding: 10px;
    }
}
main .banner-section .dark-box .white h3{
    text-transform: uppercase;
    font-family: 'Roboto-b';
    text-align: center;
    font-size: 23px;
    line-height: 28px;
    margin-bottom: 10px;
}
main .banner-section .dark-box .white p{
    margin: 0;
    text-align: center;
    font-size: 16px;
    line-height: 25.5px;
    font-family: 'Roboto-r';
}
main .banner-section .decl2{
    display: flex;
    align-content: flex-start;
    gap: 24px;
    padding: 35px 0 25px;
    @media(max-width: 991px){
        flex-direction: column-reverse;
        gap: 25px;
    }
}
main .banner-section .decl2 .box{
    width: calc(50% - 12px);
    @media(max-width: 991px){
        width: 100%;
    }
}
main .banner-section .decl2 .box .big-image img{
    width: 100%;
    box-shadow: 0 0 5px #c2c1c1;
    border: 1px solid #c2c1c1;
    border-radius: 10px !important;
}
main .banner-section .decl2 .box .view-more{
    cursor: pointer;
    &:hover{
        color: var(--main-color);
    }
}
main .banner-section .decl2 .box .view-more .less{
    display: none;
    &.active{
        display: flex;
    }
}
main .banner-section .decl2 .box .more-text{
    display: none;
}
main .banner-section .decl2 .box .about-text h3{
    width: 100%;
    background-color: var(--main-color);
    padding: 10px 0;
    font-size: 16px;
    color: var(--white-color);
    font-family: 'Roboto-b';
    margin-bottom: 20px;
    text-align: center;
    border-radius: 5px;
    text-transform: uppercase;
}
main .banner-section .decl2 .img h3{
    margin: 20px 0;
    font-family: 'Roboto-b';
    font-size: 23px;
    line-height: 30px;
    text-transform: capitalize;
}

main .banner-section .decl2 .box .about-text  p{
    font-style: italic;
    font-family: 'Roboto-r';
    font-size: 15px;
    line-height: 25.5px;
}


main .banner-section .declaration  {
    padding: 30px 38px;
    background-color: rgba(243,247,0,.1);
    border-radius: 5px 5px 5px 5px;
    display: flex;
    align-content: center;
    gap: 50px;
    flex-wrap: wrap;
    @media(max-width: 991px){
        flex-direction: column;
        padding: 15px 7px;
        gap: 30px;
        align-content: center;
    }
}
main .banner-section .declaration .image{
    width: 182px;
    height: 182px;
    border-radius: 100%;
    border:1px solid #7d7d7d;
    box-shadow: 0 0 5px 0 #888;
    display: flex;
    align-content: center;
    justify-content: center;
    @media(max-width: 991px){
        margin: 0 auto;
    }
}
main .banner-section .declaration .txt{
   flex: 1;
}
main .banner-section .declaration img{
    width: 100%;
    border-radius: 100%;
}
main .banner-section .declaration .txt blockquote{
    border-left: 5px solid var(--main-color);
    padding-left: 20px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}
main .banner-section .declaration .txt blockquote p{
    font-style: italic;
    font-size: 15px;
    font-family: 'Roboto-r';
}
