@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed&display=swap');
/* font-family: 'Fira Sans Extra Condensed', sans-serif; */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
}

body{
    background: rgba(218,218,218,1);
}

.container{
    margin: 50px 40px 0 40px;
}

.container .heading{
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-around;
}

.theme{
    width: 60px;
    cursor: pointer;
    margin-left: 20px;
    align-items: center;
}

.theme > i {
    font-size: 2.5rem;
    border-radius: 50px;
    height: 48px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}

.theme > i:hover {
    background: linear-gradient( to right, red , yellow , orange , green , indigo, violet);
    color: black;
    transform: translateY(-1%);
    -webkit-transform: translateY(-1%);
    -moz-transform: translateY(-1%);
    -ms-transform: translateY(-1%);
    -o-transform: translateY(-1%);
    box-shadow: 2px 5px 30px rgba(0, 0, 0, .4);
    opacity: 0.9;
}

.container .heading h3{
    font-size: 3rem;
	text-transform: uppercase;
	margin: 0;
	text-align: center;
	padding: 2rem 5% 1rem 5%;
    color: #262626;
    border-bottom: 3px solid #262626;
    display: flex;
}

.container .heading h3 span{
    font-weight: 300;
}

.container .box .column{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;   
}

.wrapper{
    width: 24%;
    display: none;
}

.wrapper:nth-child(1){
    display: block;
}

.wrapper:nth-child(2){
    display: block;
}

.wrapper:nth-child(3){
    display: block;
}

.wrapper:nth-child(4){
    display: block;
}

.btnSeeMore {
    width: 130px;
    height: 40px;
    padding: 10px 25px;
    border: 2px solid #1d1919;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
    left: 50%;
    transform:translateX(-50%);
    -moz-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
    -o-transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
    margin-top: 50px;
    margin-bottom: 50px;
}

.btnH {
    background: #262626;
    color: #f1f1f1;
    line-height: 42px;
    padding: 0;
    border: none;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.btnH:hover {
    background: transparent;
    color: #262626;
}
.btnH:before,
.btnH:after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 50%;
    right: 0;
    z-index: -1;
    background: #262626;
    transition: all 0.3s ease;
}
.btnH:before {
    top: 0;
}
.btnH:after {
    bottom: 0;
}
.btnH:hover:before,
.btnH:hover:after {
    height: 0;
    background-color: #262626;
}

figure{
    margin-bottom: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

figcaption {
    padding: 10px;
    line-height: 1.8;
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    color: #f1f1f1;
    opacity: 0.7;
    width: 100%;
}

.columnImage{
    object-fit: cover;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, .2);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    height: 500px;
}

.columnImage:hover{
    cursor: pointer;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, .4);
    transform: translateY(-0.8%);
    -webkit-transform: translateY(-0.8%);
    -moz-transform: translateY(-0.8%);
    -ms-transform: translateY(-0.8%);
    -o-transform: translateY(-0.8%);
}

.ThemeImage{
    object-fit: cover;
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, .2);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    height: 500px;
}

.ThemeImage:hover{
    cursor: pointer;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, .4);
    transform: translateY(-0.8%);
    -webkit-transform: translateY(-0.8%);
    -moz-transform: translateY(-0.8%);
    -ms-transform: translateY(-0.8%);
    -o-transform: translateY(-0.8%);
}

.figTitle{
    font-weight: 800;
}

.figAuthor{
    font-weight: 300;
    font-size: 1.2rem;
}

.container .box .column img{
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.preview-box{
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
    /* max-width: 500px;
    max-height: 700px; */
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    padding: 0 5px 5px 5px;
    opacity: 0;
    pointer-events: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: rgba(0, 0, 0, .7);
    color: #f1f1f1;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    -moz-transform: translate(-50%, -50%) scale(0.9);
    -ms-transform: translate(-50%, -50%) scale(0.9);
    -o-transform: translate(-50%, -50%) scale(0.9);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.preview-box.show {
    opacity: 1;
    pointer-events:auto;
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.preview-box .details {
    padding: 12px 15px 12px 10px;
    position: absolute;
    right: 0;
}

.preview-box .details .icon{
    cursor: pointer;
    font-size: 30px;
}

.preview-box .img-box {
    display: flex;
    justify-content: center;
    width: 100%;
}

.slide {
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 60px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    z-index: 10;
}

.prev {
    left: 0;
    font-size: 50px;
    cursor: pointer;
}

.next {
    right: 0;
    font-size: 50px;
    cursor: pointer;
}

.preview-box .img-box .image{
    position: relative;
    object-fit:cover;
    width: auto;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

@media only screen and (max-width:992px){
    .wrapper{
        width: 48%;
    }
}

@media only screen and (max-width:769px){
    
    .wrapper{
        width: 100%;
        
    }

    .container{
        margin: 40px 20px 0 20px;
    }
}

@media only screen and (max-width:643px){
    .container .heading{
        width: 100%;
    }
    
    .container .heading h3{
        font-size: 2em;
    }
}

.c-loader {
    animation: is-rotating 1s infinite;
    border: 6px solid #e5e5e5;
    border-radius: 50%;
    border-top-color: #8ccf90;
    height: 85px;
    width: 85px;
    position: absolute;
    z-index: -1;
  }
  
  @keyframes is-rotating {
    to {
      transform: rotate(1turn);
    }
  }

  .dispblock {
    display: block !important;
  }

  .disnone {
    display: none !important;
  }