/* ====================================================================
TOZO - ONE PAGE TEMPLATE
======================================================================= 
 Theme Name: TOZO
 Theme URI: http://
 Description: Tour & Travel Template
 Author: gecdesigns
*/

/*=================================================
 == Table Of Content

    1. TYPOGRAPHY 
    2. GLOBAL STYLES
    3. NAVGITION
    4. HEADER 
    5. ABOUT
    6. DEST
    7. SERVICES
    8. PORTFOLIO
    9. COUNT
    10. PACKAGE
    12. TESTIMONIALS   
    13. BLOG
    14. SUBSCRIBE
    15. CONTACT
    16. FOOTER

*/
/*---------------------------------------
  1. TYPOGRAPHY                
-----------------------------------------*/
/* FONTS */
@import url("https://fonts.googleapis.com/css?family=Basic|Kreon|Roboto");

/* --------------------------------------
  2. GLOBAL STYLES
-----------------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

/*------ width < 75em ------*/
@media only screen and (max-width: 75em) {
    html {
        font-size: 56.25%;
    }
}

/*------ width < 61.94em ------*/
@media only screen and (max-width: 61.94em) {
    html {
        font-size: 53.13%;
    }
}

/*------ width < 48em ------*/
@media only screen and (max-width: 48em) {
    html {
        font-size: 50%;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    color: #353434;
    font-size: 1.6rem;
    background-color: #fff;
    line-height: 1.6;
    letter-spacing: .08rem;
    font-weight: 400;
}

.heading-primary {
    font-size: 4.8rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.heading-secondary {
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 2rem 0;
    font-family: 'Kreon', serif;
}

.heading-tertiary {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Basic', sans-serif;
}

p {
    font-family: 'Basic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #494848;
    line-height: 1.8;
    margin: 1rem 0;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: #353434;
}

button,
button:hover,
button:focus,
button:active {
    text-decoration: none;
    outline: none;
}

.padding {
    padding: 120px 0;
    position: relative;
}

/*------------ PRELOADER --------*/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: hidden;
}

.no-js #loader-wrapper {
    display: none;
}

#loader {
    position: relative;
    top: 50%;
    margin: 0 auto;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    border: .2rem solid transparent;
    border-color: transparent;
    z-index: 1000;
}

#loader:before {
    content: "";
    position: absolute;
    top: .7rem;
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    border-radius: 50%;
    border: .7rem solid transparent;
    border-color: #1B2732;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

#loader:after {
    content: "";
    position: absolute;
    top: .7rem;
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    border-radius: 50%;
    border: .7rem solid transparent;
    border-top-color: #0099ff;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

/*------ spin animation ------*/
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    -o-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

/*------ Scroll to Top------- */
#scroll-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    display: none;
    z-index: 9;
    background: #0099ff;
    color: #fff;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
}

#scroll-to-top i {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
}

#scroll-to-top:hover {
    background: #fff;
    color: #0099ff;
    transform: scale(1.2);
}

/* --------------------------------------
  3. NAVIGATION
-----------------------------------------*/
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: 0;
    background: transparent;
    z-index: 99;
    min-height: 70px;
    font-family: 'Roboto', sans-serif;
}

.navbar-brand .logo {
    width: 50%;
    height: 50%;
    margin-left: 2rem;
}

.navbar .icon-bar {
    color: #fff;
    margin-right: 15px;
}

.navbar .navbar-nav .active {
    color: #0099ff !important;
}

.navbar-collapse .navbar-nav .nav-link {
    text-align: center;
    color: #fff;
    padding: 10px;
    margin: 1rem;
    font-weight: 500;
    letter-spacing: .5px;
}

.nav-scroll {
    background: #1B2732;
    transition: background-color .5s ease 0s;
    position: fixed;
    color: #353434;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
}

.nav-scroll .icon-bar {
    margin-right: 15px;
}

.nav-scroll .navbar-nav .nav-link .active {
    color: #0099ff !important;
}

/*------ width < 991px ------*/
@media (max-width: 991px) {
    .navbar-collapse {
        background: #353434;
        z-index: -1;
    }

    .navbar-collapse .navbar-nav .nav-link {
        color: #fff;
    }
}

/*------- line ---------*/
.line li a {
    position: relative;
}

.line li a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: rgba(0, 153, 255, 0.5);
    height: 50px;
    border-radius: 2px;
    z-index: -1;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.nav-scroll .line li a:before {
    background: rgba(0, 153, 255, 0.5);
}

.line li a:hover:before {
    width: 100%;
}

/*------ width < 991px ------*/
@media (max-width: 991px) {
    .line li a:hover:before {
        width: 10%;
        height: 40px;
    }

}

/*------ width < 768px ------*/
@media (max-width: 768px) {
    .line li a:hover:before {
        width: 20%;
    }

}

/*---------------------------------------
  4. HEADER                
-----------------------------------------*/

/*--------------home-------------------*/
.home {
    padding: 25rem 0;
    background: url("../img/hero.jpg") no-repeat center;
    background-size: cover;
    clip-path: polygon(20% 0%, 80% 0%, 100% 0, 100% 80%, 28% 100%, 0% 80%, 0 0);
}

.home-content h1 {
    font-size: 10rem;
    font-weight: 900;
    color: #fff;
    display: block;
    overflow: hidden;
    animation: moveInLeft 3s ease-out;
    animation-delay: 2s;
    animation-duration: 3s;

}

@keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-10rem);
    }

    80% {
        transform: translateX(1rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.home-content p {
    color: whitesmoke;
    font-size: 2rem;
    display: block;
    overflow: hidden;
    animation: moveInRight 3s ease-out;
    animation-delay: 2s;
    animation-duration: 3s;
}

@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(10rem);
    }

    80% {
        transform: translateX(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/*------ width < 991px ------*/
@media (max-width: 991px) {
    .home {
        padding: 20rem 0;
    }
}

/*------ width < 768px ------*/
@media (max-width: 768px) {
    .home {
        padding: 25rem 0;
    }

    .home-content {
        margin-top: 20px;
        text-align: center;
    }

    .home-content h1 {
        margin-top: 20px;
        font-size: 5rem;
    }
}

/* --------------------------------------
  6. ABOUT
-----------------------------------------*/
.about .about-content {
    margin-top: 50px;
    padding-left: 50px;
}

.about .about-content h2 {
    font-size: 6rem;
    font-weight: 400;
    margin-top: 0;
}

.about .about-content p {
    margin-bottom: 20px;
    line-height: 32px;
    padding-right: 80px;
}

.about .about-img img {
    box-shadow: 0px 0px 70px rgba(29, 24, 24, 0.09);
    border: 10px solid #fff;
}

/*------ width < 1024px ------*/
@media (max-width: 1024px) {
    .about .about-content {
        margin-top: 20px;
    }
}

/*------ width < 991px ------*/
@media (max-width: 991px) {
    .about .about-content {
        padding: 0;
        text-align: center;
    }

    .about .about-content p {
        padding-right: 0;
    }
}

/*------ width < 600px ------*/
@media (max-width: 600px) {
    .about .about-content {
        margin-top: 30px;
    }
}

/* --------------------------------------
  7. DEST
-----------------------------------------*/
.dest {
    background: whitesmoke;
}

.dest .card {
    border: none;
    border-radius: 2px;
    margin-top: 2rem;
    box-shadow: 0px 0px 70px rgba(29, 24, 24, 0.09);
    transition: transform 0.3s;
}

.dest .card:hover {
    transform: translateY(-1.5rem) scale(1.03);
}

.dest h2 {
    font-size: 4rem;
    margin-bottom: 40px;
    font-weight: normal;
}

.dest .text-center p {
    background: #fff;
    padding: 10px;
}

/* --------------------------------------
  8. SERVICES
-----------------------------------------*/
.services .content-box {
    margin: 20px auto;
    padding: 15px 15px 0 15px;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border: 2px solid whitesmoke;
    text-align: left;
}

.services .content-box-icon i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    display: inline-block;
    font-size: 4rem;
    text-align: center;
    color: #fff;
    background: rgba(0, 153, 255, 0.5);
    border-radius: 50%;
    transition-duration: 0.3s;
    transition-property: box-shadow;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translateZ(0);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

.services .content-box:hover i {
    background: #0099ff;
    color: #353434;
    -webkit-transition: all .7s ease 0s;
    transition: all .7s ease 0s;
    border-radius: 20px;
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.services .content-box h5 {
    font-weight: 400;
    font-size: 22px;
    margin: 20px 0;
}

/* --------------------------------------
  9. PORTFOLIO
-----------------------------------------*/
.portfolio .port-title h2 {
    margin-bottom: 60px;
}

.portfolio .filtr-item {
    padding: 0;
}

.portfolio .port-caption {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.portfolio .port-caption img {
    height: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
}

.portfolio .port-caption .overlay {
    position: absolute;
    background: rgba(0, 153, 255, 0.5);
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.portfolio .port-caption .view-more {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.portfolio .port-caption .view-more .fa {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    background: #fff;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    margin: 0 1px;
    color: rgba(0, 153, 255, 0.9);
    -webkit-transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
    -moz-transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
    -o-transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
    transition: all 0.3s cubic-bezier(0, 1.135, 0.73, 1.405);
}

.portfolio .port-caption .view-more .fa-search {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.portfolio .port-caption:hover .view-more .fa {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.portfolio .port-caption:hover .overlay {
    opacity: 1;
}

.portfolio .port-caption:focus,
.portfolio .filtr-item:focus,
.portfolio .port-caption img:focus,
.portfolio .port-caption a:focus {
    outline: none;
}

/* --------------------------------------
  10. COUNT
-----------------------------------------*/
.counts {
    background: linear-gradient(rgba(0, 153, 255, 0.5), rgba(0, 153, 255, 0.5)), url("../img/hero.jpg") no-repeat fixed center;
    background-size: cover;
    padding: 2rem;
}

.counter {
    margin: 5px auto;
    padding: 10px 10px;
    color: #fff;
}

.counts .count {
    font-size: 55px;
}

.counts h4 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
}

/*------ width < 768px ------*/
@media (max-width: 768px) {
    .counts .counts-c .count {
        font-size: 40px;
    }
}

/*------ width < 575px ------*/
@media (max-width: 575px) {
    .counts .counts-c .count {
        font-size: 35px;
    }
}

/* ----------------------------------------------------------------
  11. PACKAGE
-----------------------------------------------------------------*/
.tour-package {
    background: whitesmoke;
    position: relative;
}

.single-package {
    background: #fff;
    margin: 0 0 30px;
    padding-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*------ width < 768px ------*/
@media only screen and (max-width:768px) {
    .single-package {
        margin-bottom: 40px
    }
}

.single-package .img a {
    display: block;
}

.single-package .package-hover {
    padding: 3px 20px 10px;
}

.package-hover i {
    color: #fec42d;
}

.single-package img {
    width: 100%;
    position: relative;
}

.pack_price {
    position: absolute;
    top: 0px;
    left: 0;
    background: #0099ff;
    color: #fff;
    padding: 4px 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 3px;
    font-size: 13px;
}

.single-package h5 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 3px;
    text-transform: capitalize;
    font-weight: 600;

}

.single-package p {
    padding-bottom: 10px;
}

.single-package .time_zone {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    text-transform: capitalize;
    width: 100%;
    color: #353434;
    margin-bottom: 12px;
}

.single-package .img {
    position: relative;
    transition: .5s;
    overflow: hidden;
}

.single-package .img:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    opacity: 0;
    transition: .5s;
}

.single-package:hover .img:before {
    opacity: 1;
    filter: alpha(opacity=100);
}

.single-package .button {
    background: #0099ff;
    color: #fff;
    border-radius: 2px;
    padding: 1.2rem;
}


.package-carousel .owl-prev,
.package-carousel .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);

}

.package-carousel .owl-nav i {
    background-color: #0099ff;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
}

.package-carousel .owl-prev {
    left: -7rem;
}

.package-carousel .owl-next {
    right: -7rem;
}

/*------ width 992 < 1199px ------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .package-carousel .owl-prev {
        left: 0;
    }

    .package-carousel .owl-next {
        right: 0;
    }
}

/*------ width 768 < 991px ------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .package-carousel .owl-prev {
        left: 0;
    }

    .package-carousel .owl-next {
        right: 0;
    }
}

/*------ width 481 < 767px ------*/
@media only screen and (min-width: 481px) and (max-width: 767px) {
    .package-carousel .owl-prev {
        left: 0;
    }

    .package-carousel .owl-next {
        right: 0;
    }
}

/* --------------------------------------
  12.TESTIMONIALS
-----------------------------------------*/
.test {
    background: url("../img/review-bg.jpg") no-repeat center;
    background-size: cover;
}

.test .test-title {
    margin-bottom: 3rem;
}

.test .testimonials {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    margin-top: 2rem;
    border-radius: 5px;
}

.testimonials .client-area {
    margin-bottom: 20px;
}

.testimonials .client-area .img {
    display: inline-block;
}

.testimonials .client-area .author {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 2px solid #0099ff;
}

.testimonials .client-area h6 {
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.testimonials .client-area span {
    font-size: 12px;
    letter-spacing: 1px;
    color: #353434;
}

.testimonials p {
    margin-bottom: 15px;
}

.test .test-title p {
    color: #fff;
    padding: 10px;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: #0099ff;
    -webkit-transform: translate3d(0px, -50%, 0px) scale(0.7);
    transform: translate3d(0px, -50%, 0px) scale(0.7);
}

.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

.owl-carousel .owl-dots .owl-dot span {
    background: #353434;
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    margin: 0 2px 5px;
    -webkit-transform: translate3d(0px, -50%, 0px) scale(0.3);
    transform: translate3d(0px, -50%, 0px) scale(0.3);
    -webkit-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0;
    transition: all 250ms ease-out 0s;
}

/* --------------------------------------
  13. BLOG
-----------------------------------------*/
.blog .text-center p {
    padding-bottom: 5rem;
}

.blog-item {
    color: #353434;
    background: #fff;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-list .blog-img .image:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    opacity: 0;
    transition: .5s;
}

.blog-list:hover .blog-img .image:before {
    opacity: 1;
    filter: alpha(opacity=100);
}

.blog-img .post-date {
    background: #0099ff;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    padding: 0;
    margin: 1rem;
    width: 70px;
    height: 30px;
    text-align: center;
    transition: all 0.50s ease;
}

.blog-img .date {
    font-size: 15px;
    font-weight: 700;
}

.blog-item .post-title {
    margin: 10px 0;
}

.blog-item .post-title a {
    transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.blog-item .post-title h3 {
    font-size: 22px;
    font-family: "kreon", sans-serif;
    color: #353434;
}

.blog-item:hover h3 {
    color: #0099ff;
}

.blog-item .post-content p {
    color: rgba(53, 52, 52, 0.7);
    font-size: 16px;
    font-weight: 400;
}

.blog-item .post-content a {
    text-align: center !important;
}

.blog-item .post-content .button {
    border: 2px solid rgba(73, 72, 72, 0.3);
    color: #353434;
    border-radius: 2px;
    padding: 1.2rem;
    font-weight: normal;
    text-transform: initial;
    text-shadow: none;
}

.blog-item .post-content .button:hover {
    background: rgb(0, 153, 255);
    border: 2px solid rgba(0, 153, 255, 0.3);
    color: #fff;
    transition: all 0.3s ease-in-out;
}

/* ----------------------------------------------------------------
  14. SUBSCRIBE
-----------------------------------------------------------------*/
.subscribe {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 153, 255, 0.5), rgba(0, 153, 255, 0.5)), url("../img/portfolio/portfolio-02.jpg") no-repeat fixed center;
    background-size: cover;
    color: whitesmoke;
}

.subscribe h2 {
    font-family: "Roboto", sans-serif;
    font-size: 50px;
}

.subscribe p {
    color: #fff;
}

.subs-container form .input-group {
    padding: 2rem 20rem;
}

.subscribe .form-control {
    height: 50px;
    border: 1px solid #0099ff;
    border-radius: 0;
    font-size: 15px;
    padding-left: 2rem;
}

.subscribe .form-control:focus {
    -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.subscribe .btn {
    height: 50px !important;
    border-radius: 0;
    color: #1B2732;
    border: 1px solid #0099ff;
    background: #0099ff;
    font-size: 15px;
    padding: 0 2rem;
}

.subscribe .btn:hover i {
    color: #fff;
    transition: all 0.50s ease;
}

/*------ width < 991px ------*/
@media only screen and (max-width:991px) {
    .subs-container form .input-group {
        padding: 2rem 2rem;
    }
}

/* --------------------------------------
  15. CONTACT
-----------------------------------------*/
.contact-info {
    margin: 2rem 0 0 0;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
}

.contact-info i {
    color: #fff;
    background: #0099ff;
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    font-size: 25px;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    z-index: 1;
}

.contact h2 {
    font-size: 6rem;
}

.contact p {
    padding-right: 2rem;
}

.contact-info p {
    font-size: 15px;
}

.contact-info h5 {
    font-weight: 700;
    font-size: 16px;
}

.contact-info_text {
    padding-left: 20px;
}

.contact .contact-form input {
    border-radius: .2rem;
}

.contact .contact-form .button {
    display: inline-block;
    width: 40%;
    margin: 0 auto;
    padding: 1rem;
    background: #0099ff;
    cursor: pointer;
    color: #fff;
    outline: none;
    border: 1px solid #0099ff;
    border-radius: 2px;
}

.contact .contact-form .button:hover {
    background: #1B2732;
    border: 1px solid #1B2732;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.contact .contact-form {
    padding: 5rem 2rem;
    background: whitesmoke;
    border-radius: 5px;
}

.contact .form input,
.contact .form textarea {
    width: 100%;
    padding: 20px;
    margin: 5px 0;
    border: 0;
    background-color: #fff;
}

.contact .form input:focus,
.contact .form textarea:focus {
    border: none;
    outline: none;
}

.contact .form textarea {
    height: 160px;
    max-height: 160px;
    max-width: 100%;
}

/*------ width < 991px ------*/
@media (max-width: 991px) {
    .contact .contact-form {
        margin-top: 30px;
    }
}

/* --------------------------------------
  MAP
-----------------------------------------*/
#map {
    height: 300px;
    position: relative;
}

/* --------------------------------------
  MAP
-----------------------------------------*/
#map {
    height: 300px;
    position: relative;
}

/* --------------------------------------
  16. FOOTER
-----------------------------------------*/
.footer {
    padding: 5rem 0;
    text-align: center;
}

.footet .navbar-brand .logo {
    width: 100%;
    height: 100%;
}

.footer .social-links {
    margin: 40px 0;
    text-align: center;
}

.footer .social-links ul li {
    display: inline-block;
    padding: 0;
}

.footer .social-links ul li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    background: #0099ff;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    display: inline-block;
    margin: 0 5px;
}

.footer .social-links ul li a:hover {
    color: #0099ff;
    background: #fff;
    transform: scale(1.2);
}

.copyright {
    text-align: center;
    margin-top: 20px;
}

.copyright h5 {
    font-weight: 400;
}

/*------ width < 600px ------*/
@media (max-width: 600px) {
    .footer {
        text-align: center;
    }

    .footer h3 {
        margin-top: 10px;
    }
}