body{
    background-color: #F05F40;
}

.navbar{
    z-index: 99;
}

.jumbotron{
    height: 1000px;
    width: 100%;
    margin-top: -350px;
    /*display: table-cell;*/
    /*vertical-align: middle;*/
    /*text-align: center;*/
    position: relative;
}

.jumbotron img {
    height: auto;
    width: 100%;
    /*background-size: cover;*/
    margin-top: 30px;
    position: absolute;
    transform: translate(-50%, -40%);
    top: 50%;
    left: 50%;
}

/*   FIX Multiple Transform in one element   */
.jumbotron .fix-multitransform{
    height: 100%;
    width: 100%;
    position: relative;
    transform: scale(0.9);
}

.jumbotron .display-4 {
    color: white;
    margin-top: 200px;
}

.jumbotron p {
    color: white;
    font-size: 20px;
}

.jumbotron hr {
    border-color : #F05F40;
    width: 70px;
    border-width: 3px;
}

.jumbotron .btn{
    background-color: #F05F40;
    border: none;
    border-radius: 25px;
    padding-right: 25px; 
    padding-left:  25px; 
    margin-top  : 40px;
}

.carousel .carousel-inner .container img{
    object-fit: cover;
    object-position: center;
}

.card {
    background-color: #dddddd;
}
.card img {
    height: 232px;
}

.card-body .card-title{
    font-weight: bold;
    margin-bottom: 20px;
}

.section1{
    margin-top: 5%;
    background-color: lightblue;
    height: 100%;
    width: 100%;
}

.section1 img{
    height: 100%;
}

.section1 p{
    margin-left: 20px;
}

.section2{
    margin-top: 5%;
    background-color: lightblue;
    height: 100%;
    width: 100%;
}

.section2 p{
    margin-left: 20px;
}

/* CSS 3 (Image Responsive) */

/*
@media (max-width : 1024px) {
    .jumbotron img{
        width: 1349px;
    }
}

@media (max-width : 720px) {
    .jumbotron img{
        width: 660px;
    }
}

@media (max-width : 480px) {
    .jumbotron img{
        width: 379px;
    }
}
*/

/* Card Style */
.card2{
    position: relative;
    width: 300px;
    height: 400px;
    background: #262626;
    overflow: hidden;
}
.imgBx img{
    width: 300px;
    height: 400px;
}
input,
.toogle{
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    outline: none;
    z-index: 10;
}
input{
    opacity: 0;
}
.toggle{
    font-family: "BebasNeue-Regular";
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    outline: none;
    z-index: 10;
    pointer-events: none;
    border-radius: 50%;
    background: #fff;
    transition: 0.5s;
    text-align: center;
    line-height: 52px;
    font-size: 30px;
    box-shadow: 0 0 0 0px #F05F40;
}
input:checked ~ .toggle{
    box-shadow: 0 0 0 500px #F05F40;
    transform: rotate(225deg);
}
.imgBx,
.content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:400px;
}
.content{
    padding: 20px;
    box-sizing: border-box;
    z-index: 11;
    pointer-events: none;
    transition: 0.5s;
    opacity: 0;
}
input:checked ~ .content{
    opacity: 1;
    transition-delay: 0.5s;
}
.content h2{
    margin-bottom: 5px;
    color: #fff;
}
.content p{
    font-size: 12px;
    margin-bottom: 5px;
    color: #fff;
}
