@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
.montserrat {
font-family: 'Montserrat', sans-serif;
}
body{
    margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
}
.wrapper{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  min-height: 100vh;
  color: #333;
  text-align: center;
  background-color: #eee;
}
.logo {
  position: absolute;
  right: 0;
  left: 0;
  top: 5%;
}
#logo_image{
  max-width: 50%;
  position: relative;
  z-index: 7;
}
.left{
  background-image: url(dubai.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: table; 
  width:100%;
}
.right{
  background-image: url(turkey.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  display: table; 
  width:100%;
}
.leftside, .rightside{display: table-cell; vertical-align: middle;}
h1{
  margin-bottom: 0;
  margin-top: 0;
}
p{font-size: 20px;}
.button {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #e2b754;
  border-radius: 6px;
  outline: none;
  transition: 0.3s;
  font-size: 18px;
}
.button:hover {
  background-color: #ecd08c;
}

.social {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
}
/* fa icons */
.fab {
  padding: 8px;
  font-size: 24px !important;
  width: 16px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
  color:#fff;
}
.fab:hover {
    opacity: 0.5;
}


/* tablet breakpoint */
@media only screen and (min-width:768px) {
    .wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    #logo_image {
        margin-left: -0.5%;
        max-width: 25%;
    }
    .social {
        bottom: 3%;
        margin-left: -15px;
    }
    .fab {
        padding: 10px;
        font-size: 30px !important;
        width: 20px;
    }
.left{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.left:hover{
  filter: none;
  -webkit-filter: grayscale(0);
}
.right{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.right:hover{
  filter: none;
  -webkit-filter: grayscale(0);
}    
}

/* other devices */
@media only screen and (max-width: 1079px) {

}