/*

    1. IMPORTS 
    2. COLOR PALLET
    4. GLOBAL
    5. NAVIGATION
      *****See header.css******

    6. MAIN
      6.1 TYPOGRAPHY
      6.2 LAYOUT
      6.3 COMPONEMNTS
      6.4 IMAGES
      6.5 MEDIA QUERIES
    
    10. FOOTER
      *****See footer.css******








/* 
======================================================================== 
                              1. IMPORTS 
======================================================================== 
*/




/* 
======================================================================== 
                            2. COLOR PALLET 
======================================================================== 
*/

/* 
======================================================================== 
                             3. GLOBAL
======================================================================== 
*/
*,
*:before,
*:after {
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}


/* p{
    color: whitesmoke;
    word-spacing: 0.25px;
}


h1 {
    font-family: 'Bebas Neue', cursive;
    color: whitesmoke;
    font-size: 5em;
    text-align: center;
    letter-spacing: 0.75rem;
    word-spacing: 0.5rem;
} */


/* 
*******************************
4.4 SOCIALS
*******************************
*/



/* 
======================================================================== 
                             5. MAIN
======================================================================== 
*/

/* 
*******************************
4.1 TYPOGRAPHY (MAIN)
*******************************
/* 
*******************************
4.2 LAYOUT (MAIN)
*******************************
*/

.main-content {
    background-image: url("/assets/BG1.jpg");
    background-position: center;
    background-size: 100% 212%;
    height: 100%;
}


.main-page-top-heading-wrapper {
    margin: 3rem;
}


.main-page-top-heading {
    display: flex;
    margin: 50px;
    justify-content: center;
}

.main-page-top-button-wrapper {
    display: flex;
    margin: 50px;
}

.button {
    background-color: red;
    border: none;
    color: whitesmoke;
    padding: 15px 32px;
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    text-decoration: none;
    margin: auto;
    font-size: 33px;
    cursor: pointer;
    box-shadow: 3px 3px 25px 10px grey;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    transform: scale(1.1);
  }

.sidebar {
    display: none;
}

.main-page-bottom{
    display:flex;   
    flex-wrap: wrap;
}

.content-box-left, .content-box-right{
    width: clamp(320px, 100%, 1800px);
    /* min-width: 1200px; */
    margin: auto;
    display: inline-grid;
    gap: -25px;
    padding: 15px;
    /* padding-inline: 50px; */
    grid-template-columns: auto auto auto;
}

.grid-item{
    display: flex;
    padding: 25px;
    align-items: center;

}

.content-box:nth-child(2), .content-box:nth-child(4){
    margin-left: auto; 
    margin-right: 0;
    margin-top:-50px;
}

.content-box-right{
    margin-top:-50px;

}
.content-box-left .grid-item:nth-child(1), .content-box-left .grid-item:nth-child(2), .content-box-right .grid-item:nth-child(3), .content-box-right .grid-item:nth-child(2) {
    background: rgb(129 133 129 / 20%);  
    backdrop-filter: blur(10px);
  

}
.content-box-left .grid-item:nth-child(3), .content-box-right .grid-item:nth-child(1){
    margin: auto;
}

.content-box-left{
    grid-template-columns: auto auto 40%;
    font-family: 'Montserrat';
    }

.special-class{
    margin-top:-50px;
}

.content-box-right{
grid-template-columns: 40% auto auto;
font-family: 'Montserrat';
}

.content-box:nth-child(2), .content-box:nth-child(4), .content-box:nth-child(6){
    margin-right:50px;
}

.img-wrapper{
    margin:auto;
}

.content-box p{
    /* font-size:1.5rem; */
    margin-block: 1rem;
}


.content-box-left p, .content-box-right p{

    margin-block:1rem;
}



/* 
*******************************
4.3 IMAGES
*******************************
*/

.launch-img{
    width: clamp(200px, 100%, 500px);
    
}

.cow_twins{
    width: 500px;
    height: 250px;
    margin:auto;
    box-shadow: 3px 3px 25px 10px grey;

}

.collage1{
    width:520px;
}
/* 
*******************************
4.4 MEDIA QUERIES
*******************************
*/

/* 
*******************************
4.4 MEDIA QUERIES
*******************************
*/

@media only screen and (max-width : 1550px) {

    .cow_twins{
        display:none;
    }

.content-box-left, .content-box-right {
grid-template-columns: auto auto;
/* width:75%; */
margin:auto;
padding-inline: clamp(2rem, 5.5vw, 10rem);
/* min-width:1000px; */

}

.content-box-left .grid-item:nth-child(3){
    display:none;
}

.content-box-right .grid-item:nth-child(1){
    display:none;
}

.grid-item {
    display: flex;
    align-items: center;

}


}


@media only screen and (max-width : 1000px) {
    .content-box-left, .content-box-right {
        /* min-width:500px; */
        display:block;
        padding-inline:clamp(1rem, 2rem, 3rem);
    }

    .launch-img {
        /* width: 350px;
        height:300px; */
        margin: auto;

    }



}


@media only screen and (max-width : 500px) {


    .content-box-left, .content-box-right {
        /* min-width:375px; */
    }

    .launch-img {
        /* width: 220px;
        height: 250px; */
        margin: auto;
    }


}


@media only screen and (max-width : 375px) {


    .content-box-left, .content-box-right {
        /* min-width:320px; */
        padding-block: 1rem;
    }

    .launch-img {
        /* width: 280px;
        height: 250px; */
        margin: auto;
    }

    .main-page-top-button-wrapper, .main-page-top-heading {
        margin:1rem;
      
    }
    .main-page-top-heading-wrapper {
        margin:1rem;
    }


    .grid-item {
        padding: 1rem;
    }

}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

@keyframes fadeInOutAnimation {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

}

