

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* COMMON CLASS */

:root{
    --yellow-gold: rgb(255, 223, 0);
    --shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    --dark-blue: rgb(23, 52, 120);
    --blue: #0000FF;
    --sub-text-shadow: 1px 1px 1px gold;
}


img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper {
    padding-left: 100px;
    padding-right: 100px;
}

a {
    text-decoration: none;
}

/* NAV PART */

.navbar {
    /* background-color: rgb(23, 52, 120); */
    /* background: linear-gradient(to left, rgba(135, 206, 235, 1), rgba(0, 0, 128, 1)); */
    background: linear-gradient(to left, rgba(0, 102, 204, 1), rgba(0, 0, 128, 1));
    box-shadow: 2px 2px 4px var(--yellow-gold);
}

.logo img {
    width: 120px;

}

.nav-link {
    /* color: goldenrod; */
    color: rgb(255, 223, 0);
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);  */
    font-family: "Poppins",sans-serif;
    font-size: 16px;
}

.nav-link:hover {
    color: rgb(250, 8, 8);
}

.active {
    color: rgb(248, 7, 7) !important;
}

.navbar-toggler {
    background-color: goldenrod;
    border: 2px solid white;
}

.t-icon {
    color: white;
}

.dropdown-item:hover{
    background-color: var(--yellow-gold);
}

/* ....... */
/* sticky navbar */

nav {
	/* padding: 25px 0; */
	/* background-color: rgb(189, 3, 3); */
	position: -webkit-sticky;
	/* text-align: center; */
	/* color:orange;
	font-weight: bold;
	font-style:italic; */
}

.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    border-top: 0;
  }
/* ........ */


/* BLOG BANNER PART */

.blog-banner{
    height: 550px;
    background-image: url("../Images/blog\ banner3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%;
    
}

.blog-heading h3{
    font-family: "Philosopher", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 50px;
    color: var(--yellow-gold);
    text-shadow: var(--shadow); 
}

/* BLOG MAIN PART */
.blog-part{
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--dark-blue);
}

.blog-text .p23{
    font-family: "Philosopher",sans-serif;
    font-size: 20px;
    text-shadow: 2px 2px 2px var(--yellow-gold);
}

.blog-text .p24{
    font-family: "Poppins",sans-serif;
    font-size: 16px;
    
}

.blog-img img{
    border-radius: 15px;
}


/* FOOTER PART */

.footer-part{
    padding-top: 80px;
    padding-bottom: 50px;
    background-image: linear-gradient(to left, rgba(0, 102, 204, 1), rgba(0, 0, 128, 1));
    background-repeat: no-repeat;
    background-size: cover;
    border: 2px solid var(--yellow-gold);
    
    }
    
    .footer-logo img{
        width: 120px;
    }
    
    .footer-logo{
        margin-bottom: 20px;
    }
    
    .footer-text1 .p13{
        font-family: "Poppins",sans-serif;
        font-size: 20px;
        text-shadow: 2px 2px 2px var(--yellow-gold);
    }
    
    .footer-text2 .p14{
        font-family: "Poppins",sans-serif;
        font-size: 16px;
    }
    
    .footer-icon .s3{ 
        font-size: 20px;
       
    }
    
    .footer-icondiv{
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: goldenrod;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 10px;
    }
    
    .footer-star{
        margin-bottom: 30px;
    }
    
    .footer-star .s4{
        color: var(--yellow-gold);
    }
    
    .footer-div{
        border-right: 2px solid goldenrod;
        
        padding: 8px 10px;
    }
    
    /* COPY RIGHT PART */
    
    .copyright-part{
        padding-top: 20px;
        /* padding-bottom: 20px; */
        margin-top: 50px;
        border-top: 2px solid var(--yellow-gold);
    }
    
    .copyright-part .p15{
        font-family: "Satisfy",sans-serif;
        font-size: 50px;
        color: var(--yellow-gold);
        
    }
    
    .copyright-part .p16{
        font-family: "Poppins",sans-serif;
        font-size: 16px;
    }










    /* RESPONSIVE PART */
    @media screen and (max-width:1440px) {
        
    }

    @media screen and (max-width:1199px) {

        /* BLOG BANNER PART */

        .blog-banner{
            height: 400px;
        }
        
    }

    @media screen and (max-width:991px) {

        /* BLOG BANNER PART */

        .blog-banner{
            height: 350px;
        }

        .blog-heading h3{
            font-size: 30px;
        }

        /* BLOG MAIN PART */
.blog-part{
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--dark-blue);
}

.blog-text .p23{
    font-size: 17px;
   
}

.blog-text .p24{
    font-family: "Poppins",sans-serif;
    font-size: 12px;
    
}
        

        /* FOOTER PART */

    .footer-part{
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer-div{
        padding: 8px 10px;
        margin-bottom: 20px;
    }

    .footer-star{
        margin-bottom: 10px;
    }



    }

    @media screen and (max-width:767px) {
        
         /* NAV PART */

    .logo img {
        width: 90px;
    }

       /* BLOG BANNER PART */

       .blog-banner{
        height: 300px;
    }

    .blog-heading h3{
        font-size: 30px;
    }

          /* BLOG MAIN PART */
.blog-part{
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--dark-blue);
}

.blog-text .p23{
    font-size: 17px;
   
}

.blog-text .p24{
    font-family: "Poppins",sans-serif;
    font-size: 12px;
    
}

.blog-img {
    text-align: center;
    margin-bottom: 20px;
}

.blog-img img{
    width: 400px;
    height: 300px;
    border-radius: 15px;
}

.blog-text{
    padding: 12px;
    box-shadow: 2px 2px 5px var(--yellow-gold);
}

#box1{
    order: 2;
}

#box2{
    order: 1;
}




     /* FOOTER PART */

     .footer-part{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-logo img{
        width: 100px;
    }

    .footer-div{
        padding: 8px 10px;
        margin-bottom: 20px;
    }

    .footer-star{
        margin-bottom: 10px;
    }

    .footer-text1 .p13{
        font-size: 18px;
    }
    
    .footer-text2 .p14{
        font-size: 14px;
    }
    
    
.footer-icondiv{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: goldenrod;
}
    .footer-icon .s3{ 
        font-size: 15px;
       
    }

    /* COPYRIGHT PART */

    .copyright-part .p15{
        font-size: 30px;
        
    }

    .copyright-part .p16{
        font-size: 12px;
    }



    }

    @media screen and (max-width:575px) {

         /* BLOG BANNER PART */

       .blog-banner{
        height: 200px;
    }

    .blog-heading h3{
        font-size: 30px;
    }

           /* BLOG MAIN PART */
.blog-part{
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--dark-blue);
}

.blog-text .p23{
    font-size: 15px;
   
}

.blog-text .p24{
    font-family: "Poppins",sans-serif;
    font-size: 11px;
    
}

.blog-img {
    text-align: center;
    margin-bottom: 20px;
}

.blog-img img{
    width: 280px;
    height: 200px;
    border-radius: 15px;
}
        

        /* FOOTER PART */

     /* COPYRIGHT PART */

     .copyright-part .p15{
        font-size: 20px;
        
    }

    .copyright-part .p16{
        font-size: 8px;
    }



    
    }

    @media screen and (max-width:479px) {
        
    }
