/*/////////////////////FONT-STYLE ////////////////////*/

@font-face {
    font-family: 'ProximanovaLight';
    src: url('../blog_fonts/proximanovalight.eot');  
    src: url('../blog_fonts/proximanovalight.eot?#iefix') format('embedded-opentype'),  
        url('../blog_fonts/proximanovalight.woff') format('woff'),  
        url('../blog_fonts/proximanovalight.ttf')  format('truetype'),  
        url('../blog_fonts/proximanovalight.svg#svgFontName') format('svg');
    font-weight: 300;
    font-style: normal;
}

header, section, article, footer, aside, figure{
    display: block;
}
img{
    border: 0;
}
/*/////////////////////FONT-STYLE ////////////////////*/
body{
    margin: 0;
    padding: 0;
}



.clear{
    clear: both;
}

.main-container{
    width: 100%;
}
.container{
    width: 100%;
}
.content{
    width: 1200px;
    margin: 0 auto;
}

.header{
    width: 100%;
    height: auto;
    overflow: hidden;
}
.header-left{
    float:left;
    margin-top: 20px;
}
figure{
    margin: 0px 0 0;
    padding: 0;
}
.header-right{
    float:right;
    padding: 50px 0;
    /*    width: 55%;*/
    width: auto;
}
nav{
    width: auto;
    overflow: hidden;
    float: left;
}
nav ul{
    margin: 0;
    padding: 0;
}
nav ul li{
    list-style: none;
    float:left;
    font-size: 16px;
    padding-right: 20px;
   font-family: 'Nunito', sans-serif;
   font-weight: 300;

    transition-property:all;
    -webkit-transition-property:all;
    -moz-transition-property:all;
    -ms-transition-property:all;
    -o-transition-property:all;

    transition-timing-function:linear;
    -webkit-transition-timing-function:linear;
    -moz-transition-timing-function:linear;
    -ms-transition-timing-function:linear;
    -o-transition-timing-function:linear;

    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
}
nav ul li:hover{
    color: #fff;
    text-decoration: underline;
}
nav ul li a{
    color:#fff;
    text-decoration: none;
    letter-spacing: -0.1px;
    transition-property:all;
    -webkit-transition-property:all;
    -moz-transition-property:all;
    -ms-transition-property:all;
    -o-transition-property:all;

    transition-timing-function:linear;
    -webkit-transition-timing-function:linear;
    -moz-transition-timing-function:linear;
    -ms-transition-timing-function:linear;
    -o-transition-timing-function:linear;

    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
}
/*nav ul li a:hover{
    color: #fff;
    text-decoration: underline;
}*/
.header-right ul li.active-header-menu a{
    color: #fff;
    text-decoration: underline;
}
.search-pannel-container{
    border-left: 1px solid #fff;
    float: left;
    width: 235px;
}
.search-pannel{
    padding-left: 30px;
}
.search-pannel label img{
    float: left;
    margin-top: 5px;
}
.text-input{
    background: transparent;
    color:#fff;
    font-size: 16px;
    border: 0;
    outline: none;
    padding-left: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    width: 82%;
}
.text-input::-webkit-input-placeholder { /* WebKit browsers */
    color:    #fff;
}
.text-input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #fff;
    opacity:  1;
}
.text-input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #fff;
}



.container-subscribe{
    padding-top: 33px;
}
.text-subscribe{

    color: #606e74;
    background: white;
    border: 2px solid #1e9cd6;
    padding: 16px 0px 16px 15px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    font-size: 18px;
    font-family: 'Open Sans';
    width: 400px;
    outline: none;
}
.text-subscribe:focus{
    -webkit-box-shadow: 0px 1px 23px -2px rgba(0,154,215,0.45);
    -moz-box-shadow: 0px 1px 23px -2px rgba(0,154,215,0.45);
    box-shadow: 0px 1px 23px -2px rgba(0,154,215,0.45);

    transition-property:all;
    -webkit-transition-property:all;
    -moz-transition-property:all;
    -ms-transition-property:all;
    -o-transition-property:all;

    transition-timing-function:linear;
    -webkit-transition-timing-function:linear;
    -moz-transition-timing-function:linear;
    -ms-transition-timing-function:linear;
    -o-transition-timing-function:linear;

    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
}

.button-submit{
    padding: 19px 33px;
    background: #a3aeb2;
    font-family: 'Georgia';
    font-size: 18px;
    color:#fff;
    border: 0;
    outline: none;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    cursor: pointer;

    transition-property:all;
    -webkit-transition-property:all;
    -moz-transition-property:all;
    -ms-transition-property:all;
    -o-transition-property:all;

    transition-timing-function:linear;
    -webkit-transition-timing-function:linear;
    -moz-transition-timing-function:linear;
    -ms-transition-timing-function:linear;
    -o-transition-timing-function:linear;

    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
}
.button-submit:hover{
    background: #c0c7ca;
}
.btn-space{
    margin-right: 15px;
}

.button-1{
    padding: 10px 40px;
    border: 2px solid #198de6;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    color: #198de6;
    font-size: 14px;
    line-height: 28px;
    text-decoration: none;
    font-family: 'Open Sans Semibold';

    transition-property:all;
    -webkit-transition-property:all;
    -moz-transition-property:all;
    -ms-transition-property:all;
    -o-transition-property:all;

    transition-timing-function:linear;
    -webkit-transition-timing-function:linear;
    -moz-transition-timing-function:linear;
    -ms-transition-timing-function:linear;
    -o-transition-timing-function:linear;

    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;

}
.button-1:hover{
    background: #198de6;
    color: white;
}




.line{
    border-bottom: 2px solid #1e9cd6;
    width: 107px;
}
.line2{
    border-bottom: 2px solid #000;
    width: 77px;
}

.view-button{

}


.btn-text-1{
    color: #1e9cd6;
    font-family: 'Georgia';
}
.btn-text-1:hover{
    text-decoration: none;
}





.footer{
    background: #1d2528;
    padding: 58px 0 38px;
    text-align: center;
}
.footer-top{
    width: 100%;
    overflow: hidden;
}
.footer-bottom{
    width: 290px;
    margin: 0 auto;
}
.footer-top ul{
    margin: 0 auto;
    padding: 0;
    text-align: center;
}
.footer-top ul li{
    list-style: none;
    float: none;
    position: relative;
    display: inline;
    padding: 0 20px;
   font-family: 'ProximanovaLight';
   font-weight: 300;
    font-size: 16px;

    transition-property:all;
    -webkit-transition-property:all;
    -moz-transition-property:all;
    -ms-transition-property:all;
    -o-transition-property:all;

    transition-timing-function:linear;
    -webkit-transition-timing-function:linear;
    -moz-transition-timing-function:linear;
    -ms-transition-timing-function:linear;
    -o-transition-timing-function:linear;

    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
}
.footer-top ul li a{
    color: white;
    text-decoration: none;

    transition-property:all;
    -webkit-transition-property:all;
    -moz-transition-property:all;
    -ms-transition-property:all;
    -o-transition-property:all;

    transition-timing-function:linear;
    -webkit-transition-timing-function:linear;
    -moz-transition-timing-function:linear;
    -ms-transition-timing-function:linear;
    -o-transition-timing-function:linear;

    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;

}
.footer-top ul li a:hover{
    color: #198de6;
    text-decoration: underline;
}
.footer-top ul li.active-footer a{
    color: #198de6; 
    text-decoration: underline;
}
.footer-bottom p{
    color:#738085;
    font-size: 12px;
    font-family: 'Open Sans';
    font-weight: normal;
    margin:  17px 0 24px;
}
.footer-bottom p a{
    color: #E76E34;
}
.footer-line{
    width: 115px;
    border-bottom: 2px solid #38464b;
    margin: 0 auto 25px;
}
.social-media{
    width: 115px;
    margin: 0 auto;
    position: relative;
}
.facebook-icon{
    background:url("../blog_images/face-book-main.png")-45px 0;
    width: 20px;
    height: 20px;
    left: 30px;
    position: absolute;
}
.facebook-icon:hover{
    background:url("../blog_images/face-book-hover.png")-45px 0;
}
.twitter-icon{
    background:url("../blog_images/twitter-main.png")-80px 0;
    width: 20px;
    height: 20px;
    left: 72px;
    position: absolute;
}
.twitter-icon:hover{
    background:url("../blog_images/twitter-hover.png")-80px 0; 
}
.instagram-icon{
    background:url("../blog_images/instragram_icon.png")-80px 0;
    width: 20px;
    height: 20px;
    left: 60px;
    position: absolute;
}
.instagram-icon:hover{
    background:url("../blog_images/instragram_icon_hover.png")-80px 0;
}

/*########################################HERE GOES TO -Blog- PAGE########################################*/
.down-arrow {
    height: 32px;
    margin: -32px auto 0;
    width: 64px;
}
.inner-heading-content {
    margin-top: 158px;
    width: 100%;
    text-align: center;
}

.inner-heading-content .heading-text{
    margin: 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-size: 80px;
    color: #fff;
    font-weight:normal;
}


.blog-top-content{
    background: url("../blog_images/blog-top-bg.jpg") no-repeat top center;
    background-size: cover;
    height: 550px;
}
.blog-contenter{
    width: 100%;
    height: auto;
    padding: 45px 0 65px;
    background: #fff;
}
.content-blog{
    width: 946px;
    margin: 0 auto;
    height: auto;
}
.post-list{
    padding: 0;
    margin: 0;
    width: 100%;
}
.post-list li{
    list-style: none;
    display: block;
    padding: 67px 0px 72px 0px;
    text-align: center;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #fff;

    transition-property:all;
    -webkit-transition-property:all;
    -moz-transition-property:all;
    -ms-transition-property:all;
    -o-transition-property:all;

    transition-timing-function:linear;
    -webkit-transition-timing-function:linear;
    -moz-transition-timing-function:linear;
    -ms-transition-timing-function:linear;
    -o-transition-timing-function:linear;

    transition-duration: 0.1s;
    -webkit-transition-duration: 0.1s;
    -moz-transition-duration: 0.1s;
    -ms-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
}
.post-list li:first-child{
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.post-list li:hover:first-child{
    border-bottom: 1px solid #f5f7f7;
}

.post-list li:last-child{
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}

.post-list li:hover{
    background: #f5f7f7;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #f5f7f7;
    padding: 67px 0px 72px 0px;
}
.post-list li:hover:last-child{
    /*    border-top: 1px solid #f5f7f7;*/
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}


.pagination {
    border-radius: 4px;
    display: inline-block;
    margin: 20px 0;
    padding-left: 0;
}

.pagination a{
    color: #337ab7;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.3s ease-in-out 0s;
    
}
.pagination > li {
    display: inline;
}


.pagination > li > a, .pagination > li > span {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #337ab7;
    float: left;
    line-height: 1.42857;
    margin-left: -1px;
    padding: 6px 12px;
    position: relative;
    text-decoration: none;
}


.title-post{
    color: #424647;
    font-size: 35px;
    line-height: 50px;
    margin: 0;
   font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-style: normal;
    padding: 0px 63px 0px 63px;

}
.title-post a{
    text-decoration: none;
    color: #1e9ec1;
}
.post-list li:hover .title-post{
    text-decoration: underline;
     color: #71187e;   
    
}
.post-list li:hover .title-post a{
 color: #71187e;   
}
.post-details{
    color: #b4bdbe;
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 13px;
    padding: 19px 0 25px;
}
.post-author-name{
    color: #9b488c;
}
.post-text{
    width: auto;
     font-family: 'ProximanovaLight';
     font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    color: #393939;
    padding: 0 80px;
}
.post-text p{
    margin: 0;

}
.photo-post{
    width: 100%;
    margin-bottom: 30px;
}
.photo-post img{
    width: 100%;
    display: block;
}

/*########################################HERE GOES TO -Blog_post- PAGE########################################*/
.blogpost-top-content{
    background: url("../blog_images/post-top-bg.jpg") no-repeat top center;
   
    background-size: 100%;
    min-height: 204px;
}
.content-blog-details{
    width: 945px;
    margin: 0 auto;
    height: auto;
}
.post-heading-details{
    text-align: center;
    padding: 103px 0px 40px;
}
.post-photo-content{
    width: 100%;
}
.post-photo-content img{
    width: 100%;
    display: block;
}

.post-text-content{
    padding: 45px 0px 90px;
     font-family: 'ProximanovaLight';
    color: #4b4c51;
    font-weight: normal;
    font-style: normal;
    line-height: 26px;
    font-size: 17px;
}
.post-text-content p{
    margin: 0;
    padding: 0 0 38px;
}
.title-up-next{
     font-family: 'ProximanovaLight';
    color: #d8d9d9;
    font-weight: bold;
    font-style: normal;
    line-height: 30px;
    font-size: 13px;
    letter-spacing: 2px;
}
.title-up-next a{
    text-decoration: none;
    color: #d8d9d9;
    transition-property:all;
    -webkit-transition-property:all;
    -moz-transition-property:all;
    -ms-transition-property:all;
    -o-transition-property:all;

    transition-timing-function:ease-in-out;
    -webkit-transition-timing-function:ease-in-out;
    -moz-transition-timing-function:ease-in-out;
    -ms-transition-timing-function:ease-in-out;
    -o-transition-timing-function:ease-in-out;

    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
}
.title-up-next a:hover{
    color: #198de6;
    text-decoration: underline;
}
.post-bottom-heding{
    text-align: center;
    padding: 68px 0px 54px;
    border-top: 1px solid #e5e5e5;
}
.post-bottom-heding .title-post a:hover{
    text-decoration: underline;
}
.blog-post-subscriber{
    background: #f7f8f9;
    text-align: center;
    padding: 74px 0;
    border-top: 1px solid #e5e5e5;
}
.blog-post-subscriber p{
    margin: 0;
     font-family: 'ProximanovaLight';
    font-size: 23px;
    color: #1d2528;
    line-height: 36px;
}










/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!HERE GOES TO Large VIEWPORT OVER 1500PX!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
@media screen and (min-width:1500px)and (max-width:1599px){


}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!HERE GOES TO VIEWPORT OVER 1366PX!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
@media screen and (min-width:1300px)and (max-width:1499px){

    .inner-heading-content {
        margin-top: 90px;
    }
    .blog-top-content {
        min-height: 509px;
    }

    .contact-top-content{
        min-height: 510px;
    }

}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!HERE GOES TO VIEWPORT 1201PX ON large!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media screen and (min-width:1201px)and (max-width:1299px){
    .content{
        width: 1100px;
    }
    .inner-right-side {
        width: 830px;
    }
    .inner-heading-content {
        margin-top: 80px;
    }
    .blog-top-content {
        min-height: 450px;
    }
}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!HERE GOES TO VIEWPORT 1024PX ON RESPONSIVE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media screen and (min-width:1024px)and (max-width:1200px){
    .header-right {
        width: auto;
    }
    nav ul li{
        padding-right: 15px;
    }
    .search-pannel-container {
        width: 180px;
    }
    .content{
        width: 950px;
    }

    .inner-heading-content {
        margin-top: 42px;
    }
  
    .blog-top-content {
        height: 391px;
    }
    .content-blog{
        width: 100%;
    }
    .photo-post img {
        width: 100%;
        display: block;
    }
    .blogpost-top-content{
        min-height: 157px;
    }
    .post-heading-details {
        text-align: center;
        padding: 40px 0px 40px;
    }





}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!HERE GOES TO VIEWPORT 951PX ON RESPONSIVE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media screen and (min-width:951px)and (max-width:1023px){
    .header-right {
        width: 78%;
    }
    .search-pannel-container {
        width: 180px;
    }


    .content{
        width: 870px;
    }

    .inner-heading-content {
        margin-top: 42px;
    }
    
    .blog-top-content{
        min-height: 400px;
        background-size: cover;
    }

    .content-blog{
        width: 100%;
    }
    .photo-post img {
        width: 100%;
        display: block;
    }
    .content-blog-details {
        width: 100%;
    }
    .blogpost-top-content{
        min-height: 157px;
    }
    .post-heading-details {
        text-align: center;
        padding: 40px 0px 40px;
    }





}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!HERE GOES TO VIEWPORT 800PX ON RESPONSIVE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media screen and (min-width:800px)and (max-width:950px){
    .header-left {
        width: 100%;
        text-align: center;
    }
    .header-right {
        width: 92%;
        padding: 15px 0px;
        text-align: center;
    }
    .search-pannel-container {

        display: inline-block;
        float: none;
        margin: 20px auto 0;
        overflow: hidden;
        width: 200px;

    }
    .search-pannel {
        padding-left: 12px;
    } .content{
        width: 750px;
    }
    .inner-heading-content {
        margin-top: 13px;
    }
   
    .blog-top-content {
        background-size: cover!important;
        min-height: 350px;
    }
    .content-blog{
        width: 100%;
    }
    .photo-post img {
        width: 100%;
        display: block;
    }
    .content-blog-details {
        width: 100%;
    }
    .blogpost-top-content {
        min-height: 165px!important;
        background-size: cover !important;
    }
    .post-heading-details {
        text-align: center;
        padding: 40px 0px 40px;
    }



}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!HERE GOES TO VIEWPORT 768PX ON RESPONSIVE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media screen and (min-width:768px)and (max-width:799px){
    .header-left {
        width: 100%;
        text-align: center;
    }
    .header-right {
        width: 97%;
        padding: 15px 0px;
        text-align: center;
    }
    .search-pannel-container {
        display: inline-block;
        float: none;
        margin: 20px auto 0;
        overflow: hidden;
        width: 200px;
    }
    .search-pannel {
        padding-left: 12px;
    }


    .content{
        width: 700px;
    }
    .inner-heading-content {
        margin-top: 13px;
    }
 


    .blog-top-content {
        background-size: cover!important;
        height: 400px;
    }
    .content-blog{
        width: 100%;
    }
    .photo-post img {
        width: 100%;
        display: block;
    }
    .content-blog-details {
        width: 100%;
    }
    .post-text-content {
        padding: 45px 0px 90px;
    }
    .blogpost-top-content {
        min-height: 150px;
        background-size: cover ;
    }
    .post-heading-details {
        text-align: center;
        padding: 40px 0px 40px;
    }

    .footer-top ul li{
        padding: 0 14px;
    }

}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!HERE GOES TO VIEWPORT 600PX ON RESPONSIVE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media screen and (min-width:600px)and (max-width:767px){
    .header-left {
        width: 100%;
        text-align: center;
    }
    figure {
        margin: 13px 0px 0px;
        padding: 0px;
    }
    .header-right {
        width: 100%;
        padding: 10px 0px;
    }
    nav {
        float: none;
        width: 500px;
        margin: 12px auto;
        text-align: center;
    }
    nav ul li{
        display: inline-block;
        float: none;
        margin: 2px 0;
    }
    .search-pannel-container {
        border-left: none;
        float: none;
        width: 200px;
        margin: 5px auto;
    }

    .content{
        width: 550px;
    }

    /*********************ABOUT PAGE****************/
    .inner-left-side{
        display: none;
    }
    .inner-right-side {
        width: 590px;
    }
    .inner-right-side-content{
        border-left: none;
    }
    .team-member-details li {
        width: 31%;
    }
    .about-top-content{
        min-height: 370px;
        background-size: cover;
    }
    .inner-heading-content {
        margin-top: 13px;
    }
   

    .blog-top-content {
        background-size: cover!important;
        min-height: 400px;
    }
    .content-blog{
        width: 100%;
    }
    .photo-post img {
        width: 100%;
        display: block;
    }
    .title-post{
        padding: 0 15px;
    }
    .post-text {
        padding: 0px 20px;
    }
    .content-blog-details {
        width: 100%;
    }
    .post-text-content {
        padding: 45px 0px 90px;
    }
    .blogpost-top-content {
        min-height: 150px;
        background-size: cover ;
    }
    .post-heading-details {
        text-align: center;
        padding: 40px 0px 40px;
    }

    .footer-top ul li{
        padding:0 6px;
        font-size: 14px;
    }


}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!HERE GOES TO VIEWPORT 480PX ON RESPONSIVE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media screen and (min-width:480px)and (max-width:599px){
    .header-left {
        width: 100%;
        text-align: center;
    }
    figure {
        margin: 13px 0px 0px;
        padding: 0px;
    }
    .header-right {
        width: 100%;
        padding: 10px 0px;
    }
    nav {
        float: none;
        width: 428px;
        margin: 12px auto;
        text-align: center;
    }
    nav ul li{
        display: inline-block;
        float: none;
        margin: 2px 0;
    }
    .search-pannel-container {
        border-left: none;
        float: none;
        width: 180px;
        margin: 5px auto;
    }
    .content{
        width: 400px;
    }
    .button-submit {
        padding: 14px 30px;
    }

    .second-content {
        padding: 50px 0px;
    }
    .text-subscribe{
        width: 350px;
        margin-bottom: 30px;
    }
    .heading-text-4{
        font-size: 62px;
    }
    .footer-top {
        width: 400px;
    }
    .footer-top ul li {
        padding: 5px 0px;
        font-size: 15px;
        display: block;
    }
    .inner-heading-content {
        margin-top: 13px;
    }


    /*********************BIO PAGE****************/

    .blog-top-content {
        background-size: cover!important;
        min-height: 390px;
    }
    .content-blog{
        width: 100%;
    }
    .photo-post img {
        width: 100%;
        display: block;
    }
    .title-post{
        padding: 0 15px;
    }
    .post-text {
        padding: 0px 20px;
    }
    .content-blog-details {
        width: 100%;
    }
    .post-text-content {
        padding: 45px 0px 90px;
        text-align: center;
    }
    .blogpost-top-content {
        min-height: 150px;
        background-size: cover ;
    }
    .post-heading-details {
        text-align: center;
        padding: 40px 0px 40px;
    }
    .title-post {
        padding: 0px;
    }


}

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!HERE GOES TO VIEWPORT 320PX ON RESPONSIVE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

@media screen and (min-width:0px)and (max-width:479px){
    
    .header-left {
        width: 100%;
        text-align: center;
    }
    figure {
        margin: 13px 0px 0px;
        padding: 0px;
    }
    .header-right {
        width: 100%;
        padding: 10px 0px;
    }
    nav {
        float: none;
        width: 100%;
        margin: 12px auto;
    }
    nav ul li {
        float: none;
        border-bottom: 1px solid #969696;
        text-transform: uppercase;
        padding: 5px 0;
        text-align: center;
    }
    .search-pannel-container {
        border-left: none;
        float: none;
        width: 100%;
        margin: 5px auto;
    }
    .search-pannel {
        padding-left: 15px;
    }
    .content{
        width: 215px;
    }

    .button-submit {
        padding: 14px 30px;
    }
    .text-subscribe{
        width: 180px;
        margin-bottom: 20px;
    }
    .btn-space {
        margin-right: 0px; 
    }
    .heading-text-4{
        font-size: 42px;
        text-align: center;
    }
    .footer{
        padding: 30px 0 38px;
    }
    .footer-top {
        width: 100%;
    }
    .footer-top ul li {
        padding: 5px 0px;
        font-size: 15px;
        display: block;
    }
    .footer-bottom {
        width: 100%;
    }

    
   

    .inner-heading-content {
        margin-top: 13px;
    }
  
    .inner-heading-content .heading-text {
        font-size: 50px;
    }
  

    .blog-top-content {
        background-size: cover;
        height: 600px;
    }
    .content-blog{
        width: 100%;
    }
    .photo-post img {
        width: 100%;
        display: block;
    }
    .title-post{
        padding: 0 15px;
    }
    .post-text {
        padding: 0px 20px;
    }
    .content-blog-details {
        width: 100%;
    }
    .post-text-content {
        padding: 45px 10px 90px;
        text-align: center;
    }
    .blogpost-top-content {
        min-height: 150px;
        background-size: cover ;
    }
    .post-heading-details {
        text-align: center;
        padding: 40px 0px 40px;
    }
    .title-post {
        padding: 0px;
        font-size: 24px;
        line-height: 34px;
    }





}