/* ====================================================
    # Varible CSS
============================================== */
:root {
    --primary-color: #253680;
    --secondary-color: #0eb3dd;
    --white-color: #ffffff;
    --black-color: #000000;
    --font-color: #424242;
    --section-color: #f8f9fa;
    --switch-secondary-color: #0eb3dd;
    --switch-bg-white-color: #ffffff;
    --switch-black-color: #000000;
    --switch-white-color: #ffffff;
    --switch-border-sec-color: #efefef;
    --switch-border-black-color: #000000;
    --primary-font: "Enriqueta", serif;
    --secondary-font: "Poppins", sans-serif;
}

[data-theme="dark"] {
    --switch-white-color: #000000;
    --switch-black-color: #ffffff;
    --switch-bg-white-color: #000000;
    --switch-border-black-color: #ffffff;
    --switch-border-sec-color: #0eb3dd;
}

/* ====================================================
	# Normalize CSS
============================================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.825em;
    font-family: var(--secondary-font);
    color: var(--font-color);
    overflow-x: hidden;
    background: var(--switch-bg-white-color);
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    margin-top: 0;
}

p {
    font-family: var(--secondary-font);
    margin-top: 0;
}

/*======================
Common style
======================*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    z-index: 6;
}

.openNav .overlay {
    display: block;
}

/*======================
Font Sizes
======================*/
.xl-title {
    font-size: 46px;
    line-height: 64px;
    font-weight: 600;
    color: var(--font-color);
}

.lg-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
    color: var(--font-color);
}

.md-title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    color: var(--font-color);
}

.sm-title {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    color: var(--font-color);
}
@media (max-width: 768px) {
    .sm-title {
        font-size: 18px;
    }
}

.ls-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: var(--font-color);
}

.xs-title {
    font-size: 15px;
    line-height: 28px;
    color: var(--font-color);
}

.ts-title {
    font-size: 12px;
    line-height: 16px;
    color: var(--font-color);
}

.font-w-semi {
    font-weight: 600;
}

.bg-main {
    background: var(--primary-color);
}

.bg-section {
    background: var(--switch-bg-white-color);
}

.text-black {
    color: var(--black-color);
}

.text-main {
    color: var(--primary-color);
}

.text-sec {
    color: var(--secondary-color);
}

.flex-g-1 {
    flex: 1 0 0;
}

.box-shadow-1 {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

.box-shadow-2 {
    box-shadow: 0px 6px 21px 3px rgba(0, 0, 0, 0.1);
}

.border-b-primary {
    border-bottom: 1px solid var(--primary-color);
}

.border-b-secondary {
    border-bottom: 1px solid var(--secondary-color);
}

.border-b-white {
    border-bottom: 1px solid var(--white-color);
}

.left-border {
    position: relative;
    padding-left: 28px;
}
.left-border:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--secondary-color);
    height: 2px;
    width: 16px;
}

.left-two-border {
    position: relative;
    padding-left: 28px;
}
.left-two-border:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--primary-color);
    height: 8px;
    width: 8px;
}

.after-border-b-white {
    position: relative;
    padding-bottom: 20px;
}
.after-border-b-white:before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    background: var(--white-color);
    height: 2px;
    width: 40px;
}

.after-border-b-primary,
.after-border-b-secondary,
.after-border-b-white {
    position: relative;
    padding-bottom: 20px;
}
.after-border-b-primary:before,
.after-border-b-secondary:before,
.after-border-b-white:before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    height: 2px;
    width: 40px;
}

.after-border-b-primary:before {
    background: var(--primary-color);
}

.after-border-b-secondary:before {
    background: var(--secondary-color);
}

.after-border-b-white:before {
    background: var(--white-color);
}

.py-80 {
    padding: 80px 0;
}

.my-80 {
    padding: 80px 0;
}

.list-none {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-header .header-t {
    background: var(--primary-color);
    color: var(--white-color);
}
.site-header .header-t .break-text {
    padding: 6px 0px 6px 15px;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 24px;
}
@media (max-width: 1024px) {
    .site-header .header-t .break-text {
        padding: 6px 9px 6px 15px;
        display: inline-block;
    }
}
.site-header .header-t .news-carousel {
    display: flex;
}
.site-header .header-t .news-carousel a {
    color: var(--white-color);
    font-size: 13px;
    white-space: nowrap;
}
@media (max-width: 1024px) {
    .site-header .header-t .news-carousel a {
        white-space: unset;
        line-height: 19px;
    }
}
.site-header .header-t .news-carousel a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}
.site-header .header-t .owl-nav {
    display: flex;
    margin-left: 14px;
    align-items: center;
}
.site-header .header-t .owl-nav button {
    padding: 1px 6px !important;
    background: var(--white-color);
    color: var(--primary-color);
    margin: 0 6px;
    font-size: 12px;
    line-height: 16px;
    width: 20px;
    height: 22px;
}
.site-header .header-t .owl-nav button:focus {
    outline: none;
}
.site-header .header-t .search {
    cursor: pointer;
}
.site-header .header-t .meta-info .search-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 66;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}
.site-header .header-t .meta-info .search-overlay .close-search-lay {
    position: absolute;
    top: 30px;
    right: 18%;
    font-size: 50px;
    cursor: pointer;
}
@media (max-width: 1024px) {
    .site-header .header-t .meta-info .search-overlay .close-search-lay {
        right: 12%;
        font-size: 36px;
    }
}
.site-header .header-t .meta-info .search-overlay .search-wrapper {
    border-bottom: 1px solid var(--white-color);
    width: 100%;
    z-index: 4;
}
.site-header .header-t .meta-info .search-overlay .search-wrapper .form-control,
.site-header .header-t .meta-info .search-overlay .search-wrapper button {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    border: 0;
    height: 100%;
    background: none;
}
.site-header
    .header-t
    .meta-info
    .search-overlay
    .search-wrapper
    .form-control:focus,
.site-header .header-t .meta-info .search-overlay .search-wrapper button:focus {
    box-shadow: none;
    outline: none;
}
.site-header
    .header-t
    .meta-info
    .search-overlay
    .search-wrapper
    .form-control {
    padding: 11px 8px;
    color: var(--white-color);
}
@media (max-width: 1024px) {
    .site-header
        .header-t
        .meta-info
        .search-overlay
        .search-wrapper
        .form-control {
        right: 12%;
        font-size: 18px;
        font-weight: 500;
    }
}
.site-header .header-t .meta-info .search-overlay .search-wrapper .sub {
    display: block;
    color: #fff;
    cursor: pointer;
    font-size: 30px;
    align-items: center;
    align-self: center;
}
@media (max-width: 1024px) {
    .site-header .header-t .meta-info .search-overlay .search-wrapper .sub {
        right: 12%;
        font-size: 24px;
    }
}
.site-header .header-b {
    background: var(--switch-bg-white-color);
}
.site-header .header-b .site-logo img {
    width: 140px;
}
@media (max-width: 768px) {
    .site-header .header-b .site-logo img {
        width: 122px;
    }
}
.site-header .header-b .toggle-menu {
    color: var(--switch-black-color);
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation {
        position: fixed;
        right: 0;
        top: 0;
        height: 100%;
        width: 316px;
        background: var(--switch-bg-white-color);
        z-index: 99;
        border: 1px solid #efefef;
        padding-top: 24px;
        right: -340px;
        -webkit-transition: ease 0.4s;
        -moz-transition: ease 0.4s;
        transition: ease 0.4s;
    }
}
.site-header .header-b .main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    font-size: 15px;
    z-index: 66;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul {
        flex-direction: column;
        padding-top: 8px;
    }
}
.site-header .header-b .main-navigation ul li {
    margin-right: 26px;
    position: relative;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li {
        margin-right: 0;
    }
}
.site-header .header-b .main-navigation ul li a {
    color: var(--switch-black-color);
    text-decoration: none;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li a {
        display: block;
        padding: 8px 6px 6px 24px;
        border-bottom: 1px solid #efefef;
    }
}
.site-header .header-b .main-navigation ul li .drop-icon {
    color: var(--switch-black-color);
    align-items: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    justify-content: center;
}
.site-header .header-b .main-navigation ul li .drop-icon.rotate {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li .drop-icon {
        position: absolute;
        top: 9px;
        display: flex;
        background: #253680;
        color: #fff;
        width: 24px;
        right: 12px;
        height: 24px;
    }
}
.site-header .header-b .main-navigation ul li ul {
    position: absolute;
    top: 213%;
    left: 0;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    width: 240px;
    border: 1px solid #efefef;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
@media (max-width: 1024px) {
    .site-header .header-b .main-navigation ul li ul {
        position: relative;
        display: none;
        visibility: visible;
        opacity: 1;
        width: 100%;
        padding-top: 0px;
    }
}
.site-header .header-b .main-navigation ul li ul li {
    margin-right: 0;
}
.site-header .header-b .main-navigation ul li ul li a {
    display: block;
    padding: 8px 6px 6px 40px;
    border-bottom: 1px solid #efefef;
    background: var(--switch-bg-white-color);
}
.site-header .header-b .main-navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
}
.site-header .header-b .main-navigation ul li:hover > a {
    color: var(--secondary-color);
}
.site-header .header-b .main-navigation ul li:last-child {
    margin-right: 0;
}
.site-header .header-b.nav-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 6;
    background: var(--switch-bg-white-color);
    z-index: 88;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
    border-bottom: 1px solid var(--switch-border-sec-color);
}

.openNav .site-header .header-b .main-navigation {
    right: 0;
}

.openSearchOver .site-header .header-t .meta-info .search-overlay {
    visibility: visible;
    top: 0;
    opacity: 1;
}

.section-header {
    margin-bottom: 25px;
}
.section-header .section-title {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    color: var(--switch-black-color);
}
.section-header .section-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 65px;
    height: 3px;
    background-color: var(--secondary-color);
}

.sidebar {
    background: var(--switch-bg-white-color);
    padding: 14px 14px;
}
.sidebar .widget {
    margin-bottom: 49px;
}
.sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 20px;
}
.sidebar .widget ul li {
    margin-bottom: 14px;
}
.sidebar .widget ul li a {
    color: var(--switch-black-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.sidebar .widget ul li a:hover {
    text-decoration: none;
}
.sidebar .widget .widget-title {
    font-size: 20px;
    line-height: 28px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--switch-black-color);
    margin-bottom: 25px;
    position: relative;
}
.sidebar .widget .widget-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 65px;
    height: 3px;
    background-color: var(--secondary-color);
}
.sidebar .widget.tags ul {
    display: flex;
    flex-wrap: wrap;
}
.sidebar .widget.tags a {
    padding: 4px 11px;
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    background: var(--secondary-color);
    text-transform: capitalize;
    color: var(--white-color);
    margin-right: 14px;
    margin-bottom: 6px;
}
.sidebar .widget.tags a:hover {
    background: var(--primary-color);
}
.sidebar .widget.form .subs-form {
    background: var(--white-color);
    border: 1px solid var(--section-color);
}
.sidebar .widget.form label {
    margin-bottom: 0;
}
.sidebar .widget.form input[type="email"] {
    border: 0;
    background: none;
    height: 100%;
    width: 100%;
    padding: 0 6px;
}
.sidebar .widget.form input[type="email"]:focus {
    box-shadow: none;
    outline: none;
    border: 0;
}
.sidebar .widget.form input[type="submit"] {
    cursor: pointer;
}
.sidebar .widget .post .post-thumbnail {
    width: 70px;
    height: 70px;
}
.sidebar .widget .post .xs-title {
    font-size: 13px;
    line-height: 22px;
}
.sidebar .widget .post:hover a {
    transform: none;
}
.sidebar .widget .post a:hover {
    color: var(--secondary-color);
}

.page-banner {
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
        ),
        url("../images/travel/img-3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 138px 0 80px;
    border-bottom: 1px solid var(--switch-border-black-color);
}
.page-banner .container {
    flex-wrap: wrap;
}
.page-banner .page-title {
    color: var(--white-color);
    font-weight: 700;
}
@media (max-width: 768px) {
    .page-banner .page-title {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 1px;
        margin-right: 14px;
    }
}
.page-banner .bread-crumbs .active {
    color: var(--secondary-color);
}

.pagination ul li {
    margin-right: 14px;
}
.pagination ul li a {
    display: block;
    padding: 7px 18px;
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.pagination ul li a:hover {
    text-decoration: none;
    background: transparent;
    color: var(--primary-color);
}
.pagination ul li.current {
    background: var(--white-color);
    border: 1px solid var(--primary-color);
    padding: 7px 18px;
    color: var(--black-color);
}

.site-footer {
    padding: 40px 0 0;
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6)
        ),
        url("../images/footer-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.site-footer .footer-t {
    padding-bottom: 30px;
}
.site-footer .widget {
    color: var(--white-color);
    margin-bottom: 28px;
}
.site-footer .widget ul {
    list-style: none;
    padding: 0;
    color: var(--white-color);
    margin: 0;
}
.site-footer .widget ul li {
    margin-bottom: 14px;
}
.site-footer .widget ul li a {
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
    color: var(--white-color);
}
.site-footer .widget ul li a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}
.site-footer .widget .widget-title {
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
}
.site-footer .widget p {
    font-size: 14px;
    line-height: 24px;
}
.site-footer .widget.tags a {
    padding: 4px 11px;
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    background: var(--secondary-color);
    text-transform: capitalize;
    color: var(--white-color);
    margin-right: 14px;
    margin-bottom: 10px;
}
.site-footer .widget.tags a:hover {
    background: var(--primary-color);
}
.site-footer .widget .post {
    background: transparent;
}
@media (max-width: 1024px) {
    .site-footer .widget .post {
        border: 0;
    }
}
.site-footer .widget .post .post-thumbnail {
    width: 70px;
    height: 70px;
    margin: 0 auto;
}
.site-footer .widget .post .xs-title {
    font-size: 13px;
    line-height: 22px;
}
.site-footer .widget .post:hover a {
    transform: none;
}
.site-footer .widget .post a:hover {
    color: var(--secondary-color);
}
.site-footer .footer-b p {
    margin-bottom: 0;
}

.to-top {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 16px 22px;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 99;
}
.to-top .fas {
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
@media (max-width: 768px) {
    .to-top {
        font-size: 18px;
        padding: 13px 20px;
    }
}
.to-top:hover .fas {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    transform: translateY(-8px);
}

.button-one {
    padding: 6px 14px;
    background: var(--primary-color);
    color: var(--white-color);
    display: inline-block;
    border: 1px solid var(--primary-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.button-one:hover {
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
}

.button-two {
    padding: 6px 14px;
    background: transparent;
    color: var(--primary-color);
    display: inline-block;
    border: 1px solid var(--primary-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.button-two:hover {
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
}

.button-three {
    padding: 6px 18px;
    background: var(--white-color);
    color: var(--font-color);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    display: inline-block;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}
.button-three:hover {
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
}

.button-four {
    padding: 6px 14px;
    background: var(--primary-color);
    color: var(--white-color);
    display: inline-block;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.button-four:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
}

.button-one-sec {
    padding: 6px 14px;
    background: var(--secondary-color);
    color: var(--white-color);
    display: inline-block;
    border: 1px solid var(--secondary-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.button-one-sec:hover {
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
}

.button-two-sec {
    padding: 6px 14px;
    background: transparent;
    color: var(--secondary-color);
    display: inline-block;
    border: 1px solid var(--secondary-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.button-two-sec:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
}

.theme-switch-wrapper {
    display: flex;
    align-items: center;
    z-index: 8;
}
.theme-switch-wrapper em {
    margin-left: 10px;
    font-size: 1rem;
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: var(--primary-color);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.4s;
}
.slider img {
    width: 16px;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: 0.4s;
    width: 26px;
}

input:checked + .slider {
    background-color: #66bb6a;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* PAGES */
.banner-section {
    background: var(--white-color);
}

.post {
    position: relative;
    -webkit-transition: ease 0.2s;
    -moz-transition: ease 0.2s;
    transition: ease 0.2s;
    height: 260px;
    overflow: hidden;
    background: var(--switch-white-color);
}
@media (max-width: 1024px) {
    .post {
        border-left: 4px solid var(--white-color);
        border-right: 4px solid var(--white-color);
    }
}
.post:hover .post-thumbnail a {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}
.post .post-thumbnail {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.post .post-thumbnail a {
    height: 100%;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.post .post-thumbnail a img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}
.post .meta .cat {
    color: #fff !important;
    font-size: 12px;
    font-weight: normal;
    padding: 4px 10px;
    display: inline-block;
    border-radius: 50px;
    line-height: 1;
    background: var(--primary-color);
    margin-right: 5px;
}
.post .post-content {
    position: absolute;
    bottom: 0;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    left: 0;
    width: 100%;
    padding: 12px 10px 24px 23px;
}
.post .post-content a {
    color: var(--white-color);
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    transition: ease 0.3s;
}
.post .post-content a:hover {
    text-decoration: none;
}
.post.center-post {
    border-left: 4px solid var(--white-color);
    border-right: 4px solid var(--white-color);
    height: 523px;
}
@media (max-width: 768px) {
    .post.center-post {
        height: 260px;
    }
}
.post.center-post .md-title {
    font-size: 18px;
    line-height: 28px;
}

.interview-section .post {
    padding: 5px;
    background: #fff;
}
.interview-section .post .post-content {
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.9) 18%,
        rgba(255, 255, 255, 0) 100%
    );
}
.interview-section .post .post-content .xs-title {
    line-height: 24px;
}

.cat-without-over .post {
    padding: 10px;
    height: auto;
}
@media (max-width: 1024px) {
    .cat-without-over .post {
        border-left: 0;
        border-right: 0;
    }
}
.cat-without-over .post .post-thumbnail {
    height: 220px;
}
.cat-without-over .post .post-content {
    position: unset;
    background: none;
    padding: 0;
}
.cat-without-over .post .post-content .meta {
    color: var(--switch-black-color);
}
.cat-without-over .post .post-content a {
    color: var(--switch-black-color);
}
.cat-without-over .post .post-content a:hover {
    color: var(--secondary-color);
}
.cat-without-over .post .post-content .main-content {
    font-size: 14px;
    color: var(--switch-black-color);
    line-height: 27px;
}

.cat-without-over-two .cat {
    position: absolute;
    top: 24px;
    left: 24px;
}

.blog-detail-section .post {
    padding: 12px;
}
.blog-detail-section .post .md-title {
    color: var(--switch-black-color);
}
.blog-detail-section .post .post-thumbnail {
    height: auto;
}

.contact-section .contact-info .icon {
    width: 46px;
    height: 46px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}
.contact-section .contact-form label {
    margin-bottom: 0;
    font-weight: 600;
}
.site-footer .for-foot{
    display: block !important;
}
.site-footer input[type="email"]{
    width: 100%;
}
.site-footer label {
    width: 100%;
    flex: 0 !important;
}
.site-footer .button-one-sec{
    width: 100%;
    display: block;
}
.contact-section .contact-form .form-control {
    border-radius: 0;
}
.contact-section .contact-form .button-one {
    cursor: pointer;
}

/*# sourceMappingURL=style.css.map */

/* Additional CSS */
.site-footer input[type="email"] {
    padding: 5px 9px;
}
.site-footer label {
    margin-bottom: 0;
}
