/*---------------------------
 CSS Index  
****************************

1. variables
2. typography
3. spacing
4. reset
5. forms
6. mixins
7. shortcode
8. common
9. animations
10. text-animation
11. sal animation




/* Default  */
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300..700&amp;display=swap");
:root {
    /* Primary Brand Colors */
    --color-primary: #0e76a8; /* Main blue */
    --color-primary-2: #0b5f86; /* Hover / darker blue */
    --color-primary-3: #0a4f70; /* Dark accent blue */
    --color-primary-4: #bf1f1f; /* Danger / secondary accent (leave red) */

    /* Fonts */
    --title-font: "ClashDisplay";
    --title-font-2: "URW Imperial W01 Regular";
    --title-font-3: "Teko", sans-serif;
    --body-font: "Rubik", sans-serif;
    --body-font-2: "OpticianSans";

    /* Body & Heading Text Colors */
    --home-5-body-color: #ebebeb; /* small light text on dark background */
    --color-body: #4a4a4a; /* main body text (gray, readable on white) */
    --dark-color-body: rgba(255, 255, 255, 0.8); /* body text on dark bg */
    --color-title-af-bf: #f9f9f9; /* heading / subtitle on dark overlays */
    --color-heading-1: #135675; /* brand blue headings on light bg */
    --dark-color-heading-1: #ffffff; /* headings on dark bg */

    /* Backgrounds */
    --bg-dark-one: #27272e; /* dark bg for sections */
    --bg-dark-two: #212121;
    --bg-dark-three: #0f0f1c;

    /* White / Black */
    --color-white: #ffffff; /* white text / button bg */
    --color-black: #000000; /* black text on light bg */

    /* Status / Info Colors */
    --color-success: #3eb75e;
    --color-danger: #ff0003;
    --color-warning: #ff8f3c;
    --color-info: #0e76a8; /* info / badges now aligned with brand blue */

    /* Social Media Colors (unchanged) */
    --color-facebook: #3b5997;
    --color-twitter: #1ba1f2;
    --color-youtube: #ed4141;
    --color-linkedin: #0077b5;
    --color-pinterest: #e60022;
    --color-instagram: #c231a1;
    --color-vimeo: #00adef;
    --color-twitch: #6441a3;
    --color-discord: #7289da;

    /* Font Weights */
    --p-light: 300;
    --p-regular: 400;
    --p-medium: 500;
    --p-semi-bold: 600;
    --p-bold: 700;
    --p-extra-bold: 800;
    --p-black: 900;
    --s-light: 300;
    --s-regular: 400;
    --s-medium: 500;
    --s-semi-bold: 600;
    --s-bold: 700;
    --s-extra-bold: 800;
    --s-black: 900;

    /* Others */
    --transition: all 0.3s;
    --font-size-b1: 16px;
    --font-size-b2: 16px;
    --font-size-b3: 22px;
    --line-height-b1: 26px;
    --line-height-b2: 26px;
    --line-height-b3: 1.7;
    --h1: 66px;
    --h2: 48px;
    --h3: 36px;
    --h4: 28px;
    --h5: 24px;
    --h6: 20px;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    font-size: 10px;
    overflow: hidden;
    overflow-y: auto;
    scroll-behavior: auto !important;
}

body {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--color-body);
    font-weight: var(--p-regular);
    position: relative;
    overflow-x: hidden;
    font-family: "Rubik", sans-serif;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    body {
        overflow: hidden;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    body {
        overflow: hidden;
    }
}
@media only screen and (max-width: 767px) {
    body {
        overflow: hidden;
    }
}
body::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.05;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
address,
p,
pre,
blockquote,
menu,
ol,
ul,
table,
hr {
    margin: 0;
    margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    word-break: break-word;
    font-family: var(--title-font);
    line-height: 1.25;
    color: var(--color-heading-1);
}

.home-two h1,
.home-two h2,
.home-two h3,
.home-two h4,
.home-two h5,
.home-two h6,
.home-two .h1,
.home-two .h2,
.home-two .h3,
.home-two .h4,
.home-two .h5,
.home-two .h6,
.home-three h1,
.home-three h2,
.home-three h3,
.home-three h4,
.home-three h5,
.home-three h6,
.home-three .h1,
.home-three .h2,
.home-three .h3,
.home-three .h4,
.home-three .h5,
.home-three .h6,
.home-inner h1,
.home-inner h2,
.home-inner h3,
.home-inner h4,
.home-inner h5,
.home-inner h6,
.home-inner .h1,
.home-inner .h2,
.home-inner .h3,
.home-inner .h4,
.home-inner .h5,
.home-inner .h6 {
    word-break: break-word;
    font-family: var(--title-font-2);
    line-height: 1.25;
    color: var(--color-heading-1);
}
.home-two .blog-content .heading-title a,
.home-two .title a,
.home-three .blog-content .heading-title a,
.home-three .title a,
.home-inner .blog-content .heading-title a,
.home-inner .title a {
    font-family: var(--title-font-2);
    font-weight: 400;
}

.home-four h1,
.home-four h2,
.home-four h3,
.home-four h4,
.home-four h5,
.home-four h6,
.home-four .h1,
.home-four .h2,
.home-four .h3,
.home-four .h4,
.home-four .h5,
.home-four .h6 {
    word-break: break-word;
    font-family: var(--body-font);
    line-height: 1.25;
    color: var(--color-heading-1);
}
.home-four .blog-content .heading-title a,
.home-four .title a {
    font-family: var(--body-font);
    font-weight: 500;
}
.home-four .section-title {
    font-weight: 500;
}

.home-five h1,
.home-five h2,
.home-five h3,
.home-five h4,
.home-five h5,
.home-five h6,
.home-five .h1,
.home-five .h2,
.home-five .h3,
.home-five .h4,
.home-five .h5,
.home-five .h6 {
    word-break: break-word;
    font-family: var(--title-font-3);
    color: var(--color-heading-1);
}
.home-five .blog-content .heading-title a,
.home-five .title a {
    font-family: var(--title-font-3);
    font-weight: 500;
    text-transform: uppercase;
    background-image: unset !important;
    background: none;
    transition: var(--transition);
}
.home-five .blog-content .heading-title a:hover,
.home-five .title a:hover {
    background: none;
    text-decoration: underline;
}

p,
a,
span {
    font-family: var(--body-font);
}

h1,
.h1 {
    font-size: var(--h1);
    line-height: 1.25;
    font-weight: 700;
}

h2,
.h2 {
    font-size: var(--h2);
    line-height: 1.25;
}

h3,
.h3 {
    font-size: var(--h3);
    line-height: 1.25;
}

h4,
.h4 {
    font-size: var(--h4);
    line-height: 1.25;
}

h5,
.h5 {
    font-size: var(--h5);
    line-height: 1.25;
}

h6,
.h6 {
    font-size: var(--h6);
    line-height: 1.25;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
    color: inherit;
}

.bg-color-tertiary h1,
.bg-color-tertiary h2,
.bg-color-tertiary h3,
.bg-color-tertiary h4,
.bg-color-tertiary h5,
.bg-color-tertiary h6,
.bg-color-tertiary .h1,
.bg-color-tertiary .h2,
.bg-color-tertiary .h3,
.bg-color-tertiary .h4,
.bg-color-tertiary .h5,
.bg-color-tertiary .h6 {
    color: #fff;
}
.bg-color-tertiary p {
    color: #6c7279;
}
.bg-color-tertiary a {
    color: #6c7279;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1,
    .h1 {
        font-size: 38px;
    }
    h2,
    .h2 {
        font-size: 32px;
    }
    h3,
    .h3 {
        font-size: 28px;
    }
    h4,
    .h4 {
        font-size: 24px;
    }
    h5,
    .h5 {
        font-size: 18px;
    }
}
@media only screen and (max-width: 767px) {
    h1,
    .h1 {
        font-size: 34px;
    }
    h2,
    .h2 {
        font-size: 28px;
    }
    h3,
    .h3 {
        font-size: 24px;
    }
    h4,
    .h4 {
        font-size: 20px;
    }
    h5,
    .h5 {
        font-size: 20px;
    }
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
    font-weight: var(--s-bold);
}

h4,
.h4,
h5,
.h5 {
    font-weight: var(--s-bold);
}

h6,
.h6 {
    font-weight: var(--s-bold);
}

p {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
    font-weight: var(--p-regular);
    color: var(--color-body);
    margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
    p {
        margin: 0 0 20px;
        font-size: 16px;
        line-height: 28px;
    }
}
p.b1 {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
}
p.b3 {
    font-size: var(--font-size-b3);
    line-height: var(--line-height-b3);
}
p.has-large-font-size {
    line-height: 1.5;
    font-size: 36px;
}
p.has-medium-font-size {
    font-size: 24px;
    line-height: 36px;
}
p.has-small-font-size {
    font-size: 13px;
}
p.has-very-light-gray-color {
    color: var(--color-white);
}
p.has-background {
    padding: 20px 30px;
}
p.b1 {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
}
p.b2 {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
}
p.b3 {
    font-size: var(--font-size-b3);
    line-height: var(--line-height-b3);
}
p:last-child {
    margin-bottom: 0;
}

.b1 {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
}

.b2 {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
}

.b3 {
    font-size: var(--font-size-b3);
    line-height: var(--line-height-b3);
}

.b4 {
    font-size: var(--font-size-b4);
    line-height: var(--line-height-b4);
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 0 20px;
    width: 100%;
}

table a,
table a:link,
table a:visited {
    text-decoration: none;
}

cite,
.wp-block-pullquote cite,
.wp-block-pullquote.is-style-solid-color blockquote cite,
.wp-block-quote cite {
    color: var(--color-heading);
}

var {
    font-family: "Manrope", sans-serif;
}

/*---------------------------
	List Style 
---------------------------*/
ul,
ol {
    padding-left: 18px;
}

ul {
    list-style: square;
    margin-bottom: 30px;
    padding-left: 20px;
}
ul.liststyle.bullet li {
    font-size: 18px;
    line-height: 30px;
    color: var(--color-body);
    position: relative;
    padding-left: 30px;
}
@media only screen and (max-width: 767px) {
    ul.liststyle.bullet li {
        padding-left: 19px;
    }
}
ul.liststyle.bullet li::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: var(--color-body);
    left: 0;
    top: 10px;
}
ul.liststyle.bullet li + li {
    margin-top: 8px;
}
ul li {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--color-body);
}
ul li a {
    text-decoration: none;
    color: var(--color-gray);
    transition: all 0.3s;
}
ul li a:hover {
    color: var(--color-primary);
}
ul ul {
    margin-bottom: 0;
}

ol {
    margin-bottom: 30px;
}
ol li {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    color: var(--color-body);
    margin-top: 10px;
    margin-bottom: 10px;
}
ol li a {
    color: var(--color-heading);
    text-decoration: none;
}
ol li a:hover {
    color: var(--color-primary);
}
ol ul {
    padding-left: 30px;
}

.typo-title-area .title {
    margin-top: 0;
}

.paragraph-area p.disc {
    margin-bottom: 20px;
    color: #fff;
}

@media only screen and (max-width: 1199px) {
    h1 {
        font-size: 64px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 54px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 40px;
        line-height: 56px;
    }
}
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 30px;
        line-height: 45px;
    }
}
@media only screen and (max-width: 575px) {
    h1 {
        font-size: 28px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 479px) {
    h1 {
        font-size: 26px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 1199px) {
    h2 {
        font-size: 54px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2 {
        font-size: 44px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 36px;
        line-height: 56px;
    }
}
@media only screen and (max-width: 767px) {
    h2 {
        font-size: 30px;
        line-height: 45px;
    }
}
@media only screen and (max-width: 575px) {
    h2 {
        font-size: 26px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 479px) {
    h2 {
        font-size: 24px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 1199px) {
    h3 {
        font-size: 40px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h3 {
        font-size: 36px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3 {
        font-size: 30px;
        line-height: 56px;
    }
}
@media only screen and (max-width: 767px) {
    h3 {
        font-size: 30px;
        line-height: 45px;
    }
}
@media only screen and (max-width: 575px) {
    h3 {
        font-size: 24px;
        line-height: 36px;
    }
}
@media only screen and (max-width: 479px) {
    h3 {
        font-size: 22px;
        line-height: 30px;
    }
}

/*=========================
    Section Separation 
==========================*/
.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.mb_dec--25 {
    margin-bottom: -25px;
}

.mb_dec--30 {
    margin-bottom: -30px;
}

.m--0 {
    margin: 0;
}

.tp-section-gap {
    padding: 80px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-section-gap {
        padding: 80px 0;
    }
}
@media only screen and (max-width: 767px) {
    .tp-section-gap {
        padding: 60px 0;
    }
}

.tp-section-gapBottom {
    padding-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-section-gapBottom {
        padding-bottom: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .tp-section-gapBottom {
        padding-bottom: 60px;
    }
}

.tp-section-gapTop {
    padding-top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-section-gapTop {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .tp-section-gapTop {
        padding-top: 60px;
    }
}

.tp-section-gap2 {
    padding: 120px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-section-gap2 {
        padding: 80px 0;
    }
}
@media only screen and (max-width: 767px) {
    .tp-section-gap2 {
        padding: 60px 0;
    }
}

.tp-section-gap3 {
    padding: 60px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-section-gap3 {
        padding: 40px 0;
    }
}
@media only screen and (max-width: 767px) {
    .tp-section-gap3 {
        padding: 20px 0;
    }
}

.tp-section-gap2Bottom {
    padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-section-gap2Bottom {
        padding-bottom: 80px;
    }
}
@media only screen and (max-width: 767px) {
    .tp-section-gap2Bottom {
        padding-bottom: 60px;
    }
}

.tp-section-gap3Bottom {
    padding-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-section-gap3Bottom {
        padding-bottom: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .tp-section-gap3Bottom {
        padding-bottom: 20px;
    }
}

.tp-section-gap2Top {
    padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-section-gap2Top {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .tp-section-gap2Top {
        padding-top: 60px;
    }
}

.tp-section-gap3Top {
    padding-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-section-gap3Top {
        padding-top: 40px;
    }
}
@media only screen and (max-width: 767px) {
    .tp-section-gap3Top {
        padding-top: 20px;
    }
}

.pl--0 {
    padding-left: 0 !important;
}

.pr--0 {
    padding-right: 0 !important;
}

.pt--0 {
    padding-top: 0 !important;
}

.pb--0 {
    padding-bottom: 0 !important;
}

.mr--0 {
    margin-right: 0 !important;
}

.ml--0 {
    margin-left: 0 !important;
}

.mt--0 {
    margin-top: 0 !important;
}

.mb--0 {
    margin-bottom: 0 !important;
}

.ptb--5 {
    padding: 5px 0 !important;
}

.plr--5 {
    padding: 0 5px !important;
}

.pt--5 {
    padding-top: 5px !important;
}

.pb--5 {
    padding-bottom: 5px !important;
}

.pl--5 {
    padding-left: 5px !important;
}

.pr--5 {
    padding-right: 5px !important;
}

.mt--5 {
    margin-top: 5px !important;
}

.mb--5 {
    margin-bottom: 5px !important;
}

.mr--5 {
    margin-right: 5px !important;
}

.ml--5 {
    margin-left: 5px !important;
}

.ptb--10 {
    padding: 10px 0 !important;
}

.plr--10 {
    padding: 0 10px !important;
}

.pt--10 {
    padding-top: 10px !important;
}

.pb--10 {
    padding-bottom: 10px !important;
}

.pl--10 {
    padding-left: 10px !important;
}

.pr--10 {
    padding-right: 10px !important;
}

.mt--10 {
    margin-top: 10px !important;
}

.mb--10 {
    margin-bottom: 10px !important;
}

.mr--10 {
    margin-right: 10px !important;
}

.ml--10 {
    margin-left: 10px !important;
}

.ptb--15 {
    padding: 15px 0 !important;
}

.plr--15 {
    padding: 0 15px !important;
}

.pt--15 {
    padding-top: 15px !important;
}

.pb--15 {
    padding-bottom: 15px !important;
}

.pl--15 {
    padding-left: 15px !important;
}

.pr--15 {
    padding-right: 15px !important;
}

.mt--15 {
    margin-top: 15px !important;
}

.mb--15 {
    margin-bottom: 15px !important;
}

.mr--15 {
    margin-right: 15px !important;
}

.ml--15 {
    margin-left: 15px !important;
}

.ptb--20 {
    padding: 20px 0 !important;
}

.plr--20 {
    padding: 0 20px !important;
}

.pt--20 {
    padding-top: 20px !important;
}

.pb--20 {
    padding-bottom: 20px !important;
}

.pl--20 {
    padding-left: 20px !important;
}

.pr--20 {
    padding-right: 20px !important;
}

.mt--20 {
    margin-top: 20px !important;
}

.mb--20 {
    margin-bottom: 20px !important;
}

.mr--20 {
    margin-right: 20px !important;
}

.ml--20 {
    margin-left: 20px !important;
}

.ptb--25 {
    padding: 25px 0 !important;
}

.plr--25 {
    padding: 0 25px !important;
}

.pt--25 {
    padding-top: 25px !important;
}

.pb--25 {
    padding-bottom: 25px !important;
}

.pl--25 {
    padding-left: 25px !important;
}

.pr--25 {
    padding-right: 25px !important;
}

.mt--25 {
    margin-top: 25px !important;
}

.mb--25 {
    margin-bottom: 25px !important;
}

.mr--25 {
    margin-right: 25px !important;
}

.ml--25 {
    margin-left: 25px !important;
}

.ptb--30 {
    padding: 30px 0 !important;
}

.plr--30 {
    padding: 0 30px !important;
}

.pt--30 {
    padding-top: 30px !important;
}

.pb--30 {
    padding-bottom: 30px !important;
}

.pl--30 {
    padding-left: 30px !important;
}

.pr--30 {
    padding-right: 30px !important;
}

.mt--30 {
    margin-top: 30px !important;
}

.mb--30 {
    margin-bottom: 30px !important;
}

.mr--30 {
    margin-right: 30px !important;
}

.ml--30 {
    margin-left: 30px !important;
}

.ptb--35 {
    padding: 35px 0 !important;
}

.plr--35 {
    padding: 0 35px !important;
}

.pt--35 {
    padding-top: 35px !important;
}

.pb--35 {
    padding-bottom: 35px !important;
}

.pl--35 {
    padding-left: 35px !important;
}

.pr--35 {
    padding-right: 35px !important;
}

.mt--35 {
    margin-top: 35px !important;
}

.mb--35 {
    margin-bottom: 35px !important;
}

.mr--35 {
    margin-right: 35px !important;
}

.ml--35 {
    margin-left: 35px !important;
}

.ptb--40 {
    padding: 40px 0 !important;
}

.plr--40 {
    padding: 0 40px !important;
}

.pt--40 {
    padding-top: 40px !important;
}

.pb--40 {
    padding-bottom: 40px !important;
}

.pl--40 {
    padding-left: 40px !important;
}

.pr--40 {
    padding-right: 40px !important;
}

.mt--40 {
    margin-top: 40px !important;
}

.mb--40 {
    margin-bottom: 40px !important;
}

.mr--40 {
    margin-right: 40px !important;
}

.ml--40 {
    margin-left: 40px !important;
}

.ptb--45 {
    padding: 45px 0 !important;
}

.plr--45 {
    padding: 0 45px !important;
}

.pt--45 {
    padding-top: 45px !important;
}

.pb--45 {
    padding-bottom: 45px !important;
}

.pl--45 {
    padding-left: 45px !important;
}

.pr--45 {
    padding-right: 45px !important;
}

.mt--45 {
    margin-top: 45px !important;
}

.mb--45 {
    margin-bottom: 45px !important;
}

.mr--45 {
    margin-right: 45px !important;
}

.ml--45 {
    margin-left: 45px !important;
}

.ptb--50 {
    padding: 50px 0 !important;
}

.plr--50 {
    padding: 0 50px !important;
}

.pt--50 {
    padding-top: 50px !important;
}

.pb--50 {
    padding-bottom: 50px !important;
}

.pl--50 {
    padding-left: 50px !important;
}

.pr--50 {
    padding-right: 50px !important;
}

.mt--50 {
    margin-top: 50px !important;
}

.mb--50 {
    margin-bottom: 50px !important;
}

.mr--50 {
    margin-right: 50px !important;
}

.ml--50 {
    margin-left: 50px !important;
}

.ptb--55 {
    padding: 55px 0 !important;
}

.plr--55 {
    padding: 0 55px !important;
}

.pt--55 {
    padding-top: 55px !important;
}

.pb--55 {
    padding-bottom: 55px !important;
}

.pl--55 {
    padding-left: 55px !important;
}

.pr--55 {
    padding-right: 55px !important;
}

.mt--55 {
    margin-top: 55px !important;
}

.mb--55 {
    margin-bottom: 55px !important;
}

.mr--55 {
    margin-right: 55px !important;
}

.ml--55 {
    margin-left: 55px !important;
}

.ptb--60 {
    padding: 60px 0 !important;
}

.plr--60 {
    padding: 0 60px !important;
}

.pt--60 {
    padding-top: 60px !important;
}

.pb--60 {
    padding-bottom: 60px !important;
}

.pl--60 {
    padding-left: 60px !important;
}

.pr--60 {
    padding-right: 60px !important;
}

.mt--60 {
    margin-top: 60px !important;
}

.mb--60 {
    margin-bottom: 60px !important;
}

.mr--60 {
    margin-right: 60px !important;
}

.ml--60 {
    margin-left: 60px !important;
}

.ptb--65 {
    padding: 65px 0 !important;
}

.plr--65 {
    padding: 0 65px !important;
}

.pt--65 {
    padding-top: 65px !important;
}

.pb--65 {
    padding-bottom: 65px !important;
}

.pl--65 {
    padding-left: 65px !important;
}

.pr--65 {
    padding-right: 65px !important;
}

.mt--65 {
    margin-top: 65px !important;
}

.mb--65 {
    margin-bottom: 65px !important;
}

.mr--65 {
    margin-right: 65px !important;
}

.ml--65 {
    margin-left: 65px !important;
}

.ptb--70 {
    padding: 70px 0 !important;
}

.plr--70 {
    padding: 0 70px !important;
}

.pt--70 {
    padding-top: 70px !important;
}

.pb--70 {
    padding-bottom: 70px !important;
}

.pl--70 {
    padding-left: 70px !important;
}

.pr--70 {
    padding-right: 70px !important;
}

.mt--70 {
    margin-top: 70px !important;
}

.mb--70 {
    margin-bottom: 70px !important;
}

.mr--70 {
    margin-right: 70px !important;
}

.ml--70 {
    margin-left: 70px !important;
}

.ptb--75 {
    padding: 75px 0 !important;
}

.plr--75 {
    padding: 0 75px !important;
}

.pt--75 {
    padding-top: 75px !important;
}

.pb--75 {
    padding-bottom: 75px !important;
}

.pl--75 {
    padding-left: 75px !important;
}

.pr--75 {
    padding-right: 75px !important;
}

.mt--75 {
    margin-top: 75px !important;
}

.mb--75 {
    margin-bottom: 75px !important;
}

.mr--75 {
    margin-right: 75px !important;
}

.ml--75 {
    margin-left: 75px !important;
}

.ptb--80 {
    padding: 80px 0 !important;
}

.plr--80 {
    padding: 0 80px !important;
}

.pt--80 {
    padding-top: 80px !important;
}

.pb--80 {
    padding-bottom: 80px !important;
}

.pl--80 {
    padding-left: 80px !important;
}

.pr--80 {
    padding-right: 80px !important;
}

.mt--80 {
    margin-top: 80px !important;
}

.mb--80 {
    margin-bottom: 80px !important;
}

.mr--80 {
    margin-right: 80px !important;
}

.ml--80 {
    margin-left: 80px !important;
}

.ptb--85 {
    padding: 85px 0 !important;
}

.plr--85 {
    padding: 0 85px !important;
}

.pt--85 {
    padding-top: 85px !important;
}

.pb--85 {
    padding-bottom: 85px !important;
}

.pl--85 {
    padding-left: 85px !important;
}

.pr--85 {
    padding-right: 85px !important;
}

.mt--85 {
    margin-top: 85px !important;
}

.mb--85 {
    margin-bottom: 85px !important;
}

.mr--85 {
    margin-right: 85px !important;
}

.ml--85 {
    margin-left: 85px !important;
}

.ptb--90 {
    padding: 90px 0 !important;
}

.plr--90 {
    padding: 0 90px !important;
}

.pt--90 {
    padding-top: 90px !important;
}

.pb--90 {
    padding-bottom: 90px !important;
}

.pl--90 {
    padding-left: 90px !important;
}

.pr--90 {
    padding-right: 90px !important;
}

.mt--90 {
    margin-top: 90px !important;
}

.mb--90 {
    margin-bottom: 90px !important;
}

.mr--90 {
    margin-right: 90px !important;
}

.ml--90 {
    margin-left: 90px !important;
}

.ptb--95 {
    padding: 95px 0 !important;
}

.plr--95 {
    padding: 0 95px !important;
}

.pt--95 {
    padding-top: 95px !important;
}

.pb--95 {
    padding-bottom: 95px !important;
}

.pl--95 {
    padding-left: 95px !important;
}

.pr--95 {
    padding-right: 95px !important;
}

.mt--95 {
    margin-top: 95px !important;
}

.mb--95 {
    margin-bottom: 95px !important;
}

.mr--95 {
    margin-right: 95px !important;
}

.ml--95 {
    margin-left: 95px !important;
}

.ptb--100 {
    padding: 100px 0 !important;
}

.plr--100 {
    padding: 0 100px !important;
}

.pt--100 {
    padding-top: 100px !important;
}

.pb--100 {
    padding-bottom: 100px !important;
}

.pl--100 {
    padding-left: 100px !important;
}

.pr--100 {
    padding-right: 100px !important;
}

.mt--100 {
    margin-top: 100px !important;
}

.mb--100 {
    margin-bottom: 100px !important;
}

.mr--100 {
    margin-right: 100px !important;
}

.ml--100 {
    margin-left: 100px !important;
}

.ptb--105 {
    padding: 105px 0 !important;
}

.plr--105 {
    padding: 0 105px !important;
}

.pt--105 {
    padding-top: 105px !important;
}

.pb--105 {
    padding-bottom: 105px !important;
}

.pl--105 {
    padding-left: 105px !important;
}

.pr--105 {
    padding-right: 105px !important;
}

.mt--105 {
    margin-top: 105px !important;
}

.mb--105 {
    margin-bottom: 105px !important;
}

.mr--105 {
    margin-right: 105px !important;
}

.ml--105 {
    margin-left: 105px !important;
}

.ptb--110 {
    padding: 110px 0 !important;
}

.plr--110 {
    padding: 0 110px !important;
}

.pt--110 {
    padding-top: 110px !important;
}

.pb--110 {
    padding-bottom: 110px !important;
}

.pl--110 {
    padding-left: 110px !important;
}

.pr--110 {
    padding-right: 110px !important;
}

.mt--110 {
    margin-top: 110px !important;
}

.mb--110 {
    margin-bottom: 110px !important;
}

.mr--110 {
    margin-right: 110px !important;
}

.ml--110 {
    margin-left: 110px !important;
}

.ptb--115 {
    padding: 115px 0 !important;
}

.plr--115 {
    padding: 0 115px !important;
}

.pt--115 {
    padding-top: 115px !important;
}

.pb--115 {
    padding-bottom: 115px !important;
}

.pl--115 {
    padding-left: 115px !important;
}

.pr--115 {
    padding-right: 115px !important;
}

.mt--115 {
    margin-top: 115px !important;
}

.mb--115 {
    margin-bottom: 115px !important;
}

.mr--115 {
    margin-right: 115px !important;
}

.ml--115 {
    margin-left: 115px !important;
}

.ptb--120 {
    padding: 120px 0 !important;
}

.plr--120 {
    padding: 0 120px !important;
}

.pt--120 {
    padding-top: 120px !important;
}

.pb--120 {
    padding-bottom: 120px !important;
}

.pl--120 {
    padding-left: 120px !important;
}

.pr--120 {
    padding-right: 120px !important;
}

.mt--120 {
    margin-top: 120px !important;
}

.mb--120 {
    margin-bottom: 120px !important;
}

.mr--120 {
    margin-right: 120px !important;
}

.ml--120 {
    margin-left: 120px !important;
}

.ptb--125 {
    padding: 125px 0 !important;
}

.plr--125 {
    padding: 0 125px !important;
}

.pt--125 {
    padding-top: 125px !important;
}

.pb--125 {
    padding-bottom: 125px !important;
}

.pl--125 {
    padding-left: 125px !important;
}

.pr--125 {
    padding-right: 125px !important;
}

.mt--125 {
    margin-top: 125px !important;
}

.mb--125 {
    margin-bottom: 125px !important;
}

.mr--125 {
    margin-right: 125px !important;
}

.ml--125 {
    margin-left: 125px !important;
}

.ptb--130 {
    padding: 130px 0 !important;
}

.plr--130 {
    padding: 0 130px !important;
}

.pt--130 {
    padding-top: 130px !important;
}

.pb--130 {
    padding-bottom: 130px !important;
}

.pl--130 {
    padding-left: 130px !important;
}

.pr--130 {
    padding-right: 130px !important;
}

.mt--130 {
    margin-top: 130px !important;
}

.mb--130 {
    margin-bottom: 130px !important;
}

.mr--130 {
    margin-right: 130px !important;
}

.ml--130 {
    margin-left: 130px !important;
}

.ptb--135 {
    padding: 135px 0 !important;
}

.plr--135 {
    padding: 0 135px !important;
}

.pt--135 {
    padding-top: 135px !important;
}

.pb--135 {
    padding-bottom: 135px !important;
}

.pl--135 {
    padding-left: 135px !important;
}

.pr--135 {
    padding-right: 135px !important;
}

.mt--135 {
    margin-top: 135px !important;
}

.mb--135 {
    margin-bottom: 135px !important;
}

.mr--135 {
    margin-right: 135px !important;
}

.ml--135 {
    margin-left: 135px !important;
}

.ptb--140 {
    padding: 140px 0 !important;
}

.plr--140 {
    padding: 0 140px !important;
}

.pt--140 {
    padding-top: 140px !important;
}

.pb--140 {
    padding-bottom: 140px !important;
}

.pl--140 {
    padding-left: 140px !important;
}

.pr--140 {
    padding-right: 140px !important;
}

.mt--140 {
    margin-top: 140px !important;
}

.mb--140 {
    margin-bottom: 140px !important;
}

.mr--140 {
    margin-right: 140px !important;
}

.ml--140 {
    margin-left: 140px !important;
}

.ptb--145 {
    padding: 145px 0 !important;
}

.plr--145 {
    padding: 0 145px !important;
}

.pt--145 {
    padding-top: 145px !important;
}

.pb--145 {
    padding-bottom: 145px !important;
}

.pl--145 {
    padding-left: 145px !important;
}

.pr--145 {
    padding-right: 145px !important;
}

.mt--145 {
    margin-top: 145px !important;
}

.mb--145 {
    margin-bottom: 145px !important;
}

.mr--145 {
    margin-right: 145px !important;
}

.ml--145 {
    margin-left: 145px !important;
}

.ptb--150 {
    padding: 150px 0 !important;
}

.plr--150 {
    padding: 0 150px !important;
}

.pt--150 {
    padding-top: 150px !important;
}

.pb--150 {
    padding-bottom: 150px !important;
}

.pl--150 {
    padding-left: 150px !important;
}

.pr--150 {
    padding-right: 150px !important;
}

.mt--150 {
    margin-top: 150px !important;
}

.mb--150 {
    margin-bottom: 150px !important;
}

.mr--150 {
    margin-right: 150px !important;
}

.ml--150 {
    margin-left: 150px !important;
}

.ptb--155 {
    padding: 155px 0 !important;
}

.plr--155 {
    padding: 0 155px !important;
}

.pt--155 {
    padding-top: 155px !important;
}

.pb--155 {
    padding-bottom: 155px !important;
}

.pl--155 {
    padding-left: 155px !important;
}

.pr--155 {
    padding-right: 155px !important;
}

.mt--155 {
    margin-top: 155px !important;
}

.mb--155 {
    margin-bottom: 155px !important;
}

.mr--155 {
    margin-right: 155px !important;
}

.ml--155 {
    margin-left: 155px !important;
}

.ptb--160 {
    padding: 160px 0 !important;
}

.plr--160 {
    padding: 0 160px !important;
}

.pt--160 {
    padding-top: 160px !important;
}

.pb--160 {
    padding-bottom: 160px !important;
}

.pl--160 {
    padding-left: 160px !important;
}

.pr--160 {
    padding-right: 160px !important;
}

.mt--160 {
    margin-top: 160px !important;
}

.mb--160 {
    margin-bottom: 160px !important;
}

.mr--160 {
    margin-right: 160px !important;
}

.ml--160 {
    margin-left: 160px !important;
}

.ptb--165 {
    padding: 165px 0 !important;
}

.plr--165 {
    padding: 0 165px !important;
}

.pt--165 {
    padding-top: 165px !important;
}

.pb--165 {
    padding-bottom: 165px !important;
}

.pl--165 {
    padding-left: 165px !important;
}

.pr--165 {
    padding-right: 165px !important;
}

.mt--165 {
    margin-top: 165px !important;
}

.mb--165 {
    margin-bottom: 165px !important;
}

.mr--165 {
    margin-right: 165px !important;
}

.ml--165 {
    margin-left: 165px !important;
}

.ptb--170 {
    padding: 170px 0 !important;
}

.plr--170 {
    padding: 0 170px !important;
}

.pt--170 {
    padding-top: 170px !important;
}

.pb--170 {
    padding-bottom: 170px !important;
}

.pl--170 {
    padding-left: 170px !important;
}

.pr--170 {
    padding-right: 170px !important;
}

.mt--170 {
    margin-top: 170px !important;
}

.mb--170 {
    margin-bottom: 170px !important;
}

.mr--170 {
    margin-right: 170px !important;
}

.ml--170 {
    margin-left: 170px !important;
}

.ptb--175 {
    padding: 175px 0 !important;
}

.plr--175 {
    padding: 0 175px !important;
}

.pt--175 {
    padding-top: 175px !important;
}

.pb--175 {
    padding-bottom: 175px !important;
}

.pl--175 {
    padding-left: 175px !important;
}

.pr--175 {
    padding-right: 175px !important;
}

.mt--175 {
    margin-top: 175px !important;
}

.mb--175 {
    margin-bottom: 175px !important;
}

.mr--175 {
    margin-right: 175px !important;
}

.ml--175 {
    margin-left: 175px !important;
}

.ptb--180 {
    padding: 180px 0 !important;
}

.plr--180 {
    padding: 0 180px !important;
}

.pt--180 {
    padding-top: 180px !important;
}

.pb--180 {
    padding-bottom: 180px !important;
}

.pl--180 {
    padding-left: 180px !important;
}

.pr--180 {
    padding-right: 180px !important;
}

.mt--180 {
    margin-top: 180px !important;
}

.mb--180 {
    margin-bottom: 180px !important;
}

.mr--180 {
    margin-right: 180px !important;
}

.ml--180 {
    margin-left: 180px !important;
}

.ptb--185 {
    padding: 185px 0 !important;
}

.plr--185 {
    padding: 0 185px !important;
}

.pt--185 {
    padding-top: 185px !important;
}

.pb--185 {
    padding-bottom: 185px !important;
}

.pl--185 {
    padding-left: 185px !important;
}

.pr--185 {
    padding-right: 185px !important;
}

.mt--185 {
    margin-top: 185px !important;
}

.mb--185 {
    margin-bottom: 185px !important;
}

.mr--185 {
    margin-right: 185px !important;
}

.ml--185 {
    margin-left: 185px !important;
}

.ptb--190 {
    padding: 190px 0 !important;
}

.plr--190 {
    padding: 0 190px !important;
}

.pt--190 {
    padding-top: 190px !important;
}

.pb--190 {
    padding-bottom: 190px !important;
}

.pl--190 {
    padding-left: 190px !important;
}

.pr--190 {
    padding-right: 190px !important;
}

.mt--190 {
    margin-top: 190px !important;
}

.mb--190 {
    margin-bottom: 190px !important;
}

.mr--190 {
    margin-right: 190px !important;
}

.ml--190 {
    margin-left: 190px !important;
}

.ptb--195 {
    padding: 195px 0 !important;
}

.plr--195 {
    padding: 0 195px !important;
}

.pt--195 {
    padding-top: 195px !important;
}

.pb--195 {
    padding-bottom: 195px !important;
}

.pl--195 {
    padding-left: 195px !important;
}

.pr--195 {
    padding-right: 195px !important;
}

.mt--195 {
    margin-top: 195px !important;
}

.mb--195 {
    margin-bottom: 195px !important;
}

.mr--195 {
    margin-right: 195px !important;
}

.ml--195 {
    margin-left: 195px !important;
}

.ptb--200 {
    padding: 200px 0 !important;
}

.plr--200 {
    padding: 0 200px !important;
}

.pt--200 {
    padding-top: 200px !important;
}

.pb--200 {
    padding-bottom: 200px !important;
}

.pl--200 {
    padding-left: 200px !important;
}

.pr--200 {
    padding-right: 200px !important;
}

.mt--200 {
    margin-top: 200px !important;
}

.mb--200 {
    margin-bottom: 200px !important;
}

.mr--200 {
    margin-right: 200px !important;
}

.ml--200 {
    margin-left: 200px !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .ptb_lp--5 {
        padding: 5px 0;
    }
    .plr_lp--5 {
        padding: 0 5px;
    }
    .pt_lp--5 {
        padding-top: 5px;
    }
    .pb_lp--5 {
        padding-bottom: 5px;
    }
    .pl_lp--5 {
        padding-left: 5px;
    }
    .pr_lp--5 {
        padding-right: 5px;
    }
    .mt_lp--5 {
        margin-top: 5px;
    }
    .mb_lp--5 {
        margin-bottom: 5px;
    }
    .ptb_lp--10 {
        padding: 10px 0;
    }
    .plr_lp--10 {
        padding: 0 10px;
    }
    .pt_lp--10 {
        padding-top: 10px;
    }
    .pb_lp--10 {
        padding-bottom: 10px;
    }
    .pl_lp--10 {
        padding-left: 10px;
    }
    .pr_lp--10 {
        padding-right: 10px;
    }
    .mt_lp--10 {
        margin-top: 10px;
    }
    .mb_lp--10 {
        margin-bottom: 10px;
    }
    .ptb_lp--15 {
        padding: 15px 0;
    }
    .plr_lp--15 {
        padding: 0 15px;
    }
    .pt_lp--15 {
        padding-top: 15px;
    }
    .pb_lp--15 {
        padding-bottom: 15px;
    }
    .pl_lp--15 {
        padding-left: 15px;
    }
    .pr_lp--15 {
        padding-right: 15px;
    }
    .mt_lp--15 {
        margin-top: 15px;
    }
    .mb_lp--15 {
        margin-bottom: 15px;
    }
    .ptb_lp--20 {
        padding: 20px 0;
    }
    .plr_lp--20 {
        padding: 0 20px;
    }
    .pt_lp--20 {
        padding-top: 20px;
    }
    .pb_lp--20 {
        padding-bottom: 20px;
    }
    .pl_lp--20 {
        padding-left: 20px;
    }
    .pr_lp--20 {
        padding-right: 20px;
    }
    .mt_lp--20 {
        margin-top: 20px;
    }
    .mb_lp--20 {
        margin-bottom: 20px;
    }
    .ptb_lp--25 {
        padding: 25px 0;
    }
    .plr_lp--25 {
        padding: 0 25px;
    }
    .pt_lp--25 {
        padding-top: 25px;
    }
    .pb_lp--25 {
        padding-bottom: 25px;
    }
    .pl_lp--25 {
        padding-left: 25px;
    }
    .pr_lp--25 {
        padding-right: 25px;
    }
    .mt_lp--25 {
        margin-top: 25px;
    }
    .mb_lp--25 {
        margin-bottom: 25px;
    }
    .ptb_lp--30 {
        padding: 30px 0;
    }
    .plr_lp--30 {
        padding: 0 30px;
    }
    .pt_lp--30 {
        padding-top: 30px;
    }
    .pb_lp--30 {
        padding-bottom: 30px;
    }
    .pl_lp--30 {
        padding-left: 30px;
    }
    .pr_lp--30 {
        padding-right: 30px;
    }
    .mt_lp--30 {
        margin-top: 30px;
    }
    .mb_lp--30 {
        margin-bottom: 30px;
    }
    .ptb_lp--35 {
        padding: 35px 0;
    }
    .plr_lp--35 {
        padding: 0 35px;
    }
    .pt_lp--35 {
        padding-top: 35px;
    }
    .pb_lp--35 {
        padding-bottom: 35px;
    }
    .pl_lp--35 {
        padding-left: 35px;
    }
    .pr_lp--35 {
        padding-right: 35px;
    }
    .mt_lp--35 {
        margin-top: 35px;
    }
    .mb_lp--35 {
        margin-bottom: 35px;
    }
    .ptb_lp--40 {
        padding: 40px 0;
    }
    .plr_lp--40 {
        padding: 0 40px;
    }
    .pt_lp--40 {
        padding-top: 40px;
    }
    .pb_lp--40 {
        padding-bottom: 40px;
    }
    .pl_lp--40 {
        padding-left: 40px;
    }
    .pr_lp--40 {
        padding-right: 40px;
    }
    .mt_lp--40 {
        margin-top: 40px;
    }
    .mb_lp--40 {
        margin-bottom: 40px;
    }
    .ptb_lp--45 {
        padding: 45px 0;
    }
    .plr_lp--45 {
        padding: 0 45px;
    }
    .pt_lp--45 {
        padding-top: 45px;
    }
    .pb_lp--45 {
        padding-bottom: 45px;
    }
    .pl_lp--45 {
        padding-left: 45px;
    }
    .pr_lp--45 {
        padding-right: 45px;
    }
    .mt_lp--45 {
        margin-top: 45px;
    }
    .mb_lp--45 {
        margin-bottom: 45px;
    }
    .ptb_lp--50 {
        padding: 50px 0;
    }
    .plr_lp--50 {
        padding: 0 50px;
    }
    .pt_lp--50 {
        padding-top: 50px;
    }
    .pb_lp--50 {
        padding-bottom: 50px;
    }
    .pl_lp--50 {
        padding-left: 50px;
    }
    .pr_lp--50 {
        padding-right: 50px;
    }
    .mt_lp--50 {
        margin-top: 50px;
    }
    .mb_lp--50 {
        margin-bottom: 50px;
    }
    .ptb_lp--55 {
        padding: 55px 0;
    }
    .plr_lp--55 {
        padding: 0 55px;
    }
    .pt_lp--55 {
        padding-top: 55px;
    }
    .pb_lp--55 {
        padding-bottom: 55px;
    }
    .pl_lp--55 {
        padding-left: 55px;
    }
    .pr_lp--55 {
        padding-right: 55px;
    }
    .mt_lp--55 {
        margin-top: 55px;
    }
    .mb_lp--55 {
        margin-bottom: 55px;
    }
    .ptb_lp--60 {
        padding: 60px 0;
    }
    .plr_lp--60 {
        padding: 0 60px;
    }
    .pt_lp--60 {
        padding-top: 60px;
    }
    .pb_lp--60 {
        padding-bottom: 60px;
    }
    .pl_lp--60 {
        padding-left: 60px;
    }
    .pr_lp--60 {
        padding-right: 60px;
    }
    .mt_lp--60 {
        margin-top: 60px;
    }
    .mb_lp--60 {
        margin-bottom: 60px;
    }
    .ptb_lp--65 {
        padding: 65px 0;
    }
    .plr_lp--65 {
        padding: 0 65px;
    }
    .pt_lp--65 {
        padding-top: 65px;
    }
    .pb_lp--65 {
        padding-bottom: 65px;
    }
    .pl_lp--65 {
        padding-left: 65px;
    }
    .pr_lp--65 {
        padding-right: 65px;
    }
    .mt_lp--65 {
        margin-top: 65px;
    }
    .mb_lp--65 {
        margin-bottom: 65px;
    }
    .ptb_lp--70 {
        padding: 70px 0;
    }
    .plr_lp--70 {
        padding: 0 70px;
    }
    .pt_lp--70 {
        padding-top: 70px;
    }
    .pb_lp--70 {
        padding-bottom: 70px;
    }
    .pl_lp--70 {
        padding-left: 70px;
    }
    .pr_lp--70 {
        padding-right: 70px;
    }
    .mt_lp--70 {
        margin-top: 70px;
    }
    .mb_lp--70 {
        margin-bottom: 70px;
    }
    .ptb_lp--75 {
        padding: 75px 0;
    }
    .plr_lp--75 {
        padding: 0 75px;
    }
    .pt_lp--75 {
        padding-top: 75px;
    }
    .pb_lp--75 {
        padding-bottom: 75px;
    }
    .pl_lp--75 {
        padding-left: 75px;
    }
    .pr_lp--75 {
        padding-right: 75px;
    }
    .mt_lp--75 {
        margin-top: 75px;
    }
    .mb_lp--75 {
        margin-bottom: 75px;
    }
    .ptb_lp--80 {
        padding: 80px 0;
    }
    .plr_lp--80 {
        padding: 0 80px;
    }
    .pt_lp--80 {
        padding-top: 80px;
    }
    .pb_lp--80 {
        padding-bottom: 80px;
    }
    .pl_lp--80 {
        padding-left: 80px;
    }
    .pr_lp--80 {
        padding-right: 80px;
    }
    .mt_lp--80 {
        margin-top: 80px;
    }
    .mb_lp--80 {
        margin-bottom: 80px;
    }
    .ptb_lp--85 {
        padding: 85px 0;
    }
    .plr_lp--85 {
        padding: 0 85px;
    }
    .pt_lp--85 {
        padding-top: 85px;
    }
    .pb_lp--85 {
        padding-bottom: 85px;
    }
    .pl_lp--85 {
        padding-left: 85px;
    }
    .pr_lp--85 {
        padding-right: 85px;
    }
    .mt_lp--85 {
        margin-top: 85px;
    }
    .mb_lp--85 {
        margin-bottom: 85px;
    }
    .ptb_lp--90 {
        padding: 90px 0;
    }
    .plr_lp--90 {
        padding: 0 90px;
    }
    .pt_lp--90 {
        padding-top: 90px;
    }
    .pb_lp--90 {
        padding-bottom: 90px;
    }
    .pl_lp--90 {
        padding-left: 90px;
    }
    .pr_lp--90 {
        padding-right: 90px;
    }
    .mt_lp--90 {
        margin-top: 90px;
    }
    .mb_lp--90 {
        margin-bottom: 90px;
    }
    .ptb_lp--95 {
        padding: 95px 0;
    }
    .plr_lp--95 {
        padding: 0 95px;
    }
    .pt_lp--95 {
        padding-top: 95px;
    }
    .pb_lp--95 {
        padding-bottom: 95px;
    }
    .pl_lp--95 {
        padding-left: 95px;
    }
    .pr_lp--95 {
        padding-right: 95px;
    }
    .mt_lp--95 {
        margin-top: 95px;
    }
    .mb_lp--95 {
        margin-bottom: 95px;
    }
    .ptb_lp--100 {
        padding: 100px 0;
    }
    .plr_lp--100 {
        padding: 0 100px;
    }
    .pt_lp--100 {
        padding-top: 100px;
    }
    .pb_lp--100 {
        padding-bottom: 100px;
    }
    .pl_lp--100 {
        padding-left: 100px;
    }
    .pr_lp--100 {
        padding-right: 100px;
    }
    .mt_lp--100 {
        margin-top: 100px;
    }
    .mb_lp--100 {
        margin-bottom: 100px;
    }
    .ptb_lp--105 {
        padding: 105px 0;
    }
    .plr_lp--105 {
        padding: 0 105px;
    }
    .pt_lp--105 {
        padding-top: 105px;
    }
    .pb_lp--105 {
        padding-bottom: 105px;
    }
    .pl_lp--105 {
        padding-left: 105px;
    }
    .pr_lp--105 {
        padding-right: 105px;
    }
    .mt_lp--105 {
        margin-top: 105px;
    }
    .mb_lp--105 {
        margin-bottom: 105px;
    }
    .ptb_lp--110 {
        padding: 110px 0;
    }
    .plr_lp--110 {
        padding: 0 110px;
    }
    .pt_lp--110 {
        padding-top: 110px;
    }
    .pb_lp--110 {
        padding-bottom: 110px;
    }
    .pl_lp--110 {
        padding-left: 110px;
    }
    .pr_lp--110 {
        padding-right: 110px;
    }
    .mt_lp--110 {
        margin-top: 110px;
    }
    .mb_lp--110 {
        margin-bottom: 110px;
    }
    .ptb_lp--115 {
        padding: 115px 0;
    }
    .plr_lp--115 {
        padding: 0 115px;
    }
    .pt_lp--115 {
        padding-top: 115px;
    }
    .pb_lp--115 {
        padding-bottom: 115px;
    }
    .pl_lp--115 {
        padding-left: 115px;
    }
    .pr_lp--115 {
        padding-right: 115px;
    }
    .mt_lp--115 {
        margin-top: 115px;
    }
    .mb_lp--115 {
        margin-bottom: 115px;
    }
    .ptb_lp--120 {
        padding: 120px 0;
    }
    .plr_lp--120 {
        padding: 0 120px;
    }
    .pt_lp--120 {
        padding-top: 120px;
    }
    .pb_lp--120 {
        padding-bottom: 120px;
    }
    .pl_lp--120 {
        padding-left: 120px;
    }
    .pr_lp--120 {
        padding-right: 120px;
    }
    .mt_lp--120 {
        margin-top: 120px;
    }
    .mb_lp--120 {
        margin-bottom: 120px;
    }
    .ptb_lp--125 {
        padding: 125px 0;
    }
    .plr_lp--125 {
        padding: 0 125px;
    }
    .pt_lp--125 {
        padding-top: 125px;
    }
    .pb_lp--125 {
        padding-bottom: 125px;
    }
    .pl_lp--125 {
        padding-left: 125px;
    }
    .pr_lp--125 {
        padding-right: 125px;
    }
    .mt_lp--125 {
        margin-top: 125px;
    }
    .mb_lp--125 {
        margin-bottom: 125px;
    }
    .ptb_lp--130 {
        padding: 130px 0;
    }
    .plr_lp--130 {
        padding: 0 130px;
    }
    .pt_lp--130 {
        padding-top: 130px;
    }
    .pb_lp--130 {
        padding-bottom: 130px;
    }
    .pl_lp--130 {
        padding-left: 130px;
    }
    .pr_lp--130 {
        padding-right: 130px;
    }
    .mt_lp--130 {
        margin-top: 130px;
    }
    .mb_lp--130 {
        margin-bottom: 130px;
    }
    .ptb_lp--135 {
        padding: 135px 0;
    }
    .plr_lp--135 {
        padding: 0 135px;
    }
    .pt_lp--135 {
        padding-top: 135px;
    }
    .pb_lp--135 {
        padding-bottom: 135px;
    }
    .pl_lp--135 {
        padding-left: 135px;
    }
    .pr_lp--135 {
        padding-right: 135px;
    }
    .mt_lp--135 {
        margin-top: 135px;
    }
    .mb_lp--135 {
        margin-bottom: 135px;
    }
    .ptb_lp--140 {
        padding: 140px 0;
    }
    .plr_lp--140 {
        padding: 0 140px;
    }
    .pt_lp--140 {
        padding-top: 140px;
    }
    .pb_lp--140 {
        padding-bottom: 140px;
    }
    .pl_lp--140 {
        padding-left: 140px;
    }
    .pr_lp--140 {
        padding-right: 140px;
    }
    .mt_lp--140 {
        margin-top: 140px;
    }
    .mb_lp--140 {
        margin-bottom: 140px;
    }
    .ptb_lp--145 {
        padding: 145px 0;
    }
    .plr_lp--145 {
        padding: 0 145px;
    }
    .pt_lp--145 {
        padding-top: 145px;
    }
    .pb_lp--145 {
        padding-bottom: 145px;
    }
    .pl_lp--145 {
        padding-left: 145px;
    }
    .pr_lp--145 {
        padding-right: 145px;
    }
    .mt_lp--145 {
        margin-top: 145px;
    }
    .mb_lp--145 {
        margin-bottom: 145px;
    }
    .ptb_lp--150 {
        padding: 150px 0;
    }
    .plr_lp--150 {
        padding: 0 150px;
    }
    .pt_lp--150 {
        padding-top: 150px;
    }
    .pb_lp--150 {
        padding-bottom: 150px;
    }
    .pl_lp--150 {
        padding-left: 150px;
    }
    .pr_lp--150 {
        padding-right: 150px;
    }
    .mt_lp--150 {
        margin-top: 150px;
    }
    .mb_lp--150 {
        margin-bottom: 150px;
    }
    .ptb_lp--155 {
        padding: 155px 0;
    }
    .plr_lp--155 {
        padding: 0 155px;
    }
    .pt_lp--155 {
        padding-top: 155px;
    }
    .pb_lp--155 {
        padding-bottom: 155px;
    }
    .pl_lp--155 {
        padding-left: 155px;
    }
    .pr_lp--155 {
        padding-right: 155px;
    }
    .mt_lp--155 {
        margin-top: 155px;
    }
    .mb_lp--155 {
        margin-bottom: 155px;
    }
    .ptb_lp--160 {
        padding: 160px 0;
    }
    .plr_lp--160 {
        padding: 0 160px;
    }
    .pt_lp--160 {
        padding-top: 160px;
    }
    .pb_lp--160 {
        padding-bottom: 160px;
    }
    .pl_lp--160 {
        padding-left: 160px;
    }
    .pr_lp--160 {
        padding-right: 160px;
    }
    .mt_lp--160 {
        margin-top: 160px;
    }
    .mb_lp--160 {
        margin-bottom: 160px;
    }
    .ptb_lp--165 {
        padding: 165px 0;
    }
    .plr_lp--165 {
        padding: 0 165px;
    }
    .pt_lp--165 {
        padding-top: 165px;
    }
    .pb_lp--165 {
        padding-bottom: 165px;
    }
    .pl_lp--165 {
        padding-left: 165px;
    }
    .pr_lp--165 {
        padding-right: 165px;
    }
    .mt_lp--165 {
        margin-top: 165px;
    }
    .mb_lp--165 {
        margin-bottom: 165px;
    }
    .ptb_lp--170 {
        padding: 170px 0;
    }
    .plr_lp--170 {
        padding: 0 170px;
    }
    .pt_lp--170 {
        padding-top: 170px;
    }
    .pb_lp--170 {
        padding-bottom: 170px;
    }
    .pl_lp--170 {
        padding-left: 170px;
    }
    .pr_lp--170 {
        padding-right: 170px;
    }
    .mt_lp--170 {
        margin-top: 170px;
    }
    .mb_lp--170 {
        margin-bottom: 170px;
    }
    .ptb_lp--175 {
        padding: 175px 0;
    }
    .plr_lp--175 {
        padding: 0 175px;
    }
    .pt_lp--175 {
        padding-top: 175px;
    }
    .pb_lp--175 {
        padding-bottom: 175px;
    }
    .pl_lp--175 {
        padding-left: 175px;
    }
    .pr_lp--175 {
        padding-right: 175px;
    }
    .mt_lp--175 {
        margin-top: 175px;
    }
    .mb_lp--175 {
        margin-bottom: 175px;
    }
    .ptb_lp--180 {
        padding: 180px 0;
    }
    .plr_lp--180 {
        padding: 0 180px;
    }
    .pt_lp--180 {
        padding-top: 180px;
    }
    .pb_lp--180 {
        padding-bottom: 180px;
    }
    .pl_lp--180 {
        padding-left: 180px;
    }
    .pr_lp--180 {
        padding-right: 180px;
    }
    .mt_lp--180 {
        margin-top: 180px;
    }
    .mb_lp--180 {
        margin-bottom: 180px;
    }
    .ptb_lp--185 {
        padding: 185px 0;
    }
    .plr_lp--185 {
        padding: 0 185px;
    }
    .pt_lp--185 {
        padding-top: 185px;
    }
    .pb_lp--185 {
        padding-bottom: 185px;
    }
    .pl_lp--185 {
        padding-left: 185px;
    }
    .pr_lp--185 {
        padding-right: 185px;
    }
    .mt_lp--185 {
        margin-top: 185px;
    }
    .mb_lp--185 {
        margin-bottom: 185px;
    }
    .ptb_lp--190 {
        padding: 190px 0;
    }
    .plr_lp--190 {
        padding: 0 190px;
    }
    .pt_lp--190 {
        padding-top: 190px;
    }
    .pb_lp--190 {
        padding-bottom: 190px;
    }
    .pl_lp--190 {
        padding-left: 190px;
    }
    .pr_lp--190 {
        padding-right: 190px;
    }
    .mt_lp--190 {
        margin-top: 190px;
    }
    .mb_lp--190 {
        margin-bottom: 190px;
    }
    .ptb_lp--195 {
        padding: 195px 0;
    }
    .plr_lp--195 {
        padding: 0 195px;
    }
    .pt_lp--195 {
        padding-top: 195px;
    }
    .pb_lp--195 {
        padding-bottom: 195px;
    }
    .pl_lp--195 {
        padding-left: 195px;
    }
    .pr_lp--195 {
        padding-right: 195px;
    }
    .mt_lp--195 {
        margin-top: 195px;
    }
    .mb_lp--195 {
        margin-bottom: 195px;
    }
    .ptb_lp--200 {
        padding: 200px 0;
    }
    .plr_lp--200 {
        padding: 0 200px;
    }
    .pt_lp--200 {
        padding-top: 200px;
    }
    .pb_lp--200 {
        padding-bottom: 200px;
    }
    .pl_lp--200 {
        padding-left: 200px;
    }
    .pr_lp--200 {
        padding-right: 200px;
    }
    .mt_lp--200 {
        margin-top: 200px;
    }
    .mb_lp--200 {
        margin-bottom: 200px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .ptb_lg--5 {
        padding: 5px 0 !important;
    }
    .plr_lg--5 {
        padding: 0 5px !important;
    }
    .pt_lg--5 {
        padding-top: 5px !important;
    }
    .pb_lg--5 {
        padding-bottom: 5px !important;
    }
    .pl_lg--5 {
        padding-left: 5px !important;
    }
    .pr_lg--5 {
        padding-right: 5px !important;
    }
    .mt_lg--5 {
        margin-top: 5px !important;
    }
    .mb_lg--5 {
        margin-bottom: 5px !important;
    }
    .ml_lg--5 {
        margin-left: 5px !important;
    }
    .ptb_lg--10 {
        padding: 10px 0 !important;
    }
    .plr_lg--10 {
        padding: 0 10px !important;
    }
    .pt_lg--10 {
        padding-top: 10px !important;
    }
    .pb_lg--10 {
        padding-bottom: 10px !important;
    }
    .pl_lg--10 {
        padding-left: 10px !important;
    }
    .pr_lg--10 {
        padding-right: 10px !important;
    }
    .mt_lg--10 {
        margin-top: 10px !important;
    }
    .mb_lg--10 {
        margin-bottom: 10px !important;
    }
    .ml_lg--10 {
        margin-left: 10px !important;
    }
    .ptb_lg--15 {
        padding: 15px 0 !important;
    }
    .plr_lg--15 {
        padding: 0 15px !important;
    }
    .pt_lg--15 {
        padding-top: 15px !important;
    }
    .pb_lg--15 {
        padding-bottom: 15px !important;
    }
    .pl_lg--15 {
        padding-left: 15px !important;
    }
    .pr_lg--15 {
        padding-right: 15px !important;
    }
    .mt_lg--15 {
        margin-top: 15px !important;
    }
    .mb_lg--15 {
        margin-bottom: 15px !important;
    }
    .ml_lg--15 {
        margin-left: 15px !important;
    }
    .ptb_lg--20 {
        padding: 20px 0 !important;
    }
    .plr_lg--20 {
        padding: 0 20px !important;
    }
    .pt_lg--20 {
        padding-top: 20px !important;
    }
    .pb_lg--20 {
        padding-bottom: 20px !important;
    }
    .pl_lg--20 {
        padding-left: 20px !important;
    }
    .pr_lg--20 {
        padding-right: 20px !important;
    }
    .mt_lg--20 {
        margin-top: 20px !important;
    }
    .mb_lg--20 {
        margin-bottom: 20px !important;
    }
    .ml_lg--20 {
        margin-left: 20px !important;
    }
    .ptb_lg--25 {
        padding: 25px 0 !important;
    }
    .plr_lg--25 {
        padding: 0 25px !important;
    }
    .pt_lg--25 {
        padding-top: 25px !important;
    }
    .pb_lg--25 {
        padding-bottom: 25px !important;
    }
    .pl_lg--25 {
        padding-left: 25px !important;
    }
    .pr_lg--25 {
        padding-right: 25px !important;
    }
    .mt_lg--25 {
        margin-top: 25px !important;
    }
    .mb_lg--25 {
        margin-bottom: 25px !important;
    }
    .ml_lg--25 {
        margin-left: 25px !important;
    }
    .ptb_lg--30 {
        padding: 30px 0 !important;
    }
    .plr_lg--30 {
        padding: 0 30px !important;
    }
    .pt_lg--30 {
        padding-top: 30px !important;
    }
    .pb_lg--30 {
        padding-bottom: 30px !important;
    }
    .pl_lg--30 {
        padding-left: 30px !important;
    }
    .pr_lg--30 {
        padding-right: 30px !important;
    }
    .mt_lg--30 {
        margin-top: 30px !important;
    }
    .mb_lg--30 {
        margin-bottom: 30px !important;
    }
    .ml_lg--30 {
        margin-left: 30px !important;
    }
    .ptb_lg--35 {
        padding: 35px 0 !important;
    }
    .plr_lg--35 {
        padding: 0 35px !important;
    }
    .pt_lg--35 {
        padding-top: 35px !important;
    }
    .pb_lg--35 {
        padding-bottom: 35px !important;
    }
    .pl_lg--35 {
        padding-left: 35px !important;
    }
    .pr_lg--35 {
        padding-right: 35px !important;
    }
    .mt_lg--35 {
        margin-top: 35px !important;
    }
    .mb_lg--35 {
        margin-bottom: 35px !important;
    }
    .ml_lg--35 {
        margin-left: 35px !important;
    }
    .ptb_lg--40 {
        padding: 40px 0 !important;
    }
    .plr_lg--40 {
        padding: 0 40px !important;
    }
    .pt_lg--40 {
        padding-top: 40px !important;
    }
    .pb_lg--40 {
        padding-bottom: 40px !important;
    }
    .pl_lg--40 {
        padding-left: 40px !important;
    }
    .pr_lg--40 {
        padding-right: 40px !important;
    }
    .mt_lg--40 {
        margin-top: 40px !important;
    }
    .mb_lg--40 {
        margin-bottom: 40px !important;
    }
    .ml_lg--40 {
        margin-left: 40px !important;
    }
    .ptb_lg--45 {
        padding: 45px 0 !important;
    }
    .plr_lg--45 {
        padding: 0 45px !important;
    }
    .pt_lg--45 {
        padding-top: 45px !important;
    }
    .pb_lg--45 {
        padding-bottom: 45px !important;
    }
    .pl_lg--45 {
        padding-left: 45px !important;
    }
    .pr_lg--45 {
        padding-right: 45px !important;
    }
    .mt_lg--45 {
        margin-top: 45px !important;
    }
    .mb_lg--45 {
        margin-bottom: 45px !important;
    }
    .ml_lg--45 {
        margin-left: 45px !important;
    }
    .ptb_lg--50 {
        padding: 50px 0 !important;
    }
    .plr_lg--50 {
        padding: 0 50px !important;
    }
    .pt_lg--50 {
        padding-top: 50px !important;
    }
    .pb_lg--50 {
        padding-bottom: 50px !important;
    }
    .pl_lg--50 {
        padding-left: 50px !important;
    }
    .pr_lg--50 {
        padding-right: 50px !important;
    }
    .mt_lg--50 {
        margin-top: 50px !important;
    }
    .mb_lg--50 {
        margin-bottom: 50px !important;
    }
    .ml_lg--50 {
        margin-left: 50px !important;
    }
    .ptb_lg--55 {
        padding: 55px 0 !important;
    }
    .plr_lg--55 {
        padding: 0 55px !important;
    }
    .pt_lg--55 {
        padding-top: 55px !important;
    }
    .pb_lg--55 {
        padding-bottom: 55px !important;
    }
    .pl_lg--55 {
        padding-left: 55px !important;
    }
    .pr_lg--55 {
        padding-right: 55px !important;
    }
    .mt_lg--55 {
        margin-top: 55px !important;
    }
    .mb_lg--55 {
        margin-bottom: 55px !important;
    }
    .ml_lg--55 {
        margin-left: 55px !important;
    }
    .ptb_lg--60 {
        padding: 60px 0 !important;
    }
    .plr_lg--60 {
        padding: 0 60px !important;
    }
    .pt_lg--60 {
        padding-top: 60px !important;
    }
    .pb_lg--60 {
        padding-bottom: 60px !important;
    }
    .pl_lg--60 {
        padding-left: 60px !important;
    }
    .pr_lg--60 {
        padding-right: 60px !important;
    }
    .mt_lg--60 {
        margin-top: 60px !important;
    }
    .mb_lg--60 {
        margin-bottom: 60px !important;
    }
    .ml_lg--60 {
        margin-left: 60px !important;
    }
    .ptb_lg--65 {
        padding: 65px 0 !important;
    }
    .plr_lg--65 {
        padding: 0 65px !important;
    }
    .pt_lg--65 {
        padding-top: 65px !important;
    }
    .pb_lg--65 {
        padding-bottom: 65px !important;
    }
    .pl_lg--65 {
        padding-left: 65px !important;
    }
    .pr_lg--65 {
        padding-right: 65px !important;
    }
    .mt_lg--65 {
        margin-top: 65px !important;
    }
    .mb_lg--65 {
        margin-bottom: 65px !important;
    }
    .ml_lg--65 {
        margin-left: 65px !important;
    }
    .ptb_lg--70 {
        padding: 70px 0 !important;
    }
    .plr_lg--70 {
        padding: 0 70px !important;
    }
    .pt_lg--70 {
        padding-top: 70px !important;
    }
    .pb_lg--70 {
        padding-bottom: 70px !important;
    }
    .pl_lg--70 {
        padding-left: 70px !important;
    }
    .pr_lg--70 {
        padding-right: 70px !important;
    }
    .mt_lg--70 {
        margin-top: 70px !important;
    }
    .mb_lg--70 {
        margin-bottom: 70px !important;
    }
    .ml_lg--70 {
        margin-left: 70px !important;
    }
    .ptb_lg--75 {
        padding: 75px 0 !important;
    }
    .plr_lg--75 {
        padding: 0 75px !important;
    }
    .pt_lg--75 {
        padding-top: 75px !important;
    }
    .pb_lg--75 {
        padding-bottom: 75px !important;
    }
    .pl_lg--75 {
        padding-left: 75px !important;
    }
    .pr_lg--75 {
        padding-right: 75px !important;
    }
    .mt_lg--75 {
        margin-top: 75px !important;
    }
    .mb_lg--75 {
        margin-bottom: 75px !important;
    }
    .ml_lg--75 {
        margin-left: 75px !important;
    }
    .ptb_lg--80 {
        padding: 80px 0 !important;
    }
    .plr_lg--80 {
        padding: 0 80px !important;
    }
    .pt_lg--80 {
        padding-top: 80px !important;
    }
    .pb_lg--80 {
        padding-bottom: 80px !important;
    }
    .pl_lg--80 {
        padding-left: 80px !important;
    }
    .pr_lg--80 {
        padding-right: 80px !important;
    }
    .mt_lg--80 {
        margin-top: 80px !important;
    }
    .mb_lg--80 {
        margin-bottom: 80px !important;
    }
    .ml_lg--80 {
        margin-left: 80px !important;
    }
    .ptb_lg--85 {
        padding: 85px 0 !important;
    }
    .plr_lg--85 {
        padding: 0 85px !important;
    }
    .pt_lg--85 {
        padding-top: 85px !important;
    }
    .pb_lg--85 {
        padding-bottom: 85px !important;
    }
    .pl_lg--85 {
        padding-left: 85px !important;
    }
    .pr_lg--85 {
        padding-right: 85px !important;
    }
    .mt_lg--85 {
        margin-top: 85px !important;
    }
    .mb_lg--85 {
        margin-bottom: 85px !important;
    }
    .ml_lg--85 {
        margin-left: 85px !important;
    }
    .ptb_lg--90 {
        padding: 90px 0 !important;
    }
    .plr_lg--90 {
        padding: 0 90px !important;
    }
    .pt_lg--90 {
        padding-top: 90px !important;
    }
    .pb_lg--90 {
        padding-bottom: 90px !important;
    }
    .pl_lg--90 {
        padding-left: 90px !important;
    }
    .pr_lg--90 {
        padding-right: 90px !important;
    }
    .mt_lg--90 {
        margin-top: 90px !important;
    }
    .mb_lg--90 {
        margin-bottom: 90px !important;
    }
    .ml_lg--90 {
        margin-left: 90px !important;
    }
    .ptb_lg--95 {
        padding: 95px 0 !important;
    }
    .plr_lg--95 {
        padding: 0 95px !important;
    }
    .pt_lg--95 {
        padding-top: 95px !important;
    }
    .pb_lg--95 {
        padding-bottom: 95px !important;
    }
    .pl_lg--95 {
        padding-left: 95px !important;
    }
    .pr_lg--95 {
        padding-right: 95px !important;
    }
    .mt_lg--95 {
        margin-top: 95px !important;
    }
    .mb_lg--95 {
        margin-bottom: 95px !important;
    }
    .ml_lg--95 {
        margin-left: 95px !important;
    }
    .ptb_lg--100 {
        padding: 100px 0 !important;
    }
    .plr_lg--100 {
        padding: 0 100px !important;
    }
    .pt_lg--100 {
        padding-top: 100px !important;
    }
    .pb_lg--100 {
        padding-bottom: 100px !important;
    }
    .pl_lg--100 {
        padding-left: 100px !important;
    }
    .pr_lg--100 {
        padding-right: 100px !important;
    }
    .mt_lg--100 {
        margin-top: 100px !important;
    }
    .mb_lg--100 {
        margin-bottom: 100px !important;
    }
    .ml_lg--100 {
        margin-left: 100px !important;
    }
    .ptb_lg--105 {
        padding: 105px 0 !important;
    }
    .plr_lg--105 {
        padding: 0 105px !important;
    }
    .pt_lg--105 {
        padding-top: 105px !important;
    }
    .pb_lg--105 {
        padding-bottom: 105px !important;
    }
    .pl_lg--105 {
        padding-left: 105px !important;
    }
    .pr_lg--105 {
        padding-right: 105px !important;
    }
    .mt_lg--105 {
        margin-top: 105px !important;
    }
    .mb_lg--105 {
        margin-bottom: 105px !important;
    }
    .ml_lg--105 {
        margin-left: 105px !important;
    }
    .ptb_lg--110 {
        padding: 110px 0 !important;
    }
    .plr_lg--110 {
        padding: 0 110px !important;
    }
    .pt_lg--110 {
        padding-top: 110px !important;
    }
    .pb_lg--110 {
        padding-bottom: 110px !important;
    }
    .pl_lg--110 {
        padding-left: 110px !important;
    }
    .pr_lg--110 {
        padding-right: 110px !important;
    }
    .mt_lg--110 {
        margin-top: 110px !important;
    }
    .mb_lg--110 {
        margin-bottom: 110px !important;
    }
    .ml_lg--110 {
        margin-left: 110px !important;
    }
    .ptb_lg--115 {
        padding: 115px 0 !important;
    }
    .plr_lg--115 {
        padding: 0 115px !important;
    }
    .pt_lg--115 {
        padding-top: 115px !important;
    }
    .pb_lg--115 {
        padding-bottom: 115px !important;
    }
    .pl_lg--115 {
        padding-left: 115px !important;
    }
    .pr_lg--115 {
        padding-right: 115px !important;
    }
    .mt_lg--115 {
        margin-top: 115px !important;
    }
    .mb_lg--115 {
        margin-bottom: 115px !important;
    }
    .ml_lg--115 {
        margin-left: 115px !important;
    }
    .ptb_lg--120 {
        padding: 120px 0 !important;
    }
    .plr_lg--120 {
        padding: 0 120px !important;
    }
    .pt_lg--120 {
        padding-top: 120px !important;
    }
    .pb_lg--120 {
        padding-bottom: 120px !important;
    }
    .pl_lg--120 {
        padding-left: 120px !important;
    }
    .pr_lg--120 {
        padding-right: 120px !important;
    }
    .mt_lg--120 {
        margin-top: 120px !important;
    }
    .mb_lg--120 {
        margin-bottom: 120px !important;
    }
    .ml_lg--120 {
        margin-left: 120px !important;
    }
    .ptb_lg--125 {
        padding: 125px 0 !important;
    }
    .plr_lg--125 {
        padding: 0 125px !important;
    }
    .pt_lg--125 {
        padding-top: 125px !important;
    }
    .pb_lg--125 {
        padding-bottom: 125px !important;
    }
    .pl_lg--125 {
        padding-left: 125px !important;
    }
    .pr_lg--125 {
        padding-right: 125px !important;
    }
    .mt_lg--125 {
        margin-top: 125px !important;
    }
    .mb_lg--125 {
        margin-bottom: 125px !important;
    }
    .ml_lg--125 {
        margin-left: 125px !important;
    }
    .ptb_lg--130 {
        padding: 130px 0 !important;
    }
    .plr_lg--130 {
        padding: 0 130px !important;
    }
    .pt_lg--130 {
        padding-top: 130px !important;
    }
    .pb_lg--130 {
        padding-bottom: 130px !important;
    }
    .pl_lg--130 {
        padding-left: 130px !important;
    }
    .pr_lg--130 {
        padding-right: 130px !important;
    }
    .mt_lg--130 {
        margin-top: 130px !important;
    }
    .mb_lg--130 {
        margin-bottom: 130px !important;
    }
    .ml_lg--130 {
        margin-left: 130px !important;
    }
    .ptb_lg--135 {
        padding: 135px 0 !important;
    }
    .plr_lg--135 {
        padding: 0 135px !important;
    }
    .pt_lg--135 {
        padding-top: 135px !important;
    }
    .pb_lg--135 {
        padding-bottom: 135px !important;
    }
    .pl_lg--135 {
        padding-left: 135px !important;
    }
    .pr_lg--135 {
        padding-right: 135px !important;
    }
    .mt_lg--135 {
        margin-top: 135px !important;
    }
    .mb_lg--135 {
        margin-bottom: 135px !important;
    }
    .ml_lg--135 {
        margin-left: 135px !important;
    }
    .ptb_lg--140 {
        padding: 140px 0 !important;
    }
    .plr_lg--140 {
        padding: 0 140px !important;
    }
    .pt_lg--140 {
        padding-top: 140px !important;
    }
    .pb_lg--140 {
        padding-bottom: 140px !important;
    }
    .pl_lg--140 {
        padding-left: 140px !important;
    }
    .pr_lg--140 {
        padding-right: 140px !important;
    }
    .mt_lg--140 {
        margin-top: 140px !important;
    }
    .mb_lg--140 {
        margin-bottom: 140px !important;
    }
    .ml_lg--140 {
        margin-left: 140px !important;
    }
    .ptb_lg--145 {
        padding: 145px 0 !important;
    }
    .plr_lg--145 {
        padding: 0 145px !important;
    }
    .pt_lg--145 {
        padding-top: 145px !important;
    }
    .pb_lg--145 {
        padding-bottom: 145px !important;
    }
    .pl_lg--145 {
        padding-left: 145px !important;
    }
    .pr_lg--145 {
        padding-right: 145px !important;
    }
    .mt_lg--145 {
        margin-top: 145px !important;
    }
    .mb_lg--145 {
        margin-bottom: 145px !important;
    }
    .ml_lg--145 {
        margin-left: 145px !important;
    }
    .ptb_lg--150 {
        padding: 150px 0 !important;
    }
    .plr_lg--150 {
        padding: 0 150px !important;
    }
    .pt_lg--150 {
        padding-top: 150px !important;
    }
    .pb_lg--150 {
        padding-bottom: 150px !important;
    }
    .pl_lg--150 {
        padding-left: 150px !important;
    }
    .pr_lg--150 {
        padding-right: 150px !important;
    }
    .mt_lg--150 {
        margin-top: 150px !important;
    }
    .mb_lg--150 {
        margin-bottom: 150px !important;
    }
    .ml_lg--150 {
        margin-left: 150px !important;
    }
    .ptb_lg--155 {
        padding: 155px 0 !important;
    }
    .plr_lg--155 {
        padding: 0 155px !important;
    }
    .pt_lg--155 {
        padding-top: 155px !important;
    }
    .pb_lg--155 {
        padding-bottom: 155px !important;
    }
    .pl_lg--155 {
        padding-left: 155px !important;
    }
    .pr_lg--155 {
        padding-right: 155px !important;
    }
    .mt_lg--155 {
        margin-top: 155px !important;
    }
    .mb_lg--155 {
        margin-bottom: 155px !important;
    }
    .ml_lg--155 {
        margin-left: 155px !important;
    }
    .ptb_lg--160 {
        padding: 160px 0 !important;
    }
    .plr_lg--160 {
        padding: 0 160px !important;
    }
    .pt_lg--160 {
        padding-top: 160px !important;
    }
    .pb_lg--160 {
        padding-bottom: 160px !important;
    }
    .pl_lg--160 {
        padding-left: 160px !important;
    }
    .pr_lg--160 {
        padding-right: 160px !important;
    }
    .mt_lg--160 {
        margin-top: 160px !important;
    }
    .mb_lg--160 {
        margin-bottom: 160px !important;
    }
    .ml_lg--160 {
        margin-left: 160px !important;
    }
    .ptb_lg--165 {
        padding: 165px 0 !important;
    }
    .plr_lg--165 {
        padding: 0 165px !important;
    }
    .pt_lg--165 {
        padding-top: 165px !important;
    }
    .pb_lg--165 {
        padding-bottom: 165px !important;
    }
    .pl_lg--165 {
        padding-left: 165px !important;
    }
    .pr_lg--165 {
        padding-right: 165px !important;
    }
    .mt_lg--165 {
        margin-top: 165px !important;
    }
    .mb_lg--165 {
        margin-bottom: 165px !important;
    }
    .ml_lg--165 {
        margin-left: 165px !important;
    }
    .ptb_lg--170 {
        padding: 170px 0 !important;
    }
    .plr_lg--170 {
        padding: 0 170px !important;
    }
    .pt_lg--170 {
        padding-top: 170px !important;
    }
    .pb_lg--170 {
        padding-bottom: 170px !important;
    }
    .pl_lg--170 {
        padding-left: 170px !important;
    }
    .pr_lg--170 {
        padding-right: 170px !important;
    }
    .mt_lg--170 {
        margin-top: 170px !important;
    }
    .mb_lg--170 {
        margin-bottom: 170px !important;
    }
    .ml_lg--170 {
        margin-left: 170px !important;
    }
    .ptb_lg--175 {
        padding: 175px 0 !important;
    }
    .plr_lg--175 {
        padding: 0 175px !important;
    }
    .pt_lg--175 {
        padding-top: 175px !important;
    }
    .pb_lg--175 {
        padding-bottom: 175px !important;
    }
    .pl_lg--175 {
        padding-left: 175px !important;
    }
    .pr_lg--175 {
        padding-right: 175px !important;
    }
    .mt_lg--175 {
        margin-top: 175px !important;
    }
    .mb_lg--175 {
        margin-bottom: 175px !important;
    }
    .ml_lg--175 {
        margin-left: 175px !important;
    }
    .ptb_lg--180 {
        padding: 180px 0 !important;
    }
    .plr_lg--180 {
        padding: 0 180px !important;
    }
    .pt_lg--180 {
        padding-top: 180px !important;
    }
    .pb_lg--180 {
        padding-bottom: 180px !important;
    }
    .pl_lg--180 {
        padding-left: 180px !important;
    }
    .pr_lg--180 {
        padding-right: 180px !important;
    }
    .mt_lg--180 {
        margin-top: 180px !important;
    }
    .mb_lg--180 {
        margin-bottom: 180px !important;
    }
    .ml_lg--180 {
        margin-left: 180px !important;
    }
    .ptb_lg--185 {
        padding: 185px 0 !important;
    }
    .plr_lg--185 {
        padding: 0 185px !important;
    }
    .pt_lg--185 {
        padding-top: 185px !important;
    }
    .pb_lg--185 {
        padding-bottom: 185px !important;
    }
    .pl_lg--185 {
        padding-left: 185px !important;
    }
    .pr_lg--185 {
        padding-right: 185px !important;
    }
    .mt_lg--185 {
        margin-top: 185px !important;
    }
    .mb_lg--185 {
        margin-bottom: 185px !important;
    }
    .ml_lg--185 {
        margin-left: 185px !important;
    }
    .ptb_lg--190 {
        padding: 190px 0 !important;
    }
    .plr_lg--190 {
        padding: 0 190px !important;
    }
    .pt_lg--190 {
        padding-top: 190px !important;
    }
    .pb_lg--190 {
        padding-bottom: 190px !important;
    }
    .pl_lg--190 {
        padding-left: 190px !important;
    }
    .pr_lg--190 {
        padding-right: 190px !important;
    }
    .mt_lg--190 {
        margin-top: 190px !important;
    }
    .mb_lg--190 {
        margin-bottom: 190px !important;
    }
    .ml_lg--190 {
        margin-left: 190px !important;
    }
    .ptb_lg--195 {
        padding: 195px 0 !important;
    }
    .plr_lg--195 {
        padding: 0 195px !important;
    }
    .pt_lg--195 {
        padding-top: 195px !important;
    }
    .pb_lg--195 {
        padding-bottom: 195px !important;
    }
    .pl_lg--195 {
        padding-left: 195px !important;
    }
    .pr_lg--195 {
        padding-right: 195px !important;
    }
    .mt_lg--195 {
        margin-top: 195px !important;
    }
    .mb_lg--195 {
        margin-bottom: 195px !important;
    }
    .ml_lg--195 {
        margin-left: 195px !important;
    }
    .ptb_lg--200 {
        padding: 200px 0 !important;
    }
    .plr_lg--200 {
        padding: 0 200px !important;
    }
    .pt_lg--200 {
        padding-top: 200px !important;
    }
    .pb_lg--200 {
        padding-bottom: 200px !important;
    }
    .pl_lg--200 {
        padding-left: 200px !important;
    }
    .pr_lg--200 {
        padding-right: 200px !important;
    }
    .mt_lg--200 {
        margin-top: 200px !important;
    }
    .mb_lg--200 {
        margin-bottom: 200px !important;
    }
    .ml_lg--200 {
        margin-left: 200px !important;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ptb_md--0 {
        padding: 0 !important;
    }
    .pl_md--0 {
        padding-left: 0 !important;
    }
    .pr_md--0 {
        padding-right: 0 !important;
    }
    .pt_md--0 {
        padding-top: 0 !important;
    }
    .pb_md--0 {
        padding-bottom: 0 !important;
    }
    .mr_md--0 {
        margin-right: 0 !important;
    }
    .ml_md--0 {
        margin-left: 0 !important;
    }
    .mt_md--0 {
        margin-top: 0 !important;
    }
    .mb_md--0 {
        margin-bottom: 0 !important;
    }
    .ptb_md--250 {
        padding: 250px 0 !important;
    }
    .ptb_md--5 {
        padding: 5px 0 !important;
    }
    .plr_md--5 {
        padding: 0 5px !important;
    }
    .pt_md--5 {
        padding-top: 5px !important;
    }
    .pb_md--5 {
        padding-bottom: 5px !important;
    }
    .pl_md--5 {
        padding-left: 5px !important;
    }
    .pr_md--5 {
        padding-right: 5px !important;
    }
    .mt_md--5 {
        margin-top: 5px !important;
    }
    .mb_md--5 {
        margin-bottom: 5px !important;
    }
    .ptb_md--10 {
        padding: 10px 0 !important;
    }
    .plr_md--10 {
        padding: 0 10px !important;
    }
    .pt_md--10 {
        padding-top: 10px !important;
    }
    .pb_md--10 {
        padding-bottom: 10px !important;
    }
    .pl_md--10 {
        padding-left: 10px !important;
    }
    .pr_md--10 {
        padding-right: 10px !important;
    }
    .mt_md--10 {
        margin-top: 10px !important;
    }
    .mb_md--10 {
        margin-bottom: 10px !important;
    }
    .ptb_md--15 {
        padding: 15px 0 !important;
    }
    .plr_md--15 {
        padding: 0 15px !important;
    }
    .pt_md--15 {
        padding-top: 15px !important;
    }
    .pb_md--15 {
        padding-bottom: 15px !important;
    }
    .pl_md--15 {
        padding-left: 15px !important;
    }
    .pr_md--15 {
        padding-right: 15px !important;
    }
    .mt_md--15 {
        margin-top: 15px !important;
    }
    .mb_md--15 {
        margin-bottom: 15px !important;
    }
    .ptb_md--20 {
        padding: 20px 0 !important;
    }
    .plr_md--20 {
        padding: 0 20px !important;
    }
    .pt_md--20 {
        padding-top: 20px !important;
    }
    .pb_md--20 {
        padding-bottom: 20px !important;
    }
    .pl_md--20 {
        padding-left: 20px !important;
    }
    .pr_md--20 {
        padding-right: 20px !important;
    }
    .mt_md--20 {
        margin-top: 20px !important;
    }
    .mb_md--20 {
        margin-bottom: 20px !important;
    }
    .ptb_md--25 {
        padding: 25px 0 !important;
    }
    .plr_md--25 {
        padding: 0 25px !important;
    }
    .pt_md--25 {
        padding-top: 25px !important;
    }
    .pb_md--25 {
        padding-bottom: 25px !important;
    }
    .pl_md--25 {
        padding-left: 25px !important;
    }
    .pr_md--25 {
        padding-right: 25px !important;
    }
    .mt_md--25 {
        margin-top: 25px !important;
    }
    .mb_md--25 {
        margin-bottom: 25px !important;
    }
    .ptb_md--30 {
        padding: 30px 0 !important;
    }
    .plr_md--30 {
        padding: 0 30px !important;
    }
    .pt_md--30 {
        padding-top: 30px !important;
    }
    .pb_md--30 {
        padding-bottom: 30px !important;
    }
    .pl_md--30 {
        padding-left: 30px !important;
    }
    .pr_md--30 {
        padding-right: 30px !important;
    }
    .mt_md--30 {
        margin-top: 30px !important;
    }
    .mb_md--30 {
        margin-bottom: 30px !important;
    }
    .ptb_md--35 {
        padding: 35px 0 !important;
    }
    .plr_md--35 {
        padding: 0 35px !important;
    }
    .pt_md--35 {
        padding-top: 35px !important;
    }
    .pb_md--35 {
        padding-bottom: 35px !important;
    }
    .pl_md--35 {
        padding-left: 35px !important;
    }
    .pr_md--35 {
        padding-right: 35px !important;
    }
    .mt_md--35 {
        margin-top: 35px !important;
    }
    .mb_md--35 {
        margin-bottom: 35px !important;
    }
    .ptb_md--40 {
        padding: 40px 0 !important;
    }
    .plr_md--40 {
        padding: 0 40px !important;
    }
    .pt_md--40 {
        padding-top: 40px !important;
    }
    .pb_md--40 {
        padding-bottom: 40px !important;
    }
    .pl_md--40 {
        padding-left: 40px !important;
    }
    .pr_md--40 {
        padding-right: 40px !important;
    }
    .mt_md--40 {
        margin-top: 40px !important;
    }
    .mb_md--40 {
        margin-bottom: 40px !important;
    }
    .ptb_md--45 {
        padding: 45px 0 !important;
    }
    .plr_md--45 {
        padding: 0 45px !important;
    }
    .pt_md--45 {
        padding-top: 45px !important;
    }
    .pb_md--45 {
        padding-bottom: 45px !important;
    }
    .pl_md--45 {
        padding-left: 45px !important;
    }
    .pr_md--45 {
        padding-right: 45px !important;
    }
    .mt_md--45 {
        margin-top: 45px !important;
    }
    .mb_md--45 {
        margin-bottom: 45px !important;
    }
    .ptb_md--50 {
        padding: 50px 0 !important;
    }
    .plr_md--50 {
        padding: 0 50px !important;
    }
    .pt_md--50 {
        padding-top: 50px !important;
    }
    .pb_md--50 {
        padding-bottom: 50px !important;
    }
    .pl_md--50 {
        padding-left: 50px !important;
    }
    .pr_md--50 {
        padding-right: 50px !important;
    }
    .mt_md--50 {
        margin-top: 50px !important;
    }
    .mb_md--50 {
        margin-bottom: 50px !important;
    }
    .ptb_md--55 {
        padding: 55px 0 !important;
    }
    .plr_md--55 {
        padding: 0 55px !important;
    }
    .pt_md--55 {
        padding-top: 55px !important;
    }
    .pb_md--55 {
        padding-bottom: 55px !important;
    }
    .pl_md--55 {
        padding-left: 55px !important;
    }
    .pr_md--55 {
        padding-right: 55px !important;
    }
    .mt_md--55 {
        margin-top: 55px !important;
    }
    .mb_md--55 {
        margin-bottom: 55px !important;
    }
    .ptb_md--60 {
        padding: 60px 0 !important;
    }
    .plr_md--60 {
        padding: 0 60px !important;
    }
    .pt_md--60 {
        padding-top: 60px !important;
    }
    .pb_md--60 {
        padding-bottom: 60px !important;
    }
    .pl_md--60 {
        padding-left: 60px !important;
    }
    .pr_md--60 {
        padding-right: 60px !important;
    }
    .mt_md--60 {
        margin-top: 60px !important;
    }
    .mb_md--60 {
        margin-bottom: 60px !important;
    }
    .ptb_md--65 {
        padding: 65px 0 !important;
    }
    .plr_md--65 {
        padding: 0 65px !important;
    }
    .pt_md--65 {
        padding-top: 65px !important;
    }
    .pb_md--65 {
        padding-bottom: 65px !important;
    }
    .pl_md--65 {
        padding-left: 65px !important;
    }
    .pr_md--65 {
        padding-right: 65px !important;
    }
    .mt_md--65 {
        margin-top: 65px !important;
    }
    .mb_md--65 {
        margin-bottom: 65px !important;
    }
    .ptb_md--70 {
        padding: 70px 0 !important;
    }
    .plr_md--70 {
        padding: 0 70px !important;
    }
    .pt_md--70 {
        padding-top: 70px !important;
    }
    .pb_md--70 {
        padding-bottom: 70px !important;
    }
    .pl_md--70 {
        padding-left: 70px !important;
    }
    .pr_md--70 {
        padding-right: 70px !important;
    }
    .mt_md--70 {
        margin-top: 70px !important;
    }
    .mb_md--70 {
        margin-bottom: 70px !important;
    }
    .ptb_md--75 {
        padding: 75px 0 !important;
    }
    .plr_md--75 {
        padding: 0 75px !important;
    }
    .pt_md--75 {
        padding-top: 75px !important;
    }
    .pb_md--75 {
        padding-bottom: 75px !important;
    }
    .pl_md--75 {
        padding-left: 75px !important;
    }
    .pr_md--75 {
        padding-right: 75px !important;
    }
    .mt_md--75 {
        margin-top: 75px !important;
    }
    .mb_md--75 {
        margin-bottom: 75px !important;
    }
    .ptb_md--80 {
        padding: 80px 0 !important;
    }
    .plr_md--80 {
        padding: 0 80px !important;
    }
    .pt_md--80 {
        padding-top: 80px !important;
    }
    .pb_md--80 {
        padding-bottom: 80px !important;
    }
    .pl_md--80 {
        padding-left: 80px !important;
    }
    .pr_md--80 {
        padding-right: 80px !important;
    }
    .mt_md--80 {
        margin-top: 80px !important;
    }
    .mb_md--80 {
        margin-bottom: 80px !important;
    }
    .ptb_md--85 {
        padding: 85px 0 !important;
    }
    .plr_md--85 {
        padding: 0 85px !important;
    }
    .pt_md--85 {
        padding-top: 85px !important;
    }
    .pb_md--85 {
        padding-bottom: 85px !important;
    }
    .pl_md--85 {
        padding-left: 85px !important;
    }
    .pr_md--85 {
        padding-right: 85px !important;
    }
    .mt_md--85 {
        margin-top: 85px !important;
    }
    .mb_md--85 {
        margin-bottom: 85px !important;
    }
    .ptb_md--90 {
        padding: 90px 0 !important;
    }
    .plr_md--90 {
        padding: 0 90px !important;
    }
    .pt_md--90 {
        padding-top: 90px !important;
    }
    .pb_md--90 {
        padding-bottom: 90px !important;
    }
    .pl_md--90 {
        padding-left: 90px !important;
    }
    .pr_md--90 {
        padding-right: 90px !important;
    }
    .mt_md--90 {
        margin-top: 90px !important;
    }
    .mb_md--90 {
        margin-bottom: 90px !important;
    }
    .ptb_md--95 {
        padding: 95px 0 !important;
    }
    .plr_md--95 {
        padding: 0 95px !important;
    }
    .pt_md--95 {
        padding-top: 95px !important;
    }
    .pb_md--95 {
        padding-bottom: 95px !important;
    }
    .pl_md--95 {
        padding-left: 95px !important;
    }
    .pr_md--95 {
        padding-right: 95px !important;
    }
    .mt_md--95 {
        margin-top: 95px !important;
    }
    .mb_md--95 {
        margin-bottom: 95px !important;
    }
    .ptb_md--100 {
        padding: 100px 0 !important;
    }
    .plr_md--100 {
        padding: 0 100px !important;
    }
    .pt_md--100 {
        padding-top: 100px !important;
    }
    .pb_md--100 {
        padding-bottom: 100px !important;
    }
    .pl_md--100 {
        padding-left: 100px !important;
    }
    .pr_md--100 {
        padding-right: 100px !important;
    }
    .mt_md--100 {
        margin-top: 100px !important;
    }
    .mb_md--100 {
        margin-bottom: 100px !important;
    }
    .ptb_md--105 {
        padding: 105px 0 !important;
    }
    .plr_md--105 {
        padding: 0 105px !important;
    }
    .pt_md--105 {
        padding-top: 105px !important;
    }
    .pb_md--105 {
        padding-bottom: 105px !important;
    }
    .pl_md--105 {
        padding-left: 105px !important;
    }
    .pr_md--105 {
        padding-right: 105px !important;
    }
    .mt_md--105 {
        margin-top: 105px !important;
    }
    .mb_md--105 {
        margin-bottom: 105px !important;
    }
    .ptb_md--110 {
        padding: 110px 0 !important;
    }
    .plr_md--110 {
        padding: 0 110px !important;
    }
    .pt_md--110 {
        padding-top: 110px !important;
    }
    .pb_md--110 {
        padding-bottom: 110px !important;
    }
    .pl_md--110 {
        padding-left: 110px !important;
    }
    .pr_md--110 {
        padding-right: 110px !important;
    }
    .mt_md--110 {
        margin-top: 110px !important;
    }
    .mb_md--110 {
        margin-bottom: 110px !important;
    }
    .ptb_md--115 {
        padding: 115px 0 !important;
    }
    .plr_md--115 {
        padding: 0 115px !important;
    }
    .pt_md--115 {
        padding-top: 115px !important;
    }
    .pb_md--115 {
        padding-bottom: 115px !important;
    }
    .pl_md--115 {
        padding-left: 115px !important;
    }
    .pr_md--115 {
        padding-right: 115px !important;
    }
    .mt_md--115 {
        margin-top: 115px !important;
    }
    .mb_md--115 {
        margin-bottom: 115px !important;
    }
    .ptb_md--120 {
        padding: 120px 0 !important;
    }
    .plr_md--120 {
        padding: 0 120px !important;
    }
    .pt_md--120 {
        padding-top: 120px !important;
    }
    .pb_md--120 {
        padding-bottom: 120px !important;
    }
    .pl_md--120 {
        padding-left: 120px !important;
    }
    .pr_md--120 {
        padding-right: 120px !important;
    }
    .mt_md--120 {
        margin-top: 120px !important;
    }
    .mb_md--120 {
        margin-bottom: 120px !important;
    }
    .ptb_md--125 {
        padding: 125px 0 !important;
    }
    .plr_md--125 {
        padding: 0 125px !important;
    }
    .pt_md--125 {
        padding-top: 125px !important;
    }
    .pb_md--125 {
        padding-bottom: 125px !important;
    }
    .pl_md--125 {
        padding-left: 125px !important;
    }
    .pr_md--125 {
        padding-right: 125px !important;
    }
    .mt_md--125 {
        margin-top: 125px !important;
    }
    .mb_md--125 {
        margin-bottom: 125px !important;
    }
    .ptb_md--130 {
        padding: 130px 0 !important;
    }
    .plr_md--130 {
        padding: 0 130px !important;
    }
    .pt_md--130 {
        padding-top: 130px !important;
    }
    .pb_md--130 {
        padding-bottom: 130px !important;
    }
    .pl_md--130 {
        padding-left: 130px !important;
    }
    .pr_md--130 {
        padding-right: 130px !important;
    }
    .mt_md--130 {
        margin-top: 130px !important;
    }
    .mb_md--130 {
        margin-bottom: 130px !important;
    }
    .ptb_md--135 {
        padding: 135px 0 !important;
    }
    .plr_md--135 {
        padding: 0 135px !important;
    }
    .pt_md--135 {
        padding-top: 135px !important;
    }
    .pb_md--135 {
        padding-bottom: 135px !important;
    }
    .pl_md--135 {
        padding-left: 135px !important;
    }
    .pr_md--135 {
        padding-right: 135px !important;
    }
    .mt_md--135 {
        margin-top: 135px !important;
    }
    .mb_md--135 {
        margin-bottom: 135px !important;
    }
    .ptb_md--140 {
        padding: 140px 0 !important;
    }
    .plr_md--140 {
        padding: 0 140px !important;
    }
    .pt_md--140 {
        padding-top: 140px !important;
    }
    .pb_md--140 {
        padding-bottom: 140px !important;
    }
    .pl_md--140 {
        padding-left: 140px !important;
    }
    .pr_md--140 {
        padding-right: 140px !important;
    }
    .mt_md--140 {
        margin-top: 140px !important;
    }
    .mb_md--140 {
        margin-bottom: 140px !important;
    }
    .ptb_md--145 {
        padding: 145px 0 !important;
    }
    .plr_md--145 {
        padding: 0 145px !important;
    }
    .pt_md--145 {
        padding-top: 145px !important;
    }
    .pb_md--145 {
        padding-bottom: 145px !important;
    }
    .pl_md--145 {
        padding-left: 145px !important;
    }
    .pr_md--145 {
        padding-right: 145px !important;
    }
    .mt_md--145 {
        margin-top: 145px !important;
    }
    .mb_md--145 {
        margin-bottom: 145px !important;
    }
    .ptb_md--150 {
        padding: 150px 0 !important;
    }
    .plr_md--150 {
        padding: 0 150px !important;
    }
    .pt_md--150 {
        padding-top: 150px !important;
    }
    .pb_md--150 {
        padding-bottom: 150px !important;
    }
    .pl_md--150 {
        padding-left: 150px !important;
    }
    .pr_md--150 {
        padding-right: 150px !important;
    }
    .mt_md--150 {
        margin-top: 150px !important;
    }
    .mb_md--150 {
        margin-bottom: 150px !important;
    }
    .ptb_md--155 {
        padding: 155px 0 !important;
    }
    .plr_md--155 {
        padding: 0 155px !important;
    }
    .pt_md--155 {
        padding-top: 155px !important;
    }
    .pb_md--155 {
        padding-bottom: 155px !important;
    }
    .pl_md--155 {
        padding-left: 155px !important;
    }
    .pr_md--155 {
        padding-right: 155px !important;
    }
    .mt_md--155 {
        margin-top: 155px !important;
    }
    .mb_md--155 {
        margin-bottom: 155px !important;
    }
    .ptb_md--160 {
        padding: 160px 0 !important;
    }
    .plr_md--160 {
        padding: 0 160px !important;
    }
    .pt_md--160 {
        padding-top: 160px !important;
    }
    .pb_md--160 {
        padding-bottom: 160px !important;
    }
    .pl_md--160 {
        padding-left: 160px !important;
    }
    .pr_md--160 {
        padding-right: 160px !important;
    }
    .mt_md--160 {
        margin-top: 160px !important;
    }
    .mb_md--160 {
        margin-bottom: 160px !important;
    }
    .ptb_md--165 {
        padding: 165px 0 !important;
    }
    .plr_md--165 {
        padding: 0 165px !important;
    }
    .pt_md--165 {
        padding-top: 165px !important;
    }
    .pb_md--165 {
        padding-bottom: 165px !important;
    }
    .pl_md--165 {
        padding-left: 165px !important;
    }
    .pr_md--165 {
        padding-right: 165px !important;
    }
    .mt_md--165 {
        margin-top: 165px !important;
    }
    .mb_md--165 {
        margin-bottom: 165px !important;
    }
    .ptb_md--170 {
        padding: 170px 0 !important;
    }
    .plr_md--170 {
        padding: 0 170px !important;
    }
    .pt_md--170 {
        padding-top: 170px !important;
    }
    .pb_md--170 {
        padding-bottom: 170px !important;
    }
    .pl_md--170 {
        padding-left: 170px !important;
    }
    .pr_md--170 {
        padding-right: 170px !important;
    }
    .mt_md--170 {
        margin-top: 170px !important;
    }
    .mb_md--170 {
        margin-bottom: 170px !important;
    }
    .ptb_md--175 {
        padding: 175px 0 !important;
    }
    .plr_md--175 {
        padding: 0 175px !important;
    }
    .pt_md--175 {
        padding-top: 175px !important;
    }
    .pb_md--175 {
        padding-bottom: 175px !important;
    }
    .pl_md--175 {
        padding-left: 175px !important;
    }
    .pr_md--175 {
        padding-right: 175px !important;
    }
    .mt_md--175 {
        margin-top: 175px !important;
    }
    .mb_md--175 {
        margin-bottom: 175px !important;
    }
    .ptb_md--180 {
        padding: 180px 0 !important;
    }
    .plr_md--180 {
        padding: 0 180px !important;
    }
    .pt_md--180 {
        padding-top: 180px !important;
    }
    .pb_md--180 {
        padding-bottom: 180px !important;
    }
    .pl_md--180 {
        padding-left: 180px !important;
    }
    .pr_md--180 {
        padding-right: 180px !important;
    }
    .mt_md--180 {
        margin-top: 180px !important;
    }
    .mb_md--180 {
        margin-bottom: 180px !important;
    }
    .ptb_md--185 {
        padding: 185px 0 !important;
    }
    .plr_md--185 {
        padding: 0 185px !important;
    }
    .pt_md--185 {
        padding-top: 185px !important;
    }
    .pb_md--185 {
        padding-bottom: 185px !important;
    }
    .pl_md--185 {
        padding-left: 185px !important;
    }
    .pr_md--185 {
        padding-right: 185px !important;
    }
    .mt_md--185 {
        margin-top: 185px !important;
    }
    .mb_md--185 {
        margin-bottom: 185px !important;
    }
    .ptb_md--190 {
        padding: 190px 0 !important;
    }
    .plr_md--190 {
        padding: 0 190px !important;
    }
    .pt_md--190 {
        padding-top: 190px !important;
    }
    .pb_md--190 {
        padding-bottom: 190px !important;
    }
    .pl_md--190 {
        padding-left: 190px !important;
    }
    .pr_md--190 {
        padding-right: 190px !important;
    }
    .mt_md--190 {
        margin-top: 190px !important;
    }
    .mb_md--190 {
        margin-bottom: 190px !important;
    }
    .ptb_md--195 {
        padding: 195px 0 !important;
    }
    .plr_md--195 {
        padding: 0 195px !important;
    }
    .pt_md--195 {
        padding-top: 195px !important;
    }
    .pb_md--195 {
        padding-bottom: 195px !important;
    }
    .pl_md--195 {
        padding-left: 195px !important;
    }
    .pr_md--195 {
        padding-right: 195px !important;
    }
    .mt_md--195 {
        margin-top: 195px !important;
    }
    .mb_md--195 {
        margin-bottom: 195px !important;
    }
    .ptb_md--200 {
        padding: 200px 0 !important;
    }
    .plr_md--200 {
        padding: 0 200px !important;
    }
    .pt_md--200 {
        padding-top: 200px !important;
    }
    .pb_md--200 {
        padding-bottom: 200px !important;
    }
    .pl_md--200 {
        padding-left: 200px !important;
    }
    .pr_md--200 {
        padding-right: 200px !important;
    }
    .mt_md--200 {
        margin-top: 200px !important;
    }
    .mb_md--200 {
        margin-bottom: 200px !important;
    }
}
@media only screen and (max-width: 767px) {
    .ptb_sm--250 {
        padding: 250px 0 !important;
    }
    .ptb_sm--0 {
        padding: 0 !important;
    }
    .pl_sm--0 {
        padding-left: 0 !important;
    }
    .pr_sm--0 {
        padding-right: 0 !important;
    }
    .pt_sm--0 {
        padding-top: 0 !important;
    }
    .pb_sm--0 {
        padding-bottom: 0 !important;
    }
    .mr_sm--0 {
        margin-right: 0 !important;
    }
    .ml_sm--0 {
        margin-left: 0 !important;
    }
    .mt_sm--0 {
        margin-top: 0 !important;
    }
    .mb_sm--0 {
        margin-bottom: 0 !important;
    }
    .pt_sm--150 {
        padding-top: 150px !important;
    }
    .pb_sm--110 {
        padding-bottom: 110px !important;
    }
    .ptb_sm--5 {
        padding: 5px 0 !important;
    }
    .plr_sm--5 {
        padding: 0 5px !important;
    }
    .pt_sm--5 {
        padding-top: 5px !important;
    }
    .pb_sm--5 {
        padding-bottom: 5px !important;
    }
    .pl_sm--5 {
        padding-left: 5px !important;
    }
    .pr_sm--5 {
        padding-right: 5px !important;
    }
    .mt_sm--5 {
        margin-top: 5px !important;
    }
    .ml_sm--5 {
        margin-left: 5px !important;
    }
    .mr_sm--5 {
        margin-right: 5px !important;
    }
    .mb_sm--5 {
        margin-bottom: 5px !important;
    }
    .ptb_sm--10 {
        padding: 10px 0 !important;
    }
    .plr_sm--10 {
        padding: 0 10px !important;
    }
    .pt_sm--10 {
        padding-top: 10px !important;
    }
    .pb_sm--10 {
        padding-bottom: 10px !important;
    }
    .pl_sm--10 {
        padding-left: 10px !important;
    }
    .pr_sm--10 {
        padding-right: 10px !important;
    }
    .mt_sm--10 {
        margin-top: 10px !important;
    }
    .ml_sm--10 {
        margin-left: 10px !important;
    }
    .mr_sm--10 {
        margin-right: 10px !important;
    }
    .mb_sm--10 {
        margin-bottom: 10px !important;
    }
    .ptb_sm--15 {
        padding: 15px 0 !important;
    }
    .plr_sm--15 {
        padding: 0 15px !important;
    }
    .pt_sm--15 {
        padding-top: 15px !important;
    }
    .pb_sm--15 {
        padding-bottom: 15px !important;
    }
    .pl_sm--15 {
        padding-left: 15px !important;
    }
    .pr_sm--15 {
        padding-right: 15px !important;
    }
    .mt_sm--15 {
        margin-top: 15px !important;
    }
    .ml_sm--15 {
        margin-left: 15px !important;
    }
    .mr_sm--15 {
        margin-right: 15px !important;
    }
    .mb_sm--15 {
        margin-bottom: 15px !important;
    }
    .ptb_sm--20 {
        padding: 20px 0 !important;
    }
    .plr_sm--20 {
        padding: 0 20px !important;
    }
    .pt_sm--20 {
        padding-top: 20px !important;
    }
    .pb_sm--20 {
        padding-bottom: 20px !important;
    }
    .pl_sm--20 {
        padding-left: 20px !important;
    }
    .pr_sm--20 {
        padding-right: 20px !important;
    }
    .mt_sm--20 {
        margin-top: 20px !important;
    }
    .ml_sm--20 {
        margin-left: 20px !important;
    }
    .mr_sm--20 {
        margin-right: 20px !important;
    }
    .mb_sm--20 {
        margin-bottom: 20px !important;
    }
    .ptb_sm--25 {
        padding: 25px 0 !important;
    }
    .plr_sm--25 {
        padding: 0 25px !important;
    }
    .pt_sm--25 {
        padding-top: 25px !important;
    }
    .pb_sm--25 {
        padding-bottom: 25px !important;
    }
    .pl_sm--25 {
        padding-left: 25px !important;
    }
    .pr_sm--25 {
        padding-right: 25px !important;
    }
    .mt_sm--25 {
        margin-top: 25px !important;
    }
    .ml_sm--25 {
        margin-left: 25px !important;
    }
    .mr_sm--25 {
        margin-right: 25px !important;
    }
    .mb_sm--25 {
        margin-bottom: 25px !important;
    }
    .ptb_sm--30 {
        padding: 30px 0 !important;
    }
    .plr_sm--30 {
        padding: 0 30px !important;
    }
    .pt_sm--30 {
        padding-top: 30px !important;
    }
    .pb_sm--30 {
        padding-bottom: 30px !important;
    }
    .pl_sm--30 {
        padding-left: 30px !important;
    }
    .pr_sm--30 {
        padding-right: 30px !important;
    }
    .mt_sm--30 {
        margin-top: 30px !important;
    }
    .ml_sm--30 {
        margin-left: 30px !important;
    }
    .mr_sm--30 {
        margin-right: 30px !important;
    }
    .mb_sm--30 {
        margin-bottom: 30px !important;
    }
    .ptb_sm--35 {
        padding: 35px 0 !important;
    }
    .plr_sm--35 {
        padding: 0 35px !important;
    }
    .pt_sm--35 {
        padding-top: 35px !important;
    }
    .pb_sm--35 {
        padding-bottom: 35px !important;
    }
    .pl_sm--35 {
        padding-left: 35px !important;
    }
    .pr_sm--35 {
        padding-right: 35px !important;
    }
    .mt_sm--35 {
        margin-top: 35px !important;
    }
    .ml_sm--35 {
        margin-left: 35px !important;
    }
    .mr_sm--35 {
        margin-right: 35px !important;
    }
    .mb_sm--35 {
        margin-bottom: 35px !important;
    }
    .ptb_sm--40 {
        padding: 40px 0 !important;
    }
    .plr_sm--40 {
        padding: 0 40px !important;
    }
    .pt_sm--40 {
        padding-top: 40px !important;
    }
    .pb_sm--40 {
        padding-bottom: 40px !important;
    }
    .pl_sm--40 {
        padding-left: 40px !important;
    }
    .pr_sm--40 {
        padding-right: 40px !important;
    }
    .mt_sm--40 {
        margin-top: 40px !important;
    }
    .ml_sm--40 {
        margin-left: 40px !important;
    }
    .mr_sm--40 {
        margin-right: 40px !important;
    }
    .mb_sm--40 {
        margin-bottom: 40px !important;
    }
    .ptb_sm--45 {
        padding: 45px 0 !important;
    }
    .plr_sm--45 {
        padding: 0 45px !important;
    }
    .pt_sm--45 {
        padding-top: 45px !important;
    }
    .pb_sm--45 {
        padding-bottom: 45px !important;
    }
    .pl_sm--45 {
        padding-left: 45px !important;
    }
    .pr_sm--45 {
        padding-right: 45px !important;
    }
    .mt_sm--45 {
        margin-top: 45px !important;
    }
    .ml_sm--45 {
        margin-left: 45px !important;
    }
    .mr_sm--45 {
        margin-right: 45px !important;
    }
    .mb_sm--45 {
        margin-bottom: 45px !important;
    }
    .ptb_sm--50 {
        padding: 50px 0 !important;
    }
    .plr_sm--50 {
        padding: 0 50px !important;
    }
    .pt_sm--50 {
        padding-top: 50px !important;
    }
    .pb_sm--50 {
        padding-bottom: 50px !important;
    }
    .pl_sm--50 {
        padding-left: 50px !important;
    }
    .pr_sm--50 {
        padding-right: 50px !important;
    }
    .mt_sm--50 {
        margin-top: 50px !important;
    }
    .ml_sm--50 {
        margin-left: 50px !important;
    }
    .mr_sm--50 {
        margin-right: 50px !important;
    }
    .mb_sm--50 {
        margin-bottom: 50px !important;
    }
    .ptb_sm--55 {
        padding: 55px 0 !important;
    }
    .plr_sm--55 {
        padding: 0 55px !important;
    }
    .pt_sm--55 {
        padding-top: 55px !important;
    }
    .pb_sm--55 {
        padding-bottom: 55px !important;
    }
    .pl_sm--55 {
        padding-left: 55px !important;
    }
    .pr_sm--55 {
        padding-right: 55px !important;
    }
    .mt_sm--55 {
        margin-top: 55px !important;
    }
    .ml_sm--55 {
        margin-left: 55px !important;
    }
    .mr_sm--55 {
        margin-right: 55px !important;
    }
    .mb_sm--55 {
        margin-bottom: 55px !important;
    }
    .ptb_sm--60 {
        padding: 60px 0 !important;
    }
    .plr_sm--60 {
        padding: 0 60px !important;
    }
    .pt_sm--60 {
        padding-top: 60px !important;
    }
    .pb_sm--60 {
        padding-bottom: 60px !important;
    }
    .pl_sm--60 {
        padding-left: 60px !important;
    }
    .pr_sm--60 {
        padding-right: 60px !important;
    }
    .mt_sm--60 {
        margin-top: 60px !important;
    }
    .ml_sm--60 {
        margin-left: 60px !important;
    }
    .mr_sm--60 {
        margin-right: 60px !important;
    }
    .mb_sm--60 {
        margin-bottom: 60px !important;
    }
    .ptb_sm--65 {
        padding: 65px 0 !important;
    }
    .plr_sm--65 {
        padding: 0 65px !important;
    }
    .pt_sm--65 {
        padding-top: 65px !important;
    }
    .pb_sm--65 {
        padding-bottom: 65px !important;
    }
    .pl_sm--65 {
        padding-left: 65px !important;
    }
    .pr_sm--65 {
        padding-right: 65px !important;
    }
    .mt_sm--65 {
        margin-top: 65px !important;
    }
    .ml_sm--65 {
        margin-left: 65px !important;
    }
    .mr_sm--65 {
        margin-right: 65px !important;
    }
    .mb_sm--65 {
        margin-bottom: 65px !important;
    }
    .ptb_sm--70 {
        padding: 70px 0 !important;
    }
    .plr_sm--70 {
        padding: 0 70px !important;
    }
    .pt_sm--70 {
        padding-top: 70px !important;
    }
    .pb_sm--70 {
        padding-bottom: 70px !important;
    }
    .pl_sm--70 {
        padding-left: 70px !important;
    }
    .pr_sm--70 {
        padding-right: 70px !important;
    }
    .mt_sm--70 {
        margin-top: 70px !important;
    }
    .ml_sm--70 {
        margin-left: 70px !important;
    }
    .mr_sm--70 {
        margin-right: 70px !important;
    }
    .mb_sm--70 {
        margin-bottom: 70px !important;
    }
    .ptb_sm--75 {
        padding: 75px 0 !important;
    }
    .plr_sm--75 {
        padding: 0 75px !important;
    }
    .pt_sm--75 {
        padding-top: 75px !important;
    }
    .pb_sm--75 {
        padding-bottom: 75px !important;
    }
    .pl_sm--75 {
        padding-left: 75px !important;
    }
    .pr_sm--75 {
        padding-right: 75px !important;
    }
    .mt_sm--75 {
        margin-top: 75px !important;
    }
    .ml_sm--75 {
        margin-left: 75px !important;
    }
    .mr_sm--75 {
        margin-right: 75px !important;
    }
    .mb_sm--75 {
        margin-bottom: 75px !important;
    }
    .ptb_sm--80 {
        padding: 80px 0 !important;
    }
    .plr_sm--80 {
        padding: 0 80px !important;
    }
    .pt_sm--80 {
        padding-top: 80px !important;
    }
    .pb_sm--80 {
        padding-bottom: 80px !important;
    }
    .pl_sm--80 {
        padding-left: 80px !important;
    }
    .pr_sm--80 {
        padding-right: 80px !important;
    }
    .mt_sm--80 {
        margin-top: 80px !important;
    }
    .ml_sm--80 {
        margin-left: 80px !important;
    }
    .mr_sm--80 {
        margin-right: 80px !important;
    }
    .mb_sm--80 {
        margin-bottom: 80px !important;
    }
    .ptb_sm--85 {
        padding: 85px 0 !important;
    }
    .plr_sm--85 {
        padding: 0 85px !important;
    }
    .pt_sm--85 {
        padding-top: 85px !important;
    }
    .pb_sm--85 {
        padding-bottom: 85px !important;
    }
    .pl_sm--85 {
        padding-left: 85px !important;
    }
    .pr_sm--85 {
        padding-right: 85px !important;
    }
    .mt_sm--85 {
        margin-top: 85px !important;
    }
    .ml_sm--85 {
        margin-left: 85px !important;
    }
    .mr_sm--85 {
        margin-right: 85px !important;
    }
    .mb_sm--85 {
        margin-bottom: 85px !important;
    }
    .ptb_sm--90 {
        padding: 90px 0 !important;
    }
    .plr_sm--90 {
        padding: 0 90px !important;
    }
    .pt_sm--90 {
        padding-top: 90px !important;
    }
    .pb_sm--90 {
        padding-bottom: 90px !important;
    }
    .pl_sm--90 {
        padding-left: 90px !important;
    }
    .pr_sm--90 {
        padding-right: 90px !important;
    }
    .mt_sm--90 {
        margin-top: 90px !important;
    }
    .ml_sm--90 {
        margin-left: 90px !important;
    }
    .mr_sm--90 {
        margin-right: 90px !important;
    }
    .mb_sm--90 {
        margin-bottom: 90px !important;
    }
    .ptb_sm--95 {
        padding: 95px 0 !important;
    }
    .plr_sm--95 {
        padding: 0 95px !important;
    }
    .pt_sm--95 {
        padding-top: 95px !important;
    }
    .pb_sm--95 {
        padding-bottom: 95px !important;
    }
    .pl_sm--95 {
        padding-left: 95px !important;
    }
    .pr_sm--95 {
        padding-right: 95px !important;
    }
    .mt_sm--95 {
        margin-top: 95px !important;
    }
    .ml_sm--95 {
        margin-left: 95px !important;
    }
    .mr_sm--95 {
        margin-right: 95px !important;
    }
    .mb_sm--95 {
        margin-bottom: 95px !important;
    }
    .ptb_sm--100 {
        padding: 100px 0 !important;
    }
    .plr_sm--100 {
        padding: 0 100px !important;
    }
    .pt_sm--100 {
        padding-top: 100px !important;
    }
    .pb_sm--100 {
        padding-bottom: 100px !important;
    }
    .pl_sm--100 {
        padding-left: 100px !important;
    }
    .pr_sm--100 {
        padding-right: 100px !important;
    }
    .mt_sm--100 {
        margin-top: 100px !important;
    }
    .ml_sm--100 {
        margin-left: 100px !important;
    }
    .mr_sm--100 {
        margin-right: 100px !important;
    }
    .mb_sm--100 {
        margin-bottom: 100px !important;
    }
    .ptb_sm--105 {
        padding: 105px 0 !important;
    }
    .plr_sm--105 {
        padding: 0 105px !important;
    }
    .pt_sm--105 {
        padding-top: 105px !important;
    }
    .pb_sm--105 {
        padding-bottom: 105px !important;
    }
    .pl_sm--105 {
        padding-left: 105px !important;
    }
    .pr_sm--105 {
        padding-right: 105px !important;
    }
    .mt_sm--105 {
        margin-top: 105px !important;
    }
    .ml_sm--105 {
        margin-left: 105px !important;
    }
    .mr_sm--105 {
        margin-right: 105px !important;
    }
    .mb_sm--105 {
        margin-bottom: 105px !important;
    }
    .ptb_sm--110 {
        padding: 110px 0 !important;
    }
    .plr_sm--110 {
        padding: 0 110px !important;
    }
    .pt_sm--110 {
        padding-top: 110px !important;
    }
    .pb_sm--110 {
        padding-bottom: 110px !important;
    }
    .pl_sm--110 {
        padding-left: 110px !important;
    }
    .pr_sm--110 {
        padding-right: 110px !important;
    }
    .mt_sm--110 {
        margin-top: 110px !important;
    }
    .ml_sm--110 {
        margin-left: 110px !important;
    }
    .mr_sm--110 {
        margin-right: 110px !important;
    }
    .mb_sm--110 {
        margin-bottom: 110px !important;
    }
    .ptb_sm--115 {
        padding: 115px 0 !important;
    }
    .plr_sm--115 {
        padding: 0 115px !important;
    }
    .pt_sm--115 {
        padding-top: 115px !important;
    }
    .pb_sm--115 {
        padding-bottom: 115px !important;
    }
    .pl_sm--115 {
        padding-left: 115px !important;
    }
    .pr_sm--115 {
        padding-right: 115px !important;
    }
    .mt_sm--115 {
        margin-top: 115px !important;
    }
    .ml_sm--115 {
        margin-left: 115px !important;
    }
    .mr_sm--115 {
        margin-right: 115px !important;
    }
    .mb_sm--115 {
        margin-bottom: 115px !important;
    }
    .ptb_sm--120 {
        padding: 120px 0 !important;
    }
    .plr_sm--120 {
        padding: 0 120px !important;
    }
    .pt_sm--120 {
        padding-top: 120px !important;
    }
    .pb_sm--120 {
        padding-bottom: 120px !important;
    }
    .pl_sm--120 {
        padding-left: 120px !important;
    }
    .pr_sm--120 {
        padding-right: 120px !important;
    }
    .mt_sm--120 {
        margin-top: 120px !important;
    }
    .ml_sm--120 {
        margin-left: 120px !important;
    }
    .mr_sm--120 {
        margin-right: 120px !important;
    }
    .mb_sm--120 {
        margin-bottom: 120px !important;
    }
    .ptb_sm--125 {
        padding: 125px 0 !important;
    }
    .plr_sm--125 {
        padding: 0 125px !important;
    }
    .pt_sm--125 {
        padding-top: 125px !important;
    }
    .pb_sm--125 {
        padding-bottom: 125px !important;
    }
    .pl_sm--125 {
        padding-left: 125px !important;
    }
    .pr_sm--125 {
        padding-right: 125px !important;
    }
    .mt_sm--125 {
        margin-top: 125px !important;
    }
    .ml_sm--125 {
        margin-left: 125px !important;
    }
    .mr_sm--125 {
        margin-right: 125px !important;
    }
    .mb_sm--125 {
        margin-bottom: 125px !important;
    }
    .ptb_sm--130 {
        padding: 130px 0 !important;
    }
    .plr_sm--130 {
        padding: 0 130px !important;
    }
    .pt_sm--130 {
        padding-top: 130px !important;
    }
    .pb_sm--130 {
        padding-bottom: 130px !important;
    }
    .pl_sm--130 {
        padding-left: 130px !important;
    }
    .pr_sm--130 {
        padding-right: 130px !important;
    }
    .mt_sm--130 {
        margin-top: 130px !important;
    }
    .ml_sm--130 {
        margin-left: 130px !important;
    }
    .mr_sm--130 {
        margin-right: 130px !important;
    }
    .mb_sm--130 {
        margin-bottom: 130px !important;
    }
    .ptb_sm--135 {
        padding: 135px 0 !important;
    }
    .plr_sm--135 {
        padding: 0 135px !important;
    }
    .pt_sm--135 {
        padding-top: 135px !important;
    }
    .pb_sm--135 {
        padding-bottom: 135px !important;
    }
    .pl_sm--135 {
        padding-left: 135px !important;
    }
    .pr_sm--135 {
        padding-right: 135px !important;
    }
    .mt_sm--135 {
        margin-top: 135px !important;
    }
    .ml_sm--135 {
        margin-left: 135px !important;
    }
    .mr_sm--135 {
        margin-right: 135px !important;
    }
    .mb_sm--135 {
        margin-bottom: 135px !important;
    }
    .ptb_sm--140 {
        padding: 140px 0 !important;
    }
    .plr_sm--140 {
        padding: 0 140px !important;
    }
    .pt_sm--140 {
        padding-top: 140px !important;
    }
    .pb_sm--140 {
        padding-bottom: 140px !important;
    }
    .pl_sm--140 {
        padding-left: 140px !important;
    }
    .pr_sm--140 {
        padding-right: 140px !important;
    }
    .mt_sm--140 {
        margin-top: 140px !important;
    }
    .ml_sm--140 {
        margin-left: 140px !important;
    }
    .mr_sm--140 {
        margin-right: 140px !important;
    }
    .mb_sm--140 {
        margin-bottom: 140px !important;
    }
    .ptb_sm--145 {
        padding: 145px 0 !important;
    }
    .plr_sm--145 {
        padding: 0 145px !important;
    }
    .pt_sm--145 {
        padding-top: 145px !important;
    }
    .pb_sm--145 {
        padding-bottom: 145px !important;
    }
    .pl_sm--145 {
        padding-left: 145px !important;
    }
    .pr_sm--145 {
        padding-right: 145px !important;
    }
    .mt_sm--145 {
        margin-top: 145px !important;
    }
    .ml_sm--145 {
        margin-left: 145px !important;
    }
    .mr_sm--145 {
        margin-right: 145px !important;
    }
    .mb_sm--145 {
        margin-bottom: 145px !important;
    }
    .ptb_sm--150 {
        padding: 150px 0 !important;
    }
    .plr_sm--150 {
        padding: 0 150px !important;
    }
    .pt_sm--150 {
        padding-top: 150px !important;
    }
    .pb_sm--150 {
        padding-bottom: 150px !important;
    }
    .pl_sm--150 {
        padding-left: 150px !important;
    }
    .pr_sm--150 {
        padding-right: 150px !important;
    }
    .mt_sm--150 {
        margin-top: 150px !important;
    }
    .ml_sm--150 {
        margin-left: 150px !important;
    }
    .mr_sm--150 {
        margin-right: 150px !important;
    }
    .mb_sm--150 {
        margin-bottom: 150px !important;
    }
    .ptb_sm--155 {
        padding: 155px 0 !important;
    }
    .plr_sm--155 {
        padding: 0 155px !important;
    }
    .pt_sm--155 {
        padding-top: 155px !important;
    }
    .pb_sm--155 {
        padding-bottom: 155px !important;
    }
    .pl_sm--155 {
        padding-left: 155px !important;
    }
    .pr_sm--155 {
        padding-right: 155px !important;
    }
    .mt_sm--155 {
        margin-top: 155px !important;
    }
    .ml_sm--155 {
        margin-left: 155px !important;
    }
    .mr_sm--155 {
        margin-right: 155px !important;
    }
    .mb_sm--155 {
        margin-bottom: 155px !important;
    }
    .ptb_sm--160 {
        padding: 160px 0 !important;
    }
    .plr_sm--160 {
        padding: 0 160px !important;
    }
    .pt_sm--160 {
        padding-top: 160px !important;
    }
    .pb_sm--160 {
        padding-bottom: 160px !important;
    }
    .pl_sm--160 {
        padding-left: 160px !important;
    }
    .pr_sm--160 {
        padding-right: 160px !important;
    }
    .mt_sm--160 {
        margin-top: 160px !important;
    }
    .ml_sm--160 {
        margin-left: 160px !important;
    }
    .mr_sm--160 {
        margin-right: 160px !important;
    }
    .mb_sm--160 {
        margin-bottom: 160px !important;
    }
    .ptb_sm--165 {
        padding: 165px 0 !important;
    }
    .plr_sm--165 {
        padding: 0 165px !important;
    }
    .pt_sm--165 {
        padding-top: 165px !important;
    }
    .pb_sm--165 {
        padding-bottom: 165px !important;
    }
    .pl_sm--165 {
        padding-left: 165px !important;
    }
    .pr_sm--165 {
        padding-right: 165px !important;
    }
    .mt_sm--165 {
        margin-top: 165px !important;
    }
    .ml_sm--165 {
        margin-left: 165px !important;
    }
    .mr_sm--165 {
        margin-right: 165px !important;
    }
    .mb_sm--165 {
        margin-bottom: 165px !important;
    }
    .ptb_sm--170 {
        padding: 170px 0 !important;
    }
    .plr_sm--170 {
        padding: 0 170px !important;
    }
    .pt_sm--170 {
        padding-top: 170px !important;
    }
    .pb_sm--170 {
        padding-bottom: 170px !important;
    }
    .pl_sm--170 {
        padding-left: 170px !important;
    }
    .pr_sm--170 {
        padding-right: 170px !important;
    }
    .mt_sm--170 {
        margin-top: 170px !important;
    }
    .ml_sm--170 {
        margin-left: 170px !important;
    }
    .mr_sm--170 {
        margin-right: 170px !important;
    }
    .mb_sm--170 {
        margin-bottom: 170px !important;
    }
    .ptb_sm--175 {
        padding: 175px 0 !important;
    }
    .plr_sm--175 {
        padding: 0 175px !important;
    }
    .pt_sm--175 {
        padding-top: 175px !important;
    }
    .pb_sm--175 {
        padding-bottom: 175px !important;
    }
    .pl_sm--175 {
        padding-left: 175px !important;
    }
    .pr_sm--175 {
        padding-right: 175px !important;
    }
    .mt_sm--175 {
        margin-top: 175px !important;
    }
    .ml_sm--175 {
        margin-left: 175px !important;
    }
    .mr_sm--175 {
        margin-right: 175px !important;
    }
    .mb_sm--175 {
        margin-bottom: 175px !important;
    }
    .ptb_sm--180 {
        padding: 180px 0 !important;
    }
    .plr_sm--180 {
        padding: 0 180px !important;
    }
    .pt_sm--180 {
        padding-top: 180px !important;
    }
    .pb_sm--180 {
        padding-bottom: 180px !important;
    }
    .pl_sm--180 {
        padding-left: 180px !important;
    }
    .pr_sm--180 {
        padding-right: 180px !important;
    }
    .mt_sm--180 {
        margin-top: 180px !important;
    }
    .ml_sm--180 {
        margin-left: 180px !important;
    }
    .mr_sm--180 {
        margin-right: 180px !important;
    }
    .mb_sm--180 {
        margin-bottom: 180px !important;
    }
    .ptb_sm--185 {
        padding: 185px 0 !important;
    }
    .plr_sm--185 {
        padding: 0 185px !important;
    }
    .pt_sm--185 {
        padding-top: 185px !important;
    }
    .pb_sm--185 {
        padding-bottom: 185px !important;
    }
    .pl_sm--185 {
        padding-left: 185px !important;
    }
    .pr_sm--185 {
        padding-right: 185px !important;
    }
    .mt_sm--185 {
        margin-top: 185px !important;
    }
    .ml_sm--185 {
        margin-left: 185px !important;
    }
    .mr_sm--185 {
        margin-right: 185px !important;
    }
    .mb_sm--185 {
        margin-bottom: 185px !important;
    }
    .ptb_sm--190 {
        padding: 190px 0 !important;
    }
    .plr_sm--190 {
        padding: 0 190px !important;
    }
    .pt_sm--190 {
        padding-top: 190px !important;
    }
    .pb_sm--190 {
        padding-bottom: 190px !important;
    }
    .pl_sm--190 {
        padding-left: 190px !important;
    }
    .pr_sm--190 {
        padding-right: 190px !important;
    }
    .mt_sm--190 {
        margin-top: 190px !important;
    }
    .ml_sm--190 {
        margin-left: 190px !important;
    }
    .mr_sm--190 {
        margin-right: 190px !important;
    }
    .mb_sm--190 {
        margin-bottom: 190px !important;
    }
    .ptb_sm--195 {
        padding: 195px 0 !important;
    }
    .plr_sm--195 {
        padding: 0 195px !important;
    }
    .pt_sm--195 {
        padding-top: 195px !important;
    }
    .pb_sm--195 {
        padding-bottom: 195px !important;
    }
    .pl_sm--195 {
        padding-left: 195px !important;
    }
    .pr_sm--195 {
        padding-right: 195px !important;
    }
    .mt_sm--195 {
        margin-top: 195px !important;
    }
    .ml_sm--195 {
        margin-left: 195px !important;
    }
    .mr_sm--195 {
        margin-right: 195px !important;
    }
    .mb_sm--195 {
        margin-bottom: 195px !important;
    }
    .ptb_sm--200 {
        padding: 200px 0 !important;
    }
    .plr_sm--200 {
        padding: 0 200px !important;
    }
    .pt_sm--200 {
        padding-top: 200px !important;
    }
    .pb_sm--200 {
        padding-bottom: 200px !important;
    }
    .pl_sm--200 {
        padding-left: 200px !important;
    }
    .pr_sm--200 {
        padding-right: 200px !important;
    }
    .mt_sm--200 {
        margin-top: 200px !important;
    }
    .ml_sm--200 {
        margin-left: 200px !important;
    }
    .mr_sm--200 {
        margin-right: 200px !important;
    }
    .mb_sm--200 {
        margin-bottom: 200px !important;
    }
    .pl_sm--0 {
        padding-left: 0;
    }
    .pr_sm--0 {
        padding-right: 0;
    }
    .pt_sm--0 {
        padding-top: 0;
    }
    .pb_sm--0 {
        padding-bottom: 0;
    }
    .mr_sm--0 {
        margin-right: 0;
    }
    .ml_sm--0 {
        margin-left: 0;
    }
    .mt_sm--0 {
        margin-top: 0;
    }
    .mb_sm--0 {
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 575px) {
    .ptb_mobile--5 {
        padding: 5px 0 !important;
    }
    .plr_mobile--5 {
        padding: 0 5px !important;
    }
    .pt_mobile--5 {
        padding-top: 5px !important;
    }
    .pb_mobile--5 {
        padding-bottom: 5px !important;
    }
    .pl_mobile--5 {
        padding-left: 5px !important;
    }
    .pr_mobile--5 {
        padding-right: 5px !important;
    }
    .mt_mobile--5 {
        margin-top: 5px !important;
    }
    .mb_mobile--5 {
        margin-bottom: 5px !important;
    }
    .ptb_mobile--10 {
        padding: 10px 0 !important;
    }
    .plr_mobile--10 {
        padding: 0 10px !important;
    }
    .pt_mobile--10 {
        padding-top: 10px !important;
    }
    .pb_mobile--10 {
        padding-bottom: 10px !important;
    }
    .pl_mobile--10 {
        padding-left: 10px !important;
    }
    .pr_mobile--10 {
        padding-right: 10px !important;
    }
    .mt_mobile--10 {
        margin-top: 10px !important;
    }
    .mb_mobile--10 {
        margin-bottom: 10px !important;
    }
    .ptb_mobile--15 {
        padding: 15px 0 !important;
    }
    .plr_mobile--15 {
        padding: 0 15px !important;
    }
    .pt_mobile--15 {
        padding-top: 15px !important;
    }
    .pb_mobile--15 {
        padding-bottom: 15px !important;
    }
    .pl_mobile--15 {
        padding-left: 15px !important;
    }
    .pr_mobile--15 {
        padding-right: 15px !important;
    }
    .mt_mobile--15 {
        margin-top: 15px !important;
    }
    .mb_mobile--15 {
        margin-bottom: 15px !important;
    }
    .ptb_mobile--20 {
        padding: 20px 0 !important;
    }
    .plr_mobile--20 {
        padding: 0 20px !important;
    }
    .pt_mobile--20 {
        padding-top: 20px !important;
    }
    .pb_mobile--20 {
        padding-bottom: 20px !important;
    }
    .pl_mobile--20 {
        padding-left: 20px !important;
    }
    .pr_mobile--20 {
        padding-right: 20px !important;
    }
    .mt_mobile--20 {
        margin-top: 20px !important;
    }
    .mb_mobile--20 {
        margin-bottom: 20px !important;
    }
    .ptb_mobile--25 {
        padding: 25px 0 !important;
    }
    .plr_mobile--25 {
        padding: 0 25px !important;
    }
    .pt_mobile--25 {
        padding-top: 25px !important;
    }
    .pb_mobile--25 {
        padding-bottom: 25px !important;
    }
    .pl_mobile--25 {
        padding-left: 25px !important;
    }
    .pr_mobile--25 {
        padding-right: 25px !important;
    }
    .mt_mobile--25 {
        margin-top: 25px !important;
    }
    .mb_mobile--25 {
        margin-bottom: 25px !important;
    }
    .ptb_mobile--30 {
        padding: 30px 0 !important;
    }
    .plr_mobile--30 {
        padding: 0 30px !important;
    }
    .pt_mobile--30 {
        padding-top: 30px !important;
    }
    .pb_mobile--30 {
        padding-bottom: 30px !important;
    }
    .pl_mobile--30 {
        padding-left: 30px !important;
    }
    .pr_mobile--30 {
        padding-right: 30px !important;
    }
    .mt_mobile--30 {
        margin-top: 30px !important;
    }
    .mb_mobile--30 {
        margin-bottom: 30px !important;
    }
    .ptb_mobile--35 {
        padding: 35px 0 !important;
    }
    .plr_mobile--35 {
        padding: 0 35px !important;
    }
    .pt_mobile--35 {
        padding-top: 35px !important;
    }
    .pb_mobile--35 {
        padding-bottom: 35px !important;
    }
    .pl_mobile--35 {
        padding-left: 35px !important;
    }
    .pr_mobile--35 {
        padding-right: 35px !important;
    }
    .mt_mobile--35 {
        margin-top: 35px !important;
    }
    .mb_mobile--35 {
        margin-bottom: 35px !important;
    }
    .ptb_mobile--40 {
        padding: 40px 0 !important;
    }
    .plr_mobile--40 {
        padding: 0 40px !important;
    }
    .pt_mobile--40 {
        padding-top: 40px !important;
    }
    .pb_mobile--40 {
        padding-bottom: 40px !important;
    }
    .pl_mobile--40 {
        padding-left: 40px !important;
    }
    .pr_mobile--40 {
        padding-right: 40px !important;
    }
    .mt_mobile--40 {
        margin-top: 40px !important;
    }
    .mb_mobile--40 {
        margin-bottom: 40px !important;
    }
    .ptb_mobile--45 {
        padding: 45px 0 !important;
    }
    .plr_mobile--45 {
        padding: 0 45px !important;
    }
    .pt_mobile--45 {
        padding-top: 45px !important;
    }
    .pb_mobile--45 {
        padding-bottom: 45px !important;
    }
    .pl_mobile--45 {
        padding-left: 45px !important;
    }
    .pr_mobile--45 {
        padding-right: 45px !important;
    }
    .mt_mobile--45 {
        margin-top: 45px !important;
    }
    .mb_mobile--45 {
        margin-bottom: 45px !important;
    }
    .ptb_mobile--50 {
        padding: 50px 0 !important;
    }
    .plr_mobile--50 {
        padding: 0 50px !important;
    }
    .pt_mobile--50 {
        padding-top: 50px !important;
    }
    .pb_mobile--50 {
        padding-bottom: 50px !important;
    }
    .pl_mobile--50 {
        padding-left: 50px !important;
    }
    .pr_mobile--50 {
        padding-right: 50px !important;
    }
    .mt_mobile--50 {
        margin-top: 50px !important;
    }
    .mb_mobile--50 {
        margin-bottom: 50px !important;
    }
    .ptb_mobile--55 {
        padding: 55px 0 !important;
    }
    .plr_mobile--55 {
        padding: 0 55px !important;
    }
    .pt_mobile--55 {
        padding-top: 55px !important;
    }
    .pb_mobile--55 {
        padding-bottom: 55px !important;
    }
    .pl_mobile--55 {
        padding-left: 55px !important;
    }
    .pr_mobile--55 {
        padding-right: 55px !important;
    }
    .mt_mobile--55 {
        margin-top: 55px !important;
    }
    .mb_mobile--55 {
        margin-bottom: 55px !important;
    }
    .ptb_mobile--60 {
        padding: 60px 0 !important;
    }
    .plr_mobile--60 {
        padding: 0 60px !important;
    }
    .pt_mobile--60 {
        padding-top: 60px !important;
    }
    .pb_mobile--60 {
        padding-bottom: 60px !important;
    }
    .pl_mobile--60 {
        padding-left: 60px !important;
    }
    .pr_mobile--60 {
        padding-right: 60px !important;
    }
    .mt_mobile--60 {
        margin-top: 60px !important;
    }
    .mb_mobile--60 {
        margin-bottom: 60px !important;
    }
    .ptb_mobile--65 {
        padding: 65px 0 !important;
    }
    .plr_mobile--65 {
        padding: 0 65px !important;
    }
    .pt_mobile--65 {
        padding-top: 65px !important;
    }
    .pb_mobile--65 {
        padding-bottom: 65px !important;
    }
    .pl_mobile--65 {
        padding-left: 65px !important;
    }
    .pr_mobile--65 {
        padding-right: 65px !important;
    }
    .mt_mobile--65 {
        margin-top: 65px !important;
    }
    .mb_mobile--65 {
        margin-bottom: 65px !important;
    }
    .ptb_mobile--70 {
        padding: 70px 0 !important;
    }
    .plr_mobile--70 {
        padding: 0 70px !important;
    }
    .pt_mobile--70 {
        padding-top: 70px !important;
    }
    .pb_mobile--70 {
        padding-bottom: 70px !important;
    }
    .pl_mobile--70 {
        padding-left: 70px !important;
    }
    .pr_mobile--70 {
        padding-right: 70px !important;
    }
    .mt_mobile--70 {
        margin-top: 70px !important;
    }
    .mb_mobile--70 {
        margin-bottom: 70px !important;
    }
    .ptb_mobile--75 {
        padding: 75px 0 !important;
    }
    .plr_mobile--75 {
        padding: 0 75px !important;
    }
    .pt_mobile--75 {
        padding-top: 75px !important;
    }
    .pb_mobile--75 {
        padding-bottom: 75px !important;
    }
    .pl_mobile--75 {
        padding-left: 75px !important;
    }
    .pr_mobile--75 {
        padding-right: 75px !important;
    }
    .mt_mobile--75 {
        margin-top: 75px !important;
    }
    .mb_mobile--75 {
        margin-bottom: 75px !important;
    }
    .ptb_mobile--80 {
        padding: 80px 0 !important;
    }
    .plr_mobile--80 {
        padding: 0 80px !important;
    }
    .pt_mobile--80 {
        padding-top: 80px !important;
    }
    .pb_mobile--80 {
        padding-bottom: 80px !important;
    }
    .pl_mobile--80 {
        padding-left: 80px !important;
    }
    .pr_mobile--80 {
        padding-right: 80px !important;
    }
    .mt_mobile--80 {
        margin-top: 80px !important;
    }
    .mb_mobile--80 {
        margin-bottom: 80px !important;
    }
    .ptb_mobile--85 {
        padding: 85px 0 !important;
    }
    .plr_mobile--85 {
        padding: 0 85px !important;
    }
    .pt_mobile--85 {
        padding-top: 85px !important;
    }
    .pb_mobile--85 {
        padding-bottom: 85px !important;
    }
    .pl_mobile--85 {
        padding-left: 85px !important;
    }
    .pr_mobile--85 {
        padding-right: 85px !important;
    }
    .mt_mobile--85 {
        margin-top: 85px !important;
    }
    .mb_mobile--85 {
        margin-bottom: 85px !important;
    }
    .ptb_mobile--90 {
        padding: 90px 0 !important;
    }
    .plr_mobile--90 {
        padding: 0 90px !important;
    }
    .pt_mobile--90 {
        padding-top: 90px !important;
    }
    .pb_mobile--90 {
        padding-bottom: 90px !important;
    }
    .pl_mobile--90 {
        padding-left: 90px !important;
    }
    .pr_mobile--90 {
        padding-right: 90px !important;
    }
    .mt_mobile--90 {
        margin-top: 90px !important;
    }
    .mb_mobile--90 {
        margin-bottom: 90px !important;
    }
    .ptb_mobile--95 {
        padding: 95px 0 !important;
    }
    .plr_mobile--95 {
        padding: 0 95px !important;
    }
    .pt_mobile--95 {
        padding-top: 95px !important;
    }
    .pb_mobile--95 {
        padding-bottom: 95px !important;
    }
    .pl_mobile--95 {
        padding-left: 95px !important;
    }
    .pr_mobile--95 {
        padding-right: 95px !important;
    }
    .mt_mobile--95 {
        margin-top: 95px !important;
    }
    .mb_mobile--95 {
        margin-bottom: 95px !important;
    }
    .ptb_mobile--100 {
        padding: 100px 0 !important;
    }
    .plr_mobile--100 {
        padding: 0 100px !important;
    }
    .pt_mobile--100 {
        padding-top: 100px !important;
    }
    .pb_mobile--100 {
        padding-bottom: 100px !important;
    }
    .pl_mobile--100 {
        padding-left: 100px !important;
    }
    .pr_mobile--100 {
        padding-right: 100px !important;
    }
    .mt_mobile--100 {
        margin-top: 100px !important;
    }
    .mb_mobile--100 {
        margin-bottom: 100px !important;
    }
}
.slick-gutter-5 {
    margin-left: -5px;
    margin-right: -5px;
}
.slick-gutter-5 .slick-slide {
    padding-left: 5px;
    padding-right: 5px;
}

.slick-gutter-10 {
    margin-left: -10px;
    margin-right: -10px;
}
.slick-gutter-10 .slick-slide {
    padding-left: 10px;
    padding-right: 10px;
}

.slick-gutter-15 {
    margin-left: -15px;
    margin-right: -15px;
}
.slick-gutter-15 .slick-slide {
    padding-left: 15px;
    padding-right: 15px;
}

.slick-gutter-20 {
    margin-left: -20px;
    margin-right: -20px;
}
.slick-gutter-20 .slick-slide {
    padding-left: 20px;
    padding-right: 20px;
}

.slick-gutter-25 {
    margin-left: -25px;
    margin-right: -25px;
}
.slick-gutter-25 .slick-slide {
    padding-left: 25px;
    padding-right: 25px;
}

.slick-gutter-30 {
    margin-left: -30px;
    margin-right: -30px;
}
.slick-gutter-30 .slick-slide {
    padding-left: 30px;
    padding-right: 30px;
}

.slick-gutter-35 {
    margin-left: -35px;
    margin-right: -35px;
}
.slick-gutter-35 .slick-slide {
    padding-left: 35px;
    padding-right: 35px;
}

.slick-gutter-40 {
    margin-left: -40px;
    margin-right: -40px;
}
.slick-gutter-40 .slick-slide {
    padding-left: 40px;
    padding-right: 40px;
}

.slick-gutter-45 {
    margin-left: -45px;
    margin-right: -45px;
}
.slick-gutter-45 .slick-slide {
    padding-left: 45px;
    padding-right: 45px;
}

.slick-gutter-50 {
    margin-left: -50px;
    margin-right: -50px;
}
.slick-gutter-50 .slick-slide {
    padding-left: 50px;
    padding-right: 50px;
}

.slick-gutter-55 {
    margin-left: -55px;
    margin-right: -55px;
}
.slick-gutter-55 .slick-slide {
    padding-left: 55px;
    padding-right: 55px;
}

.slick-gutter-60 {
    margin-left: -60px;
    margin-right: -60px;
}
.slick-gutter-60 .slick-slide {
    padding-left: 60px;
    padding-right: 60px;
}

.slick-gutter-65 {
    margin-left: -65px;
    margin-right: -65px;
}
.slick-gutter-65 .slick-slide {
    padding-left: 65px;
    padding-right: 65px;
}

.slick-gutter-70 {
    margin-left: -70px;
    margin-right: -70px;
}
.slick-gutter-70 .slick-slide {
    padding-left: 70px;
    padding-right: 70px;
}

.slick-gutter-75 {
    margin-left: -75px;
    margin-right: -75px;
}
.slick-gutter-75 .slick-slide {
    padding-left: 75px;
    padding-right: 75px;
}

.slick-gutter-80 {
    margin-left: -80px;
    margin-right: -80px;
}
.slick-gutter-80 .slick-slide {
    padding-left: 80px;
    padding-right: 80px;
}

.slick-gutter-85 {
    margin-left: -85px;
    margin-right: -85px;
}
.slick-gutter-85 .slick-slide {
    padding-left: 85px;
    padding-right: 85px;
}

.slick-gutter-90 {
    margin-left: -90px;
    margin-right: -90px;
}
.slick-gutter-90 .slick-slide {
    padding-left: 90px;
    padding-right: 90px;
}

.slick-gutter-95 {
    margin-left: -95px;
    margin-right: -95px;
}
.slick-gutter-95 .slick-slide {
    padding-left: 95px;
    padding-right: 95px;
}

.slick-gutter-100 {
    margin-left: -100px;
    margin-right: -100px;
}
.slick-gutter-100 .slick-slide {
    padding-left: 100px;
    padding-right: 100px;
}

.mt-dec-30 {
    margin-top: -30px !important;
}

.mt_dec--30 {
    margin-top: -30px !important;
}

.mt-dec-100 {
    margin-top: -100px !important;
}

@media only screen and (max-width: 479px) {
    .small-margin-pricing {
        margin-bottom: 25px !important;
    }
}

@media only screen and (max-width: 479px) {
    .contact-input {
        margin-bottom: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mb_dec--35 {
        margin-bottom: -50px;
    }
}

@media only screen and (max-width: 767px) {
    .mb_dec--35 {
        margin-bottom: -75px;
    }
}
@media only screen and (max-width: 575px) {
    .mb_dec--35 {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 575px) {
    .mt-contact-sm {
        margin-top: 30px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial-pb {
        padding-bottom: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-input {
        padding-bottom: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .contact-input {
        padding-bottom: 30px;
    }
}

.pb_xl--130 {
    padding-bottom: 130px;
}
@media only screen and (max-width: 1199px) {
    .pb_xl--130 {
        padding-bottom: 110px;
    }
}

@media only screen and (max-width: 1199px) {
    .mt_experience {
        margin-top: -10px;
    }
}

.mt_dec--120 {
    margin-top: -120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .plr_md--0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .plr_md--30 {
        padding-left: 30 !important;
        padding-right: 30 !important;
    }
}

@media only screen and (max-width: 400px) {
    .plr--10 {
        padding: 0 10px !important;
    }
}
.padding-contorler-am-slide {
    padding-left: 246px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .padding-contorler-am-slide {
        padding-left: 100px;
    }
}
@media only screen and (max-width: 1199px) {
    .padding-contorler-am-slide {
        padding-left: 100px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .padding-contorler-am-slide {
        padding-left: 50px;
    }
}
@media only screen and (max-width: 767px) {
    .padding-contorler-am-slide {
        padding-left: 15px;
    }
}

.padding-contorler-am-slide-11 {
    padding-left: 246px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .padding-contorler-am-slide-11 {
        padding-left: 100px;
    }
}
@media only screen and (max-width: 1199px) {
    .padding-contorler-am-slide-11 {
        padding-left: 0;
    }
}

.padding-contorler-am-slide-right {
    padding-right: 200px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .padding-contorler-am-slide-right {
        padding-right: 30px;
    }
}
@media only screen and (max-width: 1199px) {
    .padding-contorler-am-slide-right {
        padding-right: 30px;
        padding-top: 50px;
    }
}
@media only screen and (max-width: 767px) {
    .padding-contorler-am-slide-right {
        padding-right: 30px;
        padding-top: 50px;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden] {
    display: none;
}

a {
    color: var(--color-heading);
    text-decoration: none;
    outline: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: var(--color-primary);
}

a:focus {
    outline: none;
}

address {
    margin: 0 0 24px;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

mark {
    background: var(--color-primary);
    color: #ffffff;
}

code,
kbd,
pre,
samp {
    font-size: var(--font-size-b3);
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    color: var(--color-primary);
}

kbd,
ins {
    color: #ffffff;
}

pre {
    font-family: "Raleway", sans-serif;
    font-size: var(--font-size-b3);
    margin: 10px 0;
    overflow: auto;
    padding: 20px;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
    color: var(--color-body);
    background: var(--color-lighter);
}

small {
    font-size: smaller;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

dl {
    margin-top: 0;
    margin-bottom: 10px;
}

dd {
    margin: 0 15px 15px;
}

dt {
    font-weight: bold;
    color: var(--color-heading);
}

menu,
ol,
ul {
    margin: 16px 0;
    padding: 0 0 0 40px;
}

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

li > ul,
li > ol {
    margin: 0;
}

ol ul {
    margin-bottom: 0;
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

form {
    margin: 0;
}

fieldset {
    border: 1px solid var(--color-border);
    margin: 0 2px;
    min-width: inherit;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
    white-space: normal;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    max-width: 100%;
    vertical-align: baseline;
}

button,
input {
    line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    cursor: pointer;
}

button[disabled],
input[disabled] {
    cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
    appearance: textfield;
    padding-right: 2px;
    width: 270px;
}

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

caption,
th,
td {
    font-weight: normal;
}

th {
    font-weight: 500;
    text-transform: uppercase;
}

td,
.wp-block-calendar tfoot td {
    border: 1px solid var(--color-border);
    padding: 7px 10px;
}

del {
    color: #333;
}

ins {
    background: rgba(255, 47, 47, 0.4);
    text-decoration: none;
}

hr {
    background-size: 4px 4px;
    border: 0;
    height: 1px;
    margin: 0 0 24px;
}

table a,
table a:link,
table a:visited {
    text-decoration: underline;
}

dt {
    font-weight: bold;
    margin-bottom: 10px;
}

dd {
    margin: 0 15px 15px;
}

caption {
    caption-side: top;
}

kbd {
    background: var(--heading-color);
}

dfn,
cite,
em {
    font-style: italic;
}

/* BlockQuote  */
blockquote,
q {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

blockquote {
    font-size: var(--font-size-b1);
    font-style: italic;
    font-weight: var(--p-light);
    margin: 24px 40px;
}

blockquote blockquote {
    margin-right: 0;
}

blockquote cite,
blockquote small {
    font-size: var(--font-size-b3);
    font-weight: normal;
}

blockquote strong,
blockquote b {
    font-weight: 700;
}

/* ========= Forms Styles ========= */
input,
button,
select,
textarea {
    background: transparent;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease-out 0s;
    color: var(--color-body);
    width: 100%;
}
input:focus,
input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
    outline: none;
    border-color: var(--color-primary);
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

input {
    height: 40px;
    padding: 0 15px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea {
    font-size: var(--font-size-b2);
    font-weight: 400;
    height: auto;
    line-height: 28px;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0 15px;
    outline: none;
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--radius);
    /* -- Placeholder -- */
}
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
    color: var(--body-color);
    /* Firefox */
    opacity: 1;
}
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--body-color);
}
input[type="text"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--body-color);
}
input[type="text"].p-holder__active,
.input-active input[type="text"],
input[type="text"].input-active,
input[type="password"].p-holder__active,
.input-active input[type="password"],
input[type="password"].input-active,
input[type="email"].p-holder__active,
.input-active input[type="email"],
input[type="email"].input-active,
input[type="number"].p-holder__active,
.input-active input[type="number"],
input[type="number"].input-active,
input[type="tel"].p-holder__active,
.input-active input[type="tel"],
input[type="tel"].input-active,
textarea.p-holder__active,
textarea.input-active {
    border-color: var(--color-primary);
    /* -- Placeholder -- */
}
input[type="text"].p-holder__active::placeholder,
.input-active input[type="text"]::placeholder,
input[type="text"].input-active::placeholder,
input[type="password"].p-holder__active::placeholder,
.input-active input[type="password"]::placeholder,
input[type="password"].input-active::placeholder,
input[type="email"].p-holder__active::placeholder,
.input-active input[type="email"]::placeholder,
input[type="email"].input-active::placeholder,
input[type="number"].p-holder__active::placeholder,
.input-active input[type="number"]::placeholder,
input[type="number"].input-active::placeholder,
input[type="tel"].p-holder__active::placeholder,
.input-active input[type="tel"]::placeholder,
input[type="tel"].input-active::placeholder,
textarea.p-holder__active::placeholder,
textarea.input-active::placeholder {
    color: var(--color-primary);
    /* Firefox */
    opacity: 1;
}
input[type="text"].p-holder__active:-ms-input-placeholder,
.input-active input[type="text"]:-ms-input-placeholder,
input[type="text"].input-active:-ms-input-placeholder,
input[type="password"].p-holder__active:-ms-input-placeholder,
.input-active input[type="password"]:-ms-input-placeholder,
input[type="password"].input-active:-ms-input-placeholder,
input[type="email"].p-holder__active:-ms-input-placeholder,
.input-active input[type="email"]:-ms-input-placeholder,
input[type="email"].input-active:-ms-input-placeholder,
input[type="number"].p-holder__active:-ms-input-placeholder,
.input-active input[type="number"]:-ms-input-placeholder,
input[type="number"].input-active:-ms-input-placeholder,
input[type="tel"].p-holder__active:-ms-input-placeholder,
.input-active input[type="tel"]:-ms-input-placeholder,
input[type="tel"].input-active:-ms-input-placeholder,
textarea.p-holder__active:-ms-input-placeholder,
textarea.input-active:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--color-primary);
}
input[type="text"].p-holder__active::-ms-input-placeholder,
.input-active input[type="text"]::-ms-input-placeholder,
input[type="text"].input-active::-ms-input-placeholder,
input[type="password"].p-holder__active::-ms-input-placeholder,
.input-active input[type="password"]::-ms-input-placeholder,
input[type="password"].input-active::-ms-input-placeholder,
input[type="email"].p-holder__active::-ms-input-placeholder,
.input-active input[type="email"]::-ms-input-placeholder,
input[type="email"].input-active::-ms-input-placeholder,
input[type="number"].p-holder__active::-ms-input-placeholder,
.input-active input[type="number"]::-ms-input-placeholder,
input[type="number"].input-active::-ms-input-placeholder,
input[type="tel"].p-holder__active::-ms-input-placeholder,
.input-active input[type="tel"]::-ms-input-placeholder,
input[type="tel"].input-active::-ms-input-placeholder,
textarea.p-holder__active::-ms-input-placeholder,
textarea.input-active::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--color-primary);
}
input[type="text"].p-holder__error,
.input-error input[type="text"],
input[type="text"].input-error,
input[type="password"].p-holder__error,
.input-error input[type="password"],
input[type="password"].input-error,
input[type="email"].p-holder__error,
.input-error input[type="email"],
input[type="email"].input-error,
input[type="number"].p-holder__error,
.input-error input[type="number"],
input[type="number"].input-error,
input[type="tel"].p-holder__error,
.input-error input[type="tel"],
input[type="tel"].input-error,
textarea.p-holder__error,
textarea.input-error {
    border-color: #f4282d;
    /* -- Placeholder -- */
}
input[type="text"].p-holder__error::placeholder,
.input-error input[type="text"]::placeholder,
input[type="text"].input-error::placeholder,
input[type="password"].p-holder__error::placeholder,
.input-error input[type="password"]::placeholder,
input[type="password"].input-error::placeholder,
input[type="email"].p-holder__error::placeholder,
.input-error input[type="email"]::placeholder,
input[type="email"].input-error::placeholder,
input[type="number"].p-holder__error::placeholder,
.input-error input[type="number"]::placeholder,
input[type="number"].input-error::placeholder,
input[type="tel"].p-holder__error::placeholder,
.input-error input[type="tel"]::placeholder,
input[type="tel"].input-error::placeholder,
textarea.p-holder__error::placeholder,
textarea.input-error::placeholder {
    color: #f4282d;
    /* Firefox */
    opacity: 1;
}
input[type="text"].p-holder__error:-ms-input-placeholder,
.input-error input[type="text"]:-ms-input-placeholder,
input[type="text"].input-error:-ms-input-placeholder,
input[type="password"].p-holder__error:-ms-input-placeholder,
.input-error input[type="password"]:-ms-input-placeholder,
input[type="password"].input-error:-ms-input-placeholder,
input[type="email"].p-holder__error:-ms-input-placeholder,
.input-error input[type="email"]:-ms-input-placeholder,
input[type="email"].input-error:-ms-input-placeholder,
input[type="number"].p-holder__error:-ms-input-placeholder,
.input-error input[type="number"]:-ms-input-placeholder,
input[type="number"].input-error:-ms-input-placeholder,
input[type="tel"].p-holder__error:-ms-input-placeholder,
.input-error input[type="tel"]:-ms-input-placeholder,
input[type="tel"].input-error:-ms-input-placeholder,
textarea.p-holder__error:-ms-input-placeholder,
textarea.input-error:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #f4282d;
}
input[type="text"].p-holder__error::-ms-input-placeholder,
.input-error input[type="text"]::-ms-input-placeholder,
input[type="text"].input-error::-ms-input-placeholder,
input[type="password"].p-holder__error::-ms-input-placeholder,
.input-error input[type="password"]::-ms-input-placeholder,
input[type="password"].input-error::-ms-input-placeholder,
input[type="email"].p-holder__error::-ms-input-placeholder,
.input-error input[type="email"]::-ms-input-placeholder,
input[type="email"].input-error::-ms-input-placeholder,
input[type="number"].p-holder__error::-ms-input-placeholder,
.input-error input[type="number"]::-ms-input-placeholder,
input[type="number"].input-error::-ms-input-placeholder,
input[type="tel"].p-holder__error::-ms-input-placeholder,
.input-error input[type="tel"]::-ms-input-placeholder,
input[type="tel"].input-error::-ms-input-placeholder,
textarea.p-holder__error::-ms-input-placeholder,
textarea.input-error::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #f4282d;
}
input[type="text"].p-holder__error:focus,
.input-error input[type="text"]:focus,
input[type="text"].input-error:focus,
input[type="password"].p-holder__error:focus,
.input-error input[type="password"]:focus,
input[type="password"].input-error:focus,
input[type="email"].p-holder__error:focus,
.input-error input[type="email"]:focus,
input[type="email"].input-error:focus,
input[type="number"].p-holder__error:focus,
.input-error input[type="number"]:focus,
input[type="number"].input-error:focus,
input[type="tel"].p-holder__error:focus,
.input-error input[type="tel"]:focus,
input[type="tel"].input-error:focus,
textarea.p-holder__error:focus,
textarea.input-error:focus {
    border-color: #f4282d;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: var(--color-primary);
}

input[type="checkbox"],
input[type="radio"] {
    opacity: 0;
    position: absolute;
}
input[type="checkbox"] ~ label,
input[type="radio"] ~ label {
    position: relative;
    font-size: 12px;
    line-height: 17px;
    color: var(--color-body);
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
}
input[type="checkbox"] ~ label::before,
input[type="radio"] ~ label::before {
    content: " ";
    position: absolute;
    top: 1 px;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #5d5d7e;
    border-radius: 2px;
    transition: all 0.3s;
    border-radius: 2px;
}
input[type="checkbox"] ~ label::after,
input[type="radio"] ~ label::after {
    content: " ";
    position: absolute;
    top: 16%;
    left: 2px;
    width: 10px;
    height: 6px;
    background-color: transparent;
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-radius: 2px;
    transform: rotate(-45deg);
    opacity: 0;
    transition: all 0.3s;
}
input[type="checkbox"]:checked ~ label::after,
input[type="radio"]:checked ~ label::after {
    opacity: 1;
}

input:checked ~ .rn-check-box-label::before {
    background: var(--color-primary) !important;
}

input[type="radio"] ~ label::before {
    border-radius: 50%;
}
input[type="radio"] ~ label::after {
    width: 8px;
    height: 8px;
    left: 3px;
    background: #fff;
    border-radius: 50%;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
}
.form-group input {
    border: 0 none;
    border-radius: 4px;
    height: 50px;
    font-size: var(--font-size-b2);
    transition: var(--transition);
    padding: 0 20px;
    background-color: var(--color-lightest);
    border: 1px solid transparent;
    transition: var(--transition);
}
.form-group input:focus {
    border-color: var(--color-primary);
    box-shadow: none;
}
.form-group textarea {
    min-height: 160px;
    border: 0 none;
    border-radius: 4px;
    resize: none;
    padding: 15px;
    font-size: var(--font-size-b2);
    transition: var(--transition);
    background-color: var(--color-lightest);
    border: 1px solid transparent;
}
.form-group textarea:focus {
    border-color: var(--color-primary);
}

input[type="submit"] {
    width: auto;
    padding: 0 30px;
    border-radius: 500px;
    display: inline-block;
    font-weight: 500;
    transition: 0.3s;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: var(--p-medium);
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b3);
    height: 50px;
    border: 2px solid var(--color-primary);
    transition: var(--transition);
}
input[type="submit"]:hover {
    background: transparent;
    color: var(--color-primary);
    transform: translateY(-5px);
}

/*==============================
 *  Utilities
=================================*/
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.fix {
    overflow: hidden;
}

.slick-initialized .slick-slide {
    margin-bottom: -10px;
}

.slick-gutter-15 {
    margin: -30px -15px;
}
.slick-gutter-15 .slick-slide {
    padding: 30px 15px;
}

iframe {
    width: 100%;
}

/*===============================
    Background Color 
=================================*/
.bg-color-primary {
    background: var(--color-primary);
}

.bg-color-secondary {
    background: var(--color-secondary);
}

.bg-color-tertiary {
    background: var(--color-tertiary);
}

.bg-color-gray {
    background: var(--color-gray);
}

.bg-color-white {
    background: #ffffff;
}

.bg-color-black {
    background: #1a1a1a;
}

.bg-color-extra03 {
    background: var(--color-extra03);
}

/*===========================
Background Image 
=============================*/
.bg_image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.bg_image--1 {
    background-image: url(../images/bg/bg-image-1.html);
}

.bg_image--2 {
    background-image: url(../images/bg/bg-image-2.html);
}

.bg_image--3 {
    background-image: url(../images/bg/bg-image-3.html);
}

.bg_image--4 {
    background-image: url(../images/bg/bg-image-4.html);
}

.bg_image--5 {
    background-image: url(../images/bg/bg-image-5.html);
}

.bg_image--6 {
    background-image: url(../images/bg/bg-image-6.html);
}

.bg_image--7 {
    background-image: url(../images/bg/bg-image-7.html);
}

.bg_image--8 {
    background-image: url(../images/bg/bg-image-8.html);
}

.bg_image--9 {
    background-image: url(../images/bg/bg-image-9.html);
}

.bg_image--10 {
    background-image: url(../images/bg/bg-image-10.html);
}

.bg_image--11 {
    background-image: url(../images/bg/bg-image-11.html);
}

.bg_image--12 {
    background-image: url(../images/bg/bg-image-12.html);
}

.bg_image--13 {
    background-image: url(../images/bg/bg-image-13.html);
}

.bg_image--14 {
    background-image: url(../images/bg/bg-image-14.html);
}

.bg_image--15 {
    background-image: url(../images/bg/bg-image-15.html);
}

.bg_image--16 {
    background-image: url(../images/bg/bg-image-16.html);
}

.bg_image--17 {
    background-image: url(../images/bg/bg-image-17.html);
}

.bg_image--18 {
    background-image: url(../images/bg/bg-image-18.html);
}

.bg_image--19 {
    background-image: url(../images/bg/bg-image-19.html);
}

.bg_image--20 {
    background-image: url(../images/bg/bg-image-20.html);
}

.bg_image--21 {
    background-image: url(../images/bg/bg-image-21.html);
}

.bg_image--22 {
    background-image: url(../images/bg/bg-image-22.html);
}

.bg_image--23 {
    background-image: url(../images/bg/bg-image-23.html);
}

.bg_image--24 {
    background-image: url(../images/bg/bg-image-24.html);
}

.bg_image--25 {
    background-image: url(../images/bg/bg-image-25.html);
}

.bg_image--26 {
    background-image: url(../images/bg/bg-image-26.html);
}

.bg_image--27 {
    background-image: url(../images/bg/bg-image-27.html);
}

.bg_image--28 {
    background-image: url(../images/bg/bg-image-28.html);
}

.bg_image--29 {
    background-image: url(../images/bg/bg-image-29.html);
}

.bg_image--30 {
    background-image: url(../images/bg/bg-image-30.html);
}

.bg_image--31 {
    background-image: url(../images/bg/bg-image-31.html);
}

.bg_image--32 {
    background-image: url(../images/bg/bg-image-32.html);
}

.bg_image--33 {
    background-image: url(../images/bg/bg-image-33.html);
}

.bg_image--34 {
    background-image: url(../images/bg/bg-image-34.html);
}

.bg_image--35 {
    background-image: url(../images/bg/bg-image-35.html);
}

.bg_image--36 {
    background-image: url(../images/bg/bg-image-36.html);
}

.bg_image--37 {
    background-image: url(../images/bg/bg-image-37.html);
}

.bg_image--38 {
    background-image: url(../images/bg/bg-image-38.html);
}

.bg_image--39 {
    background-image: url(../images/bg/bg-image-39.html);
}

.bg_image--40 {
    background-image: url(../images/bg/bg-image-40.html);
}

.bg_tr-image--1 {
    background-image: url(../images/bg/bg-image-41.html) !important;
    background-size: cover !important;
}

.bg_tr-image--2 {
    background-image: url(../images/bg/bg-image-42.html) !important;
    background-size: cover !important;
}

.bg_tr-image--3 {
    background-image: url(../images/bg/bg-image-43.html) !important;
    background-size: cover !important;
}

.bg_tr-image--4 {
    background-image: url(../images/bg/bg-image-44.html) !important;
    background-size: cover !important;
}

.bg_tr-image--5 {
    background-image: url(../images/bg/bg-image-45.html) !important;
    background-size: cover !important;
}

.bg_tr-image--6 {
    background-image: url(../images/bg/bg-image-46.html) !important;
    background-size: cover !important;
}

.bg_tr-image--7 {
    background-image: url(../images/bg/bg-image-47.html) !important;
    background-size: cover !important;
}

.bg_tr-image--8 {
    background-image: url(../images/bg/bg-image-48.html) !important;
    background-size: cover !important;
}

.bg_tr-image--9 {
    background-image: url(../images/bg/bg-image-49.html) !important;
    background-size: cover !important;
}

.bg_tr-image--10 {
    background-image: url(../images/bg/bg-image-50.html) !important;
    background-size: cover !important;
}

.bg_tr-image--11 {
    background-image: url(../images/bg/bg-image-51.html) !important;
    background-size: cover !important;
}

.bg_tr-image--12 {
    background-image: url(../images/bg/bg-image-52.html) !important;
    background-size: cover !important;
}

.bg_tr-image--13 {
    background-image: url(../images/bg/bg-image-53.html) !important;
    background-size: cover !important;
}

.bg_tr-image--14 {
    background-image: url(../images/bg/bg-image-54.html) !important;
    background-size: cover !important;
}

.bg_tr-image--15 {
    background-image: url(../images/bg/bg-image-55.html) !important;
    background-size: cover !important;
}

.bg_tr-image--16 {
    background-image: url(../images/bg/bg-image-56.html) !important;
    background-size: cover !important;
}

.bg_tr-image--17 {
    background-image: url(../images/bg/bg-image-57.html) !important;
    background-size: cover !important;
}

.bg_tr-image--18 {
    background-image: url(../images/bg/bg-image-58.html) !important;
    background-size: cover !important;
}

.bg_tr-image--19 {
    background-image: url(../images/bg/bg-image-59.html) !important;
    background-size: cover !important;
}

.bg_tr-image--20 {
    background-image: url(../images/bg/bg-image-60.html) !important;
    background-size: cover !important;
}

/* Height and width */
.fullscreen {
    min-height: 980px;
    width: 100%;
}

/*===================
Custom Row
======================*/
.row--0 {
    margin-left: 0px;
    margin-right: 0px;
}
.row--0 > [class*="col"] {
    padding-left: 0px;
    padding-right: 0px;
}

.row--5 {
    margin-left: -5px;
    margin-right: -5px;
}
.row--5 > [class*="col"] {
    padding-left: 5px;
    padding-right: 5px;
}

.row--10 {
    margin-left: -10px;
    margin-right: -10px;
}
.row--10 > [class*="col"] {
    padding-left: 10px;
    padding-right: 10px;
}

.row--20 {
    margin-left: -20px;
    margin-right: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--20 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--20 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--20 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (max-width: 767px) {
    .row--20 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
}
.row--20 > [class*="col"],
.row--20 > [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--20 > [class*="col"],
    .row--20 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--20 > [class*="col"],
    .row--20 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--20 > [class*="col"],
    .row--20 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
@media only screen and (max-width: 767px) {
    .row--20 > [class*="col"],
    .row--20 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.row--25 {
    margin-left: -25px;
    margin-right: -25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--25 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--25 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--25 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (max-width: 767px) {
    .row--25 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
}
.row--25 > [class*="col"],
.row--25 > [class*="col-"] {
    padding-left: 25px;
    padding-right: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--25 > [class*="col"],
    .row--25 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--25 > [class*="col"],
    .row--25 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--25 > [class*="col"],
    .row--25 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
@media only screen and (max-width: 767px) {
    .row--25 > [class*="col"],
    .row--25 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.row--30 {
    margin-left: -30px;
    margin-right: -30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--30 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--30 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--30 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (max-width: 767px) {
    .row--30 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
}
.row--30 > [class*="col"],
.row--30 > [class*="col-"] {
    padding-left: 30px;
    padding-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--30 > [class*="col"],
    .row--30 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--30 > [class*="col"],
    .row--30 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--30 > [class*="col"],
    .row--30 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
@media only screen and (max-width: 767px) {
    .row--30 > [class*="col"],
    .row--30 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.row--45 {
    margin-left: -45px;
    margin-right: -45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--45 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--45 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--45 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (max-width: 767px) {
    .row--45 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
}
.row--45 > [class*="col"],
.row--45 > [class*="col-"] {
    padding-left: 45px;
    padding-right: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--45 > [class*="col"],
    .row--45 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--45 > [class*="col"],
    .row--45 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--45 > [class*="col"],
    .row--45 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
@media only screen and (max-width: 767px) {
    .row--45 > [class*="col"],
    .row--45 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.row--40 {
    margin-left: -40px;
    margin-right: -40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--40 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--40 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--40 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (max-width: 767px) {
    .row--40 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
}
.row--40 > [class*="col"],
.row--40 > [class*="col-"] {
    padding-left: 40px;
    padding-right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--40 > [class*="col"],
    .row--40 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--40 > [class*="col"],
    .row--40 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--40 > [class*="col"],
    .row--40 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
@media only screen and (max-width: 767px) {
    .row--40 > [class*="col"],
    .row--40 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.row--60 {
    margin-left: -60px;
    margin-right: -60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--60 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--60 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--60 {
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (max-width: 767px) {
    .row--60 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
}
.row--60 > [class*="col"],
.row--60 > [class*="col-"] {
    padding-left: 60px;
    padding-right: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .row--60 > [class*="col"],
    .row--60 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .row--60 > [class*="col"],
    .row--60 > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .row--60 > [class*="col"],
    .row--60 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
@media only screen and (max-width: 767px) {
    .row--60 > [class*="col"],
    .row--60 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/*===========================
    Input Placeholder
=============================*/
input:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*=============================
	Overlay styles 
==============================*/
[data-overlay],
[data-black-overlay],
[data-white-overlay] {
    position: relative;
    z-index: 2;
}

[data-overlay] > div,
[data-overlay] > *,
[data-black-overlay] > div,
[data-black-overlay] > *,
[data-white-overlay] > div,
[data-white-overlay] > * {
    position: relative;
    z-index: 2;
}

[data-overlay]:before,
[data-black-overlay]:before,
[data-white-overlay]:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

[data-overlay]:before {
    background: var(--color-primary);
}

[data-black-overlay]:before {
    background-color: #000000;
}

[data-white-overlay]:before {
    background-color: #ffffff;
}

[data-overlay="1"]:before,
[data-black-overlay="1"]:before,
[data-white-overlay="1"]:before {
    opacity: 0.1;
}

[data-overlay="2"]:before,
[data-black-overlay="2"]:before,
[data-white-overlay="2"]:before {
    opacity: 0.2;
}

[data-overlay="3"]:before,
[data-black-overlay="3"]:before,
[data-white-overlay="3"]:before {
    opacity: 0.3;
}

[data-overlay="4"]:before,
[data-black-overlay="4"]:before,
[data-white-overlay="4"]:before {
    opacity: 0.4;
}

[data-overlay="5"]:before,
[data-black-overlay="5"]:before,
[data-white-overlay="5"]:before {
    opacity: 0.5;
}

[data-overlay="6"]:before,
[data-black-overlay="6"]:before,
[data-white-overlay="6"]:before {
    opacity: 0.6;
}

[data-overlay="7"]:before,
[data-black-overlay="7"]:before,
[data-white-overlay="7"]:before {
    opacity: 0.7;
}

[data-overlay="8"]:before,
[data-black-overlay="8"]:before,
[data-white-overlay="8"]:before {
    opacity: 0.8;
}

[data-overlay="9"]:before,
[data-black-overlay="9"]:before,
[data-white-overlay="9"]:before {
    opacity: 0.9;
}

[data-overlay="10"]:before,
[data-black-overlay="10"]:before,
[data-white-overlay="10"]:before {
    opacity: 1;
}

/*------------------------------
    Scroll Up 
--------------------------------*/
#scrollUp {
    width: 70px;
    height: 80px;
    right: 100px;
    bottom: 60px;
    text-align: center;
    z-index: 9811 !important;
    text-decoration: none;
    background: #fff;
    line-height: 80px;
    color: #757589;
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
    display: inline-block;
    background: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #scrollUp {
        right: 20px;
        bottom: 40px;
    }
}
@media only screen and (max-width: 767px) {
    #scrollUp {
        right: 20px;
        bottom: 40px;
    }
}
#scrollUp::before {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 2, 72, 0.1);
    content: "";
    position: absolute;
    z-index: -1;
    transform-style: preserve-3d;
    transform: rotateY(-10deg);
    filter: blur(50px);
}
#scrollUp::after {
    background: #ffffff;
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform-style: preserve-3d;
    transform: rotateY(-10deg);
}
@media only screen and (max-width: 767px) {
    #scrollUp {
        right: 20px;
        bottom: 30px;
        width: 50px;
        height: 60px;
        line-height: 60px;
    }
}
#scrollUp span.text {
    position: relative;
    display: inline-block;
    margin-top: 7px;
}
@media only screen and (max-width: 767px) {
    #scrollUp span.text {
        margin-top: 3px;
    }
}
#scrollUp span.text::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 7px 5px;
    border-color: transparent transparent var(--color-primary) transparent;
    position: absolute;
    content: "";
    left: 50%;
    top: 21%;
    transform: translateX(-50%);
}
#scrollUp:hover span.text {
    color: var(--color-primary);
}

body {
    scroll-behavior: auto;
    background: #fff;
    overflow-x: hidden;
}

@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1337px;
    }
}
.container-2 {
    max-width: 1520px;
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

.title-animation {
    background-size: 201% 1px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(50%, #000),
        color-stop(50%, transparent)
    );
    background-image: linear-gradient(to right, #000 50%, transparent 50%);
    -webkit-transition: all 500ms;
    transition: all 500ms;
}
.title-animation:hover {
    background-position: 0% 100%;
    color: #000;
}

p {
    font-size: 16px;
    line-height: 26px;
}

a.pe-none {
    font-size: 14px;
    font-weight: 500;
}

.img-transition-scale {
    overflow: hidden;
}
.img-transition-scale:hover a img {
    transform: scale(110%);
}
.img-transition-scale a {
    display: block;
    width: 100%;
}
.img-transition-scale a img {
    transform: scale(100%);
    transition: all 0.4s;
}

.eblog-get-in-tuch {
    margin-bottom: 40px;
}
.eblog-get-in-tuch h4 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    position: relative;
}
.eblog-get-in-tuch h4::after {
    content: "/";
    font-family: "Font Awesome 6 Pro" !important;
    position: absolute;
    font-size: 16px;
    margin-left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.color-one {
    color: var(--color-primary) !important;
}

.color-two {
    color: var(--color-primary-2) !important;
}

.color-three {
    color: var(--color-primary-3) !important;
}

.color-four {
    color: var(--color-primary-4) !important;
}

.color-dark {
    color: var(--color-heading-1) !important;
}

.tp-btn {
    line-height: 1;
    padding: 12px 24px;
    display: block;
    max-width: max-content;
}

.btn-secondary {
    background: var(--color-primary-2);
    border-radius: 4px;
    transition: var(--transition);
}
.btn-secondary:hover {
    background: var(--color-heading-1);
    color: var(--color-white);
}

.tp-white svg path {
    transition: all ease-in 0.3s;
}
.tp-white:hover {
    background-color: #fff;
    transition: all ease-in 0.3s;
    color: #000 !important;
}
.tp-white:hover svg path {
    fill: #000;
}

.btn-primary {
    background: var(--color-primary);
    transition: all ease-in 0.3s;
}
.btn-primary:hover {
    background-color: #181823 !important;
    color: #fff;
    transition: all ease-in 0.3s;
}

/*------------------------
    Header Sticky 
--------------------------*/
/* Start Sticky Menu */
.eblog-header-area.header-sticky {
    position: fixed;
    width: 100%;
    left: 0;
    animation: stickyanimations 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    top: 0;
    background-color: #ffffff;
    z-index: 99;
    -webkit-box-shadow: 0px 15px 50px 0px rgba(11, 11, 11, 0.08);
    box-shadow: 0px 15px 50px 0px rgba(11, 11, 11, 0.08);
    transition: 0.3s;
}
.eblog-header-area.header-sticky.header-three {
    position: fixed;
    background: var(--color-heading-1);
}

.eblog-header-area .eblog-header-top.remove-content {
    display: none;
}

@keyframes stickyanimations {
    0% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}
/* End Sticky Menu */
.home-four .image-area {
    border-radius: 10px;
}

.col-lg-20 {
    width: 20%;
    float: left;
}

.col-xs-20,
.col-sm-20,
.col-md-20,
.col-lg-20 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
    padding-top: 15px;
}

@media (min-width: 1200px) {
    .col-lg-20 {
        width: 20%;
        float: left;
    }
}
@media only screen and (max-width: 1199px) {
    .col-lg-20 {
        width: 33%;
        float: left;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .col-lg-20 {
        width: 50%;
        float: left;
    }
}
@media only screen and (max-width: 767px) {
    .col-lg-20 {
        width: 50%;
        float: left;
    }
}
@media only screen and (max-width: 575px) {
    .col-lg-20 {
        width: 50%;
        float: left;
    }
}
@media only screen and (max-width: 479px) {
    .col-lg-20 {
        width: 100%;
        float: left;
    }
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #5d666f !important;
    opacity: 1 !important; /* Firefox */
    font-size: 16px;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #5d666f !important;
    font-size: 16px;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #5d666f !important;
    font-size: 16px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.bg-five {
    background: var(--color-primary-4) !important;
}

.bg-1 {
    background: #e00a0a;
}

.bg-secondary {
    background: #1d2027 !important;
}

.bg-white {
    background: #ffffff;
}

.bg-footer-one {
    background-repeat: no-repeat;
    background-size: cover;
    background: #0e1422;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.bg-footer-one::after {
    content: "";
    position: absolute;
    background-image: url(../images/footer/h1-shape/01.html);
    height: 450px;
    width: 450px;
    right: -3%;
    background-repeat: no-repeat;
    bottom: -5%;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .bg-footer-one::after {
        right: -15%;
    }
}
@media only screen and (max-width: 1199px) {
    .bg-footer-one::after {
        right: -15%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bg-footer-one::after {
        left: 53%;
    }
}
.bg-footer-one::before {
    content: "";
    position: absolute;
    background-image: url(../images/footer/h1-shape/02.html);
    height: 800px;
    width: 823px;
    left: -16%;
    background-position: center;
    bottom: -13%;
    background-size: cover;
    z-index: -1;
    background-repeat: no-repeat;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .bg-footer-one::before {
        left: -25%;
    }
}
@media only screen and (max-width: 1199px) {
    .bg-footer-one::before {
        left: -25%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bg-footer-one::before {
        left: -48%;
    }
}
.bg-footer-one .bg-shape-f1 {
    position: relative;
    z-index: 1;
}
.bg-footer-one .bg-shape-f1::after {
    position: absolute;
    background-image: url(../images/footer/h1-shape/03.html);
    content: "";
    height: 500px;
    width: 523px;
    left: -25%;
    top: -20%;
    z-index: -1;
    background-repeat: no-repeat;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .bg-footer-one .bg-shape-f1::after {
        left: -30%;
        top: -32%;
    }
}
@media only screen and (max-width: 1199px) {
    .bg-footer-one .bg-shape-f1::after {
        left: -30%;
        top: -32%;
    }
}

.over_link {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9;
    left: 0;
    top: 0;
}

.section-title-area {
    margin-bottom: 50px;
}

.title-area span {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #0e76a8;
}
.title-area .title {
    margin-top: 10px;
    margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
    .title-area .title {
        margin-bottom: 15px;
    }
}

.bg-light {
    background: rgb(236, 242, 246);
}

.photographer-home.dark-version .header--sticky.sticky {
    background: #2f2d24 !important;
}

.header--sticky {
    transition: 0.3s;
    top: 0;
    z-index: 5;
    position: relative;
}
.header--sticky.sticky {
    position: fixed !important;
    top: 0;
    display: block;
    backdrop-filter: blur(9px);
    width: 100%;
    box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
    background: #fff !important;
    z-index: 999;
}

.bg_dark {
    background: #1c1c1c;
}

.g-6,
.gy-6 {
    --bs-gutter-y: 4rem !important;
}

.g-6,
.gx-6 {
    --bs-gutter-x: 4rem !important;
}

.g-24,
.gy-24 {
    --bs-gutter-y: 2.4rem !important;
}

.g-24,
.gx-24 {
    --bs-gutter-x: 2.4rem !important;
}

.h2-title-area {
    position: relative;
    z-index: 4;
}
.h2-title-area::after {
    position: absolute;
    content: "";
    height: 99%;
    width: 100%;
    top: 4px;
    z-index: -1;
    left: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        #ecf0f3 100%
    );
}
.h2-title-area span.bg-text {
    position: absolute;
    z-index: 1;
    font-weight: 800;
    font-size: 120px;
    z-index: -1;
    left: 0;
    top: 54px;
    color: #fff;
    text-transform: uppercase;
    max-width: max-content;
    width: max-content;
}
.h2-title-area .pre-title {
    display: inline-block;
    padding: 2px 15px;
    border: 1px solid #141414;
    border-radius: 33px;
    color: #141414;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}
.h2-title-area .title {
    margin-top: 30px;
    font-size: 48px;
}
@media only screen and (max-width: 575px) {
    .h2-title-area .title {
        font-size: 27px;
    }
}

.photographer-home.dark-version .h2-title-area .pre-title {
    border: 1px solid #d3d3d3;
    border-radius: 33px;
    color: #d3d3d3;
}

.h2-title-area.text-center {
    position: relative;
    z-index: 4;
}
.h2-title-area.text-center::after {
    position: absolute;
    content: "";
    height: 71%;
    width: 100%;
    top: 0;
    z-index: -1;
    left: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgb(236, 240, 243) 100%
    );
}
.h2-title-area.text-center span.bg-text {
    position: absolute;
    z-index: 1;
    font-weight: 800;
    font-size: 120px;
    z-index: -1;
    left: 50%;
    top: 15px;
    color: #fff;
    text-transform: uppercase;
    transform: translateX(-50%);
    max-width: max-content;
    width: max-content;
}
@media only screen and (max-width: 767px) {
    .h2-title-area.text-center span.bg-text {
        font-size: 62px;
    }
}
.h2-title-area.text-center .pre-title {
    display: inline-block;
    padding: 2px 15px;
    border: 1px solid #141414;
    border-radius: 33px;
    color: #141414;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}
.h2-title-area.text-center .title {
    margin-top: 30px;
    font-size: 48px;
}
@media only screen and (max-width: 767px) {
    .h2-title-area.text-center .title {
        font-size: 27px;
    }
}

.title-area-h3 .pre-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: #74787c;
}
.title-area-h3 .title {
    font-weight: 600;
    font-size: 60px;
    line-height: 82px;
    color: #141414;
}
@media only screen and (max-width: 479px) {
    .title-area-h3 .title {
        line-height: 44px;
    }
}
@media only screen and (max-width: 767px) {
    .title-area-h3 .title {
        font-size: 36px;
    }
}
.title-area-h3 .title span {
    color: #ff390e;
}

.text-btn {
    margin: auto;
    display: block;
    max-width: max-content;
    text-decoration: underline !important;
}

.title-area-home-4 .pre-title {
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px #d3dae1;
    border-radius: 100px;
    padding: 3px 24px;
    text-transform: uppercase;
    color: #141414;
    font-weight: 700;
}
.title-area-home-4 .title {
    font-weight: 800;
    font-size: 48px;
    line-height: 66px;
    color: #141414;
    margin-top: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .title-area-home-4 .title {
        font-size: 39px;
        line-height: 61px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .title-area-home-4 .title {
        font-size: 30px;
        line-height: 39px;
    }
}
@media only screen and (max-width: 767px) {
    .title-area-home-4 .title {
        font-size: 26px;
        line-height: 42px;
    }
}
@media only screen and (max-width: 479px) {
    .title-area-home-4 .title {
        font-size: 20px;
        line-height: 33px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .lp-contact-area.four {
        background: transparent;
    }
}
@media only screen and (max-width: 767px) {
    .lp-contact-area.four {
        background: transparent;
    }
}

.eblog-breadcrumb-area {
    padding: 24px 0;
    background: rgba(107, 114, 128, 0.1);
}
.eblog-breadcrumb-area .breadcrumb-inner .meta {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.eblog-breadcrumb-area .breadcrumb-inner .meta a {
    color: var(--color-heading-1);
    font-size: 14px;
    line-height: 1;
}
.eblog-breadcrumb-area .breadcrumb-inner .meta a.last {
    color: #6b7280;
}

.eblog-breadcrumb-area-2 {
    background-image: url("../images/breadcrumb/breadcrumb.html");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 65px 0;
}
.eblog-breadcrumb-area-2 .eblog-author-content {
    display: flex;
    gap: 30px;
}
.eblog-breadcrumb-area-2 .eblog-author-content h5 {
    margin-bottom: 15px;
    font-size: 25px;
    line-height: 35px;
}
.eblog-breadcrumb-area-2 .eblog-author-content p {
    margin-bottom: 15px;
}
.eblog-breadcrumb-area-2
    .eblog-author-content
    .eblog-footer-social-media
    a:first-child {
    margin-left: -5px;
}
.eblog-breadcrumb-area-2 .eblog-author-content .eblog-footer-social-media a {
    font-size: 16px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height: 35px;
    border: 1px solid #5e5e5e;
    text-align: center;
    display: inline-block;
    margin: 0 5px;
    transition: all 0.3s ease;
    transform: scale(0.9);
    position: relative;
}
.eblog-breadcrumb-area-2 .eblog-author-content .eblog-footer-social-media a i {
    color: #5e5e5e;
}
.eblog-breadcrumb-area-2
    .eblog-author-content
    .eblog-footer-social-media
    a:hover {
    background-color: var(--color-primary);
    border: 1px solid transparent;
}
.eblog-breadcrumb-area-2
    .eblog-author-content
    .eblog-footer-social-media
    a:hover
    i {
    color: #fff;
}

/* Category 3 Style blog Shep */
.eblog-ct-style-3-shep {
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: -45px;
    transform: translate(-50%);
}
.eblog-ct-style-3-shep p {
    font-size: 14px;
    line-height: 22px;
    background-color: #000;
    color: #fff;
    padding: 8px 18px;
    text-align: center;
    text-transform: uppercase;
}

.lp-dark-light {
    transition: all 0.4s;
    cursor: pointer;
    font-size: 20px;
}
.lp-dark-light i {
    transition: all 0.4s;
}

[data-theme="light"] .lp-dark-light i.fa-sun {
    display: none;
}
[data-theme="light"] .lp-dark-light i.fa-moon {
    display: block;
}

[data-theme="dark"] .lp-dark-light i.fa-sun {
    display: block;
}
[data-theme="dark"] .lp-dark-light i.fa-moon {
    display: none;
}

.search-input-area {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 200px 0;
    background: #fff;
    -webkit-box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
    box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
    z-index: 1100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.search-input-area.show {
    visibility: visible;
    -webkit-transform: inherit;
    transform: inherit;
    opacity: 1;
}
.search-input-area .search-input-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    justify-content: center;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.search-input-area .search-input-inner .input-div {
    width: 80%;
    position: relative;
}
.search-input-area .search-input-inner input {
    background: none;
    border: 1px solid rgba(94, 94, 94, 0.6);
    padding: 15px 25px;
    border-radius: 0;
    width: 100%;
    font-size: 15px;
    position: relative;
}
.search-input-area .search-input-inner input:focus {
    border: 1px solid var(--color-primary);
}
.search-input-area .search-input-inner .search-close-icon {
    width: 70px;
}
.search-input-area .search-input-inner .search-close-icon i {
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    background: var(--color-primary);
    width: 100%;
    height: 70px;
    line-height: 70px;
    text-align: center;
}

.home-one .lp-darkmode {
    position: relative;
}

.home-two .lp-darkmode {
    position: relative;
}

.home-three .eblog-site-main-logo-menu-social .eblog-home-1-social-media-icons {
    text-align: right;
    display: flex;
    justify-content: end;
    align-items: center;
}
.home-three
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    .lp-darkmode {
    position: relative;
    margin-left: 40px;
}
@media (max-width: 1199px) {
    .home-three
        .eblog-site-main-logo-menu-social
        .eblog-home-1-social-media-icons
        .lp-darkmode {
        margin-left: 30px;
    }
}
@media (max-width: 991px) {
    .home-three
        .eblog-site-main-logo-menu-social
        .eblog-home-1-social-media-icons
        .lp-darkmode {
        margin-left: 0;
        margin-right: 40px;
    }
}
@media (max-width: 400px) {
    .home-three
        .eblog-site-main-logo-menu-social
        .eblog-home-1-social-media-icons
        .lp-darkmode {
        margin-left: 0;
        margin-right: 30px;
    }
}
.home-three
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    .lp-darkmode::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 25px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    left: -20px;
    background-color: #fff;
}
@media (max-width: 991px) {
    .home-three
        .eblog-site-main-logo-menu-social
        .eblog-home-1-social-media-icons
        .lp-darkmode::before {
        display: none;
    }
}
.home-three
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    .lp-darkmode
    i {
    color: #ffffff;
}
.home-three
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    .eblog-header-top-menu-bar {
    position: relative;
}
.home-three
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    .eblog-header-top-menu-bar::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 25px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    left: -20px;
    background-color: #fff;
}
@media (max-width: 400px) {
    .home-three
        .eblog-site-main-logo-menu-social
        .eblog-home-1-social-media-icons
        .eblog-header-top-menu-bar::before {
        left: -15px;
    }
}
.home-three
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    .eblog-header-top-menu-bar
    svg
    path {
    fill: #ffffff;
}

.home-four .lp-darkmode {
    position: relative;
}
.home-four .lp-darkmode i {
    color: #ffffff;
}

.innerpage .eblog-site-main-logo-menu-social .eblog-home-1-social-media-icons {
    text-align: right;
    display: flex;
    justify-content: end;
    align-items: center;
}
.innerpage
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    ul {
    margin-right: 0;
}
.innerpage
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    .lp-darkmode {
    position: relative;
}
.innerpage
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    .lp-darkmode::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 25px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    left: -20px;
    background-color: #181823;
}
.innerpage
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    .lp-darkmode
    i {
    color: #181823;
}
.innerpage .eblog-header-top {
    padding: 10px 0;
    background: #181823;
}
.innerpage .eblog-header-top .eblog-meta-jobs-text span {
    color: #ffffff;
}
.innerpage .eblog-header-top .eblog-day-name,
.innerpage .eblog-header-top .eblog-date-time {
    color: #ffffff;
}
.innerpage .eblog-header-top .eblog-subscribe {
    position: relative;
}
.innerpage .eblog-header-top .eblog-subscribe a {
    padding: 5px 0;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #ffffff;
    color: #ffffff;
}
.innerpage .eblog-header-top .eblog-subscribe a:hover {
    background: none;
    border-width: 0 0 1px 0 !important;
    border-color: #ffffff !important;
}
.innerpage .eblog-header-top .eblog-subscribe a i {
    margin-right: 5px;
}
.innerpage .eblog-header-top .lp-dark-light i {
    color: #ffffff;
}
.innerpage .eblog-header-top .eblog-header-top-search-btn::after {
    background-color: rgba(255, 255, 255, 0.8) !important;
}
.innerpage .eblog-header-top .eblog-header-top-menu-bar svg path {
    fill: #ffffff;
}

html[data-theme="dark"]
    .innerpage
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    .lp-darkmode::before {
    background-color: #ffffff;
}
html[data-theme="dark"]
    .innerpage
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    .lp-darkmode
    i {
    color: #ffffff;
}

html[data-theme="light"] .logo-dark {
    display: none;
}
html[data-theme="light"] .logo-light {
    display: block;
}

html[data-theme="dark"] .logo-dark {
    display: block;
}
html[data-theme="dark"] .logo-light {
    display: none;
}

.eblog-header-top-menu-bar svg {
    position: relative;
    margin-top: -4px;
}

input {
    transition: 0.3s;
}
input:focus {
    border: 1px solid var(--color-primary) !important;
}

.home-two input,
.home-three input {
    transition: 0.3s;
}
.home-two input:focus,
.home-three input:focus {
    border: 1px solid var(--color-primary-2) !important;
}

.home-four input {
    transition: 0.3s;
}
.home-four input:focus {
    border: 1px solid var(--color-primary-3) !important;
}

.home-five input {
    transition: 0.3s;
}
.home-five input:focus {
    border: 1px solid var(--color-primary-4) !important;
}

textarea {
    transition: 0.3s;
}
textarea:focus {
    border: 1px solid var(--color-primary) !important;
}

.tp-treding-slider10 {
    height: 37px;
    line-height: 37px;
}

.img-transition-scales {
    overflow: hidden;
}
.img-transition-scales .img-hovers {
    transform: scale(100%);
    transition: 0.3s ease-in-out;
}
.img-transition-scales:hover .img-hovers {
    transform: scale(104%);
}

#form-messages.success {
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .order-change {
        order: -1;
    }
}

@media (max-width: 1199px) {
    .order-change-2 {
        order: -1;
    }
}

.border-bottom {
    border-bottom: 1px solid #d9d9d9 !important;
}

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(
            0.755,
            0.05,
            0.855,
            0.06
        );
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(
            0.755,
            0.05,
            0.855,
            0.06
        );
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(
            0.755,
            0.05,
            0.855,
            0.06
        );
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(
            0.755,
            0.05,
            0.855,
            0.06
        );
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

/*jump animation */
@keyframes jump-1 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40% {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes jump-2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes jump-3 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40% {
        -webkit-transform: translate3d(0, 50px, 0) scale(0.7);
        transform: translate3d(0, 50px, 0) scale(0.7);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes jump-4 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40% {
        -webkit-transform: translate3d(0, 20px, 0) scale(0.8);
        transform: translate3d(0, 20px, 0) scale(0.8);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes jump-5 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40% {
        transform: translate3d(0, 10px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@-webkit-keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
@keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes videobuttonpopup {
    0% {
        box-shadow:
            0 0 0 0 #f0ece9,
            0 0 0 0 #f0ece9;
    }
    80% {
        box-shadow:
            0 0 0 20px rgba(255, 255, 255, 0),
            0 0 0 40px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0),
            0 0 0 0 rgba(255, 255, 255, 0);
    }
}
@keyframes videobuttonpopupsmall {
    0% {
        box-shadow:
            0 0 0 0 #f0ece9,
            0 0 0 0 #f0ece9;
    }
    80% {
        box-shadow:
            0 0 0 10px rgba(255, 255, 255, 0),
            0 0 0 12px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(255, 255, 255, 0),
            0 0 0 0 rgba(255, 255, 255, 0);
    }
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
@keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}
@keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}
.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes fadeOutDown {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes fadeOutRight {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
            rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px)
            rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
            rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px)
            rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
            rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px)
            rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
            rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px)
            rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}
@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}
.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}
@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}
.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}
@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}
.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}
@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}
.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}
@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}
.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}
@keyframes rollOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}
.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(
            0.55,
            0.055,
            0.675,
            0.19
        );
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(
            0.55,
            0.055,
            0.675,
            0.19
        );
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(
            0.55,
            0.055,
            0.675,
            0.19
        );
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(
            0.55,
            0.055,
            0.675,
            0.19
        );
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(
            0.55,
            0.055,
            0.675,
            0.19
        );
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(
            0.55,
            0.055,
            0.675,
            0.19
        );
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(
            0.55,
            0.055,
            0.675,
            0.19
        );
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(
            0.55,
            0.055,
            0.675,
            0.19
        );
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
@keyframes zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(
            0.55,
            0.055,
            0.675,
            0.19
        );
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(
            0.55,
            0.055,
            0.675,
            0.19
        );
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}
@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}
.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}
@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}
.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(
            0.55,
            0.055,
            0.675,
            0.19
        );
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(
            0.55,
            0.055,
            0.675,
            0.19
        );
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

@keyframes jump-1 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40% {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes jump-2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes rotateIt {
    to {
        transform: rotate(-360deg);
    }
}
@keyframes rotateIt2 {
    to {
        transform: rotate(360deg);
    }
}
@keyframes shape-service-1 {
    0% {
        right: -40%;
        top: 30%;
    }
    100% {
        right: -23%;
        top: 0;
    }
}
@keyframes animate-floting {
    0% {
        transform: translateX(50%);
    }
    50% {
        transform: translateX(-40%);
    }
    100% {
        transform: translateX(40%);
    }
}
@keyframes animate-floting-2 {
    0% {
        transform: translateX(-50%);
    }
    50% {
        transform: translateX(40%);
    }
    100% {
        transform: translateX(-40%);
    }
}
@keyframes animate-floting-3 {
    0% {
        transform: translateX(-20%);
    }
    50% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-20%);
    }
}
.floting-line {
    animation: animate-floting 15s linear infinite;
}
.floting-line:hover {
    animation-play-state: paused;
}

.floting-line-2 {
    animation: animate-floting-2 15s linear infinite;
}
.floting-line-2:hover {
    animation-play-state: paused;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
@keyframes vsmorph {
    0% {
        border-radius: var(--morp-value);
    }
    50% {
        border-radius: var(--morp-md-value);
    }
    100% {
        border-radius: 40% 60%;
    }
}
@keyframes morpspin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes customOne {
    0% {
        -webkit-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(-50%) scale(1.3);
        transform: translateY(-50%) scale(1.3);
        opacity: 0;
    }
}
@keyframes liveAuction {
    0% {
        background: var(--color-white);
    }
    100% {
        background: var(--color-danger);
    }
}
.cd-intro {
    margin: 4em auto;
}

@media only screen and (min-width: 768px) {
    .cd-intro {
        margin: 5em auto;
    }
}
@media only screen and (min-width: 1170px) {
    .cd-intro {
        margin: 6em auto;
    }
}
.cd-headline {
    font-size: 3rem;
    line-height: 1.2;
}

@media only screen and (min-width: 768px) {
    .cd-headline {
        font-size: 4.4rem;
        font-weight: 300;
    }
}
@media only screen and (min-width: 1170px) {
    .cd-headline {
        font-size: 48px;
    }
}
@media only screen and (max-width: 768px) {
    .cd-headline {
        font-size: 40px;
    }
}
@media only screen and (max-width: 479px) {
    .cd-headline {
        font-size: 26px;
    }
}
.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.no-js .cd-words-wrapper b {
    opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
    opacity: 1;
}

/* -------------------------------- 

xclip 

-------------------------------- */
.cd-headline.clip span {
    display: inline-block;
    padding: 0;
}

.cd-headline.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: middle;
    position: relative;
    margin-top: -20px;
}
.cd-headline.clip .cd-words-wrapper b {
    font-weight: 700;
}

.cd-headline.clip .cd-words-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-primary-3);
    transform: translateY(-50%);
}

.cd-headline.clip b {
    opacity: 0;
}

.cd-headline.clip b.is-visible {
    opacity: 1;
}

/**
 * Settings
 */
/**
  * Easings
  */
/**
  * Core
  */
[data-sal] {
    transition-duration: 0.2s;
    transition-delay: 0s;
    transition-duration: var(--sal-duration, 0.2s);
    transition-delay: var(--sal-delay, 0s);
    transition-timing-function: var(--sal-easing, ease);
}

[data-sal][data-sal-duration="200"] {
    transition-duration: 0.2s;
}

[data-sal][data-sal-duration="250"] {
    transition-duration: 0.25s;
}

[data-sal][data-sal-duration="300"] {
    transition-duration: 0.3s;
}

[data-sal][data-sal-duration="350"] {
    transition-duration: 0.35s;
}

[data-sal][data-sal-duration="400"] {
    transition-duration: 0.4s;
}

[data-sal][data-sal-duration="450"] {
    transition-duration: 0.45s;
}

[data-sal][data-sal-duration="500"] {
    transition-duration: 0.5s;
}

[data-sal][data-sal-duration="550"] {
    transition-duration: 0.55s;
}

[data-sal][data-sal-duration="600"] {
    transition-duration: 0.6s;
}

[data-sal][data-sal-duration="650"] {
    transition-duration: 0.65s;
}

[data-sal][data-sal-duration="700"] {
    transition-duration: 0.7s;
}

[data-sal][data-sal-duration="750"] {
    transition-duration: 0.75s;
}

[data-sal][data-sal-duration="800"] {
    transition-duration: 0.8s;
}

[data-sal][data-sal-duration="850"] {
    transition-duration: 0.85s;
}

[data-sal][data-sal-duration="900"] {
    transition-duration: 0.9s;
}

[data-sal][data-sal-duration="950"] {
    transition-duration: 0.95s;
}

[data-sal][data-sal-duration="1000"] {
    transition-duration: 1s;
}

[data-sal][data-sal-duration="1050"] {
    transition-duration: 1.05s;
}

[data-sal][data-sal-duration="1100"] {
    transition-duration: 1.1s;
}

[data-sal][data-sal-duration="1150"] {
    transition-duration: 1.15s;
}

[data-sal][data-sal-duration="1200"] {
    transition-duration: 1.2s;
}

[data-sal][data-sal-duration="1250"] {
    transition-duration: 1.25s;
}

[data-sal][data-sal-duration="1300"] {
    transition-duration: 1.3s;
}

[data-sal][data-sal-duration="1350"] {
    transition-duration: 1.35s;
}

[data-sal][data-sal-duration="1400"] {
    transition-duration: 1.4s;
}

[data-sal][data-sal-duration="1450"] {
    transition-duration: 1.45s;
}

[data-sal][data-sal-duration="1500"] {
    transition-duration: 1.5s;
}

[data-sal][data-sal-duration="1550"] {
    transition-duration: 1.55s;
}

[data-sal][data-sal-duration="1600"] {
    transition-duration: 1.6s;
}

[data-sal][data-sal-duration="1650"] {
    transition-duration: 1.65s;
}

[data-sal][data-sal-duration="1700"] {
    transition-duration: 1.7s;
}

[data-sal][data-sal-duration="1750"] {
    transition-duration: 1.75s;
}

[data-sal][data-sal-duration="1800"] {
    transition-duration: 1.8s;
}

[data-sal][data-sal-duration="1850"] {
    transition-duration: 1.85s;
}

[data-sal][data-sal-duration="1900"] {
    transition-duration: 1.9s;
}

[data-sal][data-sal-duration="1950"] {
    transition-duration: 1.95s;
}

[data-sal][data-sal-duration="2000"] {
    transition-duration: 2s;
}

[data-sal][data-sal-delay="50"] {
    transition-delay: 0.05s;
}

[data-sal][data-sal-delay="100"] {
    transition-delay: 0.1s;
}

[data-sal][data-sal-delay="150"] {
    transition-delay: 0.15s;
}

[data-sal][data-sal-delay="200"] {
    transition-delay: 0.2s;
}

[data-sal][data-sal-delay="250"] {
    transition-delay: 0.25s;
}

[data-sal][data-sal-delay="300"] {
    transition-delay: 0.3s;
}

[data-sal][data-sal-delay="350"] {
    transition-delay: 0.35s;
}

[data-sal][data-sal-delay="400"] {
    transition-delay: 0.4s;
}

[data-sal][data-sal-delay="450"] {
    transition-delay: 0.45s;
}

[data-sal][data-sal-delay="500"] {
    transition-delay: 0.5s;
}

[data-sal][data-sal-delay="550"] {
    transition-delay: 0.55s;
}

[data-sal][data-sal-delay="600"] {
    transition-delay: 0.6s;
}

[data-sal][data-sal-delay="650"] {
    transition-delay: 0.65s;
}

[data-sal][data-sal-delay="700"] {
    transition-delay: 0.7s;
}

[data-sal][data-sal-delay="750"] {
    transition-delay: 0.75s;
}

[data-sal][data-sal-delay="800"] {
    transition-delay: 0.8s;
}

[data-sal][data-sal-delay="850"] {
    transition-delay: 0.85s;
}

[data-sal][data-sal-delay="900"] {
    transition-delay: 0.9s;
}

[data-sal][data-sal-delay="950"] {
    transition-delay: 0.95s;
}

[data-sal][data-sal-delay="1000"] {
    transition-delay: 1s;
}

[data-sal][data-sal-easing="linear"] {
    transition-timing-function: linear;
}

[data-sal][data-sal-easing="ease"] {
    transition-timing-function: ease;
}

[data-sal][data-sal-easing="ease-in"] {
    transition-timing-function: ease-in;
}

[data-sal][data-sal-easing="ease-out"] {
    transition-timing-function: ease-out;
}

[data-sal][data-sal-easing="ease-in-out"] {
    transition-timing-function: ease-in-out;
}

[data-sal][data-sal-easing="ease-in-cubic"] {
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

[data-sal][data-sal-easing="ease-out-cubic"] {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-sal][data-sal-easing="ease-in-out-cubic"] {
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

[data-sal][data-sal-easing="ease-in-circ"] {
    transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

[data-sal][data-sal-easing="ease-out-circ"] {
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

[data-sal][data-sal-easing="ease-in-out-circ"] {
    transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

[data-sal][data-sal-easing="ease-in-expo"] {
    transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}

[data-sal][data-sal-easing="ease-out-expo"] {
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

[data-sal][data-sal-easing="ease-in-out-expo"] {
    transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

[data-sal][data-sal-easing="ease-in-quad"] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-sal][data-sal-easing="ease-out-quad"] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-sal][data-sal-easing="ease-in-out-quad"] {
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-sal][data-sal-easing="ease-in-quart"] {
    transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

[data-sal][data-sal-easing="ease-out-quart"] {
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-sal][data-sal-easing="ease-in-out-quart"] {
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

[data-sal][data-sal-easing="ease-in-quint"] {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

[data-sal][data-sal-easing="ease-out-quint"] {
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

[data-sal][data-sal-easing="ease-in-out-quint"] {
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

[data-sal][data-sal-easing="ease-in-sine"] {
    transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-sal][data-sal-easing="ease-out-sine"] {
    transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-sal][data-sal-easing="ease-in-out-sine"] {
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-sal][data-sal-easing="ease-in-back"] {
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-sal][data-sal-easing="ease-out-back"] {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-sal][data-sal-easing="ease-in-out-back"] {
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/**
  * Animations
  */
[data-sal|="fade"] {
    opacity: 0;
    transition-property: opacity;
}

[data-sal|="fade"].sal-animate,
body.sal-disabled [data-sal|="fade"] {
    opacity: 1;
}

[data-sal|="slide"] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-sal="slide-up"] {
    transform: translateY(20%);
}

[data-sal="slide-down"] {
    transform: translateY(-20%);
}

[data-sal="slide-left"] {
    transform: translateX(20%);
}

[data-sal="slide-right"] {
    transform: translateX(-20%);
}

[data-sal|="slide"].sal-animate,
body.sal-disabled [data-sal|="slide"] {
    opacity: 1;
    transform: none;
}

[data-sal|="zoom"] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-sal="zoom-in"] {
    transform: scale(0.5);
}

[data-sal="zoom-out"] {
    transform: scale(1.1);
}

[data-sal|="zoom"].sal-animate,
body.sal-disabled [data-sal|="zoom"] {
    opacity: 1;
    transform: none;
}

[data-sal|="flip"] {
    backface-visibility: hidden;
    transition-property: transform;
}

[data-sal="flip-left"] {
    transform: perspective(2000px) rotateY(-91deg);
}

[data-sal="flip-right"] {
    transform: perspective(2000px) rotateY(91deg);
}

[data-sal="flip-up"] {
    transform: perspective(2000px) rotateX(-91deg);
}

[data-sal="flip-down"] {
    transform: perspective(2000px) rotateX(91deg);
}

[data-sal|="flip"].sal-animate,
body.sal-disabled [data-sal|="flip"] {
    transform: none;
}

/* Header area style  */
.eblog-header-area.header-two .eblog-site-main-logo-menu-social {
    background: var(--color-heading-1);
}
.eblog-header-area.header-two
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li:hover.eblog-has-dropdown
    a.eblog-dropdown-main-element {
    color: var(--color-primary-2);
}
.eblog-header-area.header-two
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li:hover.menu-item
    .eblog-dropdown-main-element {
    color: var(--color-primary-2);
}
.eblog-header-area.header-two
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    a.eblog-dropdown-main-element {
    color: var(--color-white);
}
.eblog-header-area.header-two
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.menu-item
    .eblog-dropdown-main-element {
    color: var(--color-white);
}
.eblog-header-area.header-two .eblog-header-top-social-media svg path {
    fill: var(--color-white);
}
.eblog-header-area.header-two .eblog-home-1-menu .eblog-header-top-menu-bar a {
    display: flex;
    align-items: end;
    flex-direction: column;
    height: 15px;
    gap: 6px;
    transition: var(--transition);
}
.eblog-header-area.header-two
    .eblog-home-1-menu
    .eblog-header-top-menu-bar
    a:hover
    .line {
    width: 16px;
    background: var(--color-primary-2);
}
.eblog-header-area.header-two
    .eblog-home-1-menu
    .eblog-header-top-menu-bar
    a
    .line {
    width: 8px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}
.eblog-header-area.header-two
    .eblog-home-1-menu
    .eblog-header-top-menu-bar
    a
    .line.big {
    width: 16px;
}
.eblog-header-area.header-three {
    position: absolute;
    z-index: 99;
    width: 100%;
}
.eblog-header-area.header-three .eblog-site-main-logo-menu-social {
    background: none;
}
.eblog-header-area.header-three
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li:hover.eblog-has-dropdown
    a.eblog-dropdown-main-element {
    color: var(--color-primary-2);
}
.eblog-header-area.header-three
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li:hover.menu-item
    .eblog-dropdown-main-element {
    color: var(--color-primary-2);
}
.eblog-header-area.header-three
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    a.eblog-dropdown-main-element {
    color: var(--color-white);
}
.eblog-header-area.header-three
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.menu-item
    .eblog-dropdown-main-element {
    color: var(--color-white);
}
.eblog-header-area.header-three .eblog-header-top-social-media svg path {
    fill: var(--color-white);
}
.eblog-header-area.header-three
    .eblog-home-1-menu
    .eblog-header-top-menu-bar
    a {
    display: flex;
    align-items: end;
    flex-direction: column;
    height: 15px;
    gap: 6px;
    transition: var(--transition);
}
.eblog-header-area.header-three
    .eblog-home-1-menu
    .eblog-header-top-menu-bar
    a:hover
    .line {
    width: 16px;
    background: var(--color-primary-2);
}
.eblog-header-area.header-three
    .eblog-home-1-menu
    .eblog-header-top-menu-bar
    a
    .line {
    width: 8px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}
.eblog-header-area.header-three
    .eblog-home-1-menu
    .eblog-header-top-menu-bar
    a
    .line.big {
    width: 16px;
}
.eblog-header-area.header-four .eblog-header-top {
    background: var(--color-white);
}
@media (max-width: 991px) {
    .eblog-header-area.header-four .eblog-header-top {
        display: none;
    }
}
.eblog-header-area.header-four
    .eblog-header-top
    .eblog-full-header-top
    .eblog-site-logo {
    padding: 30px 0;
}
.eblog-header-area.header-four .eblog-site-main-logo-menu-social {
    background: var(--color-heading-1);
}
@media (max-width: 991px) {
    .eblog-header-area.header-four
        .eblog-site-main-logo-menu-social
        .eblog-header-top-social {
        display: none;
    }
}
.eblog-header-area.header-four
    .eblog-site-main-logo-menu-social
    .eblog-header-top-social
    .social-wrapper
    li
    a:hover
    svg
    path {
    fill: var(--color-primary-3);
}
.eblog-header-area.header-four
    .eblog-site-main-logo-menu-social
    .eblog-site-logo {
    display: none;
}
@media (max-width: 991px) {
    .eblog-header-area.header-four
        .eblog-site-main-logo-menu-social
        .eblog-site-logo {
        display: block;
    }
}
.eblog-header-area.header-four
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li:hover.eblog-has-dropdown
    a.eblog-dropdown-main-element {
    color: var(--color-primary-3);
}
.eblog-header-area.header-four
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li:hover.menu-item
    .eblog-dropdown-main-element {
    color: var(--color-primary-3);
}
.eblog-header-area.header-four
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    a.eblog-dropdown-main-element {
    color: var(--color-white);
}
.eblog-header-area.header-four
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.menu-item {
    padding: 22px 0;
}
.eblog-header-area.header-four
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.menu-item
    .eblog-dropdown-main-element {
    color: var(--color-white);
}
.eblog-header-area.header-four
    .eblog-site-main-logo-menu-social
    .eblog-header-top-social-media
    .tp-darkmode
    svg
    path {
    fill: var(--color-white);
}
.eblog-header-area.header-four
    .eblog-site-main-logo-menu-social
    .eblog-header-top-social-media
    .search-icon
    svg
    path {
    fill: var(--color-white);
}
.eblog-header-area.header-four
    .eblog-site-main-logo-menu-social
    .eblog-header-top-social-media
    .cart-bar
    svg
    path {
    fill: var(--color-white);
}
.eblog-header-area.header-four
    .eblog-home-1-menu
    .eblog-header-top-menu-bar
    a:hover
    .line {
    background: var(--color-primary-3);
}
.eblog-header-area.header-four
    .eblog-home-1-menu
    .eblog-header-top-menu-bar
    a
    .line {
    background: var(--color-white);
}
@media (max-width: 1199px) {
    .eblog-header-area.header-four .eblog-header-top-social {
        gap: 5px;
    }
}
.eblog-header-area.header-five
    .eblog-header-top-social
    .social-wrapper
    li
    a:hover
    svg
    path {
    fill: var(--color-primary-3);
}
.eblog-header-area.header-five
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li:hover.eblog-has-dropdown
    a.eblog-dropdown-main-element {
    color: var(--color-primary-4);
}
.eblog-header-area.header-five
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li:hover.menu-item
    .eblog-dropdown-main-element {
    color: var(--color-primary-4);
}
.eblog-header-area.header-five
    .eblog-home-1-menu
    .eblog-header-top-menu-bar
    a:hover
    .line {
    background: var(--color-primary-4);
}

.eblog-header-top {
    background: var(--color-heading-1);
}
@media (max-width: 767px) {
    .eblog-header-top {
        display: none;
    }
}

@media (max-width: 767px) {
    .eblog-full-header-top {
        padding: 0 30px;
    }
}
@media (max-width: 400px) {
    .eblog-full-header-top {
        padding: 0 10px;
    }
}

.eblog-header-top-social {
    display: flex;
    align-items: center;
    gap: 14px;
}
.eblog-header-top-social .tag {
    margin: 0;
    line-height: 1;
    color: var(--color-white);
    font-family: var(--body-font-2);
}
.eblog-header-top-social .social-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}
.eblog-header-top-social .social-wrapper li {
    list-style: none;
    margin: 0;
}
.eblog-header-top-social .social-wrapper li a {
    transition: var(--transition);
}
.eblog-header-top-social .social-wrapper li a:hover svg path {
    fill: var(--color-primary);
}
.eblog-header-top-social .social-wrapper li a svg path {
    fill: var(--color-white);
}

.eblog-meta-total-jobs {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1199px) and (min-width: 991px) {
    .eblog-meta-total-jobs {
        gap: 5px;
    }
}
.eblog-meta-total-jobs .eblog-meta-jobs-text span {
    font-weight: var(--s-regular);
    font-size: 13px;
    color: var(--color-white);
}
@media (max-width: 1199px) and (min-width: 991px) {
    .eblog-meta-total-jobs .eblog-meta-jobs-text span {
        font-size: 14px;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    .eblog-meta-total-jobs .eblog-meta-jobs-text span {
        font-size: 14px;
    }
}

.eblog-header-top-subs-social-menu .eblog-header-top-subs-social {
    display: flex;
    align-items: center;
    justify-content: end;
}
.eblog-header-top-subs-social-menu .eblog-header-top-subscribe-btn {
    padding-right: 20px;
    border-right: 1px solid #525252;
}
@media (max-width: 767px) {
    .eblog-header-top-subs-social-menu .eblog-header-top-subscribe-btn {
        display: none;
    }
}
.eblog-header-top-subs-social-menu .eblog-header-top-subscribe-btn a {
    font-size: 16px;
    font-family: var(--body-font-2);
    color: var(--color-primary);
}
@media (max-width: 1199px) and (min-width: 991px) {
    .eblog-header-top-subs-social-menu .eblog-header-top-subscribe-btn a {
        padding: 12px 22px;
    }
}
.eblog-header-top-subs-social-menu .eblog-header-top-login-btn {
    padding-left: 20px;
}
@media (max-width: 767px) {
    .eblog-header-top-subs-social-menu .eblog-header-top-login-btn {
        display: none;
    }
}
.eblog-header-top-subs-social-menu .eblog-header-top-login-btn a {
    font-size: 16px;
    font-family: var(--body-font-2);
    color: var(--color-white);
}
@media (max-width: 1199px) and (min-width: 991px) {
    .eblog-header-top-subs-social-menu .eblog-header-top-login-btn a {
        padding: 12px 22px;
    }
}
.eblog-header-top-subs-social-menu .eblog-header-top-social-media {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 30px;
}
@media (max-width: 991px) {
    .eblog-header-top-subs-social-menu .eblog-header-top-social-media {
        margin-right: 0;
    }
}
.eblog-header-top-subs-social-menu .eblog-header-top-social-media a {
    position: relative;
}
.eblog-header-top-subs-social-menu
    .eblog-header-top-social-media
    .eblog-header-top-search-btn {
    position: relative;
    width: 10px;
}
.eblog-header-top-subs-social-menu
    .eblog-header-top-social-media
    .eblog-header-top-search-btn::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
    background-color: rgba(94, 94, 94, 0.6);
}
@media (max-width: 991px) {
    .eblog-header-top-subs-social-menu
        .eblog-header-top-social-media
        .eblog-header-top-search-btn::after {
        display: none;
    }
}
.eblog-header-top-subs-social-menu
    .eblog-header-top-social-media
    .eblog-header-top-search-btn
    svg {
    position: relative;
    margin-top: -6px;
}
@media (max-width: 991px) {
    .eblog-header-top-subs-social-menu .eblog-header-top-menu-bar {
        display: none;
    }
}

.eblog-header-top-social-media {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}

.eblog-header-area .eblog-home-1-menu .eblog-header-top-menu-bar a {
    display: flex;
    align-items: end;
    flex-direction: column;
    height: 15px;
    gap: 6px;
    transition: var(--transition);
}
.eblog-header-area .eblog-home-1-menu .eblog-header-top-menu-bar a:hover .line {
    width: 16px;
    background: var(--color-primary);
}
.eblog-header-area .eblog-home-1-menu .eblog-header-top-menu-bar a .line {
    width: 8px;
    height: 2px;
    background: var(--color-heading-1);
    transition: var(--transition);
}
.eblog-header-area .eblog-home-1-menu .eblog-header-top-menu-bar a .line.big {
    width: 16px;
}

@media (max-width: 991px) {
    .eblog-site-main-logo-menu-social .eblog-home-1-social-media-icons ul {
        display: none;
    }
}

.eblog-site-main-logo-menu-social {
    background-color: #ffffff;
}
.eblog-site-main-logo-menu-social .eblog-site-logo {
    padding: 20px 0;
}
.eblog-site-main-logo-menu-social ul.eblog-desktop-menu {
    padding: 0;
    margin: 0;
    text-align: center;
}
.eblog-site-main-logo-menu-social ul.eblog-desktop-menu li.eblog-has-dropdown {
    display: inline-block;
    position: relative;
    transition: all 0.4s;
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown:hover
    a.eblog-dropdown-main-element {
    color: var(--color-primary);
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown:hover
    a.eblog-dropdown-main-element::after {
    content: "\f106" !important;
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown:hover
    ul.eblog-submenu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown:hover
    ul.mega-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    a.eblog-dropdown-main-element {
    position: relative;
    transition: all 0.4s;
    font-weight: 400;
    padding: 0 20px;
}
@media (max-width: 1199px) {
    .eblog-site-main-logo-menu-social
        ul.eblog-desktop-menu
        li.eblog-has-dropdown
        a.eblog-dropdown-main-element {
        padding: 0 15px;
    }
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    a.eblog-dropdown-main-element::after {
    content: "\f107" !important;
    font-family: "Font Awesome 6 Pro" !important;
    transition: all 0.3s;
    font-size: 14px;
    display: inline-block;
    margin-left: 6px;
    transform: translateY(2px);
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu {
    position: absolute;
    height: auto;
    top: 90%;
    left: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: all 0.3s;
    background-color: #ffffff;
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    flex-direction: column;
    min-width: 220px;
    justify-content: flex-start;
    margin-left: 0;
    align-items: flex-start;
    margin-top: -1px;
    padding: 15px;
    border-radius: 0;
    width: max-content;
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item {
    position: relative;
    transition: all 0.4s;
    padding: 2px 8px;
    width: 100%;
    margin: 0;
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item
    a {
    transform: translateX(0);
    display: block;
    width: 100%;
    padding: 0px 0;
    transition: all 0.4s;
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item:hover
    a {
    transform: translateX(8px);
    color: var(--color-primary);
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item:hover::before {
    transform: scale(1) translateY(-50%);
}

.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-primary);
    transform: scale(0) translateY(-50%);
    transition: all 0.4s;
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item.third-lvl:hover
    .third-lvl-submenu {
    opacity: 1;
    visibility: visible;
    top: 0;
    left: 100%;
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item.third-lvl
    .third-lvl-submenu {
    opacity: 0;
    visibility: hidden;
    left: 100%;
    top: 10px;
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item.third-lvl
    .third-lvl-submenu
    .nav-item:hover
    a {
    transform: translateX(8px);
    color: var(--color-primary);
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item.third-lvl
    .third-lvl-submenu
    .nav-item
    a {
    color: #181823;
    transform: translateX(0);
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.mega-menu {
    display: flex;
    top: 90%;
    position: absolute;
    z-index: 99999;
    justify-content: center;
    background: #fff;
    text-align: center;
    width: 1170px;
    right: 50%;
    transform: translateX(50%);
    gap: 20px;
    opacity: 0;
    padding: 20px 20px;
    visibility: hidden;
    transition: all 0.3s;
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.mega-menu
    h5 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 0;
}
.eblog-site-main-logo-menu-social ul.eblog-desktop-menu li.menu-item {
    display: inline-block;
    position: relative;
    transition: all 0.4s;
    margin: 0;
    padding: 30px 0;
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.menu-item:hover
    .eblog-dropdown-main-element {
    color: var(--color-primary);
}
.eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.menu-item
    .eblog-dropdown-main-element {
    font-weight: 400;
    padding: 0 20px;
    color: var(--color-heading-1);
}
.eblog-site-main-logo-menu-social .eblog-home-1-social-media-icons {
    text-align: right;
}
.eblog-site-main-logo-menu-social .eblog-home-1-social-media-icons ul {
    margin: 0;
    padding: 0;
}
.eblog-site-main-logo-menu-social .eblog-home-1-social-media-icons ul li {
    display: inline-block;
    margin: 0 9px;
}

.header-sticky .eblog-header-top {
    display: none;
}
.header-sticky .eblog-header-top-home-2 {
    display: none;
}
.header-sticky .eblog-home-2-menu .eblog-home-2-menu-full-contetn {
    border: none !important;
}
.header-sticky .header-sticky-logo {
    display: block !important;
}
.header-sticky .podcast-area {
    display: none;
}
.header-sticky .sticky-menu-bar {
    display: block !important;
}

.header-four.header-sticky
    .eblog-site-main-logo-menu-social
    .eblog-header-top-social {
    display: none;
}
.header-four.header-sticky .eblog-site-main-logo-menu-social .eblog-site-logo {
    display: block;
}

.header--sticky.sticky {
    position: fixed !important;
    top: 0;
    display: block;
    backdrop-filter: blur(9px);
    z-index: 999;
    width: 100%;
    box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
}

.side-bar {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    padding: 46px 30px 50px 30px;
    height: 100%;
    display: block;
    background-color: white;
    backdrop-filter: blur(7px);
    z-index: 1900;
    transition: all 600ms ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow: visible;
}
@media only screen and (max-width: 575px) {
    .side-bar {
        width: 320px;
    }
}
.side-bar .inner {
    padding: 0;
}
.side-bar .inner-main-wrapper-desk {
    padding-top: 40px;
}
.side-bar .inner-main-wrapper-desk .thumbnail {
    margin-top: 80px;
    display: block;
    text-align: center;
}
.side-bar .inner-main-wrapper-desk .banner-shape-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
    opacity: 1;
    transition-delay: 0.7s;
}
.side-bar .inner-main-wrapper-desk .banner-shape-area .shape {
    height: 10px;
    width: 10px;
    line-height: 10px;
    transform: rotate(45deg);
    margin: 0 6px;
    background: var(--color-primary);
    display: block;
}
.side-bar .inner-main-wrapper-desk .inner-content {
    text-align: center;
    margin-top: 30px;
}
.side-bar .inner-main-wrapper-desk .inner-content .feature-list {
    padding: 0;
}
.side-bar .inner-main-wrapper-desk .inner-content .feature-list .query-list {
    list-style: none;
    margin-bottom: 30px;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .feature-list
    .query-list
    .sub-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 32px;
    display: block;
}
.side-bar .inner-main-wrapper-desk .inner-content .feature-list .query-list a {
    color: #ffffff;
    font-size: 18px;
    line-height: 32px;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .feature-list
    .query-list.two
    p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 5px;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer .social-area {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer .social-area li {
    list-style: none;
    margin: 0 10px;
    color: #ffffff;
}

.side-bar {
    background-color: #181823;
}
.side-bar .inner-main-wrapper-desk {
    padding-top: 0;
}
.side-bar .inner-main-wrapper-desk .inner-content .category-menu-area {
    margin-bottom: 50px;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .category-menu-area
    .category-area {
    padding: 0;
    margin: 20px 0 0 0;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .category-menu-area
    .category-area
    .item {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .category-menu-area
    .category-area
    .item
    .image-area {
    flex-basis: 33%;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .category-menu-area
    .category-area
    .item
    .content {
    text-align: left;
    flex-basis: 67%;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .category-menu-area
    .category-area
    .item
    .content
    .recent-post-title {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    transition: all 0.4s;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .category-menu-area
    .category-area
    .item
    .content
    .recent-post-title:hover
    a {
    color: var(--color-primary);
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .category-menu-area
    .category-area
    .item
    .content
    .recent-post-title
    a {
    color: #ffffff;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .category-menu-area
    .category-area
    .item
    .content
    .desc {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #b9bcc0;
    transition: all 0.4s;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .category-menu-area
    .category-area
    .item
    .content
    .desc:hover
    a {
    color: #b9bcc0;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .category-menu-area
    .category-area
    .item
    .content
    .desc
    a
    i {
    margin-right: 5px;
}
.side-bar .inner-main-wrapper-desk .inner-content .newsletter-form {
    border-radius: 10px;
    padding: 20px 10px;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    box-shadow: 0px 0px 0px 1px rgba(49, 49, 49, 0);
}
.side-bar .inner-main-wrapper-desk .inner-content .newsletter-form .form-inner {
    width: 100%;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    .content
    .newsletter-icon {
    margin: 0 auto 10px auto;
    max-width: 60px;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    .content
    .newsletter-icon
    img {
    width: 100%;
    -webkit-filter: brightness(100);
    filter: brightness(100);
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    .content
    .title {
    color: #ffffff;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
    margin-top: 30px;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    .content
    .desc {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 20px;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    form {
    width: 100%;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    form
    .input-div {
    width: 100%;
    margin-bottom: 15px;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    form
    .input-div
    input {
    width: 100%;
    background: none;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 15px;
    border: 1px solid rgba(52, 52, 77, 0.7);
    -webkit-box-shadow: 0px 2px 4px rgba(14, 16, 19, 0.1);
    box-shadow: 0px 2px 4px rgba(14, 16, 19, 0.1);
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    form
    .input-div
    input::placeholder {
    color: var(--color-white) !important;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    form
    button.subscribe-btn {
    position: unset;
    background: var(--color-primary);
    color: #fff;
    width: 100%;
    padding: 0 15px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    transition: background 500ms;
    height: 50px;
}
.side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    .floating-elements {
    position: absolute;
    top: 20px;
    right: 20px;
}

.eblog-header-area.header-sticky
    .eblog-home-1-menu
    .eblog-home-1-social-media-icons {
    text-align: right;
}
.eblog-header-area.header-sticky .eblog-home-1-menu ul.social-area {
    display: none;
}
.eblog-header-area.header-sticky .eblog-home-1-menu .eblog-header-top-menu-bar {
    display: block;
}

.home-two
    .side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    form
    button.subscribe-btn,
.home-three
    .side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    form
    button.subscribe-btn,
.home-inner
    .side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    form
    button.subscribe-btn {
    background: var(--color-primary-2);
}

.home-four
    .side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    form
    button.subscribe-btn {
    background: var(--color-primary-3);
}

.home-five
    .side-bar
    .inner-main-wrapper-desk
    .inner-content
    .newsletter-form
    .form-inner
    form
    button.subscribe-btn {
    background: var(--color-primary-4);
}

.innerpage
    .eblog-site-main-logo-menu-social
    .eblog-home-1-social-media-icons
    ul
    li {
    margin: 0 0 0 18px;
}
.innerpage .eblog-header-area.header-sticky .eblog-home-1-menu ul.social-area {
    display: none;
}
@media (max-width: 991px) {
    .innerpage .eblog-home-1-menu .eblog-site-main-logo-menu-social {
        padding: 0 20px;
    }
}
.innerpage .eblog-header-top-date .eblog-day-name span strong,
.innerpage .eblog-header-top-date .eblog-date-time span strong {
    color: #ffffff;
}

.side-bar.show {
    right: 0;
    overflow-y: auto;
}

.side-bar button {
    max-width: 100%;
    height: 40px;
    width: 40px;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--color-primary);
    padding: 6px;
}
.side-bar button i {
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tp-section-top-80 {
    padding-top: 20px;
}

.tp-section-top-100 {
    padding-top: 30px;
}

.home-one .side-bar button {
    background: var(--color-primary);
}
.home-one .mobile-menu nav ul li a::after {
    color: #fff;
}
.home-one .mobile-menu nav ul li a:hover {
    color: var(--color-primary) !important;
}
.home-one .mobile-menu nav ul li a:hover::after {
    color: var(--color-primary) !important;
}

.home-two .side-bar button,
.home-three .side-bar button,
.home-inner .side-bar button {
    background: var(--color-primary-2);
}
.home-two .mobile-menu .social-wrapper-one ul li a,
.home-three .mobile-menu .social-wrapper-one ul li a,
.home-inner .mobile-menu .social-wrapper-one ul li a {
    background: var(--color-primary-2);
    border: 1px solid var(--color-primary-2);
}
.home-two .mobile-menu .social-wrapper-one ul li a:hover,
.home-three .mobile-menu .social-wrapper-one ul li a:hover,
.home-inner .mobile-menu .social-wrapper-one ul li a:hover {
    color: #5e5e5e;
}
.home-two
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu,
.home-three
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu,
.home-inner
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu {
    border-top: 3px solid var(--color-primary-2);
}
.home-two
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown:hover
    a.eblog-dropdown-main-element,
.home-two
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.menu-item:hover
    .eblog-dropdown-main-element,
.home-two
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item:hover
    a,
.home-three
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown:hover
    a.eblog-dropdown-main-element,
.home-three
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.menu-item:hover
    .eblog-dropdown-main-element,
.home-three
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item:hover
    a,
.home-inner
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown:hover
    a.eblog-dropdown-main-element,
.home-inner
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.menu-item:hover
    .eblog-dropdown-main-element,
.home-inner
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item:hover
    a {
    color: var(--color-primary-2);
}
.home-two
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item::before,
.home-three
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item::before,
.home-inner
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item::before {
    background: var(--color-primary-2);
}

.home-four .side-bar button {
    background: var(--color-primary-3);
}
.home-four .mobile-menu nav ul li a::after {
    color: #fff;
}
.home-four .mobile-menu nav ul li a:hover {
    color: var(--color-primary-3) !important;
}
.home-four .mobile-menu nav ul li a:hover::after {
    color: var(--color-primary-3) !important;
}
.home-four .mobile-menu .social-wrapper-one ul li a {
    background: var(--color-primary-3);
    border: 1px solid var(--color-primary-3);
}
.home-four .mobile-menu .social-wrapper-one ul li a:hover {
    color: #5e5e5e;
}
.home-four
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu {
    border-top: 3px solid var(--color-primary-3);
}
.home-four
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item:hover
    a {
    color: var(--color-primary-3);
}
.home-four
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item::before {
    background: var(--color-primary-3);
}

.home-five .side-bar button {
    background: var(--color-primary-4);
}
.home-five .mobile-menu nav ul li a::after {
    color: #fff;
}
.home-five .mobile-menu nav ul li a:hover {
    color: var(--color-primary-4) !important;
}
.home-five .mobile-menu nav ul li a:hover::after {
    color: var(--color-primary-4) !important;
}
.home-five .mobile-menu .social-wrapper-one ul li a {
    background: var(--color-primary-4);
    border: 1px solid var(--color-primary-4);
}
.home-five .mobile-menu .social-wrapper-one ul li a:hover {
    color: #5e5e5e;
}
.home-five
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu {
    border-top: 3px solid var(--color-primary-4);
}
.home-five
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item:hover
    a {
    color: var(--color-primary-4);
}
.home-five
    .eblog-site-main-logo-menu-social
    ul.eblog-desktop-menu
    li.eblog-has-dropdown
    ul.eblog-submenu
    .nav-item::before {
    background: var(--color-primary-4);
}

.mobile-menu nav ul {
    padding: 0;
}
.mobile-menu nav ul li {
    margin: 0;
    padding: 0;
}
.mobile-menu nav ul li a.main {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
    position: relative;
    color: #fff;
}
.mobile-menu nav ul li a.main::after {
    position: absolute;
    content: "\f078";
    font-family: "Font Awesome 6 pro" !important;
    font-size: 14px;
    right: 0;
    font-weight: 400;
    top: 50%;
    transform: translateY(-50%);
    height: 35px;
    width: 35px;
    line-height: 35px;
    display: block;
    text-align: center;
    color: #fff;
    pointer-events: none;
    cursor: pointer;
    border-radius: 3px;
}
.mobile-menu nav ul li a.main[aria-expanded="true"]::after {
    content: "\f077";
}
.mobile-menu nav ul li a.mobile-menu-link::after {
    display: none;
}
.mobile-menu nav ul li.has-droupdown {
    position: relative;
}
.mobile-menu nav ul li.has-droupdown ul {
    padding-left: 15px;
}
.mobile-menu nav ul li.has-droupdown ul a.tag {
    font-weight: 700;
    margin-top: 15px;
    font-size: 18px;
}
.mobile-menu nav ul li.has-droupdown ul li {
    margin: 10px 0 !important;
}
.mobile-menu nav ul li.has-droupdown::after {
    display: none;
}
.mobile-menu nav ul li.has-droupdown.mm-active::after {
    content: "\f077";
}
.mobile-menu nav ul li.has-droupdown.third-lvl::after {
    font-size: 10px;
    padding: 3px 10px;
}
.mobile-menu nav ul li.has-droupdown.third-lvl ul {
    padding: 0 20px;
}
.mobile-menu nav ul li.has-droupdown.third-lvl ul li {
    margin: 10px 0 !important;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.mobile-menu nav ul li.has-droupdown.third-lvl ul li:hover {
    color: var(--color-primary);
}
.mobile-menu nav ul li.has-droupdown.third-lvl ul li a {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    color: #fff;
}
.mobile-menu nav ul li a {
    display: block;
    color: #fff;
    transition: all 0.3s;
}
.mobile-menu nav ul li a::after {
    color: #fff;
}
.mobile-menu nav ul li a:hover {
    color: var(--color-primary-2);
}
.mobile-menu nav ul li a:hover::after {
    color: var(--color-primary-2);
}
.mobile-menu .social-wrapper-one {
    margin-top: 50px;
}
.mobile-menu .social-wrapper-one ul {
    display: flex;
    margin: 0;
    padding: 0;
}
.mobile-menu .social-wrapper-one ul li {
    list-style: none;
    margin-right: 10px;
}
.mobile-menu .social-wrapper-one ul li a {
    width: 35px;
    height: 35px;
    display: block;
    line-height: 35px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    text-align: center;
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s;
}
.mobile-menu .social-wrapper-one ul li a:hover {
    background: #ffffff;
    border: 1px solid #ffffff;
}

.eblog-popup-model {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
    padding-top: 60px;
    z-index: 99999;
}
.eblog-popup-model .eblog-popup-transition {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.eblog-popup-model .eblog-popup-transition a {
    display: inline-block;
    position: relative;
    top: -36px;
    font-size: 18px;
    background: var(--color-primary);
    left: 100%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    border: 3px solid var(--color-primary);
    transition: 0.3s ease-in-out;
    color: #fff;
    font-weight: bolder;
}
.eblog-popup-model .eblog-popup-transition a:hover {
    background-color: transparent;
    color: rgba(94, 94, 94, 0.5);
    border: 3px solid var(--color-primary);
}
.eblog-popup-model .eblog-popup-transition .model-content {
    max-width: 880px;
    background-color: #fff;
    padding: 50px;
    z-index: 999999;
}
.eblog-popup-model .eblog-popup-transition .model-content .eblog-p-flexing {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.eblog-popup-model
    .eblog-popup-transition
    .model-content
    .eblog-p-flexing
    .form
    .eblog-p-sub-heading {
    text-align: center;
}
.eblog-popup-model
    .eblog-popup-transition
    .model-content
    .eblog-p-flexing
    .form
    .eblog-p-sub-heading
    p {
    text-transform: capitalize;
}
.eblog-popup-model
    .eblog-popup-transition
    .model-content
    .eblog-p-flexing
    .form
    .eblog-p-sub-heading {
    text-align: center;
}
.eblog-popup-model
    .eblog-popup-transition
    .model-content
    .eblog-p-flexing
    .form
    form
    input {
    border: 1px solid rgba(94, 94, 94, 0.5);
    height: 50px;
    padding: 0 20px;
}
.eblog-popup-model
    .eblog-popup-transition
    .model-content
    .eblog-p-flexing
    .form
    form
    button {
    width: 100%;
    text-align: center;
    padding: 10px 25px;
    border: 1px solid transparent;
    margin-top: 15px;
    background-color: var(--color-primary);
    color: #fff;
    transition: 0.3s ease-in-out;
}
.eblog-popup-model
    .eblog-popup-transition
    .model-content
    .eblog-p-flexing
    .form
    form
    button:hover {
    background-color: transparent;
    border: 1px solid rgba(94, 94, 94, 0.5);
    color: var(--color-body);
}
.eblog-popup-model
    .eblog-popup-transition
    .model-content
    .eblog-p-flexing
    .form
    .eblog-bottom-popup {
    text-align: center;
    margin-top: 20px;
}

.animate-subscribe-popup {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0);
    }
    to {
        -webkit-transform: scale(1);
    }
}
@keyframes animatezoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}
@media (max-width: 1723px) {
    .eblog-popup-model .eblog-popup-transition .model-content .eblog-p-flexing {
        align-items: center;
    }
    .eblog-popup-model
        .eblog-popup-transition
        .model-content
        .eblog-p-flexing
        .form
        .eblog-p-sub-heading
        h3 {
        font-size: 30px;
    }
}
@media (max-width: 1527px) {
    .eblog-popup-model .eblog-popup-transition .model-content .eblog-p-flexing {
        align-items: center;
    }
    .eblog-popup-model .eblog-popup-transition .model-content {
        padding: 20px;
    }
    .eblog-popup-model
        .eblog-popup-transition
        .model-content
        .eblog-p-flexing
        .form
        .eblog-p-sub-heading
        h3 {
        font-size: 20px;
    }
    .eblog-popup-model .eblog-popup-transition a {
        top: -13px;
        left: 96%;
    }
}
@media (max-width: 1000px) {
    .eblog-popup-model
        .eblog-popup-transition
        .model-content
        .eblog-p-flexing
        .eblog-p-img {
        display: none;
    }
    .eblog-popup-model .eblog-popup-transition a {
        top: -13px;
        left: 94%;
    }
    .eblog-popup-model .eblog-popup-transition .model-content {
        padding: 20px;
    }
}
/* Dark area style  */
/* Hero area style */
@media (max-width: 767px) {
    .eblog-trending-news-area {
        padding-bottom: 0;
    }
}
.eblog-trending-news-area .section-inner {
    padding-bottom: 55px;
}
.eblog-trending-news-area .swiper-pagination2 {
    display: flex;
    width: 100px;
    height: 10px;
    position: absolute;
    align-items: center;
    gap: 8px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 1;
}
@media (max-width: 767px) {
    .eblog-trending-news-area .swiper-pagination2 {
        display: none;
    }
}
.eblog-trending-news-area .swiper-pagination2 .swiper-pagination-bullet {
    display: block;
    width: 20px;
    margin: 0;
    height: 4px;
    border-radius: 0;
    opacity: 1;
    position: relative;
    background: #eeeeee;
    transition: var(--transition);
}
.eblog-trending-news-area
    .swiper-pagination2
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 30px;
}

.eblog-trending-news-area-2 {
    padding-top: 30px;
}
@media (max-width: 991px) {
    .eblog-trending-news-area-2 .eblog-featured-news .image-area {
        max-width: 100%;
    }
}
@media (max-width: 575px) {
    .eblog-trending-news-area-2 .eblog-featured-news .image-area .tag {
        left: 20px;
        top: 20px;
    }
}
@media (max-width: 575px) {
    .eblog-trending-news-area-2 .eblog-featured-news .image-area .blog-content {
        left: 20px;
        bottom: 20px;
    }
}
.eblog-trending-news-area-2
    .eblog-featured-news
    .image-area
    .blog-content
    .heading-title {
    line-height: 30px;
}
@media (max-width: 480px) {
    .eblog-trending-news-area-2
        .eblog-featured-news
        .image-area
        .blog-content
        .heading-title {
        line-height: 28px;
        margin-bottom: 10px;
    }
}
.eblog-trending-news-area-2
    .eblog-featured-news
    .image-area
    .blog-content
    .heading-title
    a {
    font-size: 24px;
    line-height: 30px;
    background-size: 201% 1px;
}
@media (max-width: 1399px) {
    .eblog-trending-news-area-2
        .eblog-featured-news
        .image-area
        .blog-content
        .heading-title
        a {
        font-size: 22px;
    }
}
@media (max-width: 575px) {
    .eblog-trending-news-area-2
        .eblog-featured-news
        .image-area
        .blog-content
        .heading-title
        a {
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .eblog-trending-news-area-2
        .eblog-featured-news
        .image-area
        .blog-content
        .heading-title
        a {
        font-size: 18px;
        line-height: 28px;
    }
}
@media (max-width: 480px) {
    .eblog-trending-news-area-2
        .eblog-featured-news
        .image-area
        .blog-content
        .blog-meta {
        gap: 5px;
    }
}

.section-inner {
    position: relative;
    z-index: 1;
}

.trending-news-wrapper {
    transition: var(--transition);
}
.trending-news-wrapper:hover .image-area a img {
    transform: scale(105%);
}
.trending-news-wrapper .image-area {
    overflow: hidden;
}
.trending-news-wrapper .image-area a {
    display: block;
}
.trending-news-wrapper .image-area a img {
    transform: scale(100%);
    transition: var(--transition);
    width: 100%;
}
.trending-news-wrapper .content-area {
    text-align: center;
    margin-top: 15px;
}
.trending-news-wrapper .content-area .blog-meta {
    justify-content: center;
    margin-bottom: 10px;
    align-items: center;
}
.trending-news-wrapper .content-area .title a {
    font-family: var(--title-font);
    color: var(--color-black);
    text-transform: none;
}

.eblog-featured-post-area
    .left-side-post-area
    .featured-post
    .section-title-area
    .section-title {
    position: relative;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post
    .section-title-area
    .section-title::after {
    content: "";
    position: absolute;
    width: 75%;
    height: 1px;
    background: #eeeeee;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post
        .section-title-area
        .section-title::after {
        display: none !important;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.area-2
    .section-title-area
    .section-title {
    font-weight: 400;
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.area-2
        .section-title-area
        .section-title {
        font-size: 36px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.area-2
    .section-title-area
    .section-title::after {
    width: 82%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post
    .post-section-inner {
    display: flex;
    gap: 30px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post
    .post-section-inner
    .big-post {
    flex-basis: 55%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post
    .post-section-inner
    .small-post {
    flex-basis: 45%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
@media (max-width: 575px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post
        .post-section-inner
        .small-post {
        gap: 30px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.ai
    .section-title-area
    .section-title {
    text-transform: capitalize;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.ai
    .section-title-area
    .section-title::after {
    width: 63%;
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.ai
        .eblog-featured-news
        .image-area {
        max-width: 100%;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.ai
    .post-section-bottom {
    margin-top: 50px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.ai
    .post-section-bottom
    .small-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.ai
    .post-section-bottom
    .small-post
    .eblog-post-list-style {
    width: 48%;
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.ai
        .post-section-bottom
        .small-post
        .eblog-post-list-style {
        width: 100%;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.ai
    .post-section-bottom
    .small-post
    .eblog-post-list-style
    .image-area {
    flex-basis: 31%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.ai
    .post-section-bottom
    .small-post
    .eblog-post-list-style
    .blog-content {
    flex-basis: 69%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.ai
    .post-section-bottom
    .small-post
    .eblog-post-list-style
    .blog-content
    .heading-title {
    margin-right: 5px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.latest-news
    .button-area {
    margin-top: 50px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.latest-news
    .button-area
    .tp-btn {
    margin: auto;
    border-radius: 0;
    padding: 17px 24px;
}
@media (max-width: 1199px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.latest-news
        .small-post
        .eblog-post-list-style
        .image-area {
        flex-basis: 46%;
    }
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.latest-news
        .small-post
        .eblog-post-list-style
        .image-area {
        flex-basis: auto;
        width: 100%;
    }
}
@media (max-width: 1199px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.latest-news
        .small-post
        .eblog-post-list-style
        .blog-content {
        flex-basis: 54%;
    }
}
@media (max-width: 1199px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.latest-news
        .small-post
        .eblog-post-list-style
        .blog-content
        .heading-title
        a {
        font-size: 24px;
        line-height: 34px;
    }
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.latest-news
        .small-post
        .eblog-post-list-style
        .blog-content
        .heading-title
        a {
        font-size: 20px;
        line-height: 30px;
    }
}
@media (max-width: 575px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.latest-news
        .small-post
        .eblog-post-list-style
        .blog-content
        .heading-title
        a {
        font-size: 18px;
        line-height: 28px;
    }
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.latest-news
        .small-post
        .eblog-post-list-style {
        flex-direction: column;
        align-items: self-start;
    }
}
.eblog-featured-post-area .left-side-post-area .featured-post.latest-news3 {
    border-top: 1px solid #eeeeee;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.latest-news3
    .button-area
    .tp-btn {
    margin-top: 5px !important;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .section-title-area {
    position: relative;
    z-index: 1;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .section-title-area::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 1px;
    background: #eeeeee;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.salads
        .section-title-area::after {
        display: none;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .section-title-area
    .section-title {
    margin-bottom: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .section-title-area
    .section-title::after {
    display: none;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .section-title-area
    .text-btn {
    text-decoration: underline;
    transition: var(--transition);
    margin-right: 0;
    color: var(--color-primary-3);
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .section-title-area
    .text-btn:hover {
    color: var(--color-primary-3);
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.salads
        .post-section-inner {
        flex-direction: column;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .big-post
    .image-area {
    border-radius: 10px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .big-post
    .image-area::after {
    background: linear-gradient(
        180deg,
        rgba(30, 30, 30, 0) 36.67%,
        #1e1e1e 100%
    );
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .big-post
    .image-area
    .tag {
    background: var(--color-primary-3);
    border-radius: 2px;
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.salads
        .big-post
        .image-area
        .blog-content
        .heading-title {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 10px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.salads
        .big-post
        .image-area
        .blog-content
        .heading-title
        a {
        line-height: 16px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.salads
        .big-post
        .image-area
        .blog-content
        .blog-meta {
        gap: 5px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .small-post {
    gap: 22px;
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.salads
        .small-post
        .eblog-post-list-style {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.salads
        .small-post
        .eblog-post-list-style
        .blog-meta {
        gap: 5px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .small-post
    .eblog-post-list-style
    .image-area {
    flex-basis: 30%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .small-post
    .eblog-post-list-style
    .blog-content {
    flex-basis: 70%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .small-post
    .image-area {
    border-radius: 10px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.salads
    .small-post
    .sub-title {
    border-radius: 2px;
    padding: 7px 18px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .section-title-area {
    position: relative;
    z-index: 1;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .section-title-area::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 1px;
    background: #eeeeee;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.juices
        .section-title-area::after {
        display: none;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .section-title-area
    .section-title {
    margin-bottom: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .section-title-area
    .section-title::after {
    display: none;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .section-title-area
    .text-btn {
    text-decoration: underline;
    transition: var(--transition);
    margin-right: 0;
    color: var(--color-primary-3);
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .section-title-area
    .text-btn:hover {
    color: var(--color-primary-3);
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .section-title-area.last::after {
    right: 0;
    width: 75%;
    left: unset;
    transform: translateY(-50%);
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .big-post
    .image-area,
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .small-post
    .image-area {
    border-radius: 10px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .big-post
    .image-area::after,
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .small-post
    .image-area::after {
    background: linear-gradient(
        180deg,
        rgba(30, 30, 30, 0) 36.67%,
        #1e1e1e 100%
    );
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .big-post
    .image-area
    .tag,
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .small-post
    .image-area
    .tag {
    background: var(--color-primary-3);
    border-radius: 2px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .small-post
    .blog-content {
    margin-top: 24px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .small-post
    .blog-content
    .blog-meta {
    margin-top: 0;
    margin-bottom: 10px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .small-post
    .blog-content
    .heading-title {
    line-height: 34px;
    margin-bottom: 0;
    font-weight: 500;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.juices
    .small-post
    .blog-content
    .heading-title
    a {
    font-size: 24px;
    line-height: 34px;
}
@media (max-width: 1399px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.juices
        .small-post
        .blog-content
        .heading-title
        a {
        font-size: 20px;
        line-height: 1.2;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .section-title-area {
    position: relative;
    z-index: 1;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .section-title-area::after {
    content: "";
    position: absolute;
    width: 65%;
    height: 1px;
    background: #eeeeee;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.sundea
        .section-title-area::after {
        display: none;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .section-title-area
    .section-title {
    margin-bottom: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .section-title-area
    .section-title::after {
    display: none;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .section-title-area
    .text-btn {
    text-decoration: underline;
    transition: var(--transition);
    margin-right: 0;
    color: var(--color-primary-3);
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .section-title-area
    .text-btn:hover {
    color: var(--color-primary-3);
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .sub-title {
    background: var(--color-primary-3);
    color: var(--color-white);
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .eblog-featured-news
    .image-area {
    border-radius: 10px;
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.sundea
        .eblog-featured-news
        .image-area {
        max-width: 100%;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .eblog-featured-news
    .image-area::after {
    background: linear-gradient(
        180deg,
        rgba(30, 30, 30, 0) 47.62%,
        #1e1e1e 100%
    );
    border-radius: 10px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .post-section-bottom {
    margin-top: 50px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .post-section-bottom
    .small-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .post-section-bottom
    .small-post
    .image-area {
    border-radius: 10px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .post-section-bottom
    .small-post
    .eblog-post-list-style {
    width: 48%;
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.sundea
        .post-section-bottom
        .small-post
        .eblog-post-list-style {
        width: 100%;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.sundea
    .post-section-bottom
    .small-post
    .eblog-post-list-style
    .blog-content
    .heading-title {
    margin-right: 5px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .section-title-area {
    position: relative;
    z-index: 1;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .section-title-area::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #eeeeee;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.fast-food
        .section-title-area::after {
        display: none;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .section-title-area
    .section-title {
    margin-bottom: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .section-title-area
    .section-title::after {
    display: none;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .section-title-area
    .text-btn {
    text-decoration: underline;
    transition: var(--transition);
    margin-right: 0;
    color: var(--color-primary-3);
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .section-title-area
    .text-btn:hover {
    color: var(--color-primary-3);
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .image-area {
    border-radius: 10px;
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.fast-food
        .image-area {
        width: 100%;
        max-width: 100%;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .eblog-post-list-style {
    gap: 13px;
    margin-bottom: 30px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .eblog-post-list-style:last-child {
    margin-bottom: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .eblog-post-list-style
    .image-area {
    flex-basis: 28%;
    border-radius: 10px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .eblog-post-list-style
    .blog-content {
    flex-basis: 72%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .eblog-post-list-style
    .blog-content
    .heading-title {
    margin-right: 0;
    line-height: 24px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.fast-food
    .eblog-post-list-style
    .blog-content
    .heading-title
    a {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
@media (max-width: 1399px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.fast-food
        .eblog-post-list-style
        .blog-content
        .heading-title
        a {
        font-size: 16px;
        line-height: 1.2;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .section-title-area {
    position: relative;
    z-index: 1;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .section-title-area::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 1px;
    background: #eeeeee;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .section-title-area::after {
        display: none;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .section-title-area
    .section-title {
    margin-bottom: 0;
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    text-transform: uppercase;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .section-title-area
    .section-title::after {
    display: none;
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .section-title-area
        .section-title {
        font-size: 28px;
        line-height: 38px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .section-title-area
    .text-btn {
    text-decoration: underline;
    transition: var(--transition);
    margin-right: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .section-title-area
    .text-btn:hover {
    color: var(--color-primary-4);
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .big-post {
    margin-bottom: 30px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .big-post
    .image-area {
    border-radius: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .big-post
    .image-area::after {
    display: none;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .big-post
    .image-area
    img {
    min-height: 358px;
    object-fit: cover;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .big-post
    .image-area
    .tag {
    background: var(--color-primary-4);
    border-radius: 2px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .big-post
    .blog-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: max-content;
    width: 100%;
    bottom: unset;
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .big-post
        .blog-content {
        width: 95%;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .big-post
    .blog-content
    .sub-title {
    margin: auto;
    margin-bottom: 25px;
}
@media (max-width: 575px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .big-post
        .blog-content
        .sub-title {
        margin-bottom: 10px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .big-post
        .blog-content
        .sub-title {
        margin-bottom: 5px;
        padding: 2px 10px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .big-post
    .blog-content
    .heading-title {
    margin-bottom: 8px;
}
@media (max-width: 575px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .big-post
        .blog-content
        .heading-title {
        margin-bottom: 0;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .big-post
    .blog-content
    .heading-title
    a {
    font-size: 40px;
    line-height: 40px;
    font-weight: 400;
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .big-post
        .blog-content
        .heading-title
        a
        br {
        display: none;
    }
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .big-post
        .blog-content
        .heading-title
        a {
        font-size: 22px;
        line-height: 26px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .big-post
    .blog-content
    .blog-meta {
    justify-content: center;
    margin: 0 0 14px;
    align-items: center;
    flex-direction: row;
}
@media (max-width: 575px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .big-post
        .blog-content
        .blog-meta {
        margin: 0 0 8px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .big-post
        .blog-content
        .blog-meta {
        gap: 5px;
        margin: 0 0 5px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .big-post
    .text-btn {
    display: block;
    color: var(--color-white);
    text-underline-offset: 2px;
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .big-post
        .text-btn {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .bottom-post
        .post-section-inner {
        flex-direction: column;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .bottom-post
    .big-post {
    flex-basis: 55%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .bottom-post
    .big-post
    .blog-meta {
    align-items: center;
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .bottom-post
        .big-post
        .blog-meta {
        gap: 5px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .bottom-post
    .small-post {
    flex-basis: 45%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .bottom-post
    .small-post
    .image-area {
    border-radius: 0;
    flex-basis: 30%;
    max-width: 123px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .bottom-post
    .small-post
    .blog-content {
    flex-basis: 70%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .bottom-post
    .small-post
    .blog-content
    .sub-title {
    background: none;
    padding: 0;
    margin-bottom: 10px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .bottom-post
    .small-post
    .blog-content
    .heading-title {
    line-height: 28px;
    margin-bottom: 10px;
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .bottom-post
        .small-post
        .blog-content
        .heading-title {
        line-height: 1.1;
        margin-bottom: 5px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .bottom-post
    .small-post
    .blog-content
    .heading-title
    a {
    font-size: 24px;
    line-height: 28px;
}
@media (max-width: 1399px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .bottom-post
        .small-post
        .blog-content
        .heading-title
        a {
        font-size: 18px;
        line-height: 1.1;
    }
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .bottom-post
        .small-post
        .blog-content
        .heading-title
        a {
        font-size: 24px;
        line-height: 1.1;
    }
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .bottom-post
        .small-post
        .blog-content
        .heading-title
        a {
        font-size: 18px;
        line-height: 1.1;
    }
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .bottom-post
        .small-post
        .blog-content
        .blog-meta {
        gap: 5px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.football
        .bottom-post
        .small-post
        .blog-content
        .blog-meta
        li {
        font-size: 14px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .small-post
    .image-area {
    border-radius: 10px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.football
    .small-post
    .sub-title {
    border-radius: 2px;
    padding: 7px 18px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .section-title-area {
    position: relative;
    z-index: 1;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .section-title-area::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 1px;
    background: #eeeeee;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.body-builder
        .section-title-area::after {
        display: none;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .section-title-area
    .section-title {
    margin-bottom: 0;
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
    text-transform: uppercase;
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.body-builder
        .section-title-area
        .section-title {
        font-size: 28px;
        line-height: 38px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .section-title-area
    .section-title::after {
    display: none;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .section-title-area
    .text-btn {
    text-decoration: underline;
    transition: var(--transition);
    margin-right: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .section-title-area
    .text-btn:hover {
    color: var(--color-primary-4);
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .sub-title {
    background: none;
    padding: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .eblog-featured-news
    .image-area {
    border-radius: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .eblog-featured-news
    .image-area::after {
    display: none;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .eblog-featured-news
    .blog-content
    .sub-title {
    margin-bottom: 15px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .eblog-featured-news
    .blog-content
    .heading-title {
    line-height: 26px;
    margin-bottom: 10px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .eblog-featured-news
    .blog-content
    .heading-title
    a {
    font-size: 24px;
    line-height: 26px;
}
@media (max-width: 1399px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.body-builder
        .eblog-featured-news
        .blog-content
        .heading-title
        a
        br {
        display: none;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .post-section-bottom {
    margin-top: 50px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .post-section-bottom
    .small-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .post-section-bottom
    .small-post
    .image-area {
    border-radius: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .post-section-bottom
    .small-post
    .eblog-post-list-style {
    width: 48%;
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.body-builder
        .post-section-bottom
        .small-post
        .eblog-post-list-style {
        width: 100%;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .post-section-bottom
    .small-post
    .eblog-post-list-style
    .image-area {
    flex-basis: 27%;
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.body-builder
        .post-section-bottom
        .small-post
        .eblog-post-list-style
        .image-area {
        flex-basis: 38%;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .post-section-bottom
    .small-post
    .eblog-post-list-style
    .blog-content {
    flex-basis: 73%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .post-section-bottom
    .small-post
    .eblog-post-list-style
    .blog-content
    .sub-title {
    margin-bottom: 10px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .post-section-bottom
    .small-post
    .eblog-post-list-style
    .blog-content
    .heading-title {
    margin-right: 5px;
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.body-builder
        .post-section-bottom
        .small-post
        .eblog-post-list-style
        .blog-content
        .heading-title {
        margin-right: 0;
        margin-bottom: 5px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.body-builder
    .post-section-bottom
    .small-post
    .eblog-post-list-style
    .blog-content
    .heading-title
    a {
    font-size: 24px;
    line-height: 26px;
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.body-builder
        .post-section-bottom
        .small-post
        .eblog-post-list-style
        .blog-content
        .heading-title
        a
        br {
        display: none;
    }
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.body-builder
        .post-section-bottom
        .small-post
        .eblog-post-list-style
        .blog-content
        .heading-title
        a {
        font-size: 18px;
        line-height: 20px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.body-builder
        .post-section-bottom
        .small-post
        .eblog-post-list-style
        .blog-content
        .blog-meta {
        gap: 0;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .section-title-area {
    position: relative;
    z-index: 1;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .section-title-area::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 1px;
    background: #eeeeee;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.tennis
        .section-title-area::after {
        display: none;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .section-title-area
    .section-title {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 36px;
    line-height: 46px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .section-title-area
    .section-title::after {
    display: none;
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.tennis
        .section-title-area
        .section-title {
        font-size: 28px;
        line-height: 38px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .section-title-area
    .text-btn {
    text-decoration: underline;
    transition: var(--transition);
    margin-right: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .section-title-area
    .text-btn:hover {
    color: var(--color-primary-4);
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .image-area {
    border-radius: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .eblog-post-list-style {
    gap: 13px;
    margin-bottom: 25px;
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.tennis
        .eblog-post-list-style {
        max-width: max-content;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .eblog-post-list-style:last-child {
    margin-bottom: 0;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .eblog-post-list-style
    .image-area {
    flex-basis: 31%;
    border-radius: 0;
    max-width: 88px;
    min-width: 88px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .eblog-post-list-style
    .blog-content {
    flex-basis: 75%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .eblog-post-list-style
    .blog-content
    .heading-title {
    margin-right: 0;
    line-height: 24px;
    margin-bottom: 10px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .eblog-post-list-style
    .blog-content
    .heading-title
    a {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    font-family: var(--title-font-3);
    text-transform: none;
}
@media (max-width: 1399px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.tennis
        .eblog-post-list-style
        .blog-content
        .heading-title
        a {
        font-size: 22px;
    }
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.tennis
        .style-sm {
        margin: 30px 0;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .style-sm
    .blog-content
    .sub-title {
    background: var(--color-primary-4);
    margin-bottom: 18px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .style-sm
    .blog-content
    .heading-title {
    line-height: 26px;
    margin-bottom: 15px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.tennis
    .style-sm
    .blog-content
    .heading-title
    a {
    font-size: 26px;
    line-height: 26px;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.area-3
    .section-title-area
    .section-title {
    font-weight: 500;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.area-3
    .section-title-area
    .section-title::after {
    width: 82%;
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.area-3
        .eblog-featured-news
        .blog-content {
        margin-top: 10px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.area-3
    .eblog-featured-news
    .blog-content
    .heading-title {
    line-height: 36px;
}
@media (max-width: 1440px) and (min-width: 1200px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.area-3
        .eblog-featured-news
        .blog-content
        .heading-title {
        font-size: 24px;
        line-height: 32px;
    }
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.area-3
        .eblog-featured-news
        .blog-content
        .heading-title {
        line-height: 28px;
        margin-bottom: 10px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.area-3
    .eblog-featured-news
    .blog-content
    .heading-title
    a {
    font-size: 32px;
    line-height: 36px;
}
@media (max-width: 1399px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.area-3
        .eblog-featured-news
        .blog-content
        .heading-title
        a {
        font-size: 26px;
        line-height: 32px;
    }
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.area-3
        .eblog-featured-news
        .blog-content
        .heading-title
        a {
        font-size: 24px;
        line-height: 28px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.area-3
    .eblog-featured-news
    .blog-content
    .blog-meta {
    flex-direction: row;
}
@media (max-width: 767px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.area-3
        .eblog-featured-news
        .blog-content
        .blog-meta {
        margin-bottom: 10px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.area-3
    .button-area
    .tp-btn {
    background: var(--color-primary-4);
    border-radius: 0;
    margin-top: 15px !important;
}
@media (max-width: 450px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.technology
        .eblog-featured-news
        .image-area
        .tag {
        left: 15px;
    }
}
@media (max-width: 1366px) and (min-width: 1200px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.technology
        .eblog-featured-news
        .image-area
        .blog-content {
        left: 30px;
    }
}
@media (max-width: 450px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.technology
        .eblog-featured-news
        .image-area
        .blog-content {
        left: 15px;
        bottom: 20px;
    }
}
@media (max-width: 1366px) and (min-width: 1200px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.technology
        .eblog-featured-news
        .image-area
        .blog-content
        .heading-title {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.technology
        .eblog-featured-news
        .image-area
        .blog-content
        .heading-title {
        font-size: 18px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.technology
    .eblog-featured-news
    .image-area
    .blog-content
    .blog-meta {
    flex-direction: row;
    align-items: center;
}
@media (max-width: 450px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.technology
        .eblog-featured-news
        .image-area
        .blog-content
        .blog-meta {
        gap: 10px;
    }
}
@media (max-width: 450px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.technology
        .eblog-featured-news
        .image-area
        .blog-content
        .blog-meta
        li {
        font-size: 12px;
    }
}
@media (max-width: 991px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.technology
        .post-section-inner {
        flex-direction: column;
        align-self: self-start;
    }
}
@media (max-width: 1199px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.technology
        .small-post {
        gap: 20px;
    }
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.technology
    .small-post
    .eblog-post-list-style
    .image-area {
    flex-basis: 30%;
}
.eblog-featured-post-area
    .left-side-post-area
    .featured-post.technology
    .small-post
    .eblog-post-list-style
    .blog-content {
    flex-basis: 70%;
}
@media (max-width: 1440px) and (min-width: 992px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.technology
        .eblog-post-list-style
        .blog-content
        .heading-title
        a {
        font-size: 18px;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    .eblog-featured-post-area
        .left-side-post-area
        .featured-post.technology
        .eblog-post-list-style
        .blog-content
        .heading-title
        a {
        font-size: 16px;
    }
}

.eblog-featured-news .image-area {
    position: relative;
    z-index: 1;
    transition: var(--transition);
    overflow: hidden;
    max-width: max-content;
}
@media (max-width: 991px) {
    .eblog-featured-news .image-area {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 1199px) {
    .eblog-featured-news .image-area img {
        width: 100%;
    }
}
.eblog-featured-news .image-area:hover a img {
    transform: scale(105%);
}
.eblog-featured-news .image-area a {
    transition: var(--transition);
}
.eblog-featured-news .image-area a img {
    transform: scale(100%);
    transition: var(--transition);
    min-height: 434px;
    object-fit: cover;
    max-height: 550px;
}
.eblog-featured-news .image-area::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1e1e1e 100%);
}
.eblog-featured-news .image-area .tag {
    position: absolute;
    width: max-content;
    color: var(--color-white);
    font-size: 13px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.1);
    top: 20px;
    left: 20px;
    z-index: 1;
    padding: 7px 10px;
}
@media (max-width: 480px) {
    .eblog-featured-news .image-area .tag {
        top: 20px;
        left: 20px;
    }
}
.eblog-featured-news .image-area .blog-content {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 1;
    right: 40px;
}
@media (max-width: 1399px) {
    .eblog-featured-news .image-area .blog-content {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-news .image-area .blog-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}
.eblog-featured-news .image-area .blog-content .heading-title a {
    line-height: 1.4;
}
@media (max-width: 1399px) {
    .eblog-featured-news .image-area .blog-content .heading-title a {
        font-size: 26px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-news .image-area .blog-content .heading-title a {
        font-size: 20px;
    }
    .eblog-featured-news .image-area .blog-content .heading-title a br {
        display: none;
    }
}
.eblog-featured-news .image-area .blog-content .blog-meta {
    gap: 25px;
    flex-wrap: wrap;
}
@media (max-width: 1399px) {
    .eblog-featured-news .image-area .blog-content .blog-meta {
        gap: 15px;
    }
}
.eblog-featured-news.style-sm .blog-content {
    left: 30px;
    bottom: 30px;
    right: 20px;
}
@media (max-width: 1366px) and (min-width: 1200px) {
    .eblog-featured-news.style-sm .blog-content {
        left: 20px;
        right: 20px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-news.style-sm .blog-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}
.eblog-featured-news.style-sm .blog-content .heading-title {
    margin-bottom: 10px;
    line-height: 26px;
}
.eblog-featured-news.style-sm .blog-content .heading-title a {
    font-size: 18px;
    line-height: 1.3;
}
@media (max-width: 1366px) and (min-width: 1200px) {
    .eblog-featured-news.style-sm .blog-content .heading-title a {
        font-size: 16px;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    .eblog-featured-news.style-sm .blog-content .heading-title a {
        font-size: 18px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-news.style-sm .blog-content .heading-title a br {
        display: none;
    }
}
.eblog-featured-news.style-sm .blog-content .blog-meta {
    margin-top: 0;
}
.eblog-featured-news.style-sm .blog-content .blog-meta li {
    line-height: 1;
}
@media (max-width: 991px) {
    .eblog-featured-news.style-two .image-area {
        max-width: 100%;
    }
}
.eblog-featured-news.style-two .image-area::after {
    display: none;
}
.eblog-featured-news.style-two .image-area .tag {
    background: rgba(0, 0, 0, 0.5);
}
.eblog-featured-news.style-two .blog-content {
    margin-top: 24px;
}
.eblog-featured-news.style-two .blog-content .blog-meta {
    justify-content: center;
    margin-bottom: 15px;
    align-items: center;
}
.eblog-featured-news.style-two .blog-content .blog-meta li {
    color: var(--color-heading-1);
}
.eblog-featured-news.style-two .blog-content .blog-meta li svg path,
.eblog-featured-news.style-two .blog-content .blog-meta li svg rect {
    fill: var(--color-heading-1);
}
.eblog-featured-news.style-two .blog-content .heading-title {
    text-align: center;
    margin: auto;
    margin-bottom: 10px;
    line-height: 46px;
}
@media (max-width: 767px) {
    .eblog-featured-news.style-two .blog-content .heading-title {
        line-height: 42px;
    }
}
@media (max-width: 575px) {
    .eblog-featured-news.style-two .blog-content .heading-title {
        line-height: 38px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-news.style-two .blog-content .heading-title {
        line-height: 30px;
    }
}
.eblog-featured-news.style-two .blog-content .heading-title a {
    font-size: 36px;
    line-height: 46px;
    color: var(--color-heading-1);
    background-image: linear-gradient(to right, #000 50%, transparent 50%);
}
@media (max-width: 1399px) {
    .eblog-featured-news.style-two .blog-content .heading-title a {
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    .eblog-featured-news.style-two .blog-content .heading-title a {
        font-size: 26px;
        line-height: 1.2;
    }
}
@media (max-width: 575px) {
    .eblog-featured-news.style-two .blog-content .heading-title a {
        font-size: 26px;
        line-height: 1.2;
    }
    .eblog-featured-news.style-two .blog-content .heading-title a br {
        display: none;
    }
}
@media (max-width: 480px) {
    .eblog-featured-news.style-two .blog-content .heading-title a {
        font-size: 20px;
        line-height: 30px;
    }
    .eblog-featured-news.style-two .blog-content .heading-title a br {
        display: none;
    }
}
.eblog-featured-news.style-two .blog-content .text-btn {
    text-decoration: underline;
    display: block;
    text-align: center;
    transition: all 0.3s;
}
.eblog-featured-news.style-two .blog-content .text-btn:hover {
    color: var(--color-primary-4) !important;
}
.eblog-featured-news.style-two.big {
    margin-bottom: 20px;
}
.eblog-featured-news.style-two.small .blog-content {
    margin-top: 20px;
}
.eblog-featured-news.style-two.small .blog-content .blog-meta {
    margin-bottom: 5px;
    flex-direction: row;
}
.eblog-featured-news.style-two.small .blog-content .blog-meta li {
    font-size: 14px;
}
.eblog-featured-news.style-two.small .blog-content .heading-title {
    line-height: 24px;
}
.eblog-featured-news.style-two.small .blog-content .heading-title a {
    font-size: 20px;
    line-height: 28px;
    background-size: 201% 1px;
}
@media (max-width: 1399px) {
    .eblog-featured-news.style-two.small .blog-content .heading-title a {
        font-size: 18px;
    }
    .eblog-featured-news.style-two.small .blog-content .heading-title a br {
        display: none;
    }
}
@media (max-width: 575px) {
    .eblog-featured-news.style-two.small .blog-content .heading-title a {
        font-size: 28px;
        line-height: 38px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-news.style-two.small .blog-content .heading-title a {
        font-size: 18px;
        line-height: 30px;
    }
    .eblog-featured-news.style-two.small .blog-content .heading-title a br {
        display: none;
    }
}
.eblog-featured-news.style-two.small .blog-content.text-left .tag {
    max-width: max-content;
    background: rgba(30, 30, 30, 0.05);
    line-height: 1;
    font-size: 13px;
    padding: 7px 10px;
}
.eblog-featured-news.style-two.small .blog-content.text-left .heading-title {
    line-height: 26px;
}
.eblog-featured-news.style-two.small .blog-content.text-left .heading-title a {
    font-size: 24px;
    line-height: 26px;
}
@media (max-width: 1366px) and (min-width: 991px) {
    .eblog-featured-news.style-two.small
        .blog-content.text-left
        .heading-title
        a {
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .eblog-featured-news.style-two.small
        .blog-content.text-left
        .heading-title
        a {
        font-size: 28px;
        line-height: 38px;
    }
    .eblog-featured-news.style-two.small
        .blog-content.text-left
        .heading-title
        a
        br {
        display: none;
    }
}
@media (max-width: 480px) {
    .eblog-featured-news.style-two.small
        .blog-content.text-left
        .heading-title
        a {
        font-size: 18px;
        line-height: 26px;
    }
}
.eblog-featured-news.style-three .image-area::after {
    background: linear-gradient(180deg, rgba(28, 28, 28, 0) 50%, #000000 100%);
}
@media (max-width: 1366px) and (min-width: 1200px) {
    .eblog-featured-news.style-three .blog-content {
        left: 20px;
    }
}
@media (max-width: 991px) {
    .eblog-featured-news.style-three .blog-content {
        left: 20px;
        bottom: 20px;
    }
}
.eblog-featured-news.style-three .blog-content .sub-title {
    margin-bottom: 20px;
    border-radius: 0;
}
.eblog-featured-news.style-three .blog-content .heading-title {
    margin-bottom: 8px;
}
.eblog-featured-news.style-three .blog-content .heading-title a {
    line-height: 36px;
    font-size: 32px;
}
@media (max-width: 1366px) and (min-width: 1200px) {
    .eblog-featured-news.style-three .blog-content .heading-title a {
        font-size: 30px;
        line-height: 34px;
    }
}
@media (max-width: 991px) {
    .eblog-featured-news.style-three .blog-content .heading-title a {
        font-size: 26px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-news.style-three .blog-content .heading-title a {
        font-size: 24px;
        line-height: 30px;
    }
}
@media (max-width: 480px) {
    .eblog-featured-news.style-three .blog-content .blog-meta {
        gap: 5px;
    }
}

.latest-news .eblog-post-list-style {
    gap: 30px;
    margin-bottom: 30px;
}
.latest-news .eblog-post-list-style:last-child {
    margin-bottom: 0;
}
.latest-news .eblog-post-list-style .blog-content .sub-title {
    margin-bottom: 18px;
}
.latest-news .eblog-post-list-style .blog-content .heading-title {
    margin-bottom: 18px;
}
.latest-news .eblog-post-list-style .blog-content .heading-title a {
    font-size: 36px;
    line-height: 46px;
}
@media (max-width: 991px) {
    .latest-news .eblog-post-list-style .blog-content .heading-title a {
        font-size: 32px;
        line-height: 42px;
    }
}
@media (max-width: 767px) {
    .latest-news .eblog-post-list-style .blog-content .heading-title a {
        font-size: 24px;
        line-height: 34px;
    }
}
@media (max-width: 450px) {
    .latest-news .eblog-post-list-style .blog-content .heading-title a {
        font-size: 20px;
        line-height: 30px;
    }
}
.latest-news .eblog-post-list-style .blog-content .desc {
    margin: 16px 0;
    color: var(--color-heading-1);
}
.latest-news .eblog-post-list-style .blog-content .read-more-btn {
    display: block;
    max-width: max-content;
    color: var(--color-primary);
    text-decoration: underline;
}

.eblog-post-list-style {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 575px) {
    .eblog-post-list-style {
        align-items: start;
    }
}
.eblog-post-list-style .image-area {
    position: relative;
    z-index: 1;
    transition: var(--transition);
    overflow: hidden;
    max-width: 110px;
}
@media (max-width: 575px) {
    .eblog-post-list-style .image-area {
        width: 100%;
    }
}
.eblog-post-list-style .image-area:hover a img {
    transform: scale(105%);
}
.eblog-post-list-style .image-area a {
    display: block;
    transition: var(--transition);
}
.eblog-post-list-style .image-area a img {
    transform: scale(100%);
    transition: var(--transition);
    width: 100%;
}
@media (max-width: 575px) {
    .eblog-post-list-style .image-area a img {
        width: 100%;
    }
}
.eblog-post-list-style .blog-content .sub-title {
    background: #eeeeee;
    color: var(--color-heading-1);
    margin-bottom: 7px;
}
.eblog-post-list-style .blog-content .heading-title {
    margin-bottom: 12px;
    line-height: 26px;
}
@media (max-width: 575px) {
    .eblog-post-list-style .blog-content .heading-title {
        line-height: 20px;
    }
}
.eblog-post-list-style .blog-content .heading-title a {
    font-size: 20px;
    line-height: 1.3;
    color: var(--color-heading-1);
    background-size: 200% 1px;
    background-image: linear-gradient(to right, #000 50%, transparent 50%);
}
@media (max-width: 1366px) and (min-width: 1200px) {
    .eblog-post-list-style .blog-content .heading-title a {
        font-size: 16px;
    }
}
.eblog-post-list-style .blog-content .blog-meta {
    gap: 25px;
    margin-top: 0;
}
@media (max-width: 575px) {
    .eblog-post-list-style .blog-content .blog-meta {
        gap: 18px;
    }
}
@media (max-width: 450px) {
    .eblog-post-list-style .blog-content .blog-meta {
        gap: 13px;
    }
}
.eblog-post-list-style .blog-content .blog-meta li {
    font-size: 14px;
    color: var(--color-heading-1);
    line-height: 1;
}
.eblog-post-list-style .blog-content .blog-meta li svg path {
    fill: var(--color-heading-1);
}
.eblog-post-list-style .blog-content .blog-meta li svg rect {
    fill: var(--color-heading-1);
}

.eblog-right-sidebar .eblog-right-side-post {
    margin-bottom: 50px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.eblog-right-sidebar .eblog-right-side-post p.title {
    text-align: center;
    padding: 12px 0;
    background: #f6f6f6;
    color: var(--color-heading-1);
    margin-bottom: 30px;
}
.eblog-right-sidebar .eblog-right-side-post .eblog-post-list-style {
    gap: 13px;
    margin-bottom: 20px;
}
.eblog-right-sidebar .eblog-right-side-post .eblog-post-list-style:last-child {
    margin-bottom: 0;
}
.eblog-right-sidebar .eblog-right-side-post .eblog-post-list-style .image-area {
    flex-basis: 30%;
}
@media (max-width: 991px) {
    .eblog-right-sidebar
        .eblog-right-side-post
        .eblog-post-list-style
        .image-area {
        flex-basis: 25%;
    }
}
.eblog-right-sidebar
    .eblog-right-side-post
    .eblog-post-list-style
    .blog-content {
    flex-basis: 70%;
}
@media (max-width: 991px) {
    .eblog-right-sidebar
        .eblog-right-side-post
        .eblog-post-list-style
        .blog-content {
        flex-basis: 75%;
    }
}
.eblog-right-sidebar
    .eblog-right-side-post
    .eblog-post-list-style
    .blog-content
    .heading-title {
    line-height: 22px;
}
@media (max-width: 450px) {
    .eblog-right-sidebar
        .eblog-right-side-post
        .eblog-post-list-style
        .blog-content
        .heading-title {
        line-height: 20px;
    }
}
.eblog-right-sidebar
    .eblog-right-side-post
    .eblog-post-list-style
    .blog-content
    .heading-title
    a {
    font-size: 18px;
    line-height: 22px;
}
@media (max-width: 1366px) and (min-width: 1200px) {
    .eblog-right-sidebar
        .eblog-right-side-post
        .eblog-post-list-style
        .blog-content
        .heading-title
        a {
        font-size: 16px;
    }
}
@media (max-width: 450px) {
    .eblog-right-sidebar
        .eblog-right-side-post
        .eblog-post-list-style
        .blog-content
        .heading-title
        a {
        font-size: 16px;
        line-height: 20px;
    }
}
.eblog-right-sidebar .eblog-right-side-post .category-area .category-wrapper {
    padding: 0;
    margin: 0;
}
.eblog-right-sidebar
    .eblog-right-side-post
    .category-area
    .category-wrapper
    li {
    list-style: none;
    padding: 0;
    margin: 0 0 17px;
}
.eblog-right-sidebar
    .eblog-right-side-post
    .category-area
    .category-wrapper
    li:last-child {
    margin-bottom: 0;
}
.eblog-right-sidebar
    .eblog-right-side-post
    .category-area
    .category-wrapper
    li
    .image-area {
    position: relative;
    z-index: 1;
}
.eblog-right-sidebar
    .eblog-right-side-post
    .category-area
    .category-wrapper
    li
    .image-area::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}
@media (max-width: 1199px) {
    .eblog-right-sidebar
        .eblog-right-side-post
        .category-area
        .category-wrapper
        li
        .image-area
        img {
        width: 100%;
    }
}
.eblog-right-sidebar
    .eblog-right-side-post
    .category-area
    .category-wrapper
    li
    .image-area
    .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
@media (max-width: 1366px) and (min-width: 1199px) {
    .eblog-right-sidebar
        .eblog-right-side-post
        .category-area
        .category-wrapper
        li
        .image-area
        .text {
        font-size: 14px;
    }
}
.eblog-right-sidebar
    .eblog-right-side-post
    .category-area
    .category-wrapper
    li
    .image-area
    .text
    a {
    color: var(--color-white);
}
@media (max-width: 575px) {
    .eblog-right-sidebar
        .eblog-right-side-post
        .category-area
        .category-wrapper
        li
        .image-area
        .text
        a {
        font-size: 16px;
    }
}
.eblog-right-sidebar .eblog-right-side-post .social-area .social-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.eblog-right-sidebar .eblog-right-side-post .social-area .social-wrapper li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eblog-right-sidebar .eblog-right-side-post .social-area .social-wrapper li a {
    display: block;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    border: 1px solid #eeeeee;
    transition: var(--transition);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .social-area
    .social-wrapper
    li
    a:hover {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .social-area
    .social-wrapper
    li
    a:hover
    svg
    path {
    fill: var(--color-white);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .social-area
    .social-wrapper
    li
    a
    svg
    path {
    fill: var(--color-primary);
    transition: var(--transition);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .social-area.area-2
    .social-wrapper
    li
    a:hover {
    background: var(--color-primary-2);
    border: 1px solid var(--color-primary-2);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .social-area.area-2
    .social-wrapper
    li
    a:hover
    svg
    path {
    fill: var(--color-white);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .social-area.area-2
    .social-wrapper
    li
    a
    svg
    path {
    fill: var(--color-primary-2);
    transition: var(--transition);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .social-area.area-3
    .social-wrapper
    li
    a:hover {
    background: var(--color-primary-3);
    border: 1px solid var(--color-primary-3);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .social-area.area-3
    .social-wrapper
    li
    a:hover
    svg
    path {
    fill: var(--color-white);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .social-area.area-3
    .social-wrapper
    li
    a
    svg
    path {
    fill: var(--color-primary-3);
    transition: var(--transition);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .social-area.area-4
    .social-wrapper
    li
    a:hover {
    background: var(--color-primary-4);
    border: 1px solid var(--color-primary-4);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .social-area.area-4
    .social-wrapper
    li
    a:hover
    svg
    path {
    fill: var(--color-white);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .social-area.area-4
    .social-wrapper
    li
    a
    svg
    path {
    fill: var(--color-primary-4);
    transition: var(--transition);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .newsletter-area
    .single-input-wrapper {
    position: relative;
    border-radius: 4px;
    margin-bottom: 20px;
    z-index: 1;
}
.eblog-right-sidebar
    .eblog-right-side-post
    .newsletter-area
    .single-input-wrapper:last-child {
    margin-bottom: 0;
}
.eblog-right-sidebar
    .eblog-right-side-post
    .newsletter-area
    .single-input-wrapper
    input {
    padding: 0px 20px;
    font-size: 14px;
    line-height: 1;
    color: var(--color-heading-1);
    border: 1px solid var(--color-heading-1);
    border-radius: 0;
    height: 50px;
}
.eblog-right-sidebar
    .eblog-right-side-post
    .newsletter-area
    .single-input-wrapper
    input::placeholder {
    color: #888888;
    font-size: 14px;
    line-height: 1;
}
.eblog-right-sidebar
    .eblog-right-side-post
    .newsletter-area
    .single-input-wrapper
    input:focus {
    border-radius: 0;
    border: 1px solid var(--color-primary);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .newsletter-area
    .single-input-wrapper
    button {
    background: var(--color-heading-1);
    color: var(--color-white);
    max-width: 100%;
    border-radius: 0;
    font-size: 16px;
    line-height: 26px;
}
.eblog-right-sidebar
    .eblog-right-side-post
    .newsletter-area.area-2
    .single-input-wrapper
    .subscribe-btn {
    background: var(--color-primary-2);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .newsletter-area.area-3
    .single-input-wrapper
    input {
    border: 1px solid var(--color-primary-3);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .newsletter-area.area-3
    .single-input-wrapper
    .subscribe-btn {
    background: var(--color-primary-3);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .newsletter-area.area-4
    .single-input-wrapper
    input {
    border: 1px solid var(--color-primary-4);
}
.eblog-right-sidebar
    .eblog-right-side-post
    .newsletter-area.area-4
    .single-input-wrapper
    .subscribe-btn {
    background: var(--color-primary-4);
}
.eblog-right-sidebar .eblog-right-side-post.ad {
    margin-bottom: 0;
}
.eblog-right-sidebar .eblog-right-side-post.ad img {
    width: 100%;
}
.eblog-right-sidebar
    .eblog-right-side-post.author
    .blog-content
    .social-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}
.eblog-right-sidebar
    .eblog-right-side-post.author
    .blog-content
    .social-wrapper
    li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eblog-right-sidebar
    .eblog-right-side-post.author
    .blog-content
    .social-wrapper
    li
    a {
    transition: var(--transition);
}
.eblog-right-sidebar
    .eblog-right-side-post.author
    .blog-content
    .social-wrapper
    li
    a:hover
    svg
    path,
.eblog-right-sidebar
    .eblog-right-side-post.author
    .blog-content
    .social-wrapper
    li
    a:hover
    svg
    rect {
    fill: var(--color-primary-2);
    transition: var(--transition);
}
.eblog-right-sidebar
    .eblog-right-side-post.author
    .blog-content
    .social-wrapper
    li
    a
    svg {
    width: 18px;
    height: 18px;
}
.eblog-right-sidebar
    .eblog-right-side-post.author
    .blog-content
    .social-wrapper
    li
    a
    svg
    path,
.eblog-right-sidebar
    .eblog-right-side-post.author
    .blog-content
    .social-wrapper
    li
    a
    svg
    rect {
    fill: var(--color-heading-1);
    transition: var(--transition);
}
.eblog-right-sidebar
    .eblog-right-side-post.author
    .blog-content
    .social-wrapper.area-4
    li
    a:hover
    svg
    path,
.eblog-right-sidebar
    .eblog-right-side-post.author
    .blog-content
    .social-wrapper.area-4
    li
    a:hover
    svg
    rect {
    fill: var(--color-primary-4);
    transition: var(--transition);
}
.eblog-right-sidebar .eblog-right-side-post.author .blog-content .title {
    font-weight: 400;
    margin-bottom: 10px;
}
.eblog-right-sidebar .eblog-right-side-post.author .blog-content .desc {
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 0;
}
.eblog-right-sidebar .category2 .image-area::after {
    display: none;
}
.eblog-right-sidebar.area-2
    .eblog-right-side-post
    .eblog-post-list-style
    .image-area,
.eblog-right-sidebar.area-3
    .eblog-right-side-post
    .eblog-post-list-style
    .image-area {
    flex-basis: 27%;
}
@media (max-width: 1199px) {
    .eblog-right-sidebar.area-2
        .eblog-right-side-post
        .eblog-post-list-style
        .image-area,
    .eblog-right-sidebar.area-3
        .eblog-right-side-post
        .eblog-post-list-style
        .image-area {
        flex-basis: 17%;
    }
}
@media (max-width: 991px) {
    .eblog-right-sidebar.area-2
        .eblog-right-side-post
        .eblog-post-list-style
        .image-area,
    .eblog-right-sidebar.area-3
        .eblog-right-side-post
        .eblog-post-list-style
        .image-area {
        flex-basis: 23%;
    }
}
.eblog-right-sidebar.area-2
    .eblog-right-side-post
    .eblog-post-list-style
    .blog-content,
.eblog-right-sidebar.area-3
    .eblog-right-side-post
    .eblog-post-list-style
    .blog-content {
    flex-basis: 73%;
}
@media (max-width: 991px) {
    .eblog-right-sidebar.area-2
        .eblog-right-side-post
        .eblog-post-list-style
        .blog-content,
    .eblog-right-sidebar.area-3
        .eblog-right-side-post
        .eblog-post-list-style
        .blog-content {
        flex-basis: 77%;
    }
}
@media (max-width: 1199px) {
    .eblog-right-sidebar.area-2
        .eblog-right-side-post
        .eblog-post-list-style
        .blog-content,
    .eblog-right-sidebar.area-3
        .eblog-right-side-post
        .eblog-post-list-style
        .blog-content {
        flex-basis: 83%;
    }
}
.eblog-right-sidebar.area-4 .eblog-right-side-post p.title {
    background: none;
    border: 1px solid #eeeeee;
    border-radius: 10px;
}
.eblog-right-sidebar.area-4
    .eblog-right-side-post.author
    .featured-post
    .blog-content
    .social-wrapper
    li
    a:hover
    svg
    path,
.eblog-right-sidebar.area-4
    .eblog-right-side-post.author
    .featured-post
    .blog-content
    .social-wrapper
    li
    a:hover
    svg
    rect {
    fill: var(--color-primary-3);
}

.featured-post.sidebar .image-area {
    position: relative;
    z-index: 1;
    transition: var(--transition);
    overflow: hidden;
}
.featured-post.sidebar .image-area:hover a img {
    transform: scale(105%);
}
.featured-post.sidebar .image-area a {
    display: block;
    transition: var(--transition);
}
.featured-post.sidebar .image-area a img {
    transform: scale(100%);
    transition: var(--transition);
}
@media (max-width: 1199px) {
    .featured-post.sidebar .image-area a img {
        width: 100%;
    }
}
.featured-post.sidebar .blog-content {
    margin-top: 28px;
}
.featured-post.sidebar .blog-content .blog-meta {
    justify-content: center;
    margin-bottom: 10px;
    flex-direction: row;
}
.featured-post.sidebar .blog-content .blog-meta li {
    color: var(--color-heading-1);
}
.featured-post.sidebar .blog-content .blog-meta li svg path,
.featured-post.sidebar .blog-content .blog-meta li svg rect {
    fill: var(--color-black);
}
.featured-post.sidebar .blog-content .heading-title {
    text-align: center;
    line-height: 26px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1199px) {
    .featured-post.sidebar .blog-content .heading-title {
        margin: 0 auto 15px;
    }
}
.featured-post.sidebar .blog-content .heading-title a {
    font-size: 20px;
    line-height: 26px;
    color: var(--color-heading-1);
    background-size: 200% 1px;
    background-image: linear-gradient(to right, #000 50%, transparent 50%);
}
@media (max-width: 1399px) {
    .featured-post.sidebar .blog-content .heading-title a {
        font-size: 18px;
        line-height: 26px;
    }
}
.featured-post.sidebar .blog-content .author {
    text-align: center;
    color: var(--color-heading-1);
    margin-bottom: 15px;
}
.featured-post.sidebar .blog-content .author em {
    font-weight: 300;
}
.featured-post.sidebar .blog-content .read-more-btn {
    display: block;
    max-width: max-content;
    color: var(--color-primary);
    text-decoration: underline;
    margin: auto;
}

.eblog-top-category-area {
    padding: 60px 0 120px;
    position: relative;
    z-index: 1;
}
.eblog-top-category-area .swiper-pagination2 {
    display: flex;
    width: 100px;
    height: 10px;
    position: absolute;
    align-items: center;
    gap: 8px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
    z-index: 1;
}
@media (max-width: 767px) {
    .eblog-top-category-area .swiper-pagination2 {
        display: none;
    }
}
.eblog-top-category-area .swiper-pagination2 .swiper-pagination-bullet {
    display: block;
    width: 20px;
    margin: 0;
    height: 4px;
    border-radius: 0;
    opacity: 1;
    position: relative;
    background: #dadada;
    transition: var(--transition);
}
.eblog-top-category-area
    .swiper-pagination2
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-primary-2);
    width: 30px;
}
.eblog-top-category-area.area-2 .swiper-pagination2 {
    display: flex;
    width: 100px;
    height: 10px;
    position: absolute;
    align-items: center;
    gap: 8px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
    z-index: 1;
}
@media (max-width: 767px) {
    .eblog-top-category-area.area-2 .swiper-pagination2 {
        display: none;
    }
}
.eblog-top-category-area.area-2 .swiper-pagination2 .swiper-pagination-bullet {
    display: block;
    width: 20px;
    margin: 0;
    height: 4px;
    border-radius: 0;
    opacity: 1;
    position: relative;
    background: #dadada;
    transition: var(--transition);
}
.eblog-top-category-area.area-2
    .swiper-pagination2
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-primary-3);
    width: 30px;
}

.category-wrapper {
    position: relative;
    z-index: 1;
}
.category-wrapper .image-area {
    position: relative;
    z-index: 1;
}
.category-wrapper .image-area img {
    width: 100%;
}
.category-wrapper .image-area .content-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.category-wrapper .image-area .content-area .title {
    font-size: 20px;
    color: var(--color-white);
}
.category-wrapper .image-area::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}
.category-wrapper.area-2 .image-area::after {
    background: rgba(0, 0, 0, 0.3);
}
.category-wrapper.area-3 {
    border-radius: 10px;
    overflow: hidden;
}
.category-wrapper.area-3 .image-area::after {
    background: rgba(0, 0, 0, 0.5);
}
.category-wrapper.area-4 {
    border-radius: 0;
    overflow: hidden;
}
.category-wrapper.area-4 .image-area::after {
    display: none;
}

.blog-content.text-left .tag {
    max-width: max-content;
    background: rgba(30, 30, 30, 0.05);
    line-height: 1;
    font-size: 13px;
    padding: 7px 10px;
    margin-left: 0;
}
.blog-content.text-left .blog-meta {
    justify-content: start !important;
}
.blog-content.text-left .heading-title {
    text-align: start !important;
    margin-left: 0 !important;
}
.blog-content.text-left .text-btn {
    margin-left: 0 !important;
}

.eblog-gallery-area .section-title-area .section-title {
    font-weight: 400;
    font-size: 32px;
}
.eblog-gallery-area.area-2 .gallery-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.gallery-wrapper {
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .gallery-wrapper img {
        width: 100%;
    }
}
.gallery-wrapper:hover .gallery-image img {
    transform: scale(110%);
}
.gallery-wrapper:hover .gallery-image .item-overlay {
    opacity: 1;
    visibility: visible;
}
.gallery-wrapper:hover .center-icon {
    opacity: 1;
}
.gallery-wrapper .gallery-image {
    overflow: hidden;
    display: block;
    z-index: 1;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.gallery-wrapper .gallery-image .item-overlay {
    position: absolute;
    top: 0px;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    opacity: 0;
    left: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}
.gallery-wrapper .gallery-image .item-overlay span {
    color: white;
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.gallery-wrapper .center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
    opacity: 0;
    z-index: 1;
}

.eblog-cta-area .cta-inner {
    background: url(../images/cta/cta-bg-01.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 45px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
@media (max-width: 575px) {
    .eblog-cta-area .cta-inner {
        padding: 30px 20px;
    }
}
@media (max-width: 450px) {
    .eblog-cta-area .cta-inner {
        flex-direction: column;
        gap: 15px;
    }
}
.eblog-cta-area .cta-inner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.eblog-cta-area .cta-inner .heading-title {
    color: var(--color-white);
    font-size: 28px;
    line-height: 38px;
    font-weight: 500;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .eblog-cta-area .cta-inner .heading-title {
        font-size: 22px;
        line-height: 32px;
    }
}
@media (max-width: 450px) {
    .eblog-cta-area .cta-inner .heading-title {
        font-size: 18px;
        line-height: 28px;
        text-align: center;
    }
}
.eblog-cta-area .cta-inner .tp-btn {
    display: block;
    background: var(--color-primary-3);
    color: var(--color-white);
    border-radius: 4px;
    line-height: 1;
    padding: 16px 19px;
    margin: 0;
    transition: var(--transition);
}
.eblog-cta-area .cta-inner .tp-btn:hover {
    background: var(--color-white);
    color: var(--color-primary-3);
}
.eblog-cta-area.area-2 {
    padding-top: 30px;
}
.eblog-cta-area.area-2 .cta-inner {
    background: url(../images/cta/cta-bg-02.jpg);
    border-radius: 0;
}
@media (max-width: 991px) {
    .eblog-cta-area.area-2 .cta-inner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
.eblog-cta-area.area-2 .heading-title {
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
}
@media (max-width: 1199px) and (min-width: 991px) {
    .eblog-cta-area.area-2 .heading-title {
        font-size: 34px;
        line-height: 44px;
    }
}
@media (max-width: 767px) {
    .eblog-cta-area.area-2 .heading-title {
        font-size: 34px;
        line-height: 44px;
    }
}
@media (max-width: 575px) {
    .eblog-cta-area.area-2 .heading-title {
        font-size: 32px;
        line-height: 42px;
    }
}
@media (max-width: 450px) {
    .eblog-cta-area.area-2 .heading-title {
        font-size: 20px;
        line-height: 30px;
    }
}
.eblog-cta-area.area-2 .heading-title a {
    font-family: var(--title-font-3);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.eblog-cta-area.area-2 .heading-title a:hover {
    color: var(--color-primary-4);
}
.eblog-cta-area.area-2 form .form-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 480px) {
    .eblog-cta-area.area-2 form .form-inner {
        flex-direction: column;
    }
}
.eblog-cta-area.area-2 form .form-inner input {
    border: 1px solid #717171;
    width: 332px;
    padding: 10px 19px;
    border-radius: 4px;
    color: var(--color-white);
}
@media (max-width: 575px) {
    .eblog-cta-area.area-2 form .form-inner input {
        width: 250px;
    }
}
.eblog-cta-area.area-2 form .form-inner input::placeholder {
    color: #efefef !important;
}
.eblog-cta-area.area-2 form .form-inner .tp-btn {
    background: var(--color-primary-4);
}
.eblog-cta-area.area-2 form .form-inner .tp-btn:hover {
    color: var(--color-primary-4);
}

.eblog-top-category-area.area-3 .section-title-area .section-title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    text-transform: uppercase;
}
.eblog-top-category-area.area-3 .swiper-pagination {
    display: flex;
    width: 150px;
    height: 10px;
    position: absolute;
    align-items: center;
    gap: 8px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    z-index: 1;
}
@media (max-width: 767px) {
    .eblog-top-category-area.area-3 .swiper-pagination {
        display: none;
    }
}
.eblog-top-category-area.area-3 .swiper-pagination .swiper-pagination-bullet {
    display: block;
    width: 20px;
    margin: 0;
    height: 4px;
    border-radius: 0;
    opacity: 1;
    position: relative;
    background: #eeeeee;
    transition: var(--transition);
}
.eblog-top-category-area.area-3
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-primary-4);
    width: 30px;
}

.home-inner .eblog-featured-news.style-two .blog-content .blog-meta {
    align-items: center;
}
@media (max-width: 480px) {
    .home-inner .eblog-featured-news.style-two .blog-content .blog-meta {
        gap: 5px;
    }
}

.eblog-hero-banner .blog-content-area {
    margin-top: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    gap: 80px;
    row-gap: 15px;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .eblog-hero-banner .blog-content-area {
        flex-direction: column;
        gap: 15px;
        align-items: self-start;
    }
}
@media (max-width: 991px) {
    .eblog-hero-banner .blog-content-area .blog-meta {
        gap: 25px;
    }
}
@media (max-width: 575px) {
    .eblog-hero-banner .blog-content-area .blog-meta {
        gap: 10px;
    }
}
.eblog-hero-banner .blog-content-area .eblog-social {
    display: flex;
    gap: 16px;
    align-items: center;
}
.eblog-hero-banner .blog-content-area .eblog-social .tag {
    margin-bottom: 0;
}
.eblog-hero-banner .blog-content-area .eblog-social .social-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}
.eblog-hero-banner .blog-content-area .eblog-social .social-wrapper li {
    list-style: none;
    margin: 0;
}
.eblog-hero-banner .blog-content-area .eblog-social .social-wrapper li a {
    transition: var(--transition);
}
.eblog-hero-banner .blog-content-area .eblog-social .social-wrapper li a svg {
    transition: var(--transition);
}
.eblog-hero-banner
    .blog-content-area
    .eblog-social
    .social-wrapper
    li
    a
    svg
    path {
    fill: var(--color-heading-1);
    transition: var(--transition);
}
.eblog-hero-banner
    .blog-content-area
    .eblog-social
    .social-wrapper
    li
    a:hover
    svg
    path {
    fill: var(--color-primary-2);
}
.eblog-hero-banner .heading-title {
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 10px;
}
.eblog-hero-banner .heading-title.two {
    font-size: 40px;
}
@media (max-width: 575px) {
    .eblog-hero-banner .heading-title.two {
        font-size: 30px;
    }
}
.eblog-hero-banner .desc {
    margin-bottom: 10px;
    color: var(--color-heading-1);
}
.eblog-hero-banner .desc.last {
    padding-bottom: 50px;
    border-bottom: 1px solid #d9d9d9;
}
.eblog-hero-banner .bottom-area {
    margin-top: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #dadbdf;
}
.eblog-hero-banner .bottom-area .blog-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 575px) {
    .eblog-hero-banner .bottom-area .blog-actions {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 10px;
    }
}
.eblog-hero-banner .bottom-area .blog-actions .tag-area {
    display: flex;
    align-items: center;
    gap: 8px;
}
.eblog-hero-banner .bottom-area .blog-actions .tag-area p {
    color: var(--color-heading-1);
    margin-bottom: 0;
}
.eblog-hero-banner .bottom-area .blog-actions .tag-area .button-tag ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.eblog-hero-banner .bottom-area .blog-actions .tag-area .button-tag ul li {
    list-style: none;
}
.eblog-hero-banner .bottom-area .blog-actions .tag-area .button-tag ul li a {
    color: var(--color-primary-2);
}
.eblog-hero-banner .bottom-area .blog-actions .social-area {
    display: flex;
    align-items: center;
    gap: 24px;
}
.eblog-hero-banner .bottom-area .blog-actions .social-area p {
    margin-bottom: 0;
    color: var(--color-heading-1);
}
.eblog-hero-banner .bottom-area .blog-actions .social-area .social-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.eblog-hero-banner .bottom-area .blog-actions .social-area .social-wrapper li {
    list-style: none;
    margin: 0;
}
.eblog-hero-banner
    .bottom-area
    .blog-actions
    .social-area
    .social-wrapper
    li
    a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--color-primary-2);
    border-radius: 50%;
}
.eblog-hero-banner .bottom-area .author-inner {
    gap: 50px;
}
@media (max-width: 991px) {
    .eblog-hero-banner .bottom-area .author-inner {
        gap: 25px;
    }
}
@media (max-width: 767px) {
    .eblog-hero-banner .bottom-area .author-inner {
        flex-direction: column;
        align-items: self-start !important;
    }
}
.eblog-hero-banner .bottom-area .author-inner .content-area {
    max-width: 625px;
}
@media (max-width: 991px) {
    .eblog-hero-banner .bottom-area .author-inner .content-area {
        max-width: 420px;
    }
}
@media (max-width: 767px) {
    .eblog-hero-banner .bottom-area .author-inner .content-area {
        max-width: 100%;
    }
}
.eblog-hero-banner .bottom-area .author-inner .social-area {
    display: flex;
    align-items: center;
    gap: 24px;
}
.eblog-hero-banner .bottom-area .author-inner .social-area p {
    margin-bottom: 0;
}
.eblog-hero-banner .bottom-area .author-inner .social-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.eblog-hero-banner .bottom-area .author-inner .social-wrapper li {
    list-style: none;
    margin: 0;
}
.eblog-hero-banner .bottom-area .author-inner .social-wrapper li a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    background: var(--color-heading-1);
    border-radius: 50%;
    transition: var(--transition);
}
.eblog-hero-banner .bottom-area .author-inner .social-wrapper li a:hover {
    background: var(--color-primary-2);
}

.eblog-bottom-post-area .section-title {
    font-size: 40px;
    font-weight: 400;
}

.section-inner.style-3 {
    position: relative;
    z-index: 1;
}
.section-inner.style-3 .eblog-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: max-content;
}
@media (max-width: 991px) {
    .section-inner.style-3 .eblog-social {
        display: none;
    }
}
.section-inner.style-3 .eblog-social .tag {
    margin-bottom: 0;
    color: var(--color-heading-1);
}
.section-inner.style-3 .eblog-social .social-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 14px;
}
.section-inner.style-3 .eblog-social .social-wrapper li {
    list-style: none;
    margin: 0;
}
.section-inner.style-3 .eblog-social .social-wrapper li a {
    display: block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    text-align: center;
    background: transparent;
    transition: var(--transition);
}
.section-inner.style-3 .eblog-social .social-wrapper li a svg {
    transition: var(--transition);
}
.section-inner.style-3 .eblog-social .social-wrapper li a svg path {
    fill: var(--color-heading-1);
    transition: var(--transition);
}
.section-inner.style-3 .eblog-social .social-wrapper li a:hover {
    background: var(--color-primary-2);
    border: 1px solid var(--color-primary-2);
}
.section-inner.style-3 .eblog-social .social-wrapper li a:hover svg path {
    fill: var(--color-white);
}

.tp-btn {
    margin: auto;
    border-radius: 0;
    padding: 12px 24px;
}

.home-three .eblog-featured-news.style-two .blog-content .heading-title a {
    font-size: 40px;
    line-height: 50px;
}
@media (max-width: 1399px) {
    .home-three .eblog-featured-news.style-two .blog-content .heading-title a {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .home-three .eblog-featured-news.style-two .blog-content .heading-title a {
        font-size: 32px;
        line-height: 42px;
    }
    .home-three
        .eblog-featured-news.style-two
        .blog-content
        .heading-title
        a
        br {
        display: none;
    }
}
@media (max-width: 480px) {
    .home-three .eblog-featured-news.style-two .blog-content .heading-title a {
        font-size: 24px;
        line-height: 1.3;
    }
}
@media (max-width: 480px) {
    .home-three .eblog-featured-news.style-two .blog-content .blog-meta {
        align-items: flex-start;
    }
}

.featured-post.salads .eblog-post-list-style .image-area {
    max-width: 130px;
    min-width: 120px;
}
.featured-post.salads .eblog-featured-news .image-area a img {
    min-height: 405px;
    object-fit: cover;
}
.featured-post.salads .eblog-featured-news .image-area .tag {
    top: 30px;
    left: 40px;
}

.featured-post.sundea .eblog-post-list-style .image-area {
    max-width: 130px;
}

.featured-post.juices .eblog-featured-news .image-area a img {
    min-height: auto;
}

.featured-post.sundea .eblog-featured-news .image-area a img {
    min-height: auto;
}

.featured-post.fast-food .eblog-post-list-style .image-area {
    min-width: 84px;
}

.eblog-trending-news-area-2 .eblog-featured-news .image-area a img {
    min-height: 300px;
}

.featured-post.area-2 .eblog-featured-news.style-two .image-area a img {
    min-height: 220px;
}

.featured-post.technology .eblog-post-list-style {
    margin-bottom: 4px;
}
.featured-post.technology .eblog-post-list-style .image-area {
    max-width: 120px;
}
.featured-post.technology
    .eblog-post-list-style
    .blog-content
    .heading-title
    a {
    font-size: 16px;
    line-height: 1.1;
}
.featured-post.technology .eblog-featured-news .image-area a img {
    min-height: 412px;
    max-height: 550px;
}

.featured-post.ai .eblog-post-list-style .image-area {
    max-width: 120px;
}
.featured-post.ai .blog-content .heading-title a {
    font-size: 16px;
    line-height: 1.1;
}

.featured-post.latest-news .eblog-post-list-style .image-area {
    max-width: inherit;
}

.eblog-featured-news.style-sm .blog-content .heading-title a {
    font-size: 18px;
}

.eblog-featured-news.style-two.small .image-area a img {
    min-height: auto;
}

.eblog-author-area .section-inner .image-area img {
    border-radius: 50%;
    min-width: 300px;
    min-height: 300px;
    object-fit: cover;
}

/* Benar area style */
.eblog-banner-area {
    position: relative;
}
.eblog-banner-area .banner-inner {
    position: relative;
}
.eblog-banner-area .banner-inner .banner-single {
    background: url(../images/banner/banner-bg-01.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 775px;
    position: relative;
    z-index: 1;
}
@media (max-width: 1600px) and (min-width: 1366px) {
    .eblog-banner-area .banner-inner .banner-single {
        padding: 200px 0 0 0;
        height: 100vh;
    }
}
@media (max-width: 1024px) {
    .eblog-banner-area .banner-inner .banner-single {
        height: 100vh;
    }
}
@media (max-width: 575px) {
    .eblog-banner-area .banner-inner .banner-single {
        height: 70vh;
    }
}
@media (max-width: 450px) {
    .eblog-banner-area .banner-inner .banner-single {
        height: 60vh;
    }
}
.eblog-banner-area .banner-inner .banner-single .container {
    position: relative;
    z-index: 1;
    height: 100%;
}
.eblog-banner-area .banner-inner .banner-single::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 30, 30, 0) 44.5%,
        #1e1e1e 100%
    );
    z-index: -1;
}
@media (max-width: 575px) {
    .eblog-banner-area .banner-inner .banner-single::after {
        background: linear-gradient(
            180deg,
            rgba(30, 30, 30, 0) 0%,
            #1e1e1e 100%
        );
    }
}
.eblog-banner-area .banner-inner .banner-single.banner-single-2 {
    background: url(../images/banner/banner-bg-02.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.eblog-banner-area .banner-inner .banner-single.banner-single-3 {
    background: url(../images/banner/banner-bg-03.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.eblog-banner-area .banner-inner .banner-single.banner-single-4 {
    background: url(../images/banner/banner-bg-04.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.eblog-banner-area .banner-inner .banner-single.banner-single-5 {
    background: url(../images/banner/banner-bg-05.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.eblog-banner-area .banner-inner .banner-single.banner-single-6 {
    background: url(../images/banner/banner-bg-06.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.eblog-banner-area .banner-inner .banner-single.banner-single-7 {
    background: url(../images/banner/banner-bg-07.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.eblog-banner-area .banner-inner .banner-single.banner-single-8 {
    background: url(../images/banner/banner-bg-08.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.eblog-banner-area .banner-inner .banner-single.banner-single-9 {
    background: url(../images/banner/banner-bg-09.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.eblog-banner-area .banner-inner .banner-content {
    position: absolute;
    width: max-content;
    bottom: 80px;
    left: 0;
    z-index: 1;
}
@media (max-width: 575px) {
    .eblog-banner-area .banner-inner .banner-content {
        left: 10px;
        right: 10px;
        width: 85%;
        bottom: 40px;
    }
    .eblog-banner-area .banner-inner .banner-content br {
        display: none;
    }
}
.eblog-banner-area .banner-inner .swiper-pagination {
    display: flex;
    width: max-content;
    height: max-content;
    position: absolute;
    align-items: center;
    gap: 8px;
    right: 15%;
    left: unset;
    bottom: 80px;
    z-index: 1;
}
@media (max-width: 767px) {
    .eblog-banner-area .banner-inner .swiper-pagination {
        display: none;
    }
}
.eblog-banner-area .banner-inner .swiper-pagination .swiper-pagination-bullet {
    display: block;
    width: 20px;
    margin: 0;
    height: 4px;
    border-radius: 0;
    opacity: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}
.eblog-banner-area
    .banner-inner
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-white);
    width: 30px;
}
.eblog-banner-area
    .banner-inner
    .swiper-pagination
    .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    border: 1px solid var(--color-primary);
}
.eblog-banner-area.banner-two {
    margin-top: 30px;
}
.eblog-banner-area.banner-two .container {
    position: relative;
    z-index: 1;
}
.eblog-banner-area.banner-two .swiper-pagination {
    right: 50px;
}
.eblog-banner-area.banner-two .eblog-featured-news .image-area img {
    min-height: 400px;
    max-height: 550px;
    object-fit: cover;
}
@media (max-width: 767px) {
    .eblog-banner-area.banner-two .eblog-featured-news .image-area .tag {
        left: 20px;
    }
}
@media (max-width: 767px) {
    .eblog-banner-area.banner-two
        .eblog-featured-news
        .image-area
        .blog-content {
        left: 20px;
    }
}
@media (max-width: 480px) {
    .eblog-banner-area.banner-two
        .eblog-featured-news
        .image-area
        .blog-content {
        margin-bottom: 10px;
    }
}
@media (max-width: 480px) {
    .eblog-banner-area.banner-two
        .eblog-featured-news
        .image-area
        .blog-content
        .heading-title {
        margin-bottom: 10px;
    }
}
@media (max-width: 480px) {
    .eblog-banner-area.banner-two
        .eblog-featured-news
        .image-area
        .blog-content
        .heading-title
        a {
        line-height: 1.2;
    }
    .eblog-banner-area.banner-two
        .eblog-featured-news
        .image-area
        .blog-content
        .heading-title
        a
        br {
        display: none;
    }
}
@media (max-width: 480px) {
    .eblog-banner-area.banner-two
        .eblog-featured-news
        .image-area
        .blog-content
        .blog-meta {
        gap: 10px;
    }
}
.eblog-banner-area.banner-three .banner-single {
    height: 925px;
}
@media (max-width: 991px) {
    .eblog-banner-area.banner-three .banner-single {
        height: 700px;
    }
}
@media (max-width: 480px) {
    .eblog-banner-area.banner-three .banner-single {
        height: 500px;
    }
}
.eblog-banner-area.banner-three .banner-single::after {
    background: rgba(30, 30, 30, 0.7);
}
.eblog-banner-area.banner-three .banner-content {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -58%);
}
@media (max-width: 991px) {
    .eblog-banner-area.banner-three .banner-content {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: max-content;
    }
}
.eblog-banner-area.banner-three .banner-content .sub-title {
    margin: auto;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.4);
}
.eblog-banner-area.banner-three .banner-content .heading-title {
    text-align: center;
    margin: 0 auto 20px;
}
@media (max-width: 1199px) {
    .eblog-banner-area.banner-three .banner-content .heading-title {
        font-size: 44px;
    }
}
@media (max-width: 991px) {
    .eblog-banner-area.banner-three .banner-content .heading-title {
        font-size: 36px;
    }
}
@media (max-width: 575px) {
    .eblog-banner-area.banner-three .banner-content .heading-title {
        font-size: 36px;
        line-height: 44px;
    }
}
@media (max-width: 480px) {
    .eblog-banner-area.banner-three .banner-content .heading-title {
        font-size: 28px;
        line-height: 36px;
    }
}
.eblog-banner-area.banner-three .banner-content .blog-meta {
    justify-content: center;
    margin-bottom: 25px;
}
@media (max-width: 480px) {
    .eblog-banner-area.banner-three .banner-content .blog-meta {
        align-items: center;
    }
}
@media (max-width: 575px) {
    .eblog-banner-area.banner-three .banner-inner .swiper-button-area {
        display: none;
    }
}
.eblog-banner-area.banner-three .banner-inner .swiper-button-area .swiper-btn {
    width: 56px;
    height: 56px;
    line-height: 56px;
    border: 1px solid var(--color-white);
    text-align: center;
    display: block;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 24px;
    transition: var(--transition);
}
@media (max-width: 767px) {
    .eblog-banner-area.banner-three
        .banner-inner
        .swiper-button-area
        .swiper-btn {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }
}
.eblog-banner-area.banner-three
    .banner-inner
    .swiper-button-area
    .swiper-btn:hover {
    color: var(--color-heading-1);
    background: var(--color-white);
}
.eblog-banner-area.banner-three
    .banner-inner
    .swiper-button-area
    .swiper-btn::after {
    display: none;
}
.eblog-banner-area.banner-three
    .banner-inner
    .swiper-button-area
    .swiper-btn.swiper-button-next {
    right: 120px;
}
@media (max-width: 991px) {
    .eblog-banner-area.banner-three
        .banner-inner
        .swiper-button-area
        .swiper-btn.swiper-button-next {
        right: 20px;
    }
}
.eblog-banner-area.banner-three
    .banner-inner
    .swiper-button-area
    .swiper-btn.swiper-button-prev {
    left: 120px;
}
@media (max-width: 991px) {
    .eblog-banner-area.banner-three
        .banner-inner
        .swiper-button-area
        .swiper-btn.swiper-button-prev {
        left: 20px;
    }
}
.eblog-banner-area.banner-four {
    padding: 30px 0;
}

.swiper-slide {
    cursor: default;
}

.blog-content .sub-title {
    color: var(--color-white);
    line-height: 1;
    padding: 7px 10px;
    margin-bottom: 19px;
    font-size: 13px;
    max-width: max-content;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}
.blog-content .heading-title {
    max-width: max-content;
}
@media (max-width: 480px) {
    .blog-content .heading-title {
        font-size: 24px;
        line-height: 1.2;
    }
}
.blog-content .heading-title a {
    color: var(--color-white);
    font-weight: 700;
    font-family: var(--title-font);
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(50%, #fff),
        color-stop(50%, transparent)
    );
    background-image: linear-gradient(to right, #fff 50%, transparent 50%);
    background-size: 201% 2px;
}
@media (max-width: 767px) {
    .blog-content .heading-title a {
        line-height: 1.2;
    }
}
@media (max-width: 480px) {
    .blog-content .heading-title a {
        line-height: 1.2;
    }
}
.blog-content .blog-meta {
    margin: 5px 0 0;
}
.blog-content .blog-meta li {
    color: var(--color-white);
}
.blog-content .blog-meta li svg path {
    fill: var(--color-white);
}
.blog-content .blog-meta li svg rect {
    fill: var(--color-white);
}

.blog-meta {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
@media (max-width: 575px) {
    .blog-meta {
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .blog-meta {
        flex-wrap: wrap;
    }
}
.blog-meta li {
    list-style: none;
    margin: 0;
    color: var(--color-heading-1);
    display: flex;
    align-items: center;
    gap: 5px;
}
@media (max-width: 575px) {
    .blog-meta li {
        font-size: 14px;
    }
}
.blog-meta li.author span {
    font-family: var(--title-font);
    font-size: 14px;
    margin-top: 2px;
}
.blog-meta li svg path {
    fill: var(--color-heading-1);
}
.blog-meta li svg rect {
    fill: var(--color-heading-1);
}

#sidebar.fixed {
    position: fixed;
    top: 0;
    width: 370px;
}

.eblog-banner-news .image-area {
    position: relative;
    z-index: 1;
    transition: var(--transition);
    overflow: hidden;
    max-width: max-content;
    border-radius: 10px;
}
.eblog-banner-news .image-area:hover a img {
    transform: scale(105%);
}
.eblog-banner-news .image-area a {
    transition: var(--transition);
}
.eblog-banner-news .image-area a img {
    transform: scale(100%);
    transition: var(--transition);
}
.eblog-banner-news .image-area::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1e1e1e 100%);
}
.eblog-banner-news .image-area .blog-content {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 1;
}
@media (max-width: 1199px) and (min-width: 992px) {
    .eblog-banner-news .image-area .blog-content {
        left: 30px;
        bottom: 30px;
        right: 30px;
    }
}
@media (max-width: 767px) {
    .eblog-banner-news .image-area .blog-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}
@media (max-width: 575px) {
    .eblog-banner-news .image-area .blog-content {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}
.eblog-banner-news .image-area .blog-content .heading-title {
    line-height: 46px;
}
@media (max-width: 1366px) {
    .eblog-banner-news .image-area .blog-content .heading-title {
        font-size: 30px;
        line-height: 40px;
    }
}
@media (max-width: 1199px) {
    .eblog-banner-news .image-area .blog-content .heading-title {
        font-size: 24px;
        line-height: 34px;
    }
}
@media (max-width: 1199px) {
    .eblog-banner-news .image-area .blog-content .heading-title {
        font-size: 28px;
        line-height: 34px;
    }
    .eblog-banner-news .image-area .blog-content .heading-title br {
        display: none;
    }
}
@media (max-width: 480px) {
    .eblog-banner-news .image-area .blog-content .heading-title {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 10px;
    }
}
.eblog-banner-news .image-area .blog-content .heading-title a {
    line-height: 46px;
}
@media (max-width: 1366px) {
    .eblog-banner-news .image-area .blog-content .heading-title a {
        line-height: 40px;
    }
}
@media (max-width: 1199px) {
    .eblog-banner-news .image-area .blog-content .heading-title a {
        line-height: 34px;
    }
}
@media (max-width: 480px) {
    .eblog-banner-news .image-area .blog-content .heading-title a {
        line-height: 28px;
    }
}
.eblog-banner-news .image-area .blog-content .blog-meta {
    gap: 25px;
    margin: 0 0 15px;
    flex-wrap: wrap;
}
@media (max-width: 1199px) and (min-width: 992px) {
    .eblog-banner-news .image-area .blog-content .blog-meta {
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .eblog-banner-news .image-area .blog-content .blog-meta {
        gap: 5px;
        margin-bottom: 10px;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    .eblog-banner-news .image-area .blog-content .blog-meta li {
        font-size: 14px;
    }
}
.eblog-banner-news .image-area .blog-content .desc {
    max-width: 557px;
    color: var(--color-white);
    margin-bottom: 0;
}
@media (max-width: 480px) {
    .eblog-banner-news .image-area .blog-content .desc {
        font-size: 14px;
    }
}

.small-post .eblog-banner-news .image-area .blog-content .heading-title {
    margin-bottom: 0;
}

.form-separator-or {
    margin-bottom: 15px;
}
.form-separator-or p {
    color: #1e1e1e;
}

.subscribe-btn.tp-btn.btn-email,
.subscribe-btn.tp-btn.btn-facebook {
    background: transparent !important;
    border: 1px solid #ddd;
    transition: all 0.3s;
}
.subscribe-btn.tp-btn.btn-email i,
.subscribe-btn.tp-btn.btn-facebook i {
    display: inline-block;
    margin-right: 10px;
}
.subscribe-btn.tp-btn.btn-email:hover,
.subscribe-btn.tp-btn.btn-facebook:hover {
    border-color: var(--color-heading-1) !important;
}

.swiper.tp-bannerSlider2 .blog-content .sub-title,
.swiper.tp-bannerSlider .blog-content .sub-title,
.swiper.tp-bannerSlider .blog-content .sub-title {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.swiper.tp-bannerSlider2 .blog-content .heading-title,
.swiper.tp-bannerSlider .blog-content .heading-title,
.swiper.tp-bannerSlider .blog-content .heading-title {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.swiper.tp-bannerSlider2 .blog-content .blog-meta,
.swiper.tp-bannerSlider .blog-content .blog-meta,
.swiper.tp-bannerSlider .blog-content .blog-meta {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.swiper.tp-bannerSlider2 .swiper-slide-active .blog-content .sub-title,
.swiper.tp-bannerSlider .swiper-slide-active .blog-content .sub-title,
.swiper.tp-bannerSlider .swiper-slide-active .blog-content .sub-title {
    opacity: 1;
    visibility: visible;
}
.swiper.tp-bannerSlider2 .swiper-slide-active .blog-content .heading-title,
.swiper.tp-bannerSlider .swiper-slide-active .blog-content .heading-title,
.swiper.tp-bannerSlider .swiper-slide-active .blog-content .heading-title {
    opacity: 1;
    visibility: visible;
}
.swiper.tp-bannerSlider2 .swiper-slide-active .blog-content .blog-meta,
.swiper.tp-bannerSlider .swiper-slide-active .blog-content .blog-meta,
.swiper.tp-bannerSlider .swiper-slide-active .blog-content .blog-meta {
    opacity: 1;
    visibility: visible;
}

.tp-bannerSlider
    .eblog-featured-news
    .image-area
    .blog-content
    .heading-title
    a {
    line-height: 1.2;
}

/* Contact Form */
.eblog-newsletter-area {
    background: #f6f6f6;
}
.eblog-newsletter-area .section-inner {
    text-align: center;
}
.eblog-newsletter-area .section-inner .sub-title {
    color: var(--color-primary-2);
    margin-bottom: 10px;
}
.eblog-newsletter-area .section-inner .section-title {
    font-weight: 400;
    text-transform: capitalize;
    line-height: 110%;
}
.eblog-newsletter-area .section-inner .desc {
    color: var(--color-heading-1);
}
@media (max-width: 450px) {
    .eblog-newsletter-area .section-inner .desc br {
        display: none;
    }
}
.eblog-newsletter-area .section-inner form .form-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.eblog-newsletter-area
    .section-inner
    form
    .form-inner
    .single-input-wrapper
    input {
    padding: 12px 16px;
    background: var(--color-white);
    border-radius: 4px;
    border: 1px solid var(--color-white);
    width: 330px;
}
@media (max-width: 480px) {
    .eblog-newsletter-area
        .section-inner
        form
        .form-inner
        .single-input-wrapper
        input {
        width: 100%;
    }
}
.eblog-newsletter-area
    .section-inner
    form
    .form-inner
    .single-input-wrapper
    button {
    padding: 18px 24px;
    border-radius: 4px;
    transition: var(--transition);
    background: var(--color-primary-2);
}
.eblog-newsletter-area
    .section-inner
    form
    .form-inner
    .single-input-wrapper
    button:hover {
    background: var(--color-heading-1) !important;
    color: var(--color-white);
}
.eblog-newsletter-area.area-2 {
    background: none;
}
.eblog-newsletter-area.area-2 .section-inner .sub-title {
    color: var(--color-primary-4);
}
.eblog-newsletter-area.area-2 .section-inner .section-title {
    font-weight: 500;
    text-transform: uppercase;
}
.eblog-newsletter-area.area-2
    .section-inner
    form
    .form-inner
    .single-input-wrapper
    input {
    border: 1px solid #d9d9d9;
    border-radius: 0;
}
.eblog-newsletter-area.area-2
    .section-inner
    form
    .form-inner
    .single-input-wrapper
    input:focus {
    border: 1px solid var(--color-primary-4) !important;
}
.eblog-newsletter-area.area-2
    .section-inner
    form
    .form-inner
    .single-input-wrapper
    button {
    background: var(--color-primary-4);
    border-radius: 0;
}

.eblog-sign-up-area .section-inner {
    padding: 0 40px;
}
@media (max-width: 575px) {
    .eblog-sign-up-area .section-inner {
        padding: 0 10px;
    }
}
.eblog-sign-up-area .heading-title {
    font-weight: 400;
    margin-bottom: 40px;
}

form .form-inner.inner {
    display: block;
    gap: 8px;
}
form .form-inner.inner .single-input-wrapper {
    margin-bottom: 16px;
}
form .form-inner.inner .single-input-wrapper input {
    padding: 12px 16px;
    background: var(--color-white);
    border-radius: 4px;
    border: 1px solid rgba(107, 114, 128, 0.25);
    color: var(--color-heading-1);
}
@media (max-width: 480px) {
    form .form-inner.inner .single-input-wrapper input {
        width: 100%;
    }
}
form .form-inner.inner .single-input-wrapper input:focus {
    border: 1px solid var(--color-primary-2) !important;
}
form .form-inner.inner .single-input-wrapper textarea {
    min-height: 160px;
    padding: 12px 16px;
    background: var(--color-white);
    border-radius: 4px;
    border: 1px solid rgba(107, 114, 128, 0.25);
    color: var(--color-heading-1);
}
@media (max-width: 480px) {
    form .form-inner.inner .single-input-wrapper textarea {
        width: 100%;
    }
}
form .form-inner.inner .single-input-wrapper textarea:focus {
    border: 1px solid var(--color-primary-2) !important;
}
form .form-inner.inner .single-input-wrapper button {
    padding: 18px 24px;
    border-radius: 4px;
    transition: var(--transition);
    background: var(--color-primary-2);
    max-width: 100%;
}
form .form-inner.inner .single-input-wrapper button:hover {
    background: var(--color-heading-1) !important;
    color: var(--color-white);
}
form .form-inner.inner .single-input-wrapper.check {
    margin-bottom: 40px;
}
form .form-inner.inner .single-input-wrapper.check input {
    max-width: max-content;
}
form .form-inner.inner .single-input-wrapper.check label {
    padding-left: 30px;
    text-decoration: underline;
    font-size: 14px;
    color: var(--color-heading-1);
}
form .form-inner.inner .single-input-wrapper.check label a {
    color: var(--color-primary-2);
    text-decoration: underline;
}
form .form-inner.inner .single-input-wrapper.check label::before {
    background: none;
    border: 1px solid rgba(107, 114, 128, 0.25);
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}
form .form-inner.inner .single-input-wrapper.check label::after {
    border-bottom: 2px solid var(--color-primary-2);
    border-left: 2px solid var(--color-primary-2);
    top: 30%;
    left: 7px;
    transform: rotate(-45deg) translateY(-30%);
}
form .form-inner.inner .single-input-wrapper.check.two {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
form .form-inner.inner .single-input-wrapper.check.two label {
    text-decoration: none;
}
form .form-inner.inner .single-input-wrapper.check.two a {
    display: block;
    color: var(--color-primary-2);
    text-decoration: underline;
}
form .form-inner.inner .single-input-wrapper:last-child {
    margin-bottom: 0;
}
form .form-bottom-text {
    margin-top: 40px;
}
form .form-bottom-text p {
    margin-bottom: 0;
    text-decoration: underline;
    color: var(--color-heading-1);
}
form .form-bottom-text p a {
    color: var(--color-primary-2);
    text-decoration: underline;
}

.post-comment-box form .form-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.post-comment-box form .form-inner .single-input-wrapper {
    width: 100%;
}
.post-comment-box form .form-inner .single-input-wrapper.name,
.post-comment-box form .form-inner .single-input-wrapper.email {
    width: 48%;
}
@media (max-width: 575px) {
    .post-comment-box form .form-inner .single-input-wrapper.name,
    .post-comment-box form .form-inner .single-input-wrapper.email {
        width: 100%;
    }
}
.post-comment-box form .form-inner .single-input-wrapper button {
    max-width: max-content;
}

.eblog-error-area .section-inner .watermark h2 {
    font-size: 256px;
    line-height: 100%;
    color: rgba(0, 0, 0, 0.2);
    font-weight: 400;
}
@media (max-width: 575px) {
    .eblog-error-area .section-inner .watermark h2 {
        font-size: 200px;
    }
}
@media (max-width: 480px) {
    .eblog-error-area .section-inner .watermark h2 {
        font-size: 180px;
    }
}
.eblog-error-area .section-inner .heading-title {
    font-weight: 500;
}
.eblog-error-area .section-inner .desc {
    max-width: 410px;
    margin: auto;
    margin-bottom: 40px;
    color: var(--color-heading-1);
}
.eblog-error-area .section-inner .tp-btn {
    margin: auto;
    margin-bottom: 25px;
    text-transform: uppercase;
    padding: 16px 24px;
}
.eblog-error-area .section-inner .error-bottom-text p {
    color: var(--color-heading-1);
    text-decoration: underline;
}
.eblog-error-area .section-inner .error-bottom-text p a {
    color: var(--color-primary-2);
    text-decoration: underline;
}

.eblog-coming-soon-area .heading-title {
    color: var(--color-primary-2);
    font-weight: 400;
    margin-bottom: 80px;
}
.eblog-coming-soon-area .eblog-countdown-area {
    margin-bottom: 37px;
}
.eblog-coming-soon-area .eblog-countdown-area .countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.eblog-coming-soon-area .eblog-countdown-area .countdown .countdown-el .value {
    font-size: 40px;
    line-height: 120%;
    font-family: var(--title-font-2);
    color: var(--color-heading-1);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(107, 114, 128, 0.25);
}
@media (max-width: 575px) {
    .eblog-coming-soon-area
        .eblog-countdown-area
        .countdown
        .countdown-el
        .value {
        font-size: 24px;
        padding: 12px;
    }
}
.eblog-coming-soon-area .eblog-countdown-area .countdown .letter {
    font-size: 16px;
    color: var(--color-heading-1);
    font-weight: 700;
}
.eblog-coming-soon-area .desc {
    text-align: center;
    color: var(--color-heading-1);
}

.eblog-author-area .section-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 767px) {
    .eblog-author-area .section-inner {
        flex-direction: column;
        align-items: flex-center;
        text-align: center;
        gap: 30px;
    }
}
.eblog-author-area .section-inner .content-area {
    max-width: 625px;
}
@media (max-width: 991px) {
    .eblog-author-area .section-inner .content-area {
        max-width: 360px;
    }
}
.eblog-author-area .section-inner .content-area .heading-title {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 5px;
}
.eblog-author-area .section-inner .content-area p {
    color: var(--color-heading-1);
    margin-bottom: 10px;
}
.eblog-author-area .section-inner .content-area .social-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}
@media (max-width: 767px) {
    .eblog-author-area .section-inner .content-area .social-wrapper {
        justify-content: center;
    }
}
.eblog-author-area .section-inner .content-area .social-wrapper li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eblog-author-area .section-inner .content-area .social-wrapper li a {
    display: block;
    background: var(--color-heading-1);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    transition: var(--transition);
}
.eblog-author-area .section-inner .content-area .social-wrapper li a:hover {
    background: var(--color-primary-2);
}

/* Footer area style */
.eblog-footer-area {
    background-color: var(--color-heading-1);
}
@media (max-width: 1199px) {
    .eblog-footer-area {
        padding: 90px 20px 0 20px;
    }
}
@media (max-width: 575px) {
    .eblog-footer-area {
        padding: 60px 0 0 0;
    }
}
.eblog-footer-area .eblog-footer-inner {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}
@media (max-width: 1024px) {
    .eblog-footer-area .eblog-footer-inner {
        flex-wrap: wrap;
        gap: 50px;
    }
}
@media (max-width: 575px) {
    .eblog-footer-area .eblog-footer-inner {
        gap: 25px;
        padding-bottom: 60px;
    }
}
.eblog-footer-area .eblog-footer-inner .social-area {
    width: 26%;
}
@media (max-width: 1024px) {
    .eblog-footer-area .eblog-footer-inner .social-area {
        width: 40%;
    }
}
@media (max-width: 767px) {
    .eblog-footer-area .eblog-footer-inner .social-area {
        width: 100%;
    }
}
.eblog-footer-area .eblog-footer-inner .social-area .tag {
    color: var(--color-white);
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    .eblog-footer-area .eblog-footer-inner .social-area .tag {
        text-align: center;
    }
}
.eblog-footer-area .eblog-footer-inner .social-area .social-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}
@media (max-width: 767px) {
    .eblog-footer-area .eblog-footer-inner .social-area .social-wrapper {
        justify-content: center;
    }
}
.eblog-footer-area .eblog-footer-inner .social-area .social-wrapper li {
    list-style: none;
    padding: 0;
    margin: 0;
}
/* .eblog-footer-area .eblog-footer-inner .social-area .social-wrapper li a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  display: block;
  text-align: center;
  border-radius: 50%;
  background: var(--color-white);
  transition: var(--transition);
} */
.eblog-footer-area .eblog-footer-inner .social-area .social-wrapper li a {
    width: 48px;
    height: 48px;
    display: flex; /* change from block */
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically */
    border-radius: 50%;
    background: var(--color-white);
    transition: var(--transition);
    overflow: hidden; /* optional, keeps icons inside circle */
}

.eblog-footer-area .eblog-footer-inner .social-area .social-wrapper li a svg {
    width: 24px; /* scale SVG to fit circle */
    height: 24px;
}
.eblog-footer-area .eblog-footer-inner .social-area .social-wrapper li a svg {
    width: 20px;
}
.eblog-footer-area
    .eblog-footer-inner
    .social-area
    .social-wrapper
    li
    a
    svg
    path {
    fill: var(--color-heading-1);
    transition: var(--transition);
}
.eblog-footer-area
    .eblog-footer-inner
    .social-area
    .social-wrapper
    li
    a
    svg
    rect {
    fill: var(--color-heading-1);
    transition: var(--transition);
}
.eblog-footer-area .eblog-footer-inner .social-area .social-wrapper li a:hover {
    background: var(--color-primary);
}
.eblog-footer-area
    .eblog-footer-inner
    .social-area
    .social-wrapper
    li
    a:hover
    svg
    path {
    fill: var(--color-white);
}
.eblog-footer-area
    .eblog-footer-inner
    .social-area
    .social-wrapper
    li
    a:hover
    svg
    rect {
    fill: var(--color-white);
}
.eblog-footer-area .eblog-footer-inner .footer-logo-area {
    width: 40%;
    text-align: center;
}
@media (max-width: 1024px) {
    .eblog-footer-area .eblog-footer-inner .footer-logo-area {
        width: 100%;
        order: -1;
    }
}
.eblog-footer-area .eblog-footer-inner .footer-logo-area .logo {
    display: block;
    margin-bottom: 20px;
}
.eblog-footer-area .eblog-footer-inner .footer-logo-area .desc {
    color: var(--color-white);
}
@media (max-width: 450px) {
    .eblog-footer-area .eblog-footer-inner .footer-logo-area .desc br {
        display: none;
    }
}
.eblog-footer-area .eblog-footer-inner .footer-newsletter-area {
    width: 26%;
}
@media (max-width: 1024px) {
    .eblog-footer-area .eblog-footer-inner .footer-newsletter-area {
        width: 40%;
    }
}
@media (max-width: 767px) {
    .eblog-footer-area .eblog-footer-inner .footer-newsletter-area {
        width: 100%;
    }
}
.eblog-footer-area .eblog-footer-inner .footer-newsletter-area .tag {
    color: var(--color-white);
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    .eblog-footer-area .eblog-footer-inner .footer-newsletter-area .tag {
        text-align: center;
    }
}
.eblog-footer-area
    .eblog-footer-inner
    .footer-newsletter-area
    form
    .form-inner {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 8px;
}
@media (max-width: 1024px) {
    .eblog-footer-area
        .eblog-footer-inner
        .footer-newsletter-area
        form
        .form-inner {
        justify-content: start;
    }
}
@media (max-width: 767px) {
    .eblog-footer-area
        .eblog-footer-inner
        .footer-newsletter-area
        form
        .form-inner {
        justify-content: center;
    }
}
.eblog-footer-area
    .eblog-footer-inner
    .footer-newsletter-area
    form
    .form-inner
    .single-input-wrapper
    input {
    padding: 10px 16px;
    background: var(--color-white);
    border-radius: 0;
    border: 1px solid var(--color-white);
}
.eblog-footer-area
    .eblog-footer-inner
    .footer-newsletter-area
    form
    .form-inner
    .single-input-wrapper
    button {
    padding: 17px 16px;
    border-radius: 0;
    transition: var(--transition);
}
.eblog-footer-area
    .eblog-footer-inner
    .footer-newsletter-area
    form
    .form-inner
    .single-input-wrapper
    button:hover {
    background: var(--color-white) !important;
    color: var(--color-heading-1);
}
.eblog-footer-area .eblog-footer-copyright-area {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}
.eblog-footer-area .eblog-footer-copyright-area .copyright-content {
    max-width: max-content;
    margin: auto;
}
.eblog-footer-area .eblog-footer-copyright-area .copyright-content .title {
    color: var(--color-white);
    margin-bottom: 0;
    margin-right: 70px;
}
@media (max-width: 767px) {
    .eblog-footer-area .eblog-footer-copyright-area .copyright-content .title {
        margin-right: 0;
    }
}
.eblog-footer-area.footer-two
    .eblog-footer-inner
    .social-area
    .social-wrapper
    li
    a:hover,
.eblog-footer-area.footer-two
    .eblog-footer-inner
    .footer-newsletter-area
    form
    .form-inner
    .single-input-wrapper
    button {
    background: var(--color-primary-2);
}
.eblog-footer-area.footer-two form input {
    border: 1px solid var(--color-white);
}
.eblog-footer-area.footer-two form input:focus {
    border: 1px solid var(--color-primary-2) !important;
}
.eblog-footer-area.footer-three {
    padding-top: 0;
    background: var(--color-white);
    border-top: 1px solid #eeeeee;
}
.eblog-footer-area.footer-three .eblog-footer-inner {
    padding-bottom: 0;
}
.eblog-footer-area.footer-three .footer-one-main-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 87px;
}
@media (max-width: 1366px) {
    .eblog-footer-area.footer-three .footer-one-main-wrapper {
        gap: 30px;
        flex-wrap: wrap;
    }
}
.eblog-footer-area.footer-three .footer-one-main-wrapper .footer-single-wized {
    width: 20%;
}
@media only screen and (max-width: 1199px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized {
        width: 45%;
    }
}
@media only screen and (max-width: 767px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized {
        width: 100%;
    }
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized.left-logo {
    width: 24%;
}
@media (max-width: 1199px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized.left-logo {
        width: 32%;
    }
}
@media (max-width: 991px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized.left-logo {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized.left-logo {
        width: 100%;
    }
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized.left-logo
    .body
    p.desc {
    margin-bottom: 20px;
    color: #1e1e1e;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized.input-area {
    width: 24%;
}
@media only screen and (max-width: 1199px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized.input-area {
        width: 45%;
    }
}
@media (max-width: 991px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized.input-area {
        width: 45%;
    }
}
@media (max-width: 767px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized.input-area {
        width: 100%;
    }
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized.category {
    width: 15%;
}
@media (max-width: 1199px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized.category {
        width: 25%;
    }
}
@media (max-width: 991px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized.category {
        width: 45%;
    }
}
@media (max-width: 767px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized.category {
        width: 100%;
    }
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized.post {
    width: 25%;
}
@media (max-width: 1199px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized.post {
        width: 30%;
    }
}
@media (max-width: 991px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized.post {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized.post {
        width: 100%;
    }
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .head {
    margin-bottom: 43px;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .head
    .title {
    font-weight: 500;
    color: #1e1e1e;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .menu {
    padding: 0;
    list-style: none;
    margin: 0;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .menu
    li {
    display: flex;
    align-items: center;
    transition: var(--transition);
    justify-content: space-between;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .menu
    li:hover
    p
    a {
    color: var(--color-primary-3);
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .menu
    li
    p {
    margin: 0;
    transition: var(--transition);
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .menu
    li
    p
    a:hover {
    color: var(--color-primary-3);
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .menu
    li:last-child {
    margin-bottom: 0;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    form
    .form-inner
    .single-input-wrapper {
    position: relative;
    border-radius: 4px;
    margin-bottom: 20px;
    z-index: 1;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    form
    .form-inner
    .single-input-wrapper:last-child {
    margin-bottom: 0;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    form
    .form-inner
    .single-input-wrapper
    input {
    padding: 0 20px;
    font-size: 14px;
    color: var(--color-heading-1);
    border: 1px solid #eeeeee;
    border-radius: 4px;
    height: 50px;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    form
    .form-inner
    .single-input-wrapper
    input::placeholder {
    color: #888888;
    font-size: 14px;
    line-height: 1;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    form
    .form-inner
    .single-input-wrapper
    input:focus {
    border-radius: 4px;
    border: 1px solid var(--color-primary-3) !important;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    form
    .form-inner
    .single-input-wrapper
    button {
    background: var(--color-primary-3);
    color: var(--color-white);
    max-width: 100%;
    border-radius: 4px;
    font-size: 16px;
    line-height: 26px;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .social-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: left;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .social-wrapper
    li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .social-wrapper
    li
    a {
    display: block;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    border: 1px solid #eeeeee;
    transition: var(--transition);
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .social-wrapper
    li
    a:hover {
    background: var(--color-primary-3);
    border: 1px solid var(--color-primary-3);
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .social-wrapper
    li
    a:hover
    svg
    path {
    fill: var(--color-white);
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .social-wrapper
    li
    a
    svg
    path {
    fill: #1e1e1e;
    transition: var(--transition);
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .eblog-post-list-style {
    gap: 13px;
    margin-bottom: 20px;
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .eblog-post-list-style:last-child {
    margin-bottom: 0;
}
@media (max-width: 1366px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized
        .body
        .eblog-post-list-style
        .blog-content
        .heading-title {
        line-height: 22px;
    }
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .eblog-post-list-style
    .blog-content
    .heading-title
    a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}
@media (max-width: 1366px) {
    .eblog-footer-area.footer-three
        .footer-one-main-wrapper
        .footer-single-wized
        .body
        .eblog-post-list-style
        .blog-content
        .heading-title
        a {
        font-size: 16px;
        line-height: 22px;
    }
}
.eblog-footer-area.footer-three
    .footer-one-main-wrapper
    .footer-single-wized.input-area
    p.desc {
    margin-bottom: 25px;
}
.eblog-footer-area.footer-three .eblog-footer-copyright-area {
    border-top: 1px solid #eeeeee;
}
.eblog-footer-area.footer-three
    .eblog-footer-copyright-area
    .copyright-content
    .title {
    color: #1e1e1e;
}
.eblog-footer-area.footer-four {
    padding-top: 0;
    background: var(--color-white);
    border-top: 1px solid #eeeeee;
}
.eblog-footer-area.footer-four .eblog-footer-inner {
    padding-bottom: 0;
}
.eblog-footer-area.footer-four .footer-one-main-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 87px;
}
@media (max-width: 1366px) {
    .eblog-footer-area.footer-four .footer-one-main-wrapper {
        gap: 30px;
    }
}
@media only screen and (max-width: 1199px) {
    .eblog-footer-area.footer-four .footer-one-main-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }
}
.eblog-footer-area.footer-four .footer-one-main-wrapper .footer-single-wized {
    width: 22%;
}
@media (max-width: 1199px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized {
        width: 50%;
    }
}
@media only screen and (max-width: 767px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized {
        width: 100%;
    }
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized.left-logo {
    width: 24%;
}
@media (max-width: 1199px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized.left-logo {
        width: 50%;
    }
}
@media (max-width: 991px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized.left-logo {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized.left-logo {
        width: 100%;
    }
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized.left-logo
    .body
    p.desc {
    margin-bottom: 20px;
    color: #1e1e1e;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized.input-area {
    width: 24%;
}
@media only screen and (max-width: 1199px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized.input-area {
        width: 45%;
    }
}
@media (max-width: 991px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized.input-area {
        width: 45%;
    }
}
@media (max-width: 767px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized.input-area {
        width: 100%;
    }
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized.category {
    width: 15%;
}
@media (max-width: 1199px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized.category {
        width: 45%;
    }
}
@media (max-width: 991px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized.category {
        width: 45%;
    }
}
@media (max-width: 767px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized.category {
        width: 100%;
    }
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .head {
    margin-bottom: 43px;
}
@media (max-width: 991px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized
        .head {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized
        .head {
        margin-bottom: 20px;
    }
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .head
    .title {
    font-weight: 500;
    color: #1e1e1e;
    font-family: var(--title-font-3);
    font-size: 26px;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .menu {
    padding: 0;
    list-style: none;
    margin: 0;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .menu
    li {
    display: flex;
    align-items: center;
    transition: var(--transition);
    justify-content: space-between;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .menu
    li:hover
    p
    a {
    color: var(--color-primary-4);
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .menu
    li
    p {
    margin: 0;
    transition: var(--transition);
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .menu
    li
    p
    a:hover {
    color: var(--color-primary-4);
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .menu
    li:last-child {
    margin-bottom: 0;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    form
    .form-inner
    .single-input-wrapper {
    position: relative;
    border-radius: 4px;
    margin-bottom: 20px;
    z-index: 1;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    form
    .form-inner
    .single-input-wrapper:last-child {
    margin-bottom: 0;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    form
    .form-inner
    .single-input-wrapper
    input {
    padding: 0 20px;
    font-size: 14px;
    line-height: 1;
    color: var(--color-heading-1);
    border: 1px solid #eeeeee;
    border-radius: 4px;
    height: 50px;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    form
    .form-inner
    .single-input-wrapper
    input::placeholder {
    color: #888888;
    font-size: 14px;
    line-height: 1;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    form
    .form-inner
    .single-input-wrapper
    input:focus {
    border-radius: 4px;
    border: 1px solid var(--color-primary-4) !important;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    form
    .form-inner
    .single-input-wrapper
    button {
    background: var(--color-primary-4);
    color: var(--color-white);
    max-width: 100%;
    border-radius: 4px;
    font-size: 16px;
    line-height: 26px;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .social-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: left;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .social-wrapper
    li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .social-wrapper
    li
    a {
    display: block;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    border: 1px solid #eeeeee;
    transition: var(--transition);
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .social-wrapper
    li
    a:hover {
    background: var(--color-primary-4);
    border: 1px solid var(--color-primary-4);
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .social-wrapper
    li
    a:hover
    svg
    path {
    fill: var(--color-white);
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .social-wrapper
    li
    a
    svg
    path {
    fill: #1e1e1e;
    transition: var(--transition);
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .eblog-post-list-style {
    gap: 13px;
    margin-bottom: 20px;
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .eblog-post-list-style:last-child {
    margin-bottom: 0;
}
@media (max-width: 1366px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized
        .body
        .eblog-post-list-style
        .blog-content
        .heading-title {
        line-height: 22px;
    }
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized
    .body
    .eblog-post-list-style
    .blog-content
    .heading-title
    a {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    font-family: var(--title-font-3);
    text-transform: none;
}
@media (max-width: 1366px) {
    .eblog-footer-area.footer-four
        .footer-one-main-wrapper
        .footer-single-wized
        .body
        .eblog-post-list-style
        .blog-content
        .heading-title
        a {
        font-size: 20px;
    }
}
.eblog-footer-area.footer-four
    .footer-one-main-wrapper
    .footer-single-wized.input-area
    p.desc {
    margin-bottom: 25px;
}
.eblog-footer-area.footer-four .eblog-footer-copyright-area {
    border-top: 1px solid #eeeeee;
}
.eblog-footer-area.footer-four
    .eblog-footer-copyright-area
    .copyright-content
    .title {
    color: #1e1e1e;
}
.eblog-footer-area.footer-inner {
    background: var(--color-white);
}
.eblog-footer-area.footer-inner .eblog-footer-inner .social-area .tag {
    color: var(--color-heading-1);
}
.eblog-footer-area.footer-inner
    .eblog-footer-inner
    .social-area
    .social-wrapper
    li
    a {
    border: 1px solid #eeeeee;
}
.eblog-footer-area.footer-inner
    .eblog-footer-inner
    .social-area
    .social-wrapper
    li
    a:hover {
    background: var(--color-primary-2);
}
.eblog-footer-area.footer-inner .eblog-footer-inner .footer-logo-area .desc {
    color: var(--color-heading-1);
}
.eblog-footer-area.footer-inner
    .eblog-footer-inner
    .footer-newsletter-area
    form
    .form-inner
    .single-input-wrapper
    button {
    background: var(--color-primary-2);
    border-radius: 0;
}
.eblog-footer-area.footer-inner form input:focus {
    border: 1px solid var(--color-primary-2) !important;
}
.eblog-footer-area.footer-inner
    .eblog-footer-inner
    .footer-newsletter-area
    form
    .form-inner
    .single-input-wrapper
    input {
    border: 1px solid #d9d9d9;
    border-radius: 0;
}
.eblog-footer-area.footer-inner .eblog-footer-copyright-area {
    border-top: 1px solid #eeeeee;
}
.eblog-footer-area.footer-inner
    .eblog-footer-copyright-area
    .copyright-content
    .title {
    color: var(--color-heading-1);
}

html[data-theme="dark"]
    body.home-two
    .eblog-footer-area.footer-2
    .eblog-get-in-tuch
    h4 {
    color: var(--dark-color-heading-1);
}

#anywhere-home.bgshow {
    background: #0e1013;
    opacity: 70%;
    visibility: visible;
    pointer-events: visible;
    z-index: 999;
    top: 0;
}

#anywhere-home {
    background: #0e1013;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease-in-out;
    pointer-events: none;
    z-index: 50;
}

.scroll-top-btn {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 150;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 6px;
    display: none;
    border: none;
}
@media (max-width: 575px) {
    .scroll-top-btn {
        width: 40px;
        height: 40px;
        right: 25px;
    }
}
.scroll-top-btn i {
    font-size: 22px;
}

.home-two .scroll-top-btn,
.home-three .scroll-top-btn,
.home-inner .scroll-top-btn {
    background: var(--color-primary-2);
}

.home-four .scroll-top-btn {
    background: var(--color-primary-3);
}

.home-five .scroll-top-btn {
    background: var(--color-primary-4);
}

.footer-single-wized.post .eblog-post-list-style {
    align-items: start;
}
.footer-single-wized.post .eblog-post-list-style .image-area {
    max-width: 80px;
}

/* Responsive area style */
/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-text-box {
        width: 100%;
        position: unset;
        transform: none;
        height: auto;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img {
        height: auto;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-banner-slider-button {
        top: 22%;
    }
    .echo-about-area {
        padding: 50px 10px;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image .image-2 {
        position: unset;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image {
        gap: 20px;
    }
}
/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
    .echo-post-style-3-hero-banner {
        margin-bottom: 25px;
    }
    .echo-hero-section.inner-post-3 .echo-hero-discription {
        padding-top: 15px;
    }
    .post-style-3-lad-img {
        width: 100%;
    }
    .echo-hero-section.inner-post
        .echo-financial-area
        .content
        .content-wrapper
        .wrapper-item {
        font-size: 16px;
        line-height: 26px;
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-feature-area-right-site-follower
        ul
        li:nth-child(6)
        a {
        gap: 7px;
    }
    .echo-de-category-show-more-btn {
        margin-top: 40px;
    }
    .echo-hero-section.inner-post
        .echo-financial-area
        .content
        .details-tag
        h6 {
        margin-right: 2px;
    }
    .echo-hero-section.inner-post .echo-author-area {
        padding: 20px 20px 20px 0;
        gap: 25px;
    }
    .echo-about-area {
        padding: 50px 10px;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image .image-2 {
        position: unset;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image {
        gap: 20px;
    }
    .echo-about-area .container .echo-about-area-inner .content-area .desc {
        margin-bottom: 15px;
    }
    .echo-about-area
        .container
        .echo-about-area-inner
        .content-area
        .bottom-author-area {
        margin-bottom: 15px;
    }
    .echo-hero-section.inner-3
        .echo-ct-style-bg-color
        .echo-griding-ct-style-3
        .echo-hero-baner
        .echo-inner-img-ct-1
        a
        > img {
        width: 100%;
    }
    .echo-hero-section.inner-3 .echo-hero-baner .echo-inner-img-ct-1 a > img {
        width: 100%;
    }
    .echo-hero-section.inner .echo-hero-baner {
        margin-bottom: 15px;
    }
    .echo-hero-section.inner-3
        .echo-ct-style-bg-color
        .echo-popular-item-category {
        padding-top: 15px;
    }
    .echo-hero-section.inner-2 .echo-hero-baner .echo-banner-texting h3 {
        font-size: 30px;
        line-height: 40px;
        padding-top: 0px;
        margin-bottom: 10px;
    }
    .echo-hero-section.inner-2 .echo-hero-baner .echo-inner-img-ct-1 {
        flex-basis: 41%;
    }
    .echo-hero-section.inner-2 .echo-hero-baner .echo-banner-texting {
        flex-basis: 55%;
    }
    .echo-hero-section.inner
        .echo-hero-baner
        .echo-hero-area-titlepost-post-like-comment-share {
        gap: 10px;
        flex-wrap: wrap;
    }
    .echo-hero-section.inner .echo-hero-baner p {
        margin-top: -15px;
    }
    .echo-hero-section.inner
        .echo-hero-baner
        .echo-hero-area-titlepost-post-like-comment-share {
        margin-bottom: 10px;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-text-box {
        width: 100%;
        position: unset;
        transform: none;
        height: auto;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img {
        height: auto;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-banner-slider-button {
        top: 22%;
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-home-1-hero-area-top-story
        .echo-top-story
        .echo-story-text
        h6 {
        font-size: 16px;
        line-height: 26px;
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-feature-area-right-site-follower
        ul
        li:nth-child(6) {
        padding-left: 7px;
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-feature-area-right-site-follower
        ul
        li {
        font-size: 14px;
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-feature-area-right-site-newsletter
        .echo-feature-area-right-site-news-subscribe
        form
        .echo-feature-area-right-site-input-box
        button {
        margin-left: -30px;
    }
    .echo-hero-section.inner .echo-hero-baner h2 {
        margin-top: 20px;
        line-height: 50px;
        font-size: 40px;
        margin-bottom: 10px;
    }
    .echo-social-media-area-hm2 {
        padding: 30px 0;
    }
    .echo-archive-area {
        padding: 30px 0;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content
        .echo-archive-right-text
        .echo-3-align-icons {
        margin: 10px 0;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content
        .echo-archive-right-text
        .echo-archive-right-heading
        h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content {
        display: flex;
        gap: 10px;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content
        .echo-archive-right-text,
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content
        .echo-archive-right-img {
        flex-basis: auto;
    }
    .echo-fd-post-area {
        padding: 30px 0;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-right-area
        .echo-fd-post-right-text
        .echo-fd-post-right-heading
        h4 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-3-align-icons {
        flex-wrap: wrap;
        gap: 10px;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-left-title
        h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .echo-cl-blocks-area {
        padding: 30px 0;
    }
    .echo-cl-blocks-area
        .echo-cl-blocks-content
        .echo-cl-blocks-full-content
        .echo-cl-blocks-text
        .echo-cl-blocks-area-shep {
        margin-top: 10px;
    }
    .echo-popular-area {
        padding: 30px 0;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-btn
        .echo-popular-tab-button
        li {
        margin: 0 10px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-btn
        .echo-popular-tab-button
        li::after {
        right: -10px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-item-frist-row
        .echo-popular-left-jt-heading
        h3 {
        font-size: 25px;
        line-height: 35px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-item-category
        .echo-popular-cat-content
        .echo-popular-cat-title
        h6 {
        font-size: 18px;
        line-height: 28px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-follower
        ul
        li
        a {
        gap: 5px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-follower
        ul
        li:nth-child(2),
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-follower
        ul
        li:nth-child(4) {
        padding-left: 10px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-follower
        ul
        li {
        padding-top: 10px;
        font-size: 13px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-home-2-title
        h4 {
        font-size: 25px;
        line-height: 35px;
    }
    .echo-home-2-feature-area {
        padding: 30px 0;
    }
    .echo-home-2-feature-area .echo-home-2-feature-area-content {
        padding: 30px 0;
    }
    .echo-home-2-feature-area
        .echo-feature-content
        .echo-feature-main-content
        .echo-feature-area-post-title
        h4 {
        font-size: 28px;
        line-height: 38px;
    }
    .echo-home-2-featurea-area-last-child-responsive .echo-banner {
        padding: 30px 0;
    }
    .echo-banner
        .echo-banner-mani-content
        .echo-banner-text
        .echo-banner-heading
        h1 {
        font-size: 32px;
        line-height: 42px;
    }
    .echo-banner .echo-banner-mani-content .echo-banner-text {
        background-color: rgba(249, 249, 249, 0.7);
        padding: 20px;
        width: 641px;
    }
    .echo-banner
        .echo-banner-mani-content
        .echo-banner-text
        .echo-3-align-icons
        a {
        font-size: 14px;
        color: #5e5e5e;
    }
    .echo-banner
        .echo-banner-mani-content
        .echo-banner-text
        .echo-banner-heading {
        margin-top: 0;
    }
    .echo-banner .echo-banner-right-itme .echo-banner-right-heading h5 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    .echo-popular-news-area {
        padding: 30px 0;
    }
    .echo-popular-news-area .echo-popular-area-item-title h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-popular-news-area .echo-popular-area-item-title {
        margin: 10px 0;
    }
    .echo-feature-area {
        padding: 30px 0;
    }
    .echo-feature-area .echo-feature-area-site-title h4::after {
        width: 50%;
        left: 40%;
    }
    .echo-feature-area
        .echo-feature-area-site-title
        .echo-feature-area-post-hins
        h5 {
        font-size: 19px;
    }
    .echo-feature-area
        .echo-feature-area-option
        .echo-feature-area-option-content
        .echo-feature-area-option-number
        h3 {
        font-size: 52px;
        line-height: 62px;
    }
    .echo-feature-area
        .echo-feature-area-option
        .echo-feature-area-option-content {
        padding: 13px;
        gap: 10px;
    }
    .echo-feature-area
        .echo-feature-area-option
        .echo-feature-area-option-content
        .echo-feature-area-option-content-text
        h5 {
        margin-bottom: 0px;
        font-size: 15px;
        line-height: 25px;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text
        h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .echo-trending-area {
        padding: 30px 0;
    }
    .echo-video-area {
        padding: 30px 0;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-text {
        flex-basis: 81%;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-text
        h5 {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 8px;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-text
        > hr {
        margin-bottom: 5px !important;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-text
        > a {
        font-size: 15px !important;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-video
        .video-play-button {
        transform: translate(-50%, -50%) scale(0.5);
    }
    .echo-de-category-area {
        padding: 30px 0;
    }
    .echo-de-category-area .echo-de-category-title-btn h4::after {
        width: 160%;
    }
    .echo-de-category-area
        .echo-de-category-content
        .echo-de-category-content-img-title
        .echo-de-category-content-title
        h6 {
        font-size: 16px;
        line-height: 29px;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-img
        > a
        > img {
        width: 100%;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content {
        display: block;
    }
    .echo-footer-area4 {
        padding: 0 10px;
    }
}
/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    .echo-hero-section.inner {
        padding: 65px 20px;
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-home-1-hero-area-top-story
        .echo-top-story
        .echo-story-picture
        a
        img {
        width: unset;
        height: unset;
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-home-1-hero-area-top-story
        .echo-top-story
        .echo-story-picture {
        color: var(--colorPrimary);
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-home-1-hero-area-top-story
        .echo-top-story
        .echo-story-picture {
        flex-basis: auto;
    }
    .echo-post-style-3-hero-banner {
        width: 100%;
        margin-bottom: 25px;
    }
    .echo-hero-section.inner-post-2
        .echo-financial-area
        .content
        .image.bottom
        > img {
        width: 100%;
    }
    .echo-hero-section.inner-post .echo-author-area .image-area {
        flex-basis: 23%;
    }
    .echo-post-style-3-2end {
        width: 100%;
    }
    .post-style-1-frist-hero-img {
        width: 100%;
    }
    .echo-hero-section.inner-post-3
        .echo-ps-2-subscribe-box
        .echo-ps-2-subscribe-all-content
        .echo-subscribe-input-fill
        form
        input {
        width: 100%;
    }
    .echo-hero-section.inner-post-3
        .echo-ps-2-subscribe-box
        .echo-ps-2-subscribe-all-content
        .echo-subscribe-input-fill
        form
        .echo-ps-2-subscribe-btn {
        right: 0;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image .image-2 {
        position: unset;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image {
        gap: 30px;
        margin-top: 15px;
    }
    .echo-about-area .container .echo-about-area-inner .content-area .title {
        margin-bottom: 15px;
    }
    .echo-about-area
        .container
        .echo-about-area-inner
        .content-area
        .sub-title {
        font-size: 18px;
        line-height: 28px;
    }
    .echo-about-area .container .echo-about-area-inner .content-area .desc {
        margin-bottom: 15px;
    }
    .echo-about-area {
        padding: 50px 10px;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image .image {
        width: 50%;
    }
    .echo-ct-style-3-shep {
        bottom: -40px;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-text-box {
        width: 100%;
        position: unset;
        transform: none;
        height: auto;
    }
    .echo-contact-area
        .echo-contact-content
        .echo-contact-full-content
        .echo-contact-input-field
        .echo-main-contact-form
        form
        .echo-contact-input-flexing
        .echo-df-input {
        flex-basis: 50%;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-text-box {
        width: 100%;
        position: unset;
        transform: none;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img {
        height: auto;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-banner-slider-button {
        top: 22%;
    }
    .echo-breadcrumb-area-2 .echo-author-content {
        display: block;
    }
    .echo-author-picture {
        text-align: center;
    }
    .echo-author-info {
        text-align: center;
        margin-top: 20px;
    }
    .echo-right-ct-1 {
        margin-top: 40px;
    }
    .echo-hero-section.inner .echo-hero-baner h2 {
        margin-top: 20px;
        line-height: 50px;
        font-size: 40px;
        margin-bottom: 10px;
    }
    .echo-hero-section.inner .echo-hero-baner .echo-ct-style-3-shep > p {
        padding: 0 40px;
    }
    .echo-ct-style-1-banner-images {
        width: 100%;
    }
    .echo-social-media-area-hm2 {
        padding: 30px 0;
    }
    .echo-social-media-area-hm2
        .echo-home-2-title
        .echo-home-2-main-title
        h4::before {
        display: none;
    }
    .echo-social-media-area-hm2
        .echo-home-2-title
        .echo-home-2-main-title
        h4::after {
        display: none;
    }
    .echo-archive-area {
        padding: 30px 0;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-slider-content
        .echo-banner-mani-content
        .echo-banner-img
        > img {
        width: 100%;
    }
    .echo-archive-main-content.area-2 {
        margin-bottom: 30px;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content {
        flex-direction: row-reverse;
        justify-content: left;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site {
        max-width: max-content;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content
        .echo-archive-right-text {
        flex-basis: auto;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content
        .echo-archive-right-img {
        flex-basis: auto;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-home-2-title
        .echo-home-2-main-title
        h4::after {
        width: 75%;
    }
    .echo-fd-post-area {
        padding: 30px 0;
    }
    .echo-fd-post-area .echo-fd-post-content {
        padding: 40px 0;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-left
        .echo-fd-post-left-img
        > a
        > img {
        width: 100%;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-right-area
        .echo-fd-post-right-text
        .echo-fd-post-right-heading
        h4 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-left-title
        h3 {
        font-size: 28px;
        line-height: 38px;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-left-title {
        margin-top: 10px;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-3-align-icons {
        margin-top: 25px;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-left-title
        p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-right-area
        .echo-fd-post-right-content
        img {
        width: auto;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-right-area
        .echo-fd-post-right-content {
        flex-basis: auto;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-home-2-title
        .echo-home-2-main-title
        h4::before,
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-home-2-title
        .echo-home-2-main-title
        h4::after {
        display: none;
    }
    .echo-fd-post-left {
        margin-bottom: 30px;
    }
    .echo-cl-blocks-area {
        padding: 30px 0;
    }
    .echo-cl-blocks-area
        .echo-cl-blocks-content
        .echo-cl-blocks-full-content
        .echo-cl-blocks-img
        > a
        > img {
        width: 100%;
    }
    .echo-popular-area {
        padding: 30px 0;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-item-second-row
        .echo-popular-left-bt-contetn
        .echo-popular-left-bt-img
        .echo-popular-left-home-2-img-main
        > a
        > img {
        width: 100%;
    }
    .echo-popular-left-main-item .echo-popular-left-img > a > img {
        width: 100%;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-item-frist-row
        .echo-popular-left-jt-heading
        h3 {
        font-size: 40px;
        line-height: 50px;
        margin: 0;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-item-second-row
        .echo-popular-left-bt-title
        h4 {
        font-size: 22px;
        line-height: 30px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-item-second-row
        .echo-popular-left-bt-title
        p {
        margin: 10px 0;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-btn
        .echo-popular-tab-button {
        max-width: max-content;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-follower
        ul
        li {
        text-align: center;
    }
    .echo-feature-area-home-2-responsive {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 35px;
        justify-content: center;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news {
        border-bottom: none;
        width: 45%;
        margin: auto;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-img,
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-audio-text {
        flex-basis: auto;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news:last-child {
        padding-bottom: 25px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news:first-child {
        padding: 25px 0;
    }
    .echo-home-2-feature-area {
        padding: 30px 0;
    }
    .echo-home-2-feature-area .echo-home-2-feature-area-content {
        padding: 35px 0;
    }
    .echo-home-2-feature-area
        .echo-home-2-title
        .echo-home-2-main-title
        h4::before,
    .echo-home-2-feature-area
        .echo-home-2-title
        .echo-home-2-main-title
        h4::after {
        display: none;
    }
    .echo-home-2-feature-area .echo-home-2-title .echo-home-2-main-title h4 {
        font-size: 30px;
    }
    .echo-home-2-feature-area
        .echo-feature-content
        .echo-feature-main-content
        .echo-feature-area-post-title
        h4 {
        font-size: 28px;
        line-height: 38px;
    }
    .echo-home-2-featurea-area-last-child-responsive {
        margin-top: 30px;
    }
    .echo-home-2-feature-area
        .echo-feature-content
        .echo-feature-main-content
        .echo-feature-area-post-title
        p {
        font-size: 15px;
        line-height: 25px;
    }
    .echo-banner {
        padding: 30px 0;
    }
    .echo-banner .echo-banner-mani-content .echo-banner-img > img {
        width: 100%;
    }
    .echo-home-2-banner-right-flexing {
        display: flex;
        align-items: center;
        margin-top: 30px;
        gap: 20px;
    }
    .echo-banner .echo-banner-right-itme {
        flex-basis: 50%;
    }
    .echo-banner .echo-banner-right-itme:last-child {
        margin-top: 0px;
    }
    .echo-banner .echo-banner-right-itme .echo-banner-right-heading h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-software-download-area {
        padding: 30px 10px;
    }
    .echo-popular-news-area {
        padding: 30px 0;
    }
    .echo-popular-news-area .echo-popular-area-item-title h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-popular-news-area .echo-popular-area-item-title {
        margin: 10px 0;
    }
    .echo-popular-news-area .echo-popular-area-title h4::before,
    .echo-popular-news-area .echo-popular-area-title h4::after {
        display: none;
    }
    .echo-popular-area-single-item {
        margin-bottom: 20px;
    }
    .echo-popular-area-single-item.echo-popular-news-responsive-home-1 {
        margin-bottom: 0;
    }
    .echo-feature-area {
        padding: 30px 0;
    }
    .echo-feature-area
        .echo-feature-area-site-title
        .echo-feature-area-post-hins
        h5 {
        margin-top: 10px;
        font-size: 22px;
        margin-bottom: 10px;
    }
    .echo-feature-area .echo-feature-area-site-title h4::after {
        display: none;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-img
        > a
        > img {
        width: 100%;
    }
    .echo-feature-area .echo-feature-area-right-site-follower ul li {
        text-align: center;
    }
    .echo-feature-area
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-img
        a
        img {
        width: auto;
    }
    .echo-feature-area
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-audio-text {
        flex-basis: 88%;
    }
    .echo-feature-area
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-img {
        flex-basis: 12%;
    }
    .echo-feature-area .echo-feature-area-right-site-follower > h5 {
        font-size: 25px;
    }
    .echo-feature-area
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-title
        > h5 {
        font-size: 25px;
    }
    .echo-feature-area
        .echo-feature-area-right-site-newsletter
        .echo-feature-area-rigth-site-newsletter-title
        > h5 {
        font-size: 25px;
    }
    .echo-feature-area
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news {
        display: block;
        text-align: center;
    }
    .echo-feature-area-right-site-flexing {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    .echo-feature-area .echo-feature-area-right-site-full-content hr {
        margin-top: 80px;
    }
    .echo-feature-area
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-audio-text
        .echo-feature-area-right-site-audio-main-contetn
        .audioplayer-time-current {
        margin-left: 20px;
    }
    .echo-feature-area .echo-feature-area-right-site-full-content {
        padding-top: 40px;
        margin-top: 0;
        padding-bottom: 80px;
        width: 47%;
    }
    .echo-feature-area .echo-feature-area-right-site-newsletter {
        padding-top: 40px;
        margin-top: 0;
        width: 47%;
    }
    .echo-home-1-hero-area-top-story {
        margin-top: 20px;
    }
    .echo-de-category-area {
        padding: 30px 0;
    }
    .echo-de-category-area .echo-de-category-title-btn h4::after {
        display: none;
    }
    .echo-de-category-area .echo-de-category-content:last-child {
        margin-top: 30px;
    }
    .echo-de-category-area .echo-de-category-title-btn {
        padding-bottom: 0;
    }
    .echo-trending-area h6::after {
        display: none;
    }
    .echo-trending-area {
        padding: 30px 0;
    }
    .echo-trending-right-site-post-img img {
        width: 100%;
    }
    .echo-video-area {
        padding: 30px 0;
    }
    .echo-video-area .echo-full-video-content .echo-video-left-site > a > img {
        width: 100%;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-text
        h5 {
        font-size: 17px;
        line-height: 27px;
        margin-bottom: 8px;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-text
        hr {
        display: none;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-area-home-1-right-content-responsive {
        display: flex;
        margin-top: 30px;
        flex-wrap: wrap;
        gap: 20px;
    }
    .echo-video-area .echo-full-video-content .echo-video-right-site-content {
        width: 45%;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-video {
        flex-basis: auto;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-text {
        flex-basis: auto;
    }
    .echo-video-area .echo-full-video-content .echo-video-right-site-content {
        gap: 5px;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-video
        .video-play-button {
        transform: translate(-50%, -50%) scale(0.5);
    }
    .echo-footer-area4 {
        padding: 0 10px;
    }
}
/* small mobile :320px. */
@media (max-width: 767px) {
    .echo-hero-section.inner {
        padding: 65px 20px;
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-home-1-hero-area-top-story
        .echo-top-story
        .echo-story-picture
        a
        img {
        width: unset;
        height: unset;
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-home-1-hero-area-top-story
        .echo-top-story
        .echo-story-picture {
        color: var(--colorPrimary);
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-home-1-hero-area-top-story
        .echo-top-story
        .echo-story-picture {
        flex-basis: auto;
    }
    .echo-breadcrumb-area .breadcrumb-inner .title {
        line-height: 50px;
    }
    .echo-de-category-show-more-btn {
        margin-top: 35px;
    }
    .post-style-3-lad-img {
        width: 100%;
    }
    .post-style-3-lad-img:last-child {
        margin-top: 20px;
    }
    .echo-hero-section.inner-post-3
        .echo-ps-2-subscribe-box
        .echo-ps-2-subscribe-all-content
        .echo-ps-2-subscribe-title
        h5 {
        font-size: 18px;
        line-height: 28px;
    }
    .echo-hero-section.inner-post-3
        .echo-ps-2-subscribe-box
        .echo-ps-2-subscribe-all-content
        .echo-subscribe-input-fill
        form
        input {
        width: 100%;
    }
    .echo-hero-section.inner-post-3
        .echo-ps-2-subscribe-box
        .echo-ps-2-subscribe-all-content
        .echo-subscribe-input-fill
        form
        .echo-ps-2-subscribe-btn {
        right: 0;
    }
    .echo-post-style-3-2end {
        width: 100%;
    }
    .echo-post-style-3-2end:last-child {
        margin-top: 15px;
    }
    .post-style-1-new-img {
        width: 100%;
    }
    .post-style-1-frist-hero-img {
        width: 100%;
    }
    .post-style-1-new-img:last-child {
        margin-top: 20px;
    }
    .echo-hero-section.inner-post
        .echo-financial-area
        .content
        .content-wrapper
        .wrapper-item {
        width: 100%;
    }
    .echo-hero-section.inner-post .echo-author-area {
        padding: 30px 20px 30px 0;
        gap: 25px;
    }
    .echo-hero-section.inner-post .echo-financial-area .content .details-share {
        justify-content: start;
        margin-top: 15px;
    }
    .echo-hero-section.inner-post .echo-author-area {
        display: block;
        text-align: center;
    }
    .echo-hero-section.inner-post .echo-author-area .content {
        margin-top: 15px;
    }
    .echo-hero-section.inner-post .echo-reply-area .comment-inner .wrapper {
        display: block;
    }
    .echo-hero-section.inner-post
        .echo-reply-area
        .comment-inner
        .wrapper
        .content {
        margin-top: 15px;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image .image-2 {
        position: unset;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image {
        gap: 30px;
        margin-top: 15px;
    }
    .echo-about-area .container .echo-about-area-inner .content-area .title {
        margin-bottom: 15px;
    }
    .echo-about-area
        .container
        .echo-about-area-inner
        .content-area
        .sub-title {
        font-size: 18px;
        line-height: 28px;
    }
    .echo-about-area .container .echo-about-area-inner .content-area .desc {
        margin-bottom: 15px;
    }
    .echo-about-area {
        padding: 50px 10px;
    }
    .echo-about-area .container .echo-about-area-inner .content-area .title {
        font-size: 40px;
        line-height: 50px;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image .image {
        width: 50%;
    }
    .echo-hero-section.inner-3
        .echo-ct-style-bg-color
        .echo-griding-ct-style-3 {
        display: block;
    }
    .echo-ct-style-3-shep {
        bottom: -32px;
    }
    .echo-hero-section.inner-3
        .echo-ct-style-bg-color
        .echo-popular-item-category
        .echo-popular-cat-content {
        gap: 20px;
    }
    .echo-hero-section.inner-3
        .echo-ct-style-bg-color
        .echo-popular-item-category
        .echo-popular-cat-content
        .echo-popular-cat-img {
        flex-basis: 15%;
    }
    .echo-hero-section.inner-3
        .echo-ct-style-bg-color
        .echo-popular-item-category
        .echo-popular-cat-content
        .echo-popular-cat-title {
        flex-basis: 85%;
    }
    .echo-hero-section.inner .echo-hero-baner {
        margin-bottom: 15px;
    }
    .echo-hero-section.inner-3
        .echo-ct-style-bg-color
        .echo-popular-item-category {
        padding-top: 15px;
    }
    .echo-hero-section.inner-3
        .echo-ct-style-bg-color
        .echo-popular-item-category
        .echo-popular-cat-content
        .echo-popular-cat-title
        h5 {
        font-size: 18px;
        line-height: 28px;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-text-box
        .echo-hm2-video-heading
        h1 {
        font-size: 22px;
        line-height: 32px;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-text-box
        .echo-3-align-icons {
        display: none;
    }
    .echo-hero-section.inner-2 .echo-hero-baner .echo-inner-img-ct-1 a > img {
        width: 100%;
    }
    .echo-hero-section.inner-2 .echo-hero-baner {
        display: block;
        padding-bottom: 25px;
    }
    .echo-contact-area
        .echo-contact-content
        .echo-contact-full-content
        .echo-contact-input-field
        .echo-contact-title
        h2 {
        margin: 0;
        font-size: 40px;
        line-height: 50px;
    }
    .echo-contact-area
        .echo-contact-content
        .echo-contact-full-content
        .echo-contact-input-field
        .echo-main-contact-form
        form
        .echo-contact-input-flexing
        .echo-df-input {
        flex-basis: 50%;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-text-box {
        width: 100%;
        position: unset;
        transform: none;
        height: auto;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img {
        height: auto;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-banner-slider-button {
        display: none;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-text-box
        .echo-hm2-video-heading
        h1 {
        font-size: 22px;
        line-height: 32px;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-text-box
        .echo-3-align-icons
        a {
        flex-basis: 33.3%;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-icons {
        top: 115px;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-text-box
        .echo-hm2-video-discription {
        width: auto;
        height: auto;
        margin: auto;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-text-box {
        height: auto;
        padding: 0 20px;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-home-2-title
        .echo-home-2-main-title
        h4::after {
        display: none;
    }
    .echo-right-ct-1 {
        margin-top: 40px;
    }
    .echo-hero-section.inner .echo-hero-baner h2 {
        margin-top: 20px;
        line-height: 50px;
        font-size: 40px;
        margin-bottom: 10px;
    }
    .echo-hero-section.inner
        .echo-hero-baner
        .echo-hero-area-titlepost-post-like-comment-share {
        gap: 10px;
    }
    .echo-social-media-area-hm2 {
        padding: 30px 0;
    }
    .echo-social-media-area-hm2
        .echo-home-2-title
        .echo-home-2-main-title
        h4::before {
        display: none;
    }
    .echo-social-media-area-hm2
        .echo-home-2-title
        .echo-home-2-main-title
        h4::after {
        display: none;
    }
    .echo-social-media-area-hm2
        .echo-social-media-area-content
        .echo-social-media-main-content {
        display: flex;
        flex-wrap: wrap;
    }
    .echo-social-media-area-hm2
        .echo-social-media-area-content
        .echo-social-media-main-content
        .echo-hm2-social-item {
        width: 50%;
    }
    .echo-archive-area {
        padding: 0px 0;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-slider-content
        .echo-banner-mani-content
        .echo-banner-img
        > img {
        width: 100%;
    }
    .echo-archive-main-content.area-2 {
        margin-bottom: 30px;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content {
        flex-direction: row-reverse;
        justify-content: left;
        align-items: center;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site {
        max-width: max-content;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content
        .echo-archive-right-text {
        flex-basis: auto;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content
        .echo-archive-right-img {
        flex-basis: auto;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-slider-content
        .echo-archive-main-content.area-2
        .echo-banner-mani-content
        .echo-banner-text
        .echo-banner-heading
        h1 {
        font-size: 30px;
        line-height: 40px;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-slider-content
        .echo-banner-mani-content
        .echo-banner-text {
        padding: 15px;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content
        .echo-archive-right-text
        .echo-3-align-icons {
        margin: 10px 0;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content
        .echo-archive-right-text
        .echo-archive-right-heading
        h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-fd-post-area {
        padding: 30px 0;
    }
    .echo-fd-post-area .echo-fd-post-content {
        padding: 40px 0;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-home-2-title
        .echo-home-2-main-title
        h4::before,
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-home-2-title
        .echo-home-2-main-title
        h4::after {
        display: none;
    }
    .echo-fd-post-left {
        margin-bottom: 30px;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-right-area
        .echo-fd-post-right-text
        .echo-fd-post-right-heading
        h4 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-3-align-icons {
        gap: 13px;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-left
        .echo-fd-post-left-img
        > a
        > img {
        width: 100%;
    }
    .echo-cl-blocks-area {
        padding: 30px 0;
    }
    .echo-cl-blocks-area
        .echo-cl-blocks-content
        .echo-cl-blocks-full-content
        .echo-cl-blocks-img
        > a
        > img {
        width: 100%;
    }
    .echo-popular-area {
        padding: 30px 0;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-item-second-row
        .echo-popular-left-bt-contetn
        .echo-popular-left-bt-img
        .echo-popular-left-home-2-img-main
        > a
        > img {
        width: 100%;
    }
    .echo-popular-left-main-item .echo-popular-left-img > a > img {
        width: 100%;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-item-category
        .echo-popular-cat-content
        .echo-popular-cat-title
        h6 {
        font-size: 18px;
        line-height: 28px;
    }
    .echo-popular-left-bt-contetn.three {
        margin: 30px 0;
    }
    .echo-popular-left-jt-text.two {
        margin-top: 30px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-btn
        .echo-popular-tab-button {
        max-width: max-content;
        justify-content: center;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-btn
        .echo-popular-tab-button
        li::after {
        display: none;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-btn
        .echo-popular-tab-button
        li
        button.active::before {
        display: none;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-follower
        ul
        li {
        text-align: center;
    }
    .echo-feature-area-home-2-responsive {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 35px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news {
        border-bottom: none;
        width: 45%;
        margin: 0 auto;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-audio-text
        h5 {
        font-size: 14px;
        line-height: 24px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-img,
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-audio-text {
        flex-basis: auto;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news:last-child {
        padding-bottom: 0px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news:first-child {
        padding: 0 0;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-home-2-title {
        margin-bottom: 25px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-popular-tabing-btn
        .echo-popular-tab-button
        li {
        margin: 5px 10px;
    }
    .echo-home-2-feature-area {
        padding: 30px 0;
    }
    .echo-home-2-feature-area .echo-home-2-feature-area-content {
        padding: 35px 0;
    }
    .echo-home-2-feature-area
        .echo-home-2-title
        .echo-home-2-main-title
        h4::before,
    .echo-home-2-feature-area
        .echo-home-2-title
        .echo-home-2-main-title
        h4::after {
        display: none;
    }
    .echo-home-2-feature-area .echo-home-2-title .echo-home-2-main-title h4 {
        font-size: 30px;
    }
    .echo-home-2-feature-area
        .echo-feature-content
        .echo-feature-main-content
        .echo-feature-area-post-title
        h4 {
        font-size: 28px;
        line-height: 38px;
    }
    .echo-feature-main-content {
        margin-bottom: 30px;
    }
    .echo-feature-main-content.echo-home-2-featurea-area-last-child-responsive {
        margin-bottom: 0;
    }
    .echo-home-2-feature-area
        .echo-feature-content
        .echo-feature-main-content
        .echo-feature-area-post-title
        p {
        font-size: 15px;
        line-height: 25px;
    }
    .echo-banner {
        padding: 30px 0;
    }
    .echo-banner
        .echo-banner-mani-content
        .echo-banner-text
        .echo-banner-heading
        h1 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-home-2-banner-right-flexing {
        margin-top: 30px;
    }
    .echo-banner .echo-banner-mani-content .echo-banner-text {
        background-color: rgba(249, 249, 249, 0.7);
        padding: 20px;
        width: 100%;
    }
    .echo-banner .echo-banner-right-itme {
        text-align: center;
    }
    .echo-banner
        .echo-banner-mani-content
        .echo-banner-text
        .echo-3-align-icons
        a {
        font-size: 14px;
        color: #5e5e5e;
    }
    .echo-banner .echo-banner-right-itme .echo-banar-right-img > a > img {
        width: 75%;
    }
    .echo-banner
        .echo-banner-mani-content
        .echo-banner-text
        .echo-banner-heading {
        margin-top: 5px;
    }
    .echo-software-download-area {
        padding: 30px 5px;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content
        .echo-software-download-text-content
        .echo-software-download-place {
        display: block;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content
        .echo-software-download-text-content
        .echo-software-download-place
        > a {
        display: block;
        margin-top: 15px;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content
        .echo-software-download-text-content
        .echo-software-download-title
        h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .echo-banner .echo-banner-right-itme .echo-banner-right-heading h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-popular-news-area {
        padding: 30px 0;
    }
    .echo-popular-news-area .echo-popular-area-item-title h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-popular-news-area .echo-popular-area-item-title {
        margin: 10px 0;
    }
    .echo-popular-news-area .echo-popular-area-title h4::before,
    .echo-popular-news-area .echo-popular-area-title h4::after {
        display: none;
    }
    .echo-popular-area-single-item {
        margin-bottom: 20px;
    }
    .echo-popular-area-single-item.echo-popular-news-responsive-home-1 {
        margin-bottom: 0;
    }
    .echo-feature-area {
        padding: 30px 0;
    }
    .echo-feature-area .echo-feature-area-site-title h4::after {
        display: none;
    }
    .echo-feature-area-post:first-child {
        margin-bottom: 30px;
    }
    .echo-feature-area .echo-feature-area-right-site-follower > h5 {
        font-size: 25px;
    }
    .echo-feature-area
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-title
        > h5 {
        font-size: 25px;
    }
    .echo-feature-area
        .echo-feature-area-right-site-newsletter
        .echo-feature-area-rigth-site-newsletter-title
        > h5 {
        font-size: 25px;
    }
    .echo-feature-area
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-img {
        flex-basis: auto;
    }
    .echo-feature-area
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-audio-text {
        flex-basis: auto;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text
        h3 {
        font-size: 25px;
        line-height: 35px;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text
        .echo-feature-area-last-content-read-view {
        flex-wrap: wrap;
        gap: 5px;
    }
    .echo-home-1-hero-area-top-story {
        margin-top: 20px;
    }
    .echo-de-category-area {
        padding: 30px 0;
    }
    .echo-de-category-area .echo-de-category-title-btn h4::after {
        display: none;
    }
    .echo-de-category-area .echo-de-category-title-btn a {
        display: none;
    }
    .echo-de-category-area .echo-de-category-title-btn {
        padding-bottom: 20px;
    }
    .echo-de-category-area
        .echo-de-category-content
        .echo-de-category-content-img-title
        .echo-de-category-content-img {
        flex-basis: 140px;
    }
    .echo-de-category-area .echo-de-category-content {
        margin-top: 30px;
    }
    .echo-de-category-area .echo-de-category-content.echo-responsive-wd {
        margin-top: 0;
    }
    .echo-de-category-area .echo-de-category-content > h5 {
        font-size: 25px;
    }
    .echo-trending-area {
        padding: 30px 0;
    }
    .echo-trending-area h6::after {
        display: none;
    }
    .echo-video-area {
        padding: 30px 0;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-video {
        flex-basis: auto !important;
    }
    .echo-video-area .echo-full-video-content .echo-video-right-site-content {
        justify-content: space-between;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-text {
        flex-basis: auto;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-area-home-1-right-content-responsive {
        margin-top: 30px;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-left-site
        .echo-video-left-site-text-box {
        max-width: 100%;
        min-height: auto;
        position: relative !important;
    }
    .echo-footer-area4 {
        padding: 0 10px;
    }
}
/* small mobile :320px. */
@media (max-width: 500px) {
    .echo-404-page
        .echo-404-area
        .echo-container
        .echo-error-content
        .echo-error
        h1 {
        font-size: 200px !important;
        line-height: 70px !important;
    }
    .echo-404-page
        .echo-404-area
        .echo-container
        .echo-error-content
        .echo-error-sub-heading
        h3 {
        font-size: 40px !important;
        line-height: 50px !important;
    }
    .echo-hero-section.inner {
        padding: 65px 15px;
    }
    .echo-banner-innerpage {
        padding: 60px 15px 0 15px;
    }
    .echo-hero-section.inner-post-3 .echo-post-style-quote-info-flexing {
        display: block;
    }
    .echo-hero-section.inner-post-3
        .echo-post-style-quote-info-flexing
        .echo-quote-area::after {
        display: none;
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-home-1-hero-area-top-story
        .echo-top-story
        .echo-story-picture
        a
        img {
        width: unset;
        height: unset;
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-home-1-hero-area-top-story
        .echo-top-story
        .echo-story-picture {
        color: var(--color-Primary);
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-home-1-hero-area-top-story
        .echo-top-story
        .echo-story-picture {
        flex-basis: auto;
    }
    .echo-breadcrumb-area .breadcrumb-inner .title {
        line-height: 50px;
        font-size: 36px;
    }
    .echo-hero-section.inner-post-3
        .echo-ps-2-subscribe-box
        .echo-ps-2-subscribe-all-content
        .echo-subscribe-input-fill
        form
        input {
        width: 100%;
    }
    .echo-hero-section.inner-post-3
        .echo-ps-2-subscribe-box
        .echo-ps-2-subscribe-all-content
        .echo-subscribe-input-fill
        form
        .echo-ps-2-subscribe-btn {
        right: 0;
    }
    .echo-hero-section.inner-post
        .echo-more-news-area
        .echo-top-story
        .echo-story-text
        h6 {
        font-size: 18px;
        line-height: 28px;
    }
    .post-style-1-frist-hero-img {
        width: 100%;
    }
    .echo-hero-section.inner-post
        .echo-financial-area
        .content
        .content-wrapper
        .wrapper-item {
        font-size: 18px;
        line-height: 28px;
    }
    .echo-hero-section.inner-post .echo-financial-area .content .title {
        font-size: 26px;
        line-height: 36px;
    }
    .echo-about-area {
        padding: 0 10px;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image .image-2 {
        position: unset;
        margin: auto;
        margin-top: 20px;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image .image {
        margin: 20px auto 0 auto;
        width: auto;
    }
    .echo-about-area .container .echo-about-area-inner .hero-image {
        gap: 30px;
        margin-top: 15px;
        display: block;
    }
    .echo-about-area .container .echo-about-area-inner .content-area .title {
        margin-bottom: 15px;
    }
    .echo-about-area
        .container
        .echo-about-area-inner
        .content-area
        .sub-title {
        font-size: 16px;
        line-height: 26px;
    }
    .echo-about-area .container .echo-about-area-inner .content-area .desc {
        margin-bottom: 15px;
    }
    .echo-about-area {
        padding: 50px 10px;
    }
    .echo-about-area .container .echo-about-area-inner .content-area .title {
        font-size: 30px;
        line-height: 40px;
    }
    .echo-about-area
        .container
        .echo-about-area-inner
        .content-area
        .bottom-author-area
        .content::before {
        display: none;
    }
    .echo-about-area
        .container
        .echo-about-area-inner
        .content-area
        .bottom-author-area
        .content
        .author-name {
        font-size: 16px;
        line-height: 26px;
    }
    .echo-hm2-video-area
        .echo-hm2-video-area-content
        .echo-hm2-video-area-full-content
        .echo-row
        .echo-hm2-video-img
        .echo-hm2-video-icons {
        top: 65px;
    }
    .echo-hero-section.inner-3
        .echo-ct-style-bg-color
        .echo-popular-item-category
        .echo-popular-cat-content
        .echo-popular-cat-img {
        flex-basis: 25%;
    }
    .echo-hero-section.inner-3
        .echo-ct-style-bg-color
        .echo-popular-item-category
        .echo-popular-cat-content
        .echo-popular-cat-title {
        flex-basis: 65%;
    }
    .echo-hero-section.inner-2 .echo-hero-baner .echo-banner-texting h3 {
        font-size: 25px;
        line-height: 35px;
    }
    .echo-hero-section.inner .echo-hero-baner h2 {
        line-height: 32px;
        font-size: 22px;
    }
    .echo-social-media-area-hm2
        .echo-social-media-area-content
        .echo-social-media-main-content
        .echo-hm2-social-item {
        width: auto;
        margin: auto;
    }
    .echo-social-media-area-hm2
        .echo-social-media-area-content
        .echo-social-media-main-content
        .echo-hm2-social-item
        > img {
        width: 100%;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-slider-content
        .echo-banner-mani-content
        .echo-banner-text
        .echo-3-align-icons {
        display: none;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-slider-content
        .echo-archive-main-content.area-2
        .echo-banner-mani-content
        .echo-banner-text
        .echo-banner-heading
        h1 {
        font-size: 16px;
        line-height: 26px;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content
        .echo-archive-right-text
        .echo-3-align-icons {
        display: none;
    }
    .echo-archive-area
        .echo-archive-area-content
        .echo-archive-area-full-content
        .echo-archive-area-right-site
        .echo-archive-right-content
        .echo-archive-right-text
        .echo-archive-right-heading
        h5 {
        font-size: 18px;
        line-height: 28px;
    }
    .echo-archive-right-heading {
        margin-top: 10px;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-3-align-icons {
        gap: 13px;
        flex-wrap: wrap;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-left-title
        h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-right-area
        .echo-fd-post-right-content {
        width: 100%;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-right-area {
        display: block;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-right-area
        .echo-fd-post-right-text {
        float: none;
    }
    .echo-fd-post-area
        .echo-fd-post-content
        .echo-fd-post-full-content
        .echo-fd-post-main-content
        .echo-fd-post-right-area
        .echo-fd-post-right-text
        .echo-fd-post-right-area-shep {
        margin-top: 15px;
    }
    .echo-cl-blocks-area
        .echo-cl-blocks-content
        .echo-cl-blocks-full-content
        .echo-cl-blocks-text
        .echo-cl-blocks-title
        h3 {
        font-size: 25px;
        line-height: 35px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-follower
        ul
        li {
        font-size: 13px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-home-2-title
        h4 {
        font-size: 25px;
        line-height: 35px;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news {
        width: 100%;
    }
    .echo-feature-area-home-2-responsive {
        display: block;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news:first-child {
        padding: 25px 0;
    }
    .echo-popular-area
        .echo-popular-content
        .echo-popular-full-content
        .echo-popular-tabing
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news {
        border-bottom: 1px solid rgba(95, 95, 95, 0.5);
    }
    .echo-banner
        .echo-banner-mani-content
        .echo-banner-text
        .echo-3-align-icons {
        display: none;
    }
    .echo-banner .echo-banner-mani-content .echo-banner-text {
        background-color: rgb(249, 249, 249);
    }
    .echo-feature-area {
        padding: 30px 15px;
    }
    .echo-audio-news-home-1-flexing > hr {
        display: none;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content {
        display: block;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content:last-child {
        padding-bottom: 15px;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text
        h3 {
        font-size: 22px;
        line-height: 32px;
    }
    .echo-feature-area
        .echo-feature-area-option
        .echo-feature-area-option-content
        .echo-feature-area-option-content-text {
        flex-basis: 65%;
    }
    .echo-feature-area .echo-feature-area-right-site-follower ul li {
        font-size: 13px;
    }
    .echo-feature-area
        .echo-feature-area-right-site-newsletter
        .echo-feature-area-right-site-news-subscribe
        form
        .echo-feature-area-right-site-input-box
        input[type="email"] {
        width: 200px;
    }
    .echo-feature-area
        .echo-feature-area-site-title
        .echo-feature-area-post-hins
        h5 {
        margin-top: 15px;
        margin-bottom: 8px;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text {
        margin-top: 15px;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text
        h3 {
        margin-bottom: 8px;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-img
        > a
        > img {
        width: 100%;
    }
    .echo-feature-area
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news {
        display: flex;
        gap: 10px;
        padding: 30px 0;
    }
    .echo-feature-area
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-audio-text
        .echo-feature-area-right-site-audio-main-contetn
        .audioplayer-time-current {
        margin-left: 17px;
        font-size: 12px;
    }
    .echo-feature-area
        .echo-feature-area-right-site-full-content
        .echo-feature-area-right-site-audio-news
        .echo-feature-area-right-audio-text
        h5 {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 16px;
    }
    .echo-de-category-area {
        padding: 30px 15px;
    }
    .echo-de-category-area .echo-de-category-title-btn h4::after {
        display: none;
    }
    .echo-de-category-area
        .echo-de-category-content
        .echo-de-category-content-img-title
        .echo-de-category-content-title
        h6 {
        font-size: 16px;
        line-height: 22px;
    }
    .echo-de-category-area
        .echo-de-category-content
        .echo-de-category-content-img-title
        .echo-de-category-read
        a {
        font-size: 13px;
    }
    .echo-de-category-area .echo-de-category-content {
        padding: 20px;
    }
    .echo-de-category-area
        .echo-de-category-content
        .echo-de-category-content-img-title
        .echo-de-category-content-img {
        flex-basis: 120px;
    }
    .echo-de-category-area
        .echo-de-category-content
        .echo-de-category-content-img-title
        .echo-de-category-content-title {
        flex-basis: 60%;
    }
    .echo-trending-area
        .echo-trending-full-content
        .echo-trending-right-site-post-title
        h5 {
        margin-bottom: 8px;
        margin-top: 15px;
    }
    .echo-trending-area {
        padding: 30px 15px;
    }
    .echo-trending-area h6::after {
        display: none;
    }
    .echo-trending-area
        .echo-trending-full-content
        .echo-trending-right-site-post
        .echo-trending-right-site-post-title
        h4 {
        margin: 15px 0 8px 0;
    }
    .echo-trending-area
        .echo-trending-full-content
        .echo-trending-right-site-post
        .echo-trending-right-site-like-comment-share-icons {
        gap: 10px;
    }
    .echo-video-area {
        padding: 30px 15px;
    }
    .echo-video-area .echo-full-video-content .echo-video-right-site-content {
        display: grid;
        margin-top: 15px;
        justify-content: inherit;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content:first-child {
        margin-top: 0;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-video
        > a
        > img {
        width: 100%;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-text {
        order: 2;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-left-site
        .video-play-button {
        top: 20%;
    }
    .echo-video-area .echo-full-video-content .echo-video-right-site-content {
        gap: 15px;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-right-site-content
        .echo-video-right-site-content-text
        hr {
        display: none;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-left-site
        .echo-video-left-site-text-box {
        max-width: 100%;
        min-height: auto;
        position: relative !important;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-left-site
        .echo-video-left-site-text-box
        .echo-video-left-site-read-views {
        flex-wrap: wrap;
    }
    .echo-video-area .echo-video-content .echo-video-area-title-row h6 {
        text-align: left;
    }
    .echo-video-area .echo-video-content .echo-video-area-title-row h6::after,
    .echo-video-area .echo-video-content .echo-video-area-title-row h6::before {
        display: none;
    }
    .echo-video-area
        .echo-full-video-content
        .echo-video-left-site
        .echo-video-left-site-text-box
        h5 {
        font-size: 25px;
        line-height: 32px;
    }
    .echo-footer-area4 {
        padding: 0 10px;
    }
    .echo-footer-area4
        .footer-main
        .footer-main-inner
        .social-area
        .social-icon
        a {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
        border-radius: 15px;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .left-side-content
        .echo-latest-news-main-content {
        margin: 0 0 30px 0;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner
        .echo-feature-ad-area
        img {
        width: 100%;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .left-side-content
        .echo-latest-news-main-content
        .echo-latest-news-img
        img {
        width: 100%;
    }
    .echo-hero-section
        .echo-hero-baner
        .echo-hero-area-titlepost-post-like-comment-share {
        gap: 8px;
    }
    .echo-hero-section .echo-hero-baner {
        padding: 0;
    }
    .echo-hero-section .echo-hero-baner h1 > a > br {
        display: none;
    }
    .echo-latest-news-area
        .echo-latest-news-main-content
        .echo-latest-news-single-title
        h5 {
        margin: 15px 0 8px 0;
    }
    .echo-latest-news-area {
        padding: 30px 15px;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text
        h3 {
        margin: 15px 0 8px 0;
    }
    .echo-popular-news-area {
        padding: 30px 15px;
    }
    .echo-software-download-area {
        padding: 30px 15px;
    }
}
@media (max-width: 1172px) {
    .echo-site-main-logo-menu-social
        ul.echo-desktop-menu
        li.echo-has-dropdown:hover
        ul.mega-menu {
        width: 990px;
    }
    .echo-site-main-logo-menu-social
        ul.echo-desktop-menu
        li.echo-has-dropdown
        ul.mega-menu
        h5 {
        font-size: 18px;
    }
}
/* Responsive area style */
/* Normal desktop :1200px. */
@media (max-width: 1199px) {
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-latest-news-main-content
        .echo-latest-news-img
        img {
        width: 100%;
    }
    .echo-hero-section.home-three {
        padding: 210px 10px 120px 10px;
    }
    .echo-latest-news-area.home-three {
        padding-left: 10px;
        padding-right: 10px;
    }
    .echo-feature-area.home-three {
        padding-left: 10px;
        padding-right: 10px;
    }
    .echo-catagories-area {
        padding-left: 10px;
        padding-right: 10px;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        .content
        .title {
        font-size: 24px;
    }
}
/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-banner-right-area-content
        ul
        li {
        padding-bottom: 25px;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-banner-right-area-content
        ul
        li
        .content
        h5 {
        font-size: 18px;
        line-height: 28px;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-single-title
        h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-time-views {
        gap: initial;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner
        .echo-feature-area-right-site-follower
        ul
        li {
        width: 46%;
        padding: 15px 7px;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner
        .echo-feature-area-right-site-follower
        ul
        li:nth-child(1),
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner
        .echo-feature-area-right-site-follower
        ul
        li:nth-child(3),
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner
        .echo-feature-area-right-site-follower
        ul
        li:nth-child(5) {
        margin-right: 15px;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .echo-banner-right-area-content
        .right-side-news
        ul
        li
        .content
        h5 {
        font-size: 21px;
        line-height: 32px;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .title-area
        .sect-title::after,
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .title-area
        .sect-title::before {
        width: 16%;
    }
    .echo-feature-area.area-2
        .echo-feature-area-last-news
        .echo-feature-area-last-content {
        display: flex;
    }
    .echo-feature-area.area-2 {
        padding: 30px 10px;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .title-area
        .sub-title::after {
        width: 55%;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .title-area
        .right-side-title
        .sect-title::after,
    .echo-feature-area.area-2
        .echo-feature-area-content
        .title-area
        .right-side-title
        .sect-title::before {
        width: 20%;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-site-title
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text
        h3 {
        font-size: 36px;
        line-height: 46px;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-right-area
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text
        h3 {
        font-size: 28px;
        line-height: 40px;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-right-area
        .echo-right-side-small-content
        .content-inner
        .content
        h3 {
        font-size: 16px;
        line-height: 26px;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .echo-latest-news-full-content {
        padding: 0 10px;
    }
    .echo-hero-section.home-three
        .echo-hero-inner
        .banner-content
        .contents
        .content-title1 {
        font-size: 52px;
        line-height: 62px;
    }
    .echo-hero-section.home-three
        .echo-hero-inner
        .echo-hero-right-side
        .right-side-inner
        .content-box
        ul
        .wrapper
        .content
        .content-title1 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-latest-news-area.home-three
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-single-title
        h5 {
        font-size: 22px;
        line-height: 32px;
    }
    .echo-latest-news-area.home-three
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-time-views {
        gap: 10px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-last-news
        .echo-feature-area-last-content {
        display: flex;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-follower {
        padding: 30px 15px;
    }
    .echo-feature-area.home-three .echo-feature-area-right-site-follower ul li {
        font-size: 14px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-right-site-follower
        ul
        li
        a {
        gap: 5px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-full-content
        .content-box
        ul
        .wrapper {
        gap: 10px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-full-content
        .content-box
        ul
        .wrapper
        .image-area {
        flex-basis: 30%;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-full-content
        .content-box
        ul
        .wrapper
        .content
        .content-title1 {
        font-size: 16px;
        line-height: 26px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-full-content
        .content-box
        ul
        .wrapper
        .content
        .content-catagory-tag {
        font-size: 12px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-full-content
        .content-box
        ul
        .wrapper {
        margin-bottom: 10px;
    }
    .echo-catagories-area
        .echo-catagories-area-content
        .echo-latest-news-img
        .image-content
        .title {
        font-size: 20px;
    }
    .echo-hero-section.inner-post
        .echo-more-news-area
        .echo-top-story
        .echo-story-text
        h6 {
        font-size: 17px;
    }
}
@media (max-width: 1100px) {
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(1) {
        top: -5px;
        left: 0;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(2) {
        top: -14px;
        left: 43px;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(3) {
        top: -14px;
        right: 43px;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(4) {
        top: -5px;
        right: 0;
    }
}
@media (max-width: 991px) {
    .echo-hero-section.home-three {
        padding: 185px 10px 120px 10px;
    }
    .echo-hero-section.home-three .banner-content {
        margin-bottom: 50px;
    }
    .echo-hero-section.home-three
        .echo-hero-inner
        .echo-hero-right-side
        .right-side-inner
        .content-box
        ul
        .wrapper
        .image-area {
        flex-basis: auto;
    }
    .echo-latest-news-area.home-three {
        padding-bottom: 30px;
    }
    .echo-latest-news-area.home-three
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-main-content {
        margin-bottom: 40px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-site-title
        .echo-feature-area-last-news {
        margin-bottom: 50px;
    }
    .echo-feature-area
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text {
        margin-top: 20px;
    }
    .echo-catagories-area
        .echo-catagories-area-content
        .echo-latest-news-img::before {
        border-radius: 30px;
    }
    .echo-team-area .echo-team-area-inner .team-wrapper {
        margin-bottom: 100px;
    }
    .echo-team-area.about {
        padding: 90px 10px 40px 10px;
    }
    .echo-hero-section.inner
        .echo-right-ct-1
        .echo-home-1-hero-area-top-story
        h5 {
        text-align: left !important;
    }
    .echo-hero-section.inner-post .echo-financial-area .image-area img {
        width: 100%;
    }
    .echo-contact-area
        .echo-contact-content
        .echo-contact-full-content
        .echo-contact-input-field {
        margin-bottom: 40px;
    }
    .echo-contact-area
        .echo-contact-content
        .echo-contact-full-content
        .echo-info {
        margin-left: 0;
    }
    .echo-contact-area {
        padding: 100px 20px;
    }
    .search-input-area .search-input-inner .search-close-icon {
        width: 70px;
    }
}
/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    .echo-hero-section.home-four {
        padding-left: 10px;
        padding-right: 10px;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-latest-news-main-content {
        margin-bottom: 80px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-banner-right-area-content
        ul {
        display: flex;
        flex-wrap: wrap;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-banner-right-area-content
        ul
        li {
        width: 50%;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-banner-right-area-content
        ul
        li:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3098039216);
        margin-bottom: 10px;
        padding-bottom: 30px;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .title-area
        .sub-title {
        width: 80%;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .title-area
        .sub-title::after {
        display: none;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-main-content {
        margin-bottom: 50px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-banner-right-area-content {
        margin-left: 10px;
        margin-right: 10px;
    }
    .echo-latest-news-area.home-four .echo-latest-news-content .title-area {
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 40px;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-time-views {
        gap: initial;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-banner-right-area-content {
        margin-bottom: 50px;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-banner-right-area-content
        ul {
        display: flex;
        flex-wrap: wrap;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-banner-right-area-content
        ul
        li {
        width: 50%;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-banner-right-area-content
        ul
        li:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 10px;
        padding-bottom: 25px;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-banner-right-area-content
        ul
        li
        .echo-latest-news-img {
        flex-basis: auto;
    }
    .echo-feature-area.home-four {
        padding: 30px 10px;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-latest-news-main-content {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 50px;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner {
        text-align: center;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner
        .echo-feature-area-right-site-follower {
        padding: 0 0 50px 0;
    }
    .echo-latest-news-area.home-four {
        padding-bottom: 0;
    }
    .echo-feature-area.home-four .title-area .sect-title::before,
    .echo-feature-area.home-four .title-area .sect-title::after {
        display: none;
    }
    .echo-popular-news-area.home-four {
        padding: 30px 10px;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .left-side-content
        .echo-latest-news-main-content
        .echo-latest-news-img
        img {
        width: 100%;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .left-side-content {
        margin-bottom: 50px;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .title-area
        .sect-title::after,
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .title-area
        .sect-title::before,
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .echo-banner-right-area-content
        .right-side-gallery
        .title::before,
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .echo-banner-right-area-content
        .right-side-gallery
        .title::after,
    .echo-feature-area.area-2
        .echo-feature-area-content
        .title-area
        .sub-title::after {
        display: none;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .title-area
        .sect-title {
        text-align: left;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .echo-banner-right-area-content
        .right-side-news
        ul
        li
        .echo-latest-news-img {
        flex-basis: auto;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .echo-banner-right-area-content
        .right-side-gallery
        .title {
        text-align: left;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .echo-banner-right-area-content
        .right-side-gallery
        .gallery-inner
        .gallery-item {
        width: 23%;
    }
    .echo-video-area.home-four
        .swiper-container
        .slider-inner
        .echo-video-bottom-area
        .content
        h5 {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 15px;
    }
    .echo-feature-area.area-2 {
        padding: 30px 10px;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-site-title
        .echo-feature-area-last-news {
        margin-bottom: 40px;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .title-area
        .right-side-title
        .sect-title {
        text-align: left;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .title-area
        .right-side-title
        .sect-title::before,
    .echo-feature-area.area-2
        .echo-feature-area-content
        .title-area
        .right-side-title
        .sect-title::after {
        display: none;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-right-area
        .echo-right-side-small-content
        .content-inner
        .number {
        flex-basis: 10%;
    }
    .echo-software-download-area .echo-software-download-full-content-bg::after,
    .echo-software-download-area.home-four
        .echo-software-download-full-content-bg::after {
        opacity: 0.7;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content
        .echo-software-download-text-content
        .echo-software-download-place
        a {
        padding: 20px 40px;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .echo-latest-news-full-content {
        padding: 0 5px;
    }
    .echo-footer-area4 .footer-top .footer-top-inner {
        text-align: center;
        justify-content: center;
    }
    .echo-footer-area4 .footer-top .footer-top-inner .footer-top-left,
    .echo-footer-area4 .footer-top .footer-top-inner .footer-top-left {
        width: 100%;
        margin: 15px 0;
    }
    .echo-software-download-area .echo-software-download-full-content-bg {
        padding: 80px 50px;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content {
        justify-content: center;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content
        .echo-software-download-text-content {
        text-align: center;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-follower,
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-full-content {
        width: 50%;
    }
    .echo-team-area.about
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(1) {
        top: -5px;
        left: 10px;
    }
    .echo-team-area.about
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(2) {
        top: -14px;
        left: 80px;
    }
    .echo-team-area.about
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(3) {
        top: -14px;
        right: 80px;
    }
    .echo-team-area.about
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(4) {
        top: -5px;
        right: 10px;
    }
}
/* small mobile :320px. */
@media (max-width: 767px) {
    .echo-hero-section.home-four {
        padding-left: 10px;
        padding-right: 10px;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-latest-news-main-content {
        margin-bottom: 80px;
        margin-left: 0;
        margin-right: 0;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-latest-news-main-content
        .content {
        padding: 15px 25px 30px 25px;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-latest-news-main-content
        .echo-latest-news-single-title
        h5 {
        font-size: 24px;
        line-height: 34px;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-latest-news-main-content
        .echo-latest-news-time-views {
        display: flex;
        flex-wrap: wrap;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-banner-right-area-content
        ul
        li {
        padding-bottom: 20px;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-banner-right-area-content
        ul
        li
        .echo-latest-news-img {
        flex-basis: auto;
    }
    .echo-latest-news-area.home-four {
        padding-bottom: 0;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .title-area
        .sub-title {
        width: 50%;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .title-area
        .sub-title::after {
        display: none;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-main-content {
        margin-bottom: 50px;
        margin-left: 0;
        margin-right: 0;
    }
    .echo-latest-news-area.home-four .echo-latest-news-content .title-area {
        margin: 0 10px;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-time-views {
        gap: initial;
    }
    .echo-feature-area.home-four {
        padding: 30px 10px;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-latest-news-main-content {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 50px;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-banner-right-area-content {
        margin-bottom: 50px;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-banner-right-area-content
        ul {
        display: flex;
        flex-wrap: wrap;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-banner-right-area-content
        ul
        li {
        width: 100%;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-banner-right-area-content
        ul
        li
        .echo-latest-news-img {
        flex-basis: auto;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-latest-news-main-content
        .echo-latest-news-img {
        margin-left: 0;
        margin-right: 0;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-latest-news-main-content
        .echo-latest-news-img
        img {
        width: 100%;
    }
    .echo-feature-area.home-four .title-area {
        margin-bottom: 40px;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner {
        text-align: center;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner
        .echo-feature-area-right-site-follower {
        padding: 0 0 50px 0;
    }
    .echo-feature-area.home-four .title-area .sub-title::after {
        display: none;
    }
    .echo-latest-news-area.home-four {
        padding-bottom: 0;
    }
    .echo-feature-area.home-four .title-area .sect-title::before,
    .echo-feature-area.home-four .title-area .sect-title::after {
        display: none;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .title-area
        .sub-title::after {
        display: none;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .left-side-content
        .echo-latest-news-main-content
        .echo-latest-news-img
        img {
        width: 100%;
    }
    .echo-popular-news-area.home-four {
        padding: 30px 10px;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .left-side-content {
        margin-bottom: 50px;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .title-area
        .sect-title::after,
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .title-area
        .sect-title::before {
        display: none;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .title-area
        .sect-title {
        text-align: left;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .echo-banner-right-area-content
        .right-side-news
        ul
        li
        .echo-latest-news-img {
        flex-basis: auto;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .echo-banner-right-area-content
        .right-side-gallery
        .title {
        text-align: left;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .echo-banner-right-area-content
        .right-side-gallery
        .title::before,
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .echo-banner-right-area-content
        .right-side-gallery
        .title::after {
        display: none;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .echo-banner-right-area-content
        .right-side-gallery
        .gallery-inner
        .gallery-item {
        width: 23%;
    }
    .echo-video-area.home-four
        .swiper-container
        .slider-inner
        .echo-video-bottom-area
        .content
        h5 {
        font-size: 30px;
        line-height: 42px;
        margin-bottom: 15px;
    }
    .echo-feature-area.area-2 {
        padding: 30px 10px;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .title-area
        .sub-title::after {
        display: none;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .title-area
        .right-side-title
        .sect-title {
        text-align: left;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .title-area
        .right-side-title
        .sect-title::before,
    .echo-feature-area.area-2
        .echo-feature-area-content
        .title-area
        .right-side-title
        .sect-title::after {
        display: none;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-site-title
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text
        h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-site-title
        .echo-feature-area-last-news {
        margin-bottom: 40px;
    }
    .echo-software-download-area.home-four
        .echo-software-download-full-content-bg::after,
    .echo-software-download-area
        .echo-software-download-full-content-bg::after {
        opacity: 0.7;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content
        .echo-software-download-text-content
        .echo-software-download-place
        a {
        padding: 20px 40px;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content {
        justify-content: center;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content
        .echo-software-download-text-content {
        text-align: center;
    }
    .echo-feature-area .echo-feature-area-right-site-follower ul li,
    .echo-footer-area4 .footer-top .footer-top-inner {
        text-align: center;
        justify-content: center;
    }
    .echo-feature-area
        .echo-feature-area-right-site-follower
        ul
        li
        .footer-top-left,
    .echo-feature-area
        .echo-feature-area-right-site-follower
        ul
        li
        .footer-top-left,
    .echo-footer-area4 .footer-top .footer-top-inner .footer-top-left,
    .echo-footer-area4 .footer-top .footer-top-inner .footer-top-left {
        width: 100%;
        margin: 15px 0;
    }
    .echo-footer-area4
        .footer-main
        .footer-main-inner
        .social-area
        .social-icon {
        margin-bottom: 25px;
    }
    .echo-hero-section.home-three
        .echo-hero-inner
        .banner-content
        .contents
        .content-title1 {
        font-size: 50px;
        line-height: 62px;
    }
    .echo-latest-news-area.home-three
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-main-content {
        margin-left: 0;
        margin-right: 0;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-full-content
        .content-box
        ul
        .wrapper
        .image-area {
        flex-basis: auto;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(2) {
        top: -14px;
        left: 50px;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(3) {
        top: -14px;
        right: 50px;
    }
    .search-input-area .search-input-inner .search-close-icon {
        width: 15%;
    }
}
/* Large Mobile :480px. */
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-single-title
        h5 {
        font-size: 16px;
        line-height: 26px;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-time-views {
        flex-wrap: wrap;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .title-area
        .sect-title::after,
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .title-area
        .sect-title::before {
        width: 30%;
    }
    .echo-software-download-area .echo-software-download-full-content-bg {
        padding: 80px 30px;
    }
    .echo-footer-area4 .footer-top .footer-top-inner .footer-top-right {
        width: 100%;
    }
    .echo-footer-area4
        .footer-top
        .footer-top-inner
        .footer-top-right
        .echo-subscribe-box-button
        form {
        margin: 0 auto;
        width: 100%;
    }
    .echo-team-area.about
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(1) {
        top: -5px;
        left: 0;
    }
    .echo-team-area.about
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(2) {
        top: -14px;
        left: 40px;
    }
    .echo-team-area.about
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(3) {
        top: -14px;
        right: 40px;
    }
    .echo-team-area.about
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(4) {
        top: -5px;
        right: 0;
    }
}
@media (max-width: 575px) {
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .echo-banner-right-area-content
        .right-side-gallery
        .gallery-inner
        .gallery-item {
        width: 48%;
    }
    .echo-video-area.home-four
        .echo-video-area-inner
        .video-play-button::before {
        width: 120px;
        height: 120px;
    }
    .echo-video-area.home-four
        .echo-video-area-inner
        .video-play-button::after {
        width: 75px;
        height: 75px;
    }
    .echo-video-area.home-four .echo-video-area-inner .video-play-button span {
        border-left: 18px solid #fe4358;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
    .echo-feature-area.area-2
        .echo-feature-area-last-news
        .echo-feature-area-last-content {
        display: block;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-site-title
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text
        .content-catagory-tag {
        margin: 30px 0 0 0;
    }
    .echo-software-download-area .echo-software-download-full-content-bg {
        padding: 80px 20px;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content
        h2
        br {
        display: none;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content
        .echo-software-download-text-content
        .echo-software-download-place
        a {
        padding: 15px 30px;
    }
    .echo-footer-area4 .footer-top .footer-top-inner .footer-top-right {
        width: 100%;
    }
    .echo-footer-area4
        .footer-top
        .footer-top-inner
        .footer-top-right
        .echo-subscribe-box-button
        form {
        margin: 0 auto;
        width: 100%;
    }
    .echo-hero-section.home-three {
        padding: 160px 10px 80px 10px;
    }
    .echo-hero-section.home-three
        .echo-hero-inner
        .banner-content
        .contents
        .content-title1 {
        font-size: 40px;
        line-height: 52px;
    }
    .echo-hero-section.home-three
        .echo-hero-inner
        .banner-content
        .contents
        .echo-button-wrapper
        .rts-btn {
        margin-bottom: 30px;
    }
    .echo-catagories-area
        .echo-catagories-area-content
        .title-area
        .swiper-btn {
        display: none;
    }
    .echo-catagories-area .echo-catagories-area-content .echo-catagories-inner {
        margin-top: 30px;
    }
    .echo-team-area .echo-team-area-inner .team-wrapper {
        margin-right: 0;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(1) {
        top: -10px;
        left: 50px;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(2) {
        top: -14px;
        left: 120px;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(3) {
        top: -14px;
        right: 120px;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(4) {
        top: -10px;
        right: 50px;
    }
    .echo-team-area .echo-team-area-inner .section-title {
        font-size: 32px;
        line-height: 45px;
    }
}
@media (max-width: 480px) {
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-latest-news-main-content
        .content {
        padding: 15px 20px 30px 20px;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-latest-news-main-content
        .echo-latest-news-single-title {
        margin-top: 20px;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-latest-news-main-content
        .echo-latest-news-single-title
        h5 {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 15px;
    }
    .echo-hero-section.home-four
        .echo-full-hero-content
        .echo-banner-right-area-content
        ul
        li
        .content
        h5 {
        font-size: 16px;
        line-height: 26px;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .title-area
        .sub-title {
        width: 100%;
    }
    .echo-latest-news-area.home-four
        .echo-latest-news-content
        .title-area
        .see-all-btn {
        display: none;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner
        .echo-feature-area-right-site-follower
        ul
        li {
        width: 250px;
        margin: 15px auto;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner
        .echo-feature-area-right-site-follower
        ul
        li:nth-child(1),
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner
        .echo-feature-area-right-site-follower
        ul
        li:nth-child(3),
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .right-side-inner
        .echo-feature-area-right-site-follower
        ul
        li:nth-child(5) {
        margin: auto;
    }
    .echo-feature-area.home-four
        .echo-feature-area-full-content
        .echo-latest-news-main-content
        .echo-latest-news-single-title
        h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-popular-news-area.home-four
        .echo-popular-news-area-content
        .echo-popular-news-area-full-content
        .left-side-content
        .echo-latest-news-main-content
        .echo-latest-news-single-title
        h5 {
        font-size: 20px;
        line-height: 30px;
    }
    .echo-video-area.home-four
        .swiper-container
        .slider-inner
        .echo-video-bottom-area
        .content
        h5 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .echo-video-area.home-four
        .swiper-container
        .slider-inner
        .echo-video-bottom-area
        .content {
        padding: 40px 25px 100px 25px;
    }
    .echo-video-area.home-four
        .swiper-container
        .slider-inner
        .echo-video-bottom-area
        .content
        .echo-latest-news-time-views {
        font-size: 12px;
    }
    .echo-feature-area.area-2
        .echo-feature-area-last-news
        .echo-feature-area-last-content {
        text-align: center;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-site-title
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-img
        img {
        width: 100%;
    }
    .echo-feature-area.area-2
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-site-title
        .echo-feature-area-last-news
        .echo-feature-area-last-content
        .echo-feature-area-last-content-text
        .content-catagory-tag {
        margin: 30px auto 0 auto;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content
        .echo-software-download-text-content {
        text-align: center;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content
        .echo-software-download-text-content
        .echo-software-download-place {
        flex-wrap: wrap;
        justify-content: center;
    }
    .echo-software-download-area
        .echo-software-download-full-content-bg
        .echo-software-download-full-content
        .echo-software-download-text-content
        .echo-software-download-sub-title
        p
        br {
        display: none;
    }
    .echo-hero-section.home-three
        .echo-hero-inner
        .banner-content
        .contents
        .content-title1 {
        font-size: 26px;
        line-height: 40px;
    }
    .echo-hero-section.home-three
        .echo-hero-inner
        .echo-hero-right-side
        .right-side-inner
        .content-box
        ul
        .wrapper
        .content
        .content-title1 {
        font-size: 16px;
        line-height: 28px;
    }
    .echo-feature-area.home-three .echo-feature-area-right-site-follower ul li {
        font-size: 12px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-right-site-follower
        ul
        li
        a {
        gap: 7px;
    }
    .echo-catagories-area
        .echo-catagories-area-content
        .title-area
        .section-title {
        font-size: 20px;
        line-height: 32px;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(1) {
        top: -5px;
        left: 0;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(2) {
        top: -14px;
        left: 60px;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(3) {
        top: -14px;
        right: 60px;
    }
    .echo-team-area
        .echo-team-area-inner
        .team-wrapper
        .content-area
        ul.social-icon
        li:nth-child(4) {
        top: -5px;
        right: 0;
    }
    .search-input-area .search-input-inner .search-close-icon {
        width: 20%;
    }
}
@media (max-width: 400px) {
    .echo-hero-section.home-three
        .echo-hero-inner
        .echo-hero-right-side
        .right-side-inner
        .content-box
        ul
        .wrapper {
        display: block;
    }
    .echo-hero-section.home-three
        .echo-hero-inner
        .echo-hero-right-side
        .right-side-inner
        .content-box
        ul
        .wrapper
        .content
        .content-title1 {
        font-size: 18px;
        line-height: 28px;
    }
    .echo-hero-section.home-three
        .echo-hero-inner
        .echo-hero-right-side
        .right-side-inner
        .content-box
        ul
        .wrapper
        .content {
        margin-top: 20px;
    }
    .echo-latest-news-area.home-three
        .echo-latest-news-content
        .echo-latest-news-full-content
        .echo-latest-news-single-title
        h5 {
        font-size: 22px;
        line-height: 32px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-site-title
        .echo-feature-area-last-news {
        margin-bottom: 30px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-follower {
        padding: 30px 22px;
    }
    .echo-latest-news-area.home-three
        .echo-latest-news-main-content
        .echo-latest-news-time-views {
        gap: 3px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-full-content
        .content-box
        ul
        .wrapper {
        gap: 10px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-full-content
        .content-box
        ul
        .wrapper
        .content
        .content-catagory-tag {
        font-size: 12px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-full-content
        .content-box
        ul
        .wrapper
        .content
        .content-title1 {
        font-size: 16px;
        line-height: 26px;
    }
    .echo-feature-area.home-three
        .echo-feature-area-content
        .echo-feature-full-content
        .echo-feature-area-right-site-full-content {
        padding: 30px 16px 30px 16px;
    }
}
/* 404 Area Style */

/*# sourceMappingURL=style.css.map */
