﻿.Header {
    animation-name: headerent;
    animation-duration: 1s;
}

.Header.active {
    animation-name: header;
    animation-duration: 1s;
}

.blogimg{
    height: 400px;
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-bottom: 10px;
}

.blogsBanner {
    background-size: cover;
    background-position: center;
    padding: 3em 9em;
    height: 300px;
    position: relative;
}

.blogsBanner:after {
    content: '\A';
    position: absolute;
    width: 100%;
    height:300px;
    top:0
    ;
    left:0;
    background:rgba(0,0,0,0.4);
    opacity: 1;
    z-index: 0;
}

.Header_background {
    background-color: transparent;
    border-bottom-color: transparent;
}

.Header_background.active {
    background-color: #231F20;
}


@-webkit-keyframes headerent {
  from {top: -70px;}
  to {top: 0px;}
}

/* Standard syntax */
@keyframes headerent {
  from {top: -70px;}
  to {top: 0px;}
}

@-webkit-keyframes header {
  from {top: -70px;}
  to {top: 0px;}
}

/* Standard syntax */
@keyframes header {
  from {top: -70px;}
  to {top: 0px;}
}



body{
    background-color:  #fff;
}

.MainContent {
    padding: 0px 0px 100px 0px;
}


.guides{
    padding: 20px 4em;
}

.Search_wrapper:after {
    left: 10px;
    top: 16px;
}

.content{
    max-width: 1020px;
    display: block;
    margin:auto;
}

.expcard {
    height: 280px;
    width: 230px;
    background-color: #ffffff;
    border: 0px;
    border-radius: 10px;
    OVERFLOW: hidden;
    box-shadow: 0px 3px 5px rgba(100,100,100,.1);
    padding: 0px;
    
    background-size: cover;
}

.expcard:hover{
    box-shadow: 0px 10px 10px rgba(100,100,100,.2);
}

.destimg{
    height: 280px;
    background-size: cover;
    background-position-x: center;
    line-height: 280px;  
    background-color: rgba(0,0,0,.20)
}

.expimg{
    height: 175px;
    background-size: cover;
    background-position-x: center;
}

.expdetails{
    padding: 5px 8px;
}

.latestguidetitle{
    background: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.5)); /* Standard syntax (must be last) */
    background: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,.5));
}


/*responsive-start*/
@media screen and (max-width: 800px){
    
     .tmblogowhite{
    display: none;
    }

    .tmblogo{
    display: inline;
    }

    .Header_background {
    background-color: #231F20;
    }
    
    .guides{
    padding: 10px;
    }
    
    .expcard {
        width: 100%;
        margin-left: 0px !important;
    }
    
    .blogimg{
    height: 200px;
    }
    
}
/*responsive-end*/