/*fonts*/

@font-face {
    font-family: "SD";
    src: url(Sunbird\ DEMO.otf);
}

@font-face {
    font-family: "Yae";
    src: url(Yaelah.ttf);
}


/*fonts-end*/

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "SD";
    background: #ffffff;
}

/*nav-bar*/

.nav-bar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     list-style: none;
     position: relative;
     background-color: #fff;
     padding: 5px;
     margin: 10px 5px;
}

.logo1 {
    text-decoration: none;
    color: #181818;
    font-size: 55px;
    font-family: "Yae";
}

.bolder {
    font-weight: bolder;
}


.menu {
    display: flex;
}

.menu li {
    padding-left: 30px;
}

.menu li a {
    font-size: 20px;
    display: inline-block;
    text-decoration: none;
    color: #181818;
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}

.menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #000;
    transition: 0.15s ease-in-out;
}

.menu li a:hover:after {
    width: 100%;
}

.open-menu , .close-menu {
    position: absolute;
    color: #181818;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}

.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #181818;
}

.close-menu {
    top: 20px;
    right: 20px;
}

#check {
    display: none;
}

/*end-nav-bar*/


/*main*/

main{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: auto;
}

.heading h1{
    padding-top: 40px;
    font-size: 50px;
    color: #000;
    margin-bottom: 20px;
    position: relative;
}

.heading p{
    font-size: 20px;
    margin-bottom: 20px;
}

.txt2{
    font-size: 18px;
    margin: 20px;
}


.container{
    width: 70%;
    margin: 0 auto;
    padding: 10px 20px;
}

.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.about-img{
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}

.about-img img{
    margin-top: 20px;
    max-width: 100%;
    height: auto;
    display: block;
}

.about-content{
    flex: 1;
}

.about-content p{
    font-size: 18px;
    line-height: 1.5;
    padding: 10px;
}

.about-content .read-more{
    display: inline-block;
    padding: 10px 20px;
    background: #C8A1E0;
    color: #000;
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.about-content .read-more:hover{
    background: #b879e0;
    color: #fff;

}

@media screen and (max-width: 999px) {

    .heading{
        padding: 0px 20px;
    }

    .heading h1{
        font-size: 36px;
    }

    .heading p{
        font-size: 17px;
        margin-bottom: 0px;
    }

    .container{
        padding: 0px;
    }
    .about{
        padding: 20px;
        flex-direction: column;
    }
    .about-img{
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .about-content p{
        padding: 0px;
        font-size: 16px;
    }

    .about-content .read-more{
        font-size: 16px;
    }

}

/*end-main*/

/*Footer*/

.footer {
    margin-top: 50px;
    padding: 40px 0;
    background-color: #C8A1E0;
    padding-bottom: 15px;
}

.media {
    text-align: center;
    padding-bottom: 25px;
    color: #181818;
}

.media a {
    font-size: 24px;
    color: #000;
    border: 1px solid #000;
    width: 40px;
    line-height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 8px;
    opacity: 0.75;
    transition: 0.2s;
}

.media a:hover {
    opacity: 0.9;
    border: 1px solid #7a727e;
}

.footer ul {
    margin-top: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

.footer ul li a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.2s;
}

.footer ul li {
    display: inline-block;
    padding: 0 15px;
}

.footer ul li a:hover {
    color: #7a727e;
}

.copyright {
    font-size: 13px;
    text-align: center;
    margin-top: 15px;
    opacity: 1;
    font-family: monospace;
}

/*end-footer*/


/*RESPONSIVE-SECTION*/


/*RESPONSIVE-nav-bar-menu-burger*/
        
@media screen and (max-width: 990px) {
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: #ffffff;
        transition: all 0.2s ease-in-out;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block;}
    #check:checked ~ .menu {right: 0;}
}

/*end-responsive-nav-bar-menu-burger*/


/*RESPONSIVE-530px-VIEW-footer*/

@media screen and (max-width: 530px) {
   
    .footer ul{
        font-size: 13px;
    }

    .copyright{
        font-size: 10px;
    }

}