body{
	font-family: 'Josefin Sans', sans-serif;
	margin: 0;
	padding: 0;
}
.main_logo{
	display: block;
	position: absolute;
	z-index: 10000;
	left: 30px;
	top: 30px;
}
.box{
	float: left;
	display: inline-block;
	width: 50%;
	height: 50vh;
	position: relative;
}
.bg_back{
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
    transition: all 300ms;
    transition-timing-function: ease-in;
	left: 0;
	display: inline-block;
	filter: grayscale(1);
}
.caption{
    z-index: 1000;
    background: rgb(255 255 255 / 80%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    transition: all 300ms;
    transition-timing-function: ease-in;
    display: block;
    padding: 10px 30px;
    float: left;
    width: calc(100% - 60px);
}
.caption_1{
	color: #fff;
	border-color: #fff !important;
}
.caption_2{
	color: #fff;
	border-color: #fff !important;
}
.caption_3{
	color: #fff;
	border-color: #fff !important;
}
.caption_4{
	color: #fff;
	border-color: #fff !important;
}
.box_1{
	background: rgb(16 79 125 / 84%);
}
.box_2{
	background: rgb(208 0 46 / 86%);
}
.box_3{
	background: rgb(107 155 2 / 88%);
}
.box_4{
	background: rgb(7 141 255 / 76%);
}
.caption_text{
	display: table-cell;
    height: 100px;
    transition: all 300ms;
    transition-timing-function: ease-in;
    font-size: 28px;
	vertical-align: middle;
}
.show_more{
    width: calc(100%);
    border-radius: 5px;
    border: 2px solid;
    transition: all 300ms;
    transition-timing-function: ease-in;
    display: inline-block;
    /* margin: 20px 0px; */
    text-align: center;
    font-size: 20px;
    opacity: 1;
    float: left;
    position: absolute;
    top: 50%;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transform: translateY(-50%);
}
.sipka{
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}
.box:hover .bg_back{
	filter: grayscale(0);
}
.box:hover .show_more{
    opacity: 1;
    background: #fff;
   	color: #000 !important;
   	border-color: #fff !important;
}

@media(max-width: 1100px){
    .box {
        float: left;
        display: inline-block;
        width: 100% !important;
        height: 25vh !important;
        position: relative;
    }
    .caption_text{
        font-size: 39px;
    }
}