.contact {
    width: 100%;
    height: 100vh;
    background-image:linear-gradient(rgba(0,0,0,0.7),#3551b5), url(../images/safari-img/safari-photo-1.jpeg);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.contact form{
    width: 90%;
    max-width: 600px;
}
.input-group{
    margin-bottom: 30px;
    position: relative;
}
input,textarea{
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 15px;
}
label{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: #fff;
    cursor: text;
    transition: 0.3s;

}
.contact button{
    padding: 10px 0;
    color: #fff;
    outline: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
    border: 1px solid #fff;
}
.contact i{
    margin-right: 10px;
}
.contact button i{
    margin-left: 10px;
}
input:focus~label,
input:user-valid~label,
textarea:focus~label,
textarea:user-valid~label
{
    top: -35px;
    font-size: 14px;
}
.contact-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-row .input-group{
    flex-basis: 48%;
}
 /* footer */
 
footer{
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background-color: #2d2e33;
    padding: 60px 10%;
}

ul{
    list-style: none;
}

.footer-col{
    width: 25%;
}

.footer-col h4{
    position: relative;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: #f1bc0d;
    text-transform: capitalize;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    background-color: #27c0ac;
    height: 2px;
    width: 40px;
}

ul li:not(:last-child){
    margin-bottom: 8px;
}

ul li a{
    display: block;
    font-size: 19px;
    text-transform: capitalize;
    color: #bdb6b6;
    text-decoration: none;
    transition: 0.4s;
}

ul li a:hover{
    color: white;
    padding-left: 2px;
}

.links a{
    display: inline-block;
    height: 44px;
    width: 44px;
    color: white;
    background: rgb(150, 63, 63);
    margin: 0 8px 8px 0;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
    transition: 0.4s;
}

.links a:hover{
    color: #4d4f55;
    background-color: white;
}

@media(max-width: 740px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-col h4::before{
        all: unset;
    }
}

@media(max-width: 555px){
    .footer-col{
        width: 100%;
    }
}
/* =============zanzibar styling start =================*/
.mvv-containe{
    max-width: 90%;
    margin: 50px auto 0;
    
  }
  .mvv-containe .mvv-block{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .mvv-containe .mvv-block .image{
    flex: 0 0 auto;
    width: 400px;
    overflow: hidden;
  }
  .mvv-containe .mvv-block .image img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .3);
    transition: .5s;
    transform: scale(1);
  }
  .mvv-containe .mvv-block .image:hover img{
    transform: scale(1.05);
  }
  .mvv-containe .mvv-block .zanz-content{
    flex: 0 0 auto;
    width: calc(100% - 400px);
    padding: 10px;
    box-sizing: border-box;
    align-self: center;
  }
  .mvv-containe .mvv-block .zanz-content h5{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #303441;
    text-align: center;
    letter-spacing: 2px;
  }
  .mvv-containe .mvv-block .zanz-content p{
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    text-align: justify;
  }
  @media only screen and (min-width: 1024px) {
    .mvv-containe .mvv-block:nth-child(odd) .image
    {
      order: 1;
    }
    .mvv-containe .mvv-block:nth-child(even) .image
    {
      order: 2;
    }
    .mvv-containe .mvv-block:nth-child(odd) .zanz-content
    {
      order: 2;
      padding-left: 30px;
    }
    .mvv-containe .mvv-block:nth-child(even) .zanz-content
    {
      order: 1;
      padding-right: 30px;
    }
  }
  @media only screen and (max-width: 600px) {
    .mvv-containe{
      max-width:95% ;
      padding: 10px 2%;
    }
    .mvv-containe .mvv-block{
      flex-direction: column;
    }
    .mvv-containe .mvv-block .zanz-content{
      width: 100%;
    }
    .mvv-containe .mvv-block .image{
      width: 100%;
    }
  
  }