@import url("https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@400;500;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&amp;display=swap");

:root {
    --color-primary: #176077;
    --color-primary: #176077;
    --color-primary-3: #ff390e;
    --color-primary-m: #6344c6;
    --color-body: #74787c;
    --color-heading-1: #0d0d0d;
    --bg-dark-one: #27272e;
    --bg-dark-two: #212121;
    --color-white: #fff;
    --color-success: #3eb75e;
    --color-danger: #ff0003;
    --color-warning: #ff8f3c;
    --color-info: #1ba2db;
    --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;
    --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;
    --transition: 0.3s;
    --font-primary: "Kaisei Opti", serif;
    --font-secondary: "DM Sans", sans-serif;
    --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: 40px;
    --h3: 36px;
    --h4: 30px;
    --h5: 26px;
    --h6: 22px;
}

* {
    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;
    font-family: "DM Sans", sans-serif;
    color: var(--color-body);
    font-weight: var(--p-regular);
    position: relative;
    overflow-x: hidden;
}

@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: "Kaisei Opti", serif;
    line-height: 1.4074;
    color: var(--color-heading-1);
}

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

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

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

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

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

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);
}

@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);
}

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;
}

.rts-section-gap {
    padding: 60px 0;
}

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

@media only screen and (max-width: 767px) {
    .rts-section-gap {
        padding: 0px 0;
    }
}

.rts-section-gapBottom {
    padding-bottom: 150px;
}

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

@media only screen and (max-width: 767px) {
    .rts-section-gapBottom {
        padding-bottom: 60px;
    }
}

.rts-section-gapTop {
    padding-top: 120px;
}

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

@media only screen and (max-width: 767px) {
    .rts-section-gapTop {
        padding-top: 60px;
    }
}

.rts-section-gap2 {
    padding: 120px 0;
}

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

@media only screen and (max-width: 767px) {
    .rts-section-gap2 {
        padding: 60px 0;
    }
}

.rts-section-gap2Bottom {
    padding-bottom: 120px;
}

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

@media only screen and (max-width: 767px) {
    .rts-section-gap2Bottom {
        padding-bottom: 60px;
    }
}

.rts-section-gap2Top {
    padding-top: 120px;
}

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

@media only screen and (max-width: 767px) {
    .rts-section-gap2Top {
        padding-top: 60px;
    }
}

.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;
    }
}

.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,
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;
}

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: #ffffff;
    overflow-x: hidden;
}

/*------------------------
    Header Sticky 
--------------------------*/
.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-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;
}

.title-area span {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #3b38eb;
}

.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: #ecf2f6;
}

.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 #1810100d;
    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, #ffffff00 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, #ffffff00 0%, #ecf0f3 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;
}

.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) {
    .rts-contact-area.four {
        background: transparent;
    }
}

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

/*!
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);
    }
}

.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  */
.home-mazin.marketer .header-one.three nav.main-nav ul li a:hover {
    color: #000;
}

.home-mazin.marketer .header-one.three .open-h2-menu-area .contact-area a:hover {
    color: var(--color-primary-3);
}

.home-mazin.marketer ul#mobile-menu-active li a:hover {
    color: var(--color-primary-3);
}

.marketer .side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .phone a:hover {
    color: var(--color-primary-3);
}

.marketer .side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .address a:hover {
    color: var(--color-primary-3);
}

.marketer .side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .mail a:hover {
    color: var(--color-primary-3);
}

.marketer .footer-copyright-four .inner .left p a {
    transition: 0.3s;
}

.marketer .footer-copyright-four .inner .left p a:hover {
    color: var(--color-primary-3);
}

.header-one {
    background: #efefe8;
}

.header-one a.thumbnail {
    display: flex;
    align-items: center;
}

.header-one a.thumbnail img {
    padding: 15px 0;
    padding: 0;
    min-width: 112px;
}

@media only screen and (max-width: 1199px) {
    .header-one a.thumbnail img {
        padding: 25px 0;
    }
}

.header-four nav.main-nav ul li a:hover {
    color: var(--color-primary);
}

.header-four nav.main-nav ul li a:hover::after {
    color: var(--color-primary-2) !important;
}

nav.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav.main-nav ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav.main-nav ul li {
    margin: 0 20px;
}

nav.main-nav ul li a {
    padding: 30px 0;
    display: block;
    color: #0d0d0d;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    position: relative;
    z-index: 1;
}

nav.main-nav ul li a::after {
    position: absolute;
    content: "";
    left: 0;
    height: 0px;
    width: 0px;
    background: var(--color-primary);
    bottom: 29px;
    z-index: -1;
    transition: 0.3s;
}

nav.main-nav ul li a:hover::after {
    height: 3px;
    width: 45px;
}

nav.main-nav ul li.current a::after {
    position: absolute;
    content: "";
    left: 0;
    height: 3px;
    width: 45px;
    background: var(--color-primary);
    bottom: 28px;
    z-index: -1;
    transition: 0.3s;
}

.header-one.three nav.main-nav ul li a::after {
    bottom: 38px;
    background: #ff390e;
}

.dark-version .open-h2-menu-area svg rect {
    fill: #fff;
}

.dark-version .open-h2-menu-area {
    color: #fff;
}

.open-h2-menu-area {
    color: #141414;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.photographer-home .header-one {
    background: transparent;
}

body.marketer {
    background: #ecf0f3;
}

.header-one.three {
    background: #fff;
    position: relative;
}

.header-one.three .logo-area {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, 0);
    background: #ffffff;
    box-shadow: 0px 4px 74px rgba(0, 0, 0, 0.11);
    border-radius: 0px 0px 15px 15px;
    padding: 16px 32px 29px;
}

@media only screen and (max-width: 1199px) {
    .header-one.three .logo-area {
        padding: 0;
        background: transparent;
        left: 100px;
        box-shadow: none;
        transform: none;
    }
}

@media only screen and (max-width: 767px) {
    .header-one.three .logo-area {
        left: 50px;
    }
}

@media only screen and (max-width: 479px) {
    .header-one.three .logo-area {
        left: 10px;
    }
}

.header-one.three nav.main-nav {
    justify-content: flex-start;
}

.header-one.three nav.main-nav ul li a {
    padding: 27px 0;
}

.header-one.three nav.main-nav ul li a::after {
    bottom: 25px;
}

.header-one.three .open-h2-menu-area {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1199px) {
    .header-one.three .open-h2-menu-area {
        padding: 30px 0;
    }
}

.header-one.three .open-h2-menu-area .contact-area {
    display: flex;
}

@media only screen and (max-width: 767px) {
    .header-one.three .open-h2-menu-area .contact-area {
        display: none;
    }
}

.header-one.three .open-h2-menu-area .contact-area a {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    transition: 0.3s;
}

.home-four.home-mazin nav.main-nav ul li a::after {
    bottom: 27px;
}

.home-four.home-mazin .progress-wrap::after {
    color: #ffae00;
}

.home-four.home-mazin .progress-wrap::after {
    border-color: #ffae00;
}

.home-four.home-mazin .progress-wrap::after {
    border: 2px solid #ffae00;
}

.home-four.home-mazin .progress-wrap svg.progress-circle path {
    stroke: #ffae00;
}

.header-one.header-four {
    background: transparent;
    position: absolute;
    width: 100%;
}

.open-h2-menu-area.header-four {
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px rgba(211, 218, 225, 0.81);
    border-radius: 100px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.container-two {
    max-width: 1170px;
    margin: auto;
}

.container-three {
    max-width: 1760px;
    margin: auto;
    padding: 0 50px;
}

@media only screen and (min-width: 1400px) {
    .container-two {
        max-width: 1170px;
    }
}

@media only screen and (max-width: 1199px) {
    .container-two {
        max-width: 1000px;
    }

    .container-three {
        max-width: 1100px;
        padding: 0;
    }
}

@media only screen and (max-width: 992px) {
    .container-two {
        max-width: 800px;
        padding: 0 10px;
    }

    .container-three {
        max-width: 800px;
        padding: 0 10px;
    }
}

@media only screen and (max-width: 776px) {
    .container-two {
        max-width: 700px;
    }

    .container-three {
        max-width: 700px;
    }
}

@media only screen and (max-width: 676px) {
    .container-two {
        max-width: 550px;
    }

    .container-three {
        max-width: 550px;
    }
}

@media only screen and (max-width: 550px) {
    .container-two {
        max-width: 500px;
    }

    .container-three {
        max-width: 500px;
    }
}

@media only screen and (max-width: 500px) {
    .container-two {
        max-width: 480px;
    }

    .container-three {
        max-width: 480px;
    }
}

@media only screen and (max-width: 480px) {
    .container-two {
        max-width: 100%;
        padding: 0 10px;
    }

    .container-three {
        max-width: 100%;
        padding: 0 10px;
    }
}

.rts-header-five {
    border-bottom: 1px solid #1f1f211a;
    position: relative;
    width: 100%;
    height: 120px;
}

.rts-header-five.sticky {
    border-bottom: none;
}

.bg-mazin {
    background-image: url(../images/bg/bg-slider-mazin.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.header-five-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
    .header-five-wrapper {
        max-width: 95%;
        margin: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-five-wrapper .menu-area .nav {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .header-five-wrapper .menu-area .nav {
        display: none;
    }
}

.header-five-wrapper .menu-area ul {
    padding: 0;
    margin: 0;
}

.header-five-wrapper .menu-area ul li {
    margin: 0 20px;
    padding: 0;
}

@media (max-width: 1200px) {
    .header-five-wrapper .menu-area ul li {
        margin: 0 10px;
    }
}

.header-five-wrapper .menu-area ul li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    font-family: "Kaisei Opti";
    color: #111111;
    padding: 28px 0;
    display: block;
    position: relative;
}

.header-five-wrapper .menu-area ul li a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -3px;
    height: 3px;
    width: 0%;
    background: var(--color-primary-m);
    transition: 0.3s;
}

.header-five-wrapper .menu-area ul li:hover a {
    color: var(--color-primary-m);
}

.header-five-wrapper .menu-area ul li:hover a::after {
    width: 100%;
}

.header-five-wrapper .menu-area ul li.current a {
    color: var(--color-primary-m);
}

.header-five-wrapper .menu-area ul li.current a::after {
    width: 100%;
}

.six .header-five-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
    .six .header-five-wrapper {
        max-width: 95%;
        margin: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .six .header-five-wrapper .menu-area .nav {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .six .header-five-wrapper .menu-area .nav {
        display: none;
    }
}

.six .header-five-wrapper .menu-area ul li a::after {
    background: var(--color-primary);
    transition: 0.3s;
}

.six .header-five-wrapper .menu-area ul li:hover a {
    color: var(--color-primary);
}

.six .header-five-wrapper .menu-area ul li:hover a::after {
    width: 100%;
}

.six .header-five-wrapper .menu-area ul li.current a {
    color: var(--color-primary);
}

.six .header-five-wrapper .menu-area ul li.current a::after {
    width: 100%;
}

.contact-menu-area-five {
    display: flex;
    align-items: center;
}

.contact-menu-area-five .sign-in-area {
    display: flex;
    align-items: center;
    margin-right: 50px;
}

@media only screen and (max-width: 479px) {
    .contact-menu-area-five .sign-in-area {
        display: none;
    }
}

.contact-menu-area-five .sign-in-area .icon {
    margin-right: 15px;
}

.contact-menu-area-five .sign-in-area .icon i {
    padding: 14px;
    font-size: 18px;
    color: #111111;
    border-radius: 50%;
    border: 2px solid rgba(31, 31, 33, 0.1);
}

.contact-menu-area-five .sign-in-area .sign-ion-text {
    margin-top: -5px;
}

.contact-menu-area-five .sign-in-area .sign-ion-text span {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    font-family: var(--font-secondary);
    color: #777777;
}

.contact-menu-area-five .sign-in-area .sign-ion-text p {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #111111;
    font-family: var(--font-primary);
    transition: 0.3s;
    margin-top: -1px;
}

.contact-menu-area-five .sign-in-area .sign-ion-text:hover p {
    color: var(--color-primary-m);
}

.contact-menu-area-five .menu-area {
    cursor: pointer;
}

.contact-menu-area-five .menu-area svg path {
    fill: #111111;
    transition: 0.3s;
}

.contact-menu-area-five .menu-area svg .two {
    stroke: #000000;
    transition: 0.3s;
}

.contact-menu-area-five .menu-area svg:hover path {
    fill: #6344c6;
}

.contact-menu-area-five .menu-area svg:hover path.two {
    stroke: #6344c6;
}

.header-five-wrapper .logo-area .thumbnail .logo-for-dark {
    display: none;
}

.home-mazin ul#mobile-menu-active,
.photographer-home ul#mobile-menu-active {
    margin-top: 100px;
}

@media only screen and (max-width: 575px) {

    .home-mazin ul#mobile-menu-active,
    .photographer-home ul#mobile-menu-active {
        margin-top: 0;
    }
}

.home-mazin .home-mazin .rts-sidebar-menu-desktop,
.photographer-home .home-mazin .rts-sidebar-menu-desktop {
    position: relative;
}

.home-mazin .logo-1,
.photographer-home .logo-1 {
    position: absolute;
    top: 100px;
}

.home-mazin .logo-1 img,
.photographer-home .logo-1 img {
    width: 180px;
}

.home-mazin ul#mobile-menu-active li,
.photographer-home ul#mobile-menu-active li {
    margin: 28px 0;
}

.home-mazin ul#mobile-menu-active li a,
.photographer-home ul#mobile-menu-active li a {
    font-size: 42px;
    color: #1f1f21;
    font-weight: 700;
    transition: 0.3s;
    font-family: var(--font-primary);
}

@media only screen and (max-width: 575px) {

    .home-mazin ul#mobile-menu-active li a,
    .photographer-home ul#mobile-menu-active li a {
        font-size: 32px;
    }
}

.home-mazin ul#mobile-menu-active li a:hover,
.photographer-home ul#mobile-menu-active li a:hover {
    color: var(--color-primary-m);
}

.home-mazin button.close-icon-menu,
.photographer-home button.close-icon-menu {
    margin-left: auto;
    margin-top: 30px;
    padding: 20px;
    margin-right: 30px;
}

.home-mazin button.close-icon-menu svg,
.photographer-home button.close-icon-menu svg {
    transition: 0.3s;
}

.home-mazin button.close-icon-menu:hover svg,
.photographer-home button.close-icon-menu:hover svg {
    transform: scale(1.2);
}

.home-mazin .side-bar,
.photographer-home .side-bar {
    width: 100%;
    padding-top: 0;
    padding: 0;
}

.home-mazin .rts-sidebar-menu-desktop,
.photographer-home .rts-sidebar-menu-desktop {
    padding-top: 0;
}

.header-five-wrapper .logo-area .thumbnail {
    padding: 27px 0;
    display: block;
}

.mazin-home .rts-sidebar-menu-desktop .inner-wrapper {
    display: flex;
    align-items: flex-start;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mazin-home .rts-sidebar-menu-desktop .inner-wrapper {
        flex-direction: column;
        align-items: flex-start;
        top: 60%;
    }
}

@media only screen and (max-width: 767px) {
    .mazin-home .rts-sidebar-menu-desktop .inner-wrapper {
        flex-direction: column;
        align-items: flex-start;
        top: 60%;
    }
}

.mazin-home .rts-sidebar-menu-desktop .inner-wrapper .body-mobile {
    flex-basis: 50%;
}

.mazin-home .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper {
    margin-top: 100px;
    flex-basis: 50%;
}

@media only screen and (max-width: 575px) {
    .mazin-home .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper {
        margin-top: 0;
    }
}

.mazin-home .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .single {
    margin-bottom: 30px;
}

.mazin-home .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .single .title {
    margin-bottom: 10px;
}

.mazin-home .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .single .social-wrapper-two ul {
    margin: 0;
}

.mazin-home .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .single .social-wrapper-two ul li {
    margin: 0;
}

.mazin-home .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .single .social-wrapper-two ul li a i {
    color: #3d3d3d;
    background: transparent;
    box-shadow: none;
    padding: 0;
    width: auto;
    margin-right: 25px;
    transition: all 0.3s;
}

.mazin-home .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .single .social-wrapper-two ul li a:hover i {
    transform: scale(1.2);
    color: #0d0d0d;
}

.marketer .rts-btn::after {
    background: var(--color-primary-3) !important;
}

.marketer .rts-btn.btn-main-3::after {
    background: #000000 !important;
}

.six .contact-menu-area-five .menu-area svg:hover path {
    fill: var(--color-primary);
}

.six .contact-menu-area-five .menu-area svg:hover path.two {
    stroke: var(--color-primary);
}

.side-bar {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: -100%;
    width: 365px;
    padding: 50px;
    padding-top: 50px;
    height: 100%;
    display: block;
    background-color: white;
    backdrop-filter: blur(7px);
    z-index: 1900;
    transition: all 600ms ease;
    box-shadow: -5px 0 20px -5px rgba(149, 22, 22, 0.12);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

@media only screen and (max-width: 575px) {
    .side-bar {
        width: 320px;
        box-shadow: none;
    }
}

.side-bar.show {
    right: 0;
}

.side-bar button i {
    color: #fff;
    height: 45px;
    width: 45px;
    border-radius: 5px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    margin-top: -3px;
    border-radius: 50%;
}

.rts-sidebar-menu-desktop .body p.disc {
    margin-top: 25px;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

.rts-sidebar-menu-desktop .social-area {
    margin-top: 20px;
    margin-left: 0;
    display: flex;
    list-style: none;
    padding-left: 0;
}

.rts-sidebar-menu-desktop {
    padding-top: 70px;
}

.rts-sidebar-menu-desktop a.logo-1 .logo {
    margin-bottom: 10px;
}

.rts-btn.btn-main.menu-btn svg rect {
    fill: #000;
}

@media only screen and (max-width: 1199px) {
    .rts-btn.btn-main.menu-btn {
        padding: 5px;
        display: block;
        height: 53px;
        width: 53px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-left: 15px;
    }
}

.social-area li a {
    position: relative;
    z-index: 1;
}

.social-wrapper-two ul li a {
    transition: 0.3s;
}

.social-wrapper-two ul li a i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-right: 7px;
    background: #ffffff;
    transition: 0.3s;
    box-shadow: 0px 10px 12px rgba(179, 179, 179, 0.21),
        inset 1px 4px 5px rgba(174, 172, 243, 0.3);
}

.rts-sidebar-menu-desktop .social-area li a i {
    color: var(--color-primary);
    transition: 0.3s;
}

.social-area li a i {
    color: #fff;
    font-size: 14px;
}

.rts-sidebar-menu-desktop .social-area li a::after {
    background: transparent;
    transition: 0.3s;
}

.social-area li a::after {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #292929;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: 0.3s;
}

button.close-icon-menu {
    max-width: max-content;
}

ul#mobile-menu-active {
    padding-left: 0;
}

#anywhere-home {
    background: #0e1013;
    position: fixed;
    width: 100%;
    height: 0%;
    right: 0;
    bottom: 0;
    transition: 0.4s;
    pointer-events: none;
    z-index: 50;
    cursor: url(../images/banner/shape/close.png), auto;
}

#anywhere-home.bgshow {
    background: #000000e3;
    pointer-events: visible;
    z-index: 60;
    height: 100%;
    opacity: 1;
    right: 0;
    top: 0;
    transition: 0.4s cubic-bezier(0.4, 0, 1, 1);
}

.home-mazin .side-bar button i {
    background: var(--color-primary-m);
}

.home-mazin .rts-sidebar-menu-desktop .social-area li a i {
    color: var(--color-primary-m);
}

.side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper nav ul li.one {
    animation: flipInX 2s linear;
    animation-delay: 600ms;
}

.side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper nav ul li.two {
    animation: flipInX 2s linear;
    animation-delay: 700ms;
}

.side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper nav ul li.three {
    animation: flipInX 2s linear;
    animation-delay: 800ms;
}

.side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper nav ul li.four {
    animation: flipInX 2s linear;
    animation-delay: 900ms;
}

.side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper nav ul li.five {
    animation: flipInX 2s linear;
    animation-delay: 900ms;
}

.side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper nav ul li.six {
    animation: flipInX 2s linear;
    animation-delay: 1000ms;
}

.side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .phone {
    animation: flipInX 2s linear;
    animation-delay: 1100ms;
}

.side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .address {
    animation: flipInX 2s linear;
    animation-delay: 1200ms;
}

.side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .mail {
    animation: flipInX 2s linear;
    animation-delay: 1300ms;
}

.side-bar.mazin-home.show .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .follow {
    animation: flipInX 2s linear;
    animation-delay: 1400ms;
}

/* elements area style  */
.rts-btn {
    padding: 16px 36px;
    letter-spacing: -0.02em;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.rts-btn::after {
    position: absolute;
    content: "";
    height: 0%;
    width: 0%;
    background: #ffc576;
    transition: all 0.6s ease-in-out;
    right: 0;
    z-index: -1;
    bottom: 0;
}

.rts-btn.btn-main {
    background: #176077;
    color: #f8f9fa;
    border-radius: 100px;
    border: none;
}

.rts-btn.btn-main::after {
    border-radius: 100px;
}

.rts-btn.btn-main:hover {
    background: #fff;
    color: #fff;
}

.rts-btn.btn-main:hover::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.rts-btn.btn-main-2 {
    background: #ffae00;
    color: #0d0d0d;
    border-radius: 8px;
}

.rts-btn.btn-main-2:hover {
    background: #fff;
    color: #fff;
    border-radius: 8px;
}

.rts-btn.btn-main-2:hover::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #176077;
    border-radius: 8px;
}

.rts-btn.btn-main-2-alta {
    background: #141414;
    color: #fff;
    border-radius: 8px;
}

.rts-btn.btn-main-2-alta:hover {
    background: #fff;
    color: #fff;
    border-radius: 8px;
}

.rts-btn.btn-main-2-alta:hover::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #176077;
    border-radius: 8px;
}

.rts-btn.btn-main-3 {
    background: var(--color-primary-3) !important;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 22px rgba(255, 57, 14, 0.35);
    min-width: max-content;
}

.rts-btn.btn-main-3:hover {
    background: #fff;
    color: #fff;
    border-radius: 8px;
}

.rts-btn.btn-main-3:hover::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--color-primary-3) !important;
    border-radius: 8px;
}

.rts-btn.btn-main-3-alta {
    background: #141414 !important;
    color: #fff;
    border-radius: 8px;
}

.rts-btn.btn-main-3-alta:hover {
    background: #fff;
    color: #fff;
    border-radius: 8px;
}

.rts-btn.btn-main-3-alta:hover::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #141414 !important;
    border-radius: 8px;
}

.rts-btn.btn-primary-m {
    background: #1f1f21;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0.03em;
    color: #ffffff;
    border: 2px solid transparent;
    font-family: var(--font-primary);
    transition: 0.3s;
}

.rts-btn.btn-primary-m:hover {
    background: transparent;
    border: 2px solid rgba(31, 31, 33, 0.1);
}

.rts-btn.btn-secondary-m {
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0.03em;
    color: #ffffff;
    border: 2px solid rgba(31, 31, 33, 0.1);
    color: #1f1f21;
    font-family: var(--font-primary);
    transition: 0.3s;
}

.rts-btn.btn-secondary-m:hover {
    background: #1f1f21;
    border: 2px solid transparent;
    color: #fff;
}

.vedio-icone .video-play-button {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
    display: flex;
}

.vedio-icone .video-play-button::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 57px;
    height: 57px;
    background: #fbf0f0;
    border-radius: 50%;
    transition: all 200ms;
}

.vedio-icone .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 14px solid var(--color-primary-m);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 47%;
}

.vedio-icone .video-play-button span.outer-text {
    border: none;
    min-width: max-content;
    margin-left: 75px;
    position: relative;
    margin-top: -12px;
    color: var(--color-primary);
    font-weight: 500;
}

.vedio-icone .video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: all ease 500ms;
    display: none;
}

.vedio-icone .video-overlay iframe {
    width: 70%;
    height: 70%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}

.vedio-icone .video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
    display: block;
}

.vedio-icone .video-overlay .video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
}

body.photographer-home {
    background: #ecf0f3;
}

.banner-image-one {
    padding: 205px 0;
    background: #e5e5dd;
    background-position: 100%;
    background-repeat: no-repeat;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-image-one {
        padding: 50px 0;
    }
}

@media only screen and (max-width: 767px) {
    .banner-image-one {
        padding: 50px 0;
    }
}

.banner-image-one .banner-main-image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .banner-image-one .banner-main-image {
        right: -30%;
    }
}

@media only screen and (max-width: 1199px) {
    .banner-image-one .banner-main-image {
        right: -35%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-image-one .banner-main-image {
        right: 35%;
    }
}

@media only screen and (max-width: 767px) {
    .banner-image-one .banner-main-image {
        right: 35%;
        width: 95%;
    }
}

@media only screen and (max-width: 575px) {
    .banner-image-one .banner-main-image {
        right: 35%;
        width: 120%;
    }
}

@media only screen and (max-width: 479px) {
    .banner-image-one .banner-main-image {
        right: 35%;
        width: 160%;
    }
}

.banner-image-one .banner-main-image img {
    height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-image-one .banner-main-image img {
        height: 100%;
        right: -72%;
        position: relative;
    }
}

@media only screen and (max-width: 767px) {
    .banner-image-one .banner-main-image img {
        height: 100%;
        right: -72%;
        position: relative;
    }
}

.banner-image-one.banner-shape {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner-image-one.banner-shape::after {
    position: absolute;
    top: -66%;
    left: 20%;
    content: "";
    background-image: url(../images/banner/shape/01.png);
    height: 702px;
    width: 702px;
    animation: jump-3 5s linear infinite;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-image-one.banner-shape::after {
        height: 300px;
        width: 300px;
        background-size: cover;
    }
}

@media only screen and (max-width: 767px) {
    .banner-image-one.banner-shape::after {
        height: 300px;
        width: 300px;
        background-size: cover;
    }
}

.shape-images-banner-one img {
    position: absolute;
}

.shape-images-banner-one .one {
    right: -15%;
    top: -29%;
    z-index: -1;
}

@media only screen and (max-width: 479px) {
    .shape-images-banner-one .one {
        right: -42%;
    }
}

.shape-images-banner-one .two {
    left: -13%;
    top: -58%;
    z-index: -1;
    animation: jump-3 7s linear infinite;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shape-images-banner-one .two {
        left: -30%;
        top: -144%;
    }
}

@media only screen and (max-width: 479px) {
    .shape-images-banner-one .two {
        left: -77%;
        top: -125%;
    }
}

.shape-images-banner-one .three {
    left: -6%;
    top: -1%;
    z-index: -1;
    animation: jump-2 5s linear infinite;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .shape-images-banner-one .three {
        left: -28%;
        top: -50%;
    }
}

@media only screen and (max-width: 479px) {
    .shape-images-banner-one .three {
        left: -68%;
        top: -47%;
    }
}

.banner-inner-one span.pre-title {
    color: #0d0d0d;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
}

.banner-inner-one h1.title {
    font-weight: 800;
    font-size: 70px;
    line-height: 88px;
    letter-spacing: -0.05em;
    color: #0d0d0d;
    margin-bottom: 7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-inner-one h1.title {
        font-size: 70px;
        line-height: 90px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-inner-one h1.title {
        font-size: 70px;
        line-height: 90px;
    }
}

@media only screen and (max-width: 575px) {
    .banner-inner-one h1.title {
        font-size: 46px;
        line-height: 60px;
    }
}

.banner-inner-one p.disc {
    color: #0d0d0d;
    margin-bottom: 35px;
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    .banner-inner-one p.disc br {
        display: none;
    }
}

.home-2-banner-content {
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    box-shadow: 0px 20px 40px #d8dde1;
    border-radius: 15px;
    padding: 50px 60px;
}

@media only screen and (max-width: 767px) {
    .home-2-banner-content {
        padding: 25px;
    }
}

.home-2-banner-content span.sub-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 33px;
    color: #74787c;
}

.home-2-banner-content h1.title {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: #141414;
    margin-top: 15px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .home-2-banner-content h1.title {
        font-size: 35px;
        line-height: 45px;
    }
}

@media only screen and (max-width: 1199px) {
    .home-2-banner-content h1.title {
        font-size: 30px;
        line-height: 39px;
    }
}

.home-2-banner-content p.banner-disc {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #74787c;
    margin-bottom: 33px;
}

.home-2-banner-content .button-wrapper {
    display: flex;
    align-items: center;
}

.home-2-banner-content .button-wrapper a.rts-btn {
    margin-right: 20px;
}

.social-area-wrapper ul {
    padding-left: 0;
    margin: 0;
}

.social-area-wrapper ul li {
    display: flex;
    align-items: center;
    list-style: none;
    margin-right: 10px;
    margin-top: 0;
    margin-bottom: 0;
}

.social-area-wrapper ul li a {
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-right: 10px;
    justify-content: center;
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    box-shadow: 0px 20px 40px #d8dde1;
    transition: 0.3s;
}

@media only screen and (max-width: 479px) {
    .social-area-wrapper ul li a {
        width: 38px;
        height: 38px;
    }

    .social-area-wrapper ul li a i {
        font-size: 16px;
    }
}

.social-area-wrapper ul li a:hover {
    transform: translateY(-10px);
}

.social-area-wrapper ul li a i {
    color: #141414;
}

.rts-single-counter-up {
    padding: 20px 35px;
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    box-shadow: 0px 20px 40px #d8dde1;
    border-radius: 15px;
    margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .rts-single-counter-up {
        margin-bottom: 0px;
    }
}

.rts-single-counter-up h3 {
    line-height: 0;
    margin-bottom: 0;
}

.rts-single-counter-up h3 span {
    font-weight: 700;
    font-size: 40px;
    line-height: 55px;
    letter-spacing: -0.04em;
    color: #141414;
    margin-bottom: 0;
}

.rts-single-counter-up span .exp-time {
    color: #74787c;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.banner-three-wrapper {
    display: flex;
    align-items: center;
}

.banner-three-wrapper .title {
    font-weight: 500;
    font-size: 80px;
    line-height: 80px;
    color: #141414;
    position: absolute;
    max-width: max-content;
    min-width: max-content;
    z-index: 7;
    top: 26%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-three-wrapper .title {
        font-size: 38px;
        line-height: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-three-wrapper .title {
        font-size: 38px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 479px) {
    .banner-three-wrapper .title {
        font-size: 30px;
        line-height: 0;
    }
}

.banner-three-wrapper .title span {
    font-weight: 200;
    font-size: 160px;
    line-height: 130px;
    color: #ff390e;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-three-wrapper .title span {
        font-size: 60px;
        line-height: 19px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-three-wrapper .title span {
        font-size: 64px;
    }
}

@media only screen and (max-width: 575px) {
    .banner-three-wrapper .title span {
        font-size: 54px;
    }
}

.banner-three-wrapper .content {
    margin-top: 220px;
}

@media only screen and (max-width: 1199px) {
    .banner-three-wrapper .content {
        z-index: 20;
        position: relative;
        margin-top: 300px;
        margin-left: 10px;
    }
}

@media only screen and (max-width: 575px) {
    .banner-three-wrapper .content {
        margin-top: 220px;
        margin-left: 0;
    }
}

.banner-three-wrapper .content p.disc {
    font-weight: 400;
    font-size: 20px;
    color: #74787c;
    line-height: 32px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-three-wrapper .content p.disc {
        width: 216%;
    }
}

@media only screen and (max-width: 767px) {
    .banner-three-wrapper .content p.disc {
        width: 216%;
        font-weight: 500;
        font-size: 20px;
        color: #292929;
        line-height: 32px;
    }
}

.banner-three-wrapper .left-area {
    flex-basis: 60%;
}

.banner-three-wrapper .right-area {
    position: relative;
    z-index: 4;
}

.banner-three-wrapper .right-area::after {
    position: absolute;
    content: "";
    width: 130px;
    height: 130px;
    background: #ff390e;
    border-radius: 50%;
    top: 50%;
    right: -10%;
    z-index: -10;
    animation: jump-1 3s linear infinite;
}

.banner-three-wrapper .right-area::before {
    content: "";
    position: absolute;
    right: -20%;
    bottom: -29%;
    width: 406.8px;
    height: 424.22px;
    background: rgba(255, 57, 14, 0.2);
    filter: blur(100px);
    z-index: -10;
}

.banner-three-wrapper .right-area img {
    min-width: 107%;
    margin-left: -49px;
}

.banner-three-main {
    position: relative;
}

.banner-three-main::after {
    content: "";
    position: absolute;
    left: -6%;
    top: -29%;
    width: 406.8px;
    height: 424.22px;
    background: rgba(255, 57, 14, 0.2);
    filter: blur(100px);
    z-index: -1;
}

.banner-three-main .shape-image-banner-three img {
    position: absolute;
    top: -38%;
    left: -8%;
    animation: jump-2 5s linear infinite;
}

@media only screen and (max-width: 767px) {
    .banner-three-main .shape-image-banner-three img {
        top: -54%;
        left: -41%;
    }
}

@media (max-width: 991px) {
    .nine .banner-three-wrapper {
        display: grid;
    }
}

.nine .banner-three-wrapper .left-area {
    flex-basis: 100%;
}

@media (max-width: 991px) {
    .nine .banner-three-wrapper .left-area {
        order: 2;
    }
}

.nine .banner-three-wrapper .left-area .title {
    line-height: 1.2;
}

@media (max-width: 1400px) and (min-width: 1200px) {
    .nine .banner-three-wrapper .left-area .title {
        font-size: 70px;
    }
}

@media (max-width: 1200px) and (min-width: 991px) {
    .nine .banner-three-wrapper .left-area .title {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .nine .banner-three-wrapper .left-area .title {
        top: 74%;
    }
}

@media (max-width: 768px) {
    .nine .banner-three-wrapper .left-area .title {
        top: 68%;
    }
}

@media (max-width: 350px) {
    .nine .banner-three-wrapper .left-area .title {
        top: 60%;
    }
}

.nine .banner-three-wrapper .left-area .title span {
    font-size: 80px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .nine .banner-three-wrapper .left-area .title span {
        font-size: 60px;
    }
}

@media (max-width: 576px) {
    .nine .banner-three-wrapper .left-area .title span {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .nine .banner-three-wrapper .left-area .content {
        margin-top: 200px;
    }
}

.nine .banner-three-wrapper .left-area .content p.disc {
    width: 100%;
}

@media (max-width: 768px) {
    .nine .banner-three-wrapper .left-area .content p.disc br {
        display: none;
    }
}

.nine .banner-three-wrapper .right-area {
    width: 50%;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .nine .banner-three-wrapper .right-area {
        width: 75%;
    }
}

@media (max-width: 991px) {
    .nine .banner-three-wrapper .right-area {
        width: 100%;
        margin-bottom: 100px;
    }
}

.nine .banner-three-wrapper .right-area img {
    min-width: 107%;
    margin-left: 0;
    border-radius: 0 50% 0 50%;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .nine .banner-three-wrapper .right-area img {
        min-width: 100%;
    }
}

@media (max-width: 991px) {
    .nine .banner-three-wrapper .right-area img {
        min-width: 100%;
    }
}

.nine .banner-three-wrapper .right-area::after {
    right: -15%;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .nine .banner-three-wrapper .right-area::after {
        right: -7%;
    }
}

@media (max-width: 991px) {
    .nine .banner-three-wrapper .right-area::after {
        right: -5%;
    }
}

.marquee_text {
    font-weight: 100;
    font-size: 230px;
    line-height: 276px;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    font-family: var(--font-secondary);
    color: #111a2e;
    opacity: 1;
    overflow-x: hidden;
    font-weight: 200;
    font-size: 160px;
    line-height: 219px;
    color: #fff;
    letter-spacing: 0.1em;
    z-index: 2;
    position: sticky;
}

@media only screen and (max-width: 767px) {
    .marquee_text {
        font-size: 150px;
        line-height: 150px;
    }
}

@media only screen and (max-width: 575px) {
    .marquee_text {
        font-size: 100px;
        line-height: 100px;
    }
}

.marque-text-area {
    margin-top: -100px;
}

.download-area-inner,
.social-tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: #fff;
    border-radius: 10px;
}

@media only screen and (max-width: 767px) {

    .download-area-inner,
    .social-tag-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

.download-area-inner .socials,
.social-tag-wrapper .socials {
    display: flex;
    align-items: center;
}

.download-area-inner .socials p,
.social-tag-wrapper .socials p {
    margin: 0;
    margin-right: 20px;
    color: #141414;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
}

.download-area-inner .socials ul li a,
.social-tag-wrapper .socials ul li a {
    background: #fff;
    box-shadow: 0px 14px 33px #eaeef1;
}

body.inner-page {
    background: #ecf0f3;
}

.rts-breadcrumb-area {
    position: relative;
}

.rts-breadcrumb-area::after {
    content: "";
    position: absolute;
    left: 0%;
    top: -55%;
    width: 350px;
    height: 350px;
    background: rgba(255, 57, 14, 0.2);
    filter: blur(100px);
    z-index: -2;
    opacity: 0.85;
}

.rts-breadcrumb-area .breadcrumb-title .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 66px;
}

@media only screen and (max-width: 767px) {
    .rts-breadcrumb-area .breadcrumb-title .title {
        font-size: 32px;
        line-height: 45px;
    }
}

@media only screen and (max-width: 575px) {
    .rts-breadcrumb-area .breadcrumb-title .title {
        font-size: 22px;
        line-height: 40px;
    }
}

.rts-breadcrumb-area .shape-image-breadcrumb-three img {
    position: absolute;
    top: -80%;
    left: -9%;
    animation: jump-2 5s linear infinite;
    z-index: -1;
}

.title-small-inner .title {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
}

.backround-light {
    background: #ecf0f3 !important;
}

.banner-content-four {
    padding-top: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-content-four {
        padding-top: 65px;
    }
}

@media only screen and (max-width: 767px) {
    .banner-content-four {
        padding-top: 65px;
    }
}

.banner-content-four span.pre-title {
    padding: 5px 25px;
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px #d3dae1;
    border-radius: 100px;
    color: #141414;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 19px;
}

.banner-content-four .title {
    font-size: 115px;
    font-weight: 900;
    margin-top: 40px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 1199px) {
    .banner-content-four .title {
        font-size: 74px;
    }
}

@media only screen and (max-width: 479px) {
    .banner-content-four .title {
        font-size: 44px;
    }
}

.banner-content-four .banner-disc {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
}

.banner-content-four .button-banner-wrapper .rts-btn {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.rts-banner-style-four {
    position: relative;
    z-index: 1;
}

.rts-banner-style-four::after {
    content: "";
    position: absolute;
    right: -5%;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/banner/shape/06.png);
    background-repeat: no-repeat;
    z-index: -1;
}

.rts-banner-style-four .thumbnail {
    margin-right: -120px;
    margin-top: -50px;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-banner-style-four .thumbnail {
        margin-right: 0;
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .rts-banner-style-four .thumbnail {
        margin-right: 0;
        margin-top: 0;
    }
}

.rts-banner-style-four .thumbnail img {
    width: 100%;
}

.rts-banner-style-four .thumbnail .thumb-badge {
    position: absolute;
    left: -15%;
    top: 65%;
    background: #ffffff;
    border: 2px solid #141414;
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    animation: jump-2 6s linear infinite;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-banner-style-four .thumbnail .thumb-badge {
        left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .rts-banner-style-four .thumbnail .thumb-badge {
        left: 0;
    }
}

.rts-banner-style-four .thumbnail .thumb-badge .title {
    margin-bottom: 0;
    font-weight: 800;
    font-size: 40px;
    line-height: 55px;
}

.rts-banner-style-four .thumbnail .thumb-badge .right {
    margin-bottom: 0;
    margin-left: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #141414;
}

.rts-banner-style-four .banner-shape-4 {
    position: absolute;
    z-index: -1;
    left: -27%;
    top: 5%;
}

.socials.style-four {
    margin-top: 170px;
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .socials.style-four {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .socials.style-four {
        margin-top: 65px;
    }
}

@media only screen and (max-width: 479px) {
    .socials.style-four {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.socials.style-four ul li a {
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px #dde3e9;
    border-radius: 100px;
}

.socials.style-four p {
    margin-bottom: 0;
    margin-right: 20px;
}

.home-mazin a:hover {
    color: var(--color-primary-m);
}

.home-mazin.six a:hover {
    color: var(--color-primary) !important;
}

.home-mazin.six a:hover i {
    color: var(--color-primary) !important;
}

.home-mazin.six a:hover p {
    color: var(--color-primary) !important;
}

.social-area-five {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .social-area-five {
        display: none;
    }
}

.social-area-five .socials {
    padding-right: 14px;
    margin-right: 14px;
    border-right: 1px solid rgba(31, 31, 33, 0.1);
}

.social-area-five .socials ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    list-style: none;
    font-family: var(--font-primary);
}

.social-area-five .socials ul li {
    margin: 0 10px;
    padding: 0;
}

@media (max-width: 991px) {
    .social-area-five .socials ul li {
        margin: 0 7px;
    }
}

.social-area-five .socials ul li a i {
    color: #111111;
    transition: 0.3s;
}

.social-area-five .socials ul li a:hover i {
    transform: translateY(-5px);
    color: var(--color-primary-m);
}

.social-area-five .socials-text {
    display: flex;
    align-items: center;
    color: #111111;
    font-family: var(--font-primary);
}

.social-area-five .socials-text span {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 7px;
    font-weight: 500;
}

.rts-banner-five-area-start {
    position: relative;
    overflow: hidden;
}

.rts-banner-five-area-start .go-bottom-icon {
    position: absolute;
    left: 150px;
    bottom: 30px;
    animation: jump-5 2s linear infinite;
}

@media only screen and (max-width: 767px) {
    .rts-banner-five-area-start .go-bottom-icon {
        left: 30px;
    }
}

.rts-banner-five-area-start .shape-top {
    position: absolute;
    top: 200px;
    left: 100px;
    animation: jump-5 2s linear infinite;
}

.rts-banner-five-area-start .shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    animation: animate-floting-3 20s linear infinite;
}

.rts-banner-five-area-start .text-bottom {
    display: flex;
    position: absolute;
    left: 47%;
    bottom: 85px;
    transform: translateX(-50%);
    align-items: center;
}

@media (max-width: 1600px) {
    .rts-banner-five-area-start .text-bottom {
        left: 40%;
    }
}

@media (max-width: 1200px) {
    .rts-banner-five-area-start .text-bottom {
        left: 50%;
        bottom: 175px;
    }
}

@media (max-width: 991px) {
    .rts-banner-five-area-start .text-bottom {
        left: 70%;
        bottom: 175px;
    }
}

@media (max-width: 700px) {
    .rts-banner-five-area-start .text-bottom {
        display: none;
    }
}

.rts-banner-five-area-start .text-bottom .number {
    font-size: 72px;
    line-height: 105px;
    font-weight: 700;
}

.rts-banner-five-area-start .text-bottom .text .desc {
    font-size: 12px;
    color: var(--color-primary-m);
    margin-bottom: 0;
    line-height: 15px;
}

.rts-banner-five-area-start .text-bottom .text .percent {
    font-size: 24px;
    color: var(--color-primary-m);
    line-height: 32px;
    font-family: "Kaisei Opti", serif;
    font-weight: 700;
}

.rts-banner-five-area-start .banner-five-left {
    position: relative;
    padding-top: 160px;
}

@media (max-width: 1200px) {
    .rts-banner-five-area-start .banner-five-left {
        padding-bottom: 160px;
    }
}

@media (max-width: 700px) {
    .rts-banner-five-area-start .banner-five-left {
        padding-bottom: 100px;
    }
}

.rts-banner-five-area-start .banner-five-left .vedio-icone {
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 120px;
}

.rts-banner-five-area-start .banner-five-left .vedio-icone .video-play-button::after {
    height: 120px;
    width: 120px;
    background: var(--color-primary-m);
    transition: 0.3s;
}

@media only screen and (max-width: 767px) {
    .rts-banner-five-area-start .banner-five-left .vedio-icone .video-play-button::after {
        height: 80px;
        width: 80px;
    }
}

.rts-banner-five-area-start .banner-five-left .vedio-icone .video-play-button span {
    border-left: 17px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.rts-banner-five-area-start .banner-five-left .vedio-icone .video-play-button:hover::after {
    height: 140px;
    width: 140px;
}

.rts-banner-five-area-start .banner-five-left span.sub-five {
    font-weight: 700;
    font-size: 32px;
    line-height: 46px;
    color: #1f1f21;
    font-family: var(--font-primary);
    position: relative;
    display: block;
    width: 220px;
}

@media only screen and (max-width: 575px) {
    .rts-banner-five-area-start .banner-five-left span.sub-five {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .rts-banner-five-area-start .banner-five-left span.sub-five {
        width: 170px;
    }
}

.rts-banner-five-area-start .banner-five-left span.sub-five::after {
    position: absolute;
    content: "";
    background-image: url(../images/banner/icon/sm-line.png);
    height: 24px;
    width: 88px;
    background-size: contain;
    background-repeat: no-repeat;
    right: 0;
    bottom: -17px;
}

@media (max-width: 576px) {
    .rts-banner-five-area-start .banner-five-left span.sub-five::after {
        width: 70px;
    }
}

.rts-banner-five-area-start .banner-five-left .title {
    color: #1f1f21;
    font-weight: 700;
    font-size: 72px;
    line-height: 104px;
    margin-top: -10px;
}

@media only screen and (max-width: 479px) {
    .rts-banner-five-area-start .banner-five-left .title {
        font-size: 60px;
    }
}

@media only screen and (max-width: 575px) {
    .rts-banner-five-area-start .banner-five-left .title {
        font-size: 40px;
        line-height: 70px;
    }
}

.rts-banner-five-area-start .banner-five-left .title span {
    color: var(--color-primary-m);
}

.rts-banner-five-area-start .banner-five-left .disc {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #777777;
}

@media only screen and (max-width: 767px) {
    .rts-banner-five-area-start .banner-five-left .disc br {
        display: none;
    }
}

.rts-banner-five-area-start .banner-five-left .rts-btn.btn-main {
    border-radius: 0;
}

.rts-banner-five-area-start .banner-five-left .rts-btn.btn-main:hover {
    background: #ffffff0e;
}

.rts-banner-five-area-start .banner-five-left .rts-btn::after {
    border-radius: 0;
    background-color: #1f1f21;
}

.rts-banner-five-area-start .thumbnail {
    width: 80%;
    margin-left: auto;
    z-index: 1;
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .rts-banner-five-area-start .thumbnail {
        width: 100%;
    }
}

@media only screen and (max-width: 1199px) {
    .rts-banner-five-area-start .thumbnail {
        width: 85%;
        margin: auto;
    }
}

@media only screen and (max-width: 575px) {
    .rts-banner-five-area-start .thumbnail {
        width: 100%;
    }
}

.rts-banner-five-area-start .thumbnail::after {
    position: absolute;
    left: 1%;
    top: 33%;
    content: "";
    height: 100px;
    width: 100px;
    z-index: -1;
    background-image: url(../images/banner/shape/09.png);
    animation: jump-2 6s linear infinite;
    background-repeat: no-repeat;
}

.rts-banner-five-area-start .thumbnail img {
    width: 100%;
}

.rts-banner-five-area-start .thumbnail .image-shape {
    position: absolute;
    right: -25% !important;
    left: unset !important;
    bottom: 20% !important;
    top: unset !important;
    animation: jump-5 3s linear infinite;
}

@media (max-width: 1600px) {
    .rts-banner-five-area-start .thumbnail .image-shape {
        right: -15% !important;
    }
}

@media (max-width: 600px) {
    .rts-banner-five-area-start .thumbnail .image-shape {
        display: none !important;
    }
}

.faq-home-5-wrapper {
    background: #f8f8f8;
    padding: 100px;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .faq-home-5-wrapper {
        padding: 70px 10px;
    }
}

@media only screen and (max-width: 767px) {
    .faq-home-5-wrapper {
        padding: 30px 10px;
    }
}

.faq-home-5-wrapper .title-faq {
    width: 100%;
    margin: auto;
}

.faq-home-5-wrapper .title-faq .title {
    font-size: 40px;
    line-height: 126%;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .faq-home-5-wrapper .title-faq .title {
        font-size: 30px;
    }
}

@media (max-width: 680px) {
    .faq-home-5-wrapper .title-faq .sub-title br {
        display: none;
    }
}

.faq-home-5-wrapper .accordion-faq-home-five .accordion-item {
    background: #ffffff;
    margin-bottom: 20px;
    border: none;
    box-shadow: none;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.04);
    padding: 25px 20px;
}

@media only screen and (max-width: 767px) {
    .faq-home-5-wrapper .accordion-faq-home-five .accordion-item {
        padding: 15px;
    }
}

@media only screen and (max-width: 575px) {
    .faq-home-5-wrapper .accordion-faq-home-five .accordion-item {
        padding: 10px;
    }
}

.faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header {
    border: none;
}

.faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header button {
    font-weight: 400;
    font-size: 24px;
    color: #1f1f21;
    border: none;
    box-shadow: none;
    padding: 0;
}

@media only screen and (max-width: 575px) {
    .faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header button {
        font-size: 18px;
    }
}

.faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header button[aria-expanded="true"] {
    background: #fff;
    border: none;
    box-shadow: none;
    color: var(--color-primary-m);
}

.faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-body p {
    font-weight: 400;
    font-size: 18px;
    line-height: 212.4%;
    /* or 38px */
    letter-spacing: 0.02em;
}

@media (max-width: 576px) {
    .faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-body p {
        font-size: 16px;
    }
}

.banner-mazin-right-area {
    position: relative;
}

.rts-banner-five-area-start {
    position: relative;
}

.rts-banner-five-area-start a.live-chat-option {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 100;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .rts-banner-five-area-start a.live-chat-option {
        top: 81%;
        right: 20px;
    }
}

.rts-banner-five-area-start a.live-chat-option img {
    margin-right: 20px;
}

@media only screen and (max-width: 1199px) {
    .rts-banner-five-area-start a.live-chat-option {
        right: 50px;
        bottom: 73px;
        left: auto;
        transform: none;
        top: auto;
        transform: translateY(0) rotate(-90deg);
    }
}

.rts-banner-five-area-start a.live-chat-option .detsil span {
    display: block;
}

.rts-banner-five-area-start a.live-chat-option .detsil span.support {
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    font-family: var(--font-primary);
    color: #0c0c0c;
}

@media only screen and (max-width: 1199px) {
    .rts-banner-five-area-start a.live-chat-option .detsil {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-content-four .banner-disc br {
        display: none;
    }
}

.about-one-shape {
    position: relative;
}

.about-one-shape::after {
    position: absolute;
    left: -18%;
    top: -9%;
    content: "";
    background-image: url(../images/about/shape/01.png);
    width: 719px;
    height: 506px;
    background-size: cover;
    background-repeat: no-repeat;
    animation: jump-2 5s linear infinite;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-one-shape::after {
        z-index: -1;
    }
}

@media only screen and (max-width: 767px) {
    .about-one-shape::after {
        z-index: -1;
    }
}

@media only screen and (max-width: 575px) {
    .about-one-shape::after {
        display: none;
    }
}

.rts-about-area {
    position: relative;
    z-index: 1;
    padding: 100px 0px;
}

.rts-about-area .shape-about-4 {
    position: absolute;
    right: -26%;
    z-index: -1;
    top: 65%;
}

.rts-about-area.home-six::after {
    display: none;
}

.rts-about-area.home-six .about-area-inner {
    position: relative;
}

.rts-about-area.home-six .about-area-inner .sidebar-area {
    position: relative;
    width: 550px;
    height: 500px;
}

@media (max-width: 991px) {
    .rts-about-area.home-six .about-area-inner .sidebar-area {
        width: 100%;
        height: auto;
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

.rts-about-area.home-six .about-area-inner .sidebar-area .sidebar-image {
    display: none;
}

@media (max-width: 991px) {
    .rts-about-area.home-six .about-area-inner .sidebar-area .sidebar-image {
        display: block;
    }

    .rts-about-area.home-six .about-area-inner .sidebar-area .sidebar-image img {
        border-radius: 20px;
    }
}

.rts-about-area.home-six .about-area-inner .rts-btn.btn-main {
    background: var(--color-primary);
    color: #000000;
    border-radius: 100px;
}

.rts-about-area.home-six .about-area-inner .rts-btn.btn-main::after {
    background: #1f1f21;
}

.rts-about-area.home-six .about-area-inner .rts-btn.btn-main:hover {
    color: #ffffff !important;
}

.rts-about-area.home-six .about-area-inner .about-right-content .banner-inner-one .pre-title {
    font-size: 18px;
    line-height: 28px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .banner-inner-one .title {
    font-size: 100px;
    line-height: 1.1;
    margin-bottom: 25px;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .rts-about-area.home-six .about-area-inner .about-right-content .banner-inner-one .title {
        font-size: 70px;
    }
}

@media (max-width: 576px) {
    .rts-about-area.home-six .about-area-inner .about-right-content .banner-inner-one .title {
        font-size: 70px;
    }
}

@media (max-width: 400px) {
    .rts-about-area.home-six .about-area-inner .about-right-content .banner-inner-one .title {
        font-size: 50px;
    }
}

.rts-about-area.home-six .about-area-inner .about-right-content .banner-inner-one p.disc {
    color: #777777;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .rts-about-area.home-six .about-area-inner .about-right-content .banner-inner-one p.disc br {
        display: none;
    }
}

.rts-about-area.home-six .about-area-inner .about-right-content .services-area {
    margin-top: 70px;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .rts-about-area.home-six .about-area-inner .about-right-content .services-area {
        margin-top: 35px;
    }
}

.rts-about-area.home-six .about-area-inner .about-right-content .services-area .title {
    font-size: 40px;
    line-height: 1.23;
    margin-bottom: 40px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .services-area .services-inner .single-service {
    background: #fffde6;
    margin-bottom: 15px;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .rts-about-area.home-six .about-area-inner .about-right-content .services-area .services-inner .single-service {
        padding: 25px;
    }
}

.rts-about-area.home-six .about-area-inner .about-right-content .services-area .services-inner .single-service .icon {
    background: #1f1f21;
    width: 70px;
    height: 70px;
    line-height: 70px;
    color: #ffffff;
    display: block;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .pricing-area {
    margin-top: 70px;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .rts-about-area.home-six .about-area-inner .about-right-content .pricing-area {
        margin-top: 35px;
    }
}

.rts-about-area.home-six .about-area-inner .about-right-content .pricing-area .title {
    margin-bottom: 40px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .pricing-area .pricing-inner .single-plan {
    background-color: #fffde6;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    padding: 50px 0;
    text-align: center;
}

.rts-about-area.home-six .about-area-inner .about-right-content .pricing-area .pricing-inner .single-plan i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #1f1f21;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .pricing-area .pricing-inner .single-plan .plan-type {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 14px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .pricing-area .pricing-inner .single-plan .plan-price {
    color: #f0f0f0;
    font-size: 16px;
    background: #1f1f21;
    font-weight: 300;
    margin-bottom: 22px;
    display: inline-block;
    padding: 7px 23px;
    border-radius: 30px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .pricing-area .pricing-inner .single-plan .plan-list li {
    color: inherit;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .pricing-area .pricing-inner .single-plan .rts-btn.btn-main {
    padding: 16px 70px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .testimonial-area {
    margin-top: 70px;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .rts-about-area.home-six .about-area-inner .about-right-content .testimonial-area {
        margin-top: 35px;
    }
}

.rts-about-area.home-six .about-area-inner .about-right-content .testimonial-area .titile {
    margin-bottom: 40px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .testimonial-area .mazin-review-area-wrapper img {
    position: absolute;
    top: -25px;
    width: 70px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .testimonial-area .mazin-review-area-wrapper .content-inner {
    padding-left: 80px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .testimonial-area .mazin-review-area-wrapper .content-inner p.review {
    font-size: 28px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .testimonial-area .swiper-paginations {
    position: absolute;
    bottom: -5px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .testimonial-area .swiper-pagination-bullet {
    background: rgba(92, 92, 92, 0.4);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin: 0 5px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .testimonial-area .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.rts-about-area.home-six .about-area-inner .about-right-content .contact-area {
    margin-top: 70px;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .rts-about-area.home-six .about-area-inner .about-right-content .contact-area {
        margin-top: 35px;
    }
}

.rts-about-area.home-six .about-area-inner .about-right-content .contact-area .titile {
    margin-bottom: 40px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .contact-area .contact-area-inner {
    margin-top: 35px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .contact-area .contact-area-inner .contact-form .content-title {
    font-size: 20px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .contact-area .contact-area-inner .contact-form input {
    border: 1px solid #e5e5e5;
}

.rts-about-area.home-six .about-area-inner .about-right-content .contact-area .contact-area-inner .contact-form input:focus {
    border: 1px solid var(--color-primary);
}

.rts-about-area.home-six .about-area-inner .about-right-content .contact-area .contact-area-inner .contact-form textarea {
    border: 1px solid #e5e5e5;
}

.rts-about-area.home-six .about-area-inner .about-right-content .contact-area .contact-area-inner .contact-form textarea:focus {
    border: 1px solid var(--color-primary);
    box-shadow: none;
}

.rts-about-area.home-six .about-area-inner .about-right-content .clients-area {
    margin-top: 70px;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .rts-about-area.home-six .about-area-inner .about-right-content .clients-area {
        margin-top: 35px;
    }
}

.rts-about-area.home-six .about-area-inner .about-right-content .clients-area .titile {
    margin-bottom: 40px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .clients-area .client-area-inner {
    margin-top: 30px;
}

.rts-about-area.home-six .about-area-inner .about-right-content .clients-area .client-area-inner .gallery {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.rts-about-area.home-six .about-area-inner .about-right-content .clients-area .client-area-inner .gallery .gallery-item {
    background: #fffde6;
    padding: 20px;
    width: 22%;
    margin: 0 10px 15px 10px;
    text-align: center;
}

@media (max-width: 768px) {
    .rts-about-area.home-six .about-area-inner .about-right-content .clients-area .client-area-inner .gallery .gallery-item {
        width: 80%;
        margin: 10px auto;
    }
}

.rts-about-area.home-six .left {
    position: absolute;
    width: 500px;
    height: 700px;
    top: 0;
}

@media (max-width: 1400px) {
    .rts-about-area.home-six .left {
        width: 450px;
    }
}

@media (max-width: 1200px) {
    .rts-about-area.home-six .left {
        width: 390px;
    }
}

.rts-about-area.home-six .about-thumbnail-one {
    padding: 10px;
    position: sticky;
    height: max-content;
    top: 0;
    background: none;
}

.rts-about-area.home-six .about-thumbnail-one img {
    width: 100%;
    transform: scale(1);
    height: 500px;
    object-fit: cover;
}

.rts-about-area.home-six #sidebar {
    width: 500px;
    max-width: max-content;
    height: max-content;
    position: absolute;
}

@media (max-width: 1400px) {
    .rts-about-area.home-six #sidebar {
        width: 450px;
    }
}

@media (max-width: 1200px) {
    .rts-about-area.home-six #sidebar {
        width: 390px;
    }
}

.rts-about-area.home-six #sidebar.fixed {
    position: fixed;
    top: 100px;
    width: 500px;
}

@media (max-width: 1400px) {
    .rts-about-area.home-six #sidebar.fixed {
        width: 450px;
    }
}

@media (max-width: 1200px) {
    .rts-about-area.home-six #sidebar.fixed {
        width: 390px;
    }
}

.about-thumbnail-one {
    overflow: hidden;
    display: block;
    border-radius: 20px;
    max-width: max-content;
    background: var(--color-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-thumbnail-one {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .about-thumbnail-one {
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.about-thumbnail-one img {
    transition: 0.5s;
    transform: scale(1.2) translateX(50px);
    border-radius: 20px;
}

@media only screen and (max-width: 767px) {
    .about-thumbnail-one img {
        transform: inherit;
    }
}

.about-thumbnail-one:hover img {
    transform: scale(1) translate(-20px);
}

@media only screen and (max-width: 767px) {
    .about-thumbnail-one:hover img {
        transform: inherit;
    }
}

.title-area-main-left {
    text-align: left;
}

.title-area-main-left span.pre-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.1em;
    color: #74787c;
    position: relative;
}

.title-area-main-left span.pre-title::after {
    position: absolute;
    content: "";
    right: -47%;
    top: 52%;
    transform: translateY(-50%);
    width: 60px;
    height: 1px;
    background: #d9d9d9;
    display: none;
}

.title-area-main-left span.pre-title hr {
    position: absolute;
    width: 60px;
    height: 1px;
    background: #74787c;
    left: 108%;
    top: 54%;
    transform: translateY(-50%);
}

.title-area-main-left h2.title {
    margin-top: 15px;
    font-weight: 700;
}

.title-area-main-left p.disc {
    margin-bottom: 30px;
}

.title-area-main-center {
    text-align: center;
}

.title-area-main-center span.pre-title {
    text-transform: uppercase;
    position: relative;
}

.title-area-main-center span.pre-title::after {
    position: absolute;
    content: "";
    right: -75px;
    top: 52%;
    transform: translateY(-50%);
    width: 60px;
    height: 1px;
    background: #d9d9d9;
}

.title-area-main-center span.pre-title::before {
    position: absolute;
    content: "";
    left: -75px;
    top: 52%;
    transform: translateY(-50%);
    width: 60px;
    height: 1px;
    background: #d9d9d9;
}

.title-area-main-center .title {
    margin-top: 13px;
}

.social-wrapepr-one p {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #0d0d0d;
    margin-bottom: 20px;
}

.social-wrapepr-one .main-wrapper {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 479px) {
    .social-wrapepr-one .main-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
}

.social-wrapepr-one .main-wrapper img {
    margin-right: 40px;
}

@media only screen and (max-width: 479px) {
    .social-wrapepr-one .main-wrapper img {
        margin-bottom: 20px;
    }
}

.single-tab-wrapper {
    padding: 40px;
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    box-shadow: 61px 28px 40px rgba(216, 221, 225, 0.37);
    border-radius: 0 0 15px 15px;
}

@media only screen and (max-width: 767px) {
    .single-tab-wrapper {
        padding: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .single-tab-wrapper {
        padding: 10px;
        padding: 10px;
        padding-top: 35px;
    }
}

.single-tab-wrapper .thumbnail img {
    border-radius: 15px;
    width: 100%;
}

.single-tab-wrapper .content-main {
    margin-right: 20px;
}

.tab-area-main-wrapper ul {
    background: #fbfcfd;
    border-radius: 15px 15px 0 0;
    margin: 0;
    height: 79px;
    box-shadow: inset -49px -17px 36px #ecf0f3;
}

.tab-area-main-wrapper ul.nav-tabs {
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tab-area-main-wrapper ul.nav-tabs li {
    flex-basis: 25%;
    margin: 0;
}

.tab-area-main-wrapper ul.nav-tabs li button {
    display: block;
    height: 80px;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: #141414;
    border-right: 1px solid #e7e7e7;
    transition: 0.3s;
}

.tab-area-main-wrapper ul.nav-tabs li button:active {
    border: none;
}

.tab-area-main-wrapper ul.nav-tabs li button:focus {
    border: none;
}

.tab-area-main-wrapper ul.nav-tabs li button:hover {
    border: none;
    border: none;
    background: #ffae00;
    color: #141414;
    border-radius: 15px 15px 0 0;
}

.tab-area-main-wrapper ul.nav-tabs li button.active {
    border: none;
    background: #ffae00;
    color: #141414;
    border-radius: 15px 15px 0 0;
}

.border-none {
    border: none !important;
}

.about-contact-h2 .first-line {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 575px) {
    .about-contact-h2 .first-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.about-contact-h2 .first-line.second {
    margin-top: 30px;
}

.about-contact-h2 .single-contact {
    display: flex;
    align-items: center;
    flex-basis: 50%;
}

.about-contact-h2 .single-contact .icon-area i {
    width: 60px;
    height: 60px;
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    box-shadow: 0px 20px 40px #d8dde1;
    color: #141414;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 15px;
    font-weight: 300;
    font-size: 20px;
    line-height: 20px;
}

@media only screen and (max-width: 1199px) {
    .about-contact-h2 .single-contact .icon-area i {
        width: 50px;
        height: 50px;
    }
}

.about-contact-h2 .single-contact .details span {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #74787c;
}

.about-contact-h2 .single-contact .details a.disc {
    font-weight: 700;
    font-size: 20px;
    display: block;
    line-height: 27px;
    color: #141414;
}

@media only screen and (max-width: 1199px) {
    .about-contact-h2 .single-contact .details a.disc {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .about-contact-h2 .single-contact .details a.disc {
        font-size: 16px !important;
    }
}

.about-h3 .tab-area-main-wrapper ul.nav-tabs li button.active {
    background: var(--color-primary-3);
    color: #fff;
}

.about-h3 .tab-area-main-wrapper ul.nav-tabs li button:hover {
    background: var(--color-primary-3);
    color: #fff;
}

.about-h3 .content-main .title {
    font-size: 36px;
}

@media only screen and (max-width: 1199px) {
    .about-h3 .content-main .title {
        font-size: 26px;
    }
}

@media only screen and (max-width: 479px) {
    .about-h3 .content-main .title {
        font-size: 19px;
    }
}

.marketer .single-progress-area-h4 .progress .bg--primary {
    background: var(--color-primary-3);
    border-radius: 0;
}

.marketer .single-progress-area-h4 .progress-top span.parcent {
    color: var(--color-primary-3);
}

.marketer .single-progress-area-h4 .progress-top p {
    color: var(--color-primary-3);
}

.photographer-home .single-progress-area-h4 .progress .bg--primary {
    background: #ffae00;
    border-radius: 0;
}

.photographer-home .single-progress-area-h4 .progress-top span.parcent {
    color: #ffae00;
}

.photographer-home .single-progress-area-h4 .progress-top p {
    color: #ffae00;
}

.photographer-home .about-h3 .tab-area-main-wrapper ul.nav-tabs li button.active {
    background: #ffae00;
    color: #fff;
}

.photographer-home .about-h3 .tab-area-main-wrapper ul.nav-tabs li button:hover {
    background: #ffae00;
    color: #fff;
}

@media only screen and (max-width: 1199px) {
    .rts-about-area.four {
        text-align: center;
    }
}

@media only screen and (max-width: 1199px) {
    .rts-about-area .title-area-home-4 {
        text-align: center !important;
    }
}

@media only screen and (max-width: 1199px) {
    .rts-about-area .experience-area {
        text-align: center;
    }
}

@media only screen and (max-width: 1199px) {
    .rts-about-area .details-about-area {
        text-align: center;
        margin-top: 50px;
    }
}

.container-about {
    max-width: 1520px;
    margin: auto;
}

.about-style-circle {
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 8px 60px rgba(221, 227, 233, 0.8);
    border-radius: 1000px;
    padding: 120px;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .about-style-circle {
        border-radius: 0;
    }
}

@media only screen and (max-width: 1199px) {
    .about-style-circle {
        border-radius: 0;
    }
}

@media only screen and (max-width: 767px) {
    .about-style-circle {
        padding: 45px;
    }
}

@media only screen and (max-width: 479px) {
    .about-style-circle {
        padding: 20px;
    }
}

.about-style-circle .details-about-area .experience-area p {
    font-weight: 600;
    font-size: 18px;
    line-height: 38px;
    color: #141414;
    margin-bottom: 3px;
}

.about-style-circle .details-about-area .experience-area p span {
    font-weight: 500;
    font-size: 18px;
    line-height: 38px;
    color: #74787c;
}

.wrapper-about-five {
    background: #1f1f21;
    padding: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .wrapper-about-five {
        padding: 100px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .wrapper-about-five {
        padding: 100px 30px;
    }
}

@media only screen and (max-width: 575px) {
    .wrapper-about-five {
        padding: 100px 10px;
    }
}

.wrapper-about-five .title-area {
    position: relative;
}

.wrapper-about-five .title-area .title.small {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 22px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    background: #1f1f21;
    border: 2px solid rgba(255, 255, 255, 0.1);
    max-width: max-content;
    padding: 0 15px;
}

.wrapper-about-five .title-area .bg-text {
    position: absolute;
    z-index: 1;
    top: -65px;
    left: -26px;
    pointer-events: none;
}

.wrapper-about-five .title-area .bg-text .title {
    font-weight: 400;
    font-size: 100px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #ffffff;
    opacity: 0.1;
    text-transform: uppercase;
    color: rgba(119, 119, 119, 0.1);
}

@media only screen and (max-width: 575px) {
    .wrapper-about-five .title-area .bg-text .title {
        font-weight: 400;
        font-size: 50px;
        text-transform: uppercase;
        color: rgba(119, 119, 119, 0.1);
        margin-left: 22px;
    }
}

.wrapper-about-five .discription-me {
    letter-spacing: 0.02em;
    font-weight: 400;
    font-size: 18px;
    line-height: 237.52%;
    color: #777777;
}

.wrapper-about-five .btn-primary-m {
    background: var(--color-primary-m);
    border-radius: 0;
}

.wrapper-about-five .btn-primary-m::after {
    border-radius: 0;
    background: #1f1f21;
    border: 0px solid rgba(255, 255, 255, 0.1);
}

.wrapper-about-five .btn-primary-m:hover::after {
    border-width: 2px;
}

.wrapper-about-five .btn-secondary-m {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 0;
}

.wrapper-about-five .btn-secondary-m::after {
    border-radius: 0;
    background: var(--color-primary-m);
}

.education-area .title-education.text-center {
    max-width: 55%;
    margin: auto;
}

@media only screen and (max-width: 767px) {
    .education-area .title-education.text-center {
        max-width: 70%;
    }
}

@media only screen and (max-width: 575px) {
    .education-area .title-education.text-center {
        max-width: 100%;
    }
}

.education-area .single-education {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.5px solid rgba(31, 31, 33, 0.1);
    padding-bottom: 15px;
    padding-top: 25px;
}

@media only screen and (max-width: 767px) {
    .education-area .single-education {
        flex-direction: column;
    }
}

.education-area .single-education.first {
    border-top: 1.5px solid rgba(31, 31, 33, 0.1);
}

.education-area .single-education .institute-area {
    flex-basis: 30%;
}

.education-area .single-education .institute-area .name .title {
    font-weight: 400;
    font-size: 16px;
    color: #1f1f21;
    font-family: "DM Sans", sans-serif;
}

.education-area .single-education .institute-details {
    flex-basis: 50%;
    text-align: start;
}

.education-area .single-education .institute-details .title {
    font-size: 24px;
    font-weight: 500;
}

@media (max-width: 450px) {
    .education-area .single-education .institute-details .title {
        font-size: 18px;
    }
}

.education-area .single-education .period {
    flex-basis: 20%;
    text-align: end;
}

.education-area .single-education .period .time {
    padding: 3px 7px;
    border-radius: 1px;
    font-weight: 400;
    font-size: 16px;
    line-height: 100.9%;
    color: #777777;
    margin-left: 10px;
    font-family: "DM Sans", sans-serif;
}

.education-area .single-education .period .time .tag {
    color: var(--color-primary-m);
}

.left-title-mazin .subtitle {
    display: flex;
    align-items: center;
}

.left-title-mazin .subtitle img {
    margin-right: 19px;
    margin-top: 10px;
}

.left-title-mazin .subtitle span {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1f1f21;
    font-family: var(--font-primary);
}

.left-title-mazin .title {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    color: #1f1f21;
    margin-top: 16px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .left-title-mazin .title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 575px) {
    .left-title-mazin .title {
        font-size: 26px;
    }
}

.award-mazin-left p.disc {
    margin-bottom: 20px;
}

.single-award {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 25px;
    padding-top: 20px;
    border-bottom: 1.5px solid rgba(31, 31, 33, 0.1);
}

.single-award .left {
    flex-basis: 75%;
}

.single-award .left a .title {
    font-weight: 500;
    font-size: 18px;
    line-height: 170%;
    color: #1f1f21;
    margin-bottom: 5px;
}

.single-award .left a:hover .title {
    color: var(--color-primary-m);
}

.single-award .left p.disc {
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
}

.single-award .right span {
    color: #1f1f21;
    font-weight: 400;
    font-size: 12px;
    line-height: 170%;
}

.home-mazin.dark-version .modal-body input {
    background: transparent !important;
    color: #fff;
}

.home-mazin.dark-version .modal-body textarea {
    background: transparent !important;
    color: #fff;
}

.six.dark-version .rts-about-area.home-six .about-area-inner .about-right-content .services-area .services-inner .single-service {
    background: #0000003d;
}

.six.dark-version .rts-about-area.home-six .about-area-inner .about-right-content .pricing-area .pricing-inner .single-plan {
    background: #0000003d;
}

.six.dark-version .rts-about-area.home-six .about-area-inner .about-right-content .contact-area .contact-area-inner .contact-form input {
    border: 1px solid #303030;
}

.six.dark-version .rts-about-area.home-six .about-area-inner .about-right-content .contact-area .contact-area-inner .contact-form input:focus {
    background: none;
    border: 1px solid var(--color-primary);
}

.six.dark-version .rts-about-area.home-six .about-area-inner .about-right-content .contact-area .contact-area-inner .contact-form textarea {
    border: 1px solid #303030;
}

.six.dark-version .rts-about-area.home-six .about-area-inner .about-right-content .contact-area .contact-area-inner .contact-form textarea:focus {
    background: none;
    border: 1px solid var(--color-primary);
}

.service-one-bg {
    background-image: url(../images/service/bg-01.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.single-service {
    background: #ffffff;
    border-radius: 10px;
    padding: 0;
    text-align: center;
}

@media only screen and (max-width: 479px) {
    .single-service {
        padding: 20px;
    }
}

.single-service a:hover i {
    margin-left: 10px;
}

.single-service a i {
    transition: 0.3s;
}

.single-service a i::before {
    content: "\f061";
    top: 3px;
    left: 2px;
    position: relative;
    transition: 0.3s;
}

.single-service .icon {
    margin-bottom: 33px;
}

.single-service .title {
    margin-bottom: 16px;
}

.single-service p.disc {
    margin-bottom: 20px;
}

.service-shape-one {
    position: relative;
    z-index: 1;
}

.service-shape-one::after {
    position: absolute;
    right: -4%;
    top: 10%;
    content: "";
    background-image: url(../images/about/shape/01.png);
    width: 719px;
    height: 506px;
    background-size: cover;
    background-repeat: no-repeat;
    animation: jump-2 5s linear infinite;
    z-index: -1;
}

@media only screen and (max-width: 575px) {
    .service-shape-one::after {
        display: none;
    }
}

@keyframes rotate {
    0% {
        transform: translate(-50%, 0) rotateZ(0deg);
    }

    50% {
        transform: translate(-50%, -2%) rotateZ(180deg);
    }

    80% {
        transform: translate(-50%, -1%) rotateZ(360deg);
    }

    100% {
        transform: translate(-50%, 0%) rotateZ(540deg);
    }
}

.blog-h2-main-wrapper {
    position: relative;
}

.blog-h2-main-wrapper .icon {
    position: absolute;
    top: -50px;
    z-index: 10;
    left: 30px;
}

.blog-h2-main-wrapper .icon svg {
    display: block;
    width: 100px;
    height: 100px;
    background: #fff;
    box-shadow: 0px 41px 67px rgba(0, 0, 0, 0.11), inset 0px 5px 7px #d9e0e4;
    padding: 25px;
    border-radius: 50%;
    overflow: visible;
    transition: 0.6s;
}

.blog-h2-main-wrapper .icon svg path {
    transition: 0.3s;
}

.rts-single-service-h2 {
    background: #f5f7f8;
    box-shadow: 0px 4px 40px #d8dde1;
    padding: 83px 40px 40px 40px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s;
}

.rts-single-service-h2::after {
    position: absolute;
    content: "";
    background-image: url(../images/service/shape/01.png);
    height: 100%;
    width: 100%;
    right: -91%;
    top: -91%;
    transition: 0.6s;
    background-size: cover;
    background-repeat: no-repeat;
}

.rts-single-service-h2 .title {
    margin-bottom: 15px;
}

.rts-single-service-h2 p.disc {
    margin-bottom: 20px;
}

.rts-single-service-h2 .pricing {
    display: flex;
    align-items: center;
}

.rts-single-service-h2 .pricing h4 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 40px;
    line-height: 55px;
}

.rts-single-service-h2 .pricing span {
    margin-top: 9px;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #74787c;
}

.blog-h2-main-wrapper {
    transition: 0.3;
}

.blog-h2-main-wrapper:hover .icon svg {
    background: #ffae00;
    box-shadow: none;
}

.blog-h2-main-wrapper:hover .icon svg path {
    fill: #fff;
}

.blog-h2-main-wrapper:hover .rts-single-service-h2 {
    background: #141414;
}

.blog-h2-main-wrapper:hover .rts-single-service-h2::after {
    top: -45%;
    right: -53%;
}

.blog-h2-main-wrapper:hover .rts-single-service-h2 .title {
    color: #fff;
}

.blog-h2-main-wrapper:hover .rts-single-service-h2 p.disc {
    color: #74787c;
}

.blog-h2-main-wrapper:hover .rts-single-service-h2 .pricing h4 {
    color: #fff;
}

.single-service-h3 {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
}

@media only screen and (max-width: 575px) {
    .single-service-h3 {
        padding: 22px;
    }
}

@media only screen and (max-width: 479px) {
    .single-service-h3 {
        padding: 15px;
    }
}

.single-service-h3 .inner-content .logo {
    margin-bottom: 20px;
}

.single-service-h3 .inner-content .logo svg {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: rgba(255, 57, 14, 0.11);
    padding: 22px;
    overflow: visible;
}

.single-service-h3 .inner-content .title {
    margin-bottom: 10px;
}

.single-service-h3 .inner-content p.disc {
    font-weight: 400;
    font-size: 16px;
    color: #74787c;
    margin-bottom: 0;
    line-height: 26px;
}

@keyframes service-icon {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

.rts-service-style-4 {
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px #dde3e9;
    border-radius: 5px;
    padding: 40px;
    transition: 0.3s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media only screen and (max-width: 479px) {
    .rts-service-style-4 {
        padding: 20px;
    }
}

.rts-service-style-4::after {
    position: absolute;
    content: "";
    right: -60%;
    top: -40%;
    background-image: url(../images/service/shape/02.png);
    z-index: -1;
    height: 300px;
    width: 300px;
    background-size: cover;
    transition: 0.6s;
    background-repeat: no-repeat;
}

.rts-service-style-4 .inner {
    text-align: left;
}

.rts-service-style-4 .inner .icon {
    margin-bottom: 33px;
}

.rts-service-style-4 .inner .icon svg {
    height: 85px;
    width: 85px;
    padding: 20px;
    overflow: visible;
    background: #141414;
    border-radius: 50%;
    transition: 0.3s;
}

.rts-service-style-4 .inner .title {
    margin-bottom: 15px;
    transition: 0.3s;
}

.rts-service-style-4 .inner p {
    transition: 0.3s;
}

.rts-service-style-4:hover {
    background: #141414;
}

.rts-service-style-4:hover::after {
    right: -20%;
    top: -20%;
}

.rts-service-style-4:hover .inner .icon svg {
    background: #ffae00;
    animation: service-icon 1s linear;
}

.rts-service-style-4:hover .inner .title {
    color: #fff;
}

.rts-service-style-4:hover .inner p.disc {
    color: #74787c;
}

.g-24 {
    --bs-gutter-x: 24px !important;
    --bs-gutter-y: 24px !important;
}

.skill-style-four-main-wrapper {
    padding: 30px;
    background: linear-gradient(130.08deg,
            rgba(255, 255, 255, 0.07) 0%,
            rgba(236, 240, 243, 0.07) 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px #dde3e9;
    border-radius: 5px;
}

@media only screen and (max-width: 479px) {
    .skill-style-four-main-wrapper {
        padding: 12px;
    }
}

.single-skill-inner-4 {
    display: flex;
    align-items: center;
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px #dde3e9;
    border-radius: 5px;
    padding: 30px;
}

.single-skill-inner-4 img {
    margin-right: 15px;
    width: 65px;
}

.single-skill-inner-4 .inner-text .title {
    font-weight: 700;
    font-size: 30px;
    line-height: 41px;
    color: #141414;
    margin-bottom: -3px;
}

.single-skill-inner-4 .inner-text span {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: #74787c;
}

.accordion-skill-style .accordion-item {
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 50px #dde3e9;
    border-radius: 5px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.accordion-skill-style .accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-skill-style .accordion-item:last-child::after {
    display: none;
}

.accordion-skill-style .accordion-item::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    border: 1px solid #ffffff;
    top: 59px;
    left: -59px;
    position: absolute;
    z-index: -1;
}

@media only screen and (max-width: 479px) {
    .accordion-skill-style .accordion-item::after {
        display: none;
    }
}

.accordion-skill-style .accordion-item .accordion-header {
    background: transparent;
    border: none;
}

.accordion-skill-style .accordion-item .accordion-header button {
    background: transparent;
    border: none;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.accordion-skill-style .accordion-item .accordion-header button::before {
    position: absolute;
    content: "\f067";
    font-family: "Font Awesome 5 Pro" !important;
    left: -88px;
    top: 50%;
    width: 60px;
    height: 60px;
    font-size: 20px;
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px #dde3e9;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
    color: #000;
}

@media only screen and (max-width: 479px) {
    .accordion-skill-style .accordion-item .accordion-header button::before {
        left: -78px;
        top: 50%;
        width: 40px;
        height: 40px;
        left: -41px;
    }
}

.accordion-skill-style .accordion-item .accordion-header button::after {
    display: none;
}

.accordion-skill-style .accordion-item .accordion-header button .left {
    display: flex;
    align-items: center;
}

.accordion-skill-style .accordion-item .accordion-header button .left img {
    margin-right: 20px;
}

@media only screen and (max-width: 479px) {
    .accordion-skill-style .accordion-item .accordion-header button .left img {
        display: none;
    }
}

.accordion-skill-style .accordion-item .accordion-header button .left .disc .title {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #141414;
    display: block;
    margin-bottom: 3px;
}

@media only screen and (max-width: 479px) {
    .accordion-skill-style .accordion-item .accordion-header button .left .disc .title {
        font-size: 15px;
    }
}

.accordion-skill-style .accordion-item .accordion-header button .left .disc .desig {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #74787c;
}

.accordion-skill-style .accordion-item .accordion-header button .right {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #141414;
}

.accordion-skill-style .accordion-item .accordion-header button[aria-expanded="true"] {
    border: none;
    box-shadow: none;
}

.accordion-skill-style .accordion-item .accordion-header button[aria-expanded="true"]::before {
    content: "\f068";
    color: #000;
}

.accordion-skill-style .accordion-item .accordion-header button:focus {
    box-shadow: none;
}

.accordion-skill-style .accordion-item .accordion-body {
    padding: 5px 30px 30px 30px;
}

.rts-skill-area {
    position: relative;
}

.rts-skill-area .side-shape {
    position: absolute;
    top: 70%;
    left: -8%;
    z-index: -1;
}

.bg-m-service {
    background: #6344c6;
}

.single-service-five-wrapper .icon {
    margin-bottom: 43px;
}

.single-service-five-wrapper .icon img {
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: 0.3s;
}

.single-service-five-wrapper .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #ffffff;
    margin-bottom: 30px;
}

.single-service-five-wrapper .disc {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.single-service-five-wrapper:hover .icon img {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pb--control-service {
    padding-bottom: 450px;
}

.mt-control-about {
    margin-top: -350px;
}

.swiper-wrapper-service-mazin {
    position: relative;
}

.swiper-wrapper-service-mazin .swiper {
    padding: 0 0 50px 0;
}

.swiper-wrapper-service-mazin .swiper-pagination {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.swiper-wrapper-service-mazin .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.568);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin: 0 5px;
}

.faq-home-5-wrapper .accordion-button::after {
    content: "\f067";
    background-image: none;
    font-family: "Font Awesome 5 Pro" !important;
    font-weight: 200;
    width: unset !important;
    height: unset !important;
}

.faq-home-5-wrapper .accordion-button[aria-expanded="true"]::after {
    content: "\f068";
    transform: none;
}

.nine .rts-service-h4 .single-service-h3 .inner-content .logo {
    width: 80px;
    height: 80px;
    padding: 22px;
    border-radius: 50%;
    background: rgba(255, 57, 14, 0.11);
}

.experience-one-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .experience-one-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.experience-one-inner.before-off {
    margin-top: 56px;
}

.experience-one-inner.before-off::after {
    display: none;
}

.experience-one-inner::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #0d0d0d;
    content: "";
    top: -30px;
}

@media only screen and (max-width: 767px) {
    .experience-one-inner::after {
        background: #0d0d0d13;
    }
}

.experience-one-inner::before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #0d0d0d;
    content: "";
    bottom: -30px;
}

@media only screen and (max-width: 767px) {
    .experience-one-inner::before {
        background: #0d0d0d13;
    }
}

.experience-one-inner .experience-left {
    display: flex;
    align-items: flex-start;
}

@media only screen and (max-width: 767px) {
    .experience-one-inner .experience-left {
        flex-direction: column;
        margin-bottom: 20px;
        align-items: flex-start;
    }
}

.experience-one-inner .experience-left .start {
    margin-right: 150px;
}

.experience-one-inner .experience-left .start p {
    color: #0d0d0d;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
}

.experience-one-inner .experience-left .end .title {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #0d0d0d;
}

.experience-one-inner .experience-left .end span {
    color: #74787c;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.experience-one-inner .experience-right {
    display: flex;
    justify-content: flex-end;
}

.experience-one-inner .experience-right .icon {
    transition: 0.3s;
}

.experience-one-inner .experience-right .icon i {
    padding: 5px;
    border: 1px solid #0d0d0d;
    border-radius: 50%;
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0d0d;
    transform: rotate(-45deg);
    background: #ffff;
    cursor: pointer;
}

.experience-one-inner .experience-right .icon:hover {
    transform: translateX(5px);
}

.experience-one-inner .experience-right .icon:hover i {
    border: 1px solid #ffc576;
    color: #0d0d0d;
}

.light-bg-inner-wrapper {
    background-image: url(../images/bg/bg-body-lg.png);
    padding-top: 887px;
    margin-top: -887px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.title-btn-area {
    position: relative;
}

.title-btn-area .swiper-pagination {
    bottom: -6px;
    width: max-content;
    right: 51px;
    left: auto;
}

@media only screen and (max-width: 479px) {
    .title-btn-area .swiper-pagination {
        right: 44px;
        bottom: -9px;
    }
}

.title-btn-area .swiper-button-next {
    top: 94%;
    right: 0;
}

.title-btn-area .swiper-button-next::after {
    content: "\f061";
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    color: #1c2539;
    padding: 10px;
    background: #fff;
    box-shadow: 0px 10px 20px rgba(24, 16, 16, 0.06);
    border-radius: 8px;
    transition: 0.3s;
}

.title-btn-area .swiper-button-next:hover::after {
    background: var(--color-primary);
    color: #fff;
}

.title-btn-area .swiper-button-prev {
    top: 94%;
    right: 104px;
    left: auto;
}

@media only screen and (max-width: 479px) {
    .title-btn-area .swiper-button-prev {
        right: 95px;
    }
}

.title-btn-area .swiper-button-prev:hover::after {
    background: var(--color-primary);
    color: #fff;
}

.title-btn-area .swiper-button-prev::after {
    content: "\f060";
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    color: #1c2539;
    padding: 10px;
    background: #fff;
    box-shadow: 0px 10px 20px #1810100f;
    border-radius: 8px;
    transition: 0.3s;
}

.portfolio-wrapper-one {
    padding: 30px;
    background: #ffffff;
    box-shadow: 0px 13px 31px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    height: 100%;
}

@media only screen and (max-width: 479px) {
    .portfolio-wrapper-one {
        padding: 10px;
    }
}

.portfolio-wrapper-one a.thumbnail {
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.portfolio-wrapper-one a.thumbnail:hover img {
    transform: scale(1);
}

.portfolio-wrapper-one a.thumbnail img {
    border-radius: 5px;
    transition: 0.5s;
    transform: scale(1.2);
    width: 100%;
}

.portfolio-wrapper-one .inner {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

.portfolio-wrapper-one .inner .title {
    margin-bottom: 5px;
}

.portfolio-wrapper-one .inner .right a i {
    padding: 5px;
    border: 1px solid #0d0d0d;
    border-radius: 50%;
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0d0d;
    transform: rotate(-45deg);
    background: #ffff;
    cursor: pointer;
}

.portfolio-wrapper-one .inner .right a:hover i {
    border-color: var(--color-primary);
    color: #0d0d0d;
}

.banner-thumb-2 {
    width: 100%;
}

.single-product-area-h2 {
    padding: 20px;
    border-radius: 20px;
    background: #fff;
    display: block;
    overflow: hidden;
    position: relative;
}

.single-product-area-h2 a.thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.single-product-area-h2 a.thumbnail::after {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #ffae00;
    content: "";
    border-radius: 20px;
    transition: 0.9s;
}

.single-product-area-h2 a.thumbnail.thumbnail img {
    border-radius: 20px;
    width: 100%;
}

.single-product-area-h2 .inner-content {
    position: absolute;
    bottom: 0px;
    left: 60px;
    opacity: 0;
    transition: 0.9s;
}

.single-product-area-h2 .inner-content span {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.04em;
}

.single-product-area-h2 .inner-content .title {
    color: #fff;
    margin-top: 5px;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
}

.single-product-area-h2 .icon-area {
    position: absolute;
    z-index: 2;
    right: -45px;
    top: -45px;
    transition: 0.9s;
    opacity: 0;
}

.single-product-area-h2 .icon-area i {
    display: block;
    height: 60px;
    width: 60px;
    background: #fff;
    right: 30px;
    top: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    color: #141414;
    transform: rotate(-45deg);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
}

.single-product-area-h2:hover .icon-area {
    right: 45px;
    top: 45px;
    opacity: 1;
}

.single-product-area-h2:hover .inner-content {
    opacity: 1;
    bottom: 30px;
}

.single-product-area-h2:hover a.thumbnail::after {
    width: 100%;
    left: 0;
    right: auto;
}

.single-product-h3 img {
    border-radius: 15px;
}

.product-slider-wrapper {
    height: 580px;
    top: 10%;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .product-slider-wrapper {
        height: auto;
    }
}

.product-slider-wrapper .swiper-wrapper {
    padding-top: 140px;
}

@media only screen and (max-width: 767px) {
    .product-slider-wrapper .swiper-wrapper {
        padding-top: 0;
    }
}

.product-slider-wrapper .swiper-wrapper .swiper-slide.swiper-slide-prev,
.product-slider-wrapper .swiper-wrapper .swiper-slide.swiper-slide-next {
    transition: 1s;
}

.product-slider-wrapper .swiper-wrapper .swiper-slide.swiper-slide-prev .single-product-h3,
.product-slider-wrapper .swiper-wrapper .swiper-slide.swiper-slide-next .single-product-h3 {
    transition: 1s;
}

.product-slider-wrapper .swiper-wrapper .swiper-slide.swiper-slide-prev .single-product-h3 img,
.product-slider-wrapper .swiper-wrapper .swiper-slide.swiper-slide-next .single-product-h3 img {
    transform: scale(1) !important;
    transition: 1s;
}

.product-slider-wrapper .swiper-wrapper .swiper-slide.swiper-slide-active img {
    transform: scale(1.3);
}

.swiper-button-wrapper-project-ho-3 .swiper-button-next {
    right: 22%;
}

.swiper-button-wrapper-project-ho-3 .swiper-button-next::after {
    content: "\f061";
    font-family: "Font Awesome 5 Pro" !important;
    font-weight: 300;
    padding: 20px;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    color: #000;
}

.swiper-button-wrapper-project-ho-3 .swiper-button-prev {
    left: 22%;
}

.swiper-button-wrapper-project-ho-3 .swiper-button-prev::after {
    content: "\f060";
    font-family: "Font Awesome 5 Pro" !important;
    font-weight: 300;
    padding: 20px;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    color: #000;
}

.container-projects-style-four {
    max-width: 1760px;
    margin: auto;
}

.product-title-tab-b {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .product-title-tab-b {
        flex-direction: column;
        align-items: flex-start;
    }
}

.product-title-tab-b .title {
    margin-bottom: 0;
}

.product-title-tab-b .tab-button-area ul {
    margin: 0;
    padding: 0;
    border: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-title-tab-b .tab-button-area ul {
        justify-content: flex-end;
    }
}

@media only screen and (max-width: 767px) {
    .product-title-tab-b .tab-button-area ul {
        justify-content: flex-start;
    }
}

.product-title-tab-b .tab-button-area ul li {
    margin-left: 50px;
    border-bottom: none;
    border: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-title-tab-b .tab-button-area ul li {
        margin-left: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .product-title-tab-b .tab-button-area ul li {
        margin-left: 0;
        margin-right: 15px;
    }
}

.product-title-tab-b .tab-button-area ul li button {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #141414;
    border: none;
    padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .product-title-tab-b .tab-button-area ul li button {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .product-title-tab-b .tab-button-area ul li button {
        font-size: 14px;
    }
}

.product-title-tab-b .tab-button-area ul li button.active {
    background: transparent;
    border: none;
    color: #ffae00 !important;
    padding: 0;
}

.rts-prodyct-style-four {
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px #dde3e9;
    border-radius: 5px;
    padding: 20px;
}

.rts-prodyct-style-four .thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.rts-prodyct-style-four .thumbnail .thumbnail-img {
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.rts-prodyct-style-four .thumbnail .thumbnail-img img {
    width: 100%;
    transition: 0.3s;
}

.rts-prodyct-style-four .thumbnail .icon {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transition: 0.3s;
}

.rts-prodyct-style-four .thumbnail .icon i {
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    color: #141414;
    justify-content: center;
    font-weight: 600;
    transform: rotate(-45deg);
}

.rts-prodyct-style-four .thumbnail .inner-text {
    background: #141414;
    padding: 30px;
    position: absolute;
    transition: 0.6s;
    bottom: -100%;
    width: 100%;
    overflow: hidden;
}

.rts-prodyct-style-four .thumbnail .inner-text::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    background-image: url(../images/product/shape/01.png);
    width: 530.9px;
    height: 511.07px;
    background-size: contain;
    right: -63%;
    top: -61%;
    background-repeat: no-repeat;
}

.rts-prodyct-style-four .thumbnail .inner-text span {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rts-prodyct-style-four .thumbnail .inner-text .title {
    font-weight: 800;
    font-size: 24px;
    line-height: 33px;
    color: #fff;
    margin-bottom: 0;
    margin-top: 10px;
}

.rts-prodyct-style-four:hover .thumbnail .icon {
    top: 30px;
    right: 30px;
    opacity: 1;
}

.rts-prodyct-style-four:hover .thumbnail .thumbnail-img img {
    transform: scale(1.2);
}

.rts-prodyct-style-four:hover .thumbnail .inner-text {
    bottom: 0;
}

.slider-div {
    position: relative;
    min-width: 132%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-div {
        min-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .slider-div {
        min-width: 100%;
    }
}

.left-title-mazin.button {
    position: relative;
}

.left-title-mazin.button .button-area .swiper-button-prev {
    left: 88%;
    height: 60px;
    width: 60px;
    background: transparent;
    border: 1px solid rgba(31, 31, 33, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .left-title-mazin.button .button-area .swiper-button-prev {
        left: 81%;
    }
}

@media only screen and (max-width: 767px) {
    .left-title-mazin.button .button-area .swiper-button-prev {
        left: 76%;
    }
}

@media only screen and (max-width: 575px) {
    .left-title-mazin.button .button-area .swiper-button-prev {
        left: 70%;
        height: 40px;
        width: 40px;
    }
}

@media (max-width: 700px) {
    .left-title-mazin.button .button-area .swiper-button-prev {
        display: none;
    }
}

.left-title-mazin.button .button-area .swiper-button-prev:hover {
    transform: translateX(-8px) scale(1.04);
}

.left-title-mazin.button .button-area .swiper-button-prev::after {
    content: "\f060";
    font-family: "Font Awesome 5 Pro";
    font-weight: 200;
    font-size: 18px;
    color: #d6d6d6;
    transition: 0.3s;
}

.left-title-mazin.button .button-area .swiper-button-next {
    right: 0;
    height: 60px;
    width: 60px;
    background: transparent;
    border: 1px solid rgba(31, 31, 33, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

@media only screen and (max-width: 575px) {
    .left-title-mazin.button .button-area .swiper-button-next {
        height: 40px;
        width: 40px;
    }
}

@media (max-width: 700px) {
    .left-title-mazin.button .button-area .swiper-button-next {
        display: none;
    }
}

.left-title-mazin.button .button-area .swiper-button-next:hover {
    transform: translateX(8px) scale(1.04);
}

.left-title-mazin.button .button-area .swiper-button-next::after {
    content: "\f061";
    font-family: "Font Awesome 5 Pro";
    font-weight: 200;
    font-size: 18px;
    color: #d6d6d6;
    transition: 0.3s;
}

.left-title-mazin.button .swiper-button-next:hover,
.left-title-mazin.button .swiper-button-prev:hover {
    border-color: #1f1f21;
}

.left-title-mazin.button .swiper-button-next:hover::after,
.left-title-mazin.button .swiper-button-prev:hover::after {
    color: #1f1f21;
}

.Swiper-mazin-portfolio .swiper-wrapper .mazin-portfolio-inner {
    transition: all 0.4s;
}

.Swiper-mazin-portfolio .swiper-wrapper .mazin-portfolio-inner:hover .thumbnail .button {
    opacity: 1;
}

.Swiper-mazin-portfolio .swiper-wrapper .mazin-portfolio-inner:hover .thumbnail::before {
    opacity: 0.6;
}

.Swiper-mazin-portfolio .swiper-wrapper .mazin-portfolio-inner .thumbnail {
    position: relative;
}

.Swiper-mazin-portfolio .swiper-wrapper .mazin-portfolio-inner .thumbnail img {
    width: 100%;
    border-radius: 10px;
}

.Swiper-mazin-portfolio .swiper-wrapper .mazin-portfolio-inner .thumbnail .button {
    position: absolute;
    width: 100px;
    height: 100px;
    line-height: 115px;
    text-align: center;
    display: block;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s;
}

.Swiper-mazin-portfolio .swiper-wrapper .mazin-portfolio-inner .thumbnail .button i {
    font-size: 35px;
    transform: rotate(-45deg);
    color: var(--color-primary-m);
}

.Swiper-mazin-portfolio .swiper-wrapper .mazin-portfolio-inner .thumbnail::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-primary-m);
    opacity: 0;
    transition: all 0.4s;
    border-radius: 10px;
}

.Swiper-mazin-portfolio .swiper-wrapper .mazin-portfolio-inner .inner-content {
    margin-top: 25px;
}

.Swiper-mazin-portfolio .swiper-wrapper .mazin-portfolio-inner .inner-content span {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.Swiper-mazin-portfolio .swiper-wrapper .mazin-portfolio-inner .inner-content a .title {
    transition: 0.3s;
    margin-top: 7px;
}

.Swiper-mazin-portfolio .swiper-wrapper .mazin-portfolio-inner .inner-content a:hover .title {
    color: var(--color-primary-m);
}

.mazin-portfolio-div .swiper-pagination {
    margin-top: 20px;
}

.mazin-portfolio-div .swiper-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    background: #777777;
    margin-right: 8px;
}

.mazin-portfolio-div .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-primary-m);
}

.left-title-mazin.button.dark-project {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .left-title-mazin.button.dark-project {
        flex-direction: column;
        align-items: flex-start;
    }
}

.left-title-mazin.button.dark-project ul {
    border: none;
}

.left-title-mazin.button.dark-project ul li {
    margin-left: 15px;
}

@media only screen and (max-width: 767px) {
    .left-title-mazin.button.dark-project ul li:first-child {
        margin-left: 0;
    }
}

.left-title-mazin.button.dark-project .nav-tabs .nav-link {
    color: #777777;
    border-radius: 20px;
    padding: 8px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.left-title-mazin.button.dark-project .nav-tabs .nav-link.active {
    color: #ffffff;
    border-radius: 20px;
    padding: 8px 25px;
    background: var(--color-primary-m);
    border: 1px solid transparent;
}

.wrapper-about-five .single-education .institute-details .title {
    font-weight: 500;
    font-size: 18px;
    font-family: var(--font-primary);
    color: #1f1f21;
}

.mazin-portfolio-inner-main .thumbnail img {
    border-radius: 10px;
    width: 100%;
}

.mazin-portfolio-inner-main .inner-content {
    margin-top: 25px;
}

.mazin-portfolio-inner-main .inner-content span.category {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mazin-portfolio-inner-main .inner-content a .title {
    transition: 0.3s;
    margin-top: 7px;
}

/* Recommended styles for Splitting */
.splitting .word,
.splitting .char {
    display: inline-block;
}

/* Psuedo-element chars */
.splitting .char {
    position: relative;
}

/**
 * Populate the psuedo elements with the character to allow for expanded effects
 * Set to `display: none` by default; just add `display: block` when you want
 * to use the psuedo elements
 */
.splitting .char::before,
.splitting .char::after {
    content: attr(data-char);
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    transition: inherit;
    user-select: none;
}

/* Expanded CSS Variables */
.splitting {
    /* The center word index */
    --word-center: calc((var(--word-total) - 1) / 2);
    /* The center character index */
    --char-center: calc((var(--char-total) - 1) / 2);
    /* The center character index */
    --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
    /* Pecent (0-1) of the word's position */
    --word-percent: calc(var(--word-index) / var(--word-total));
    /* Pecent (0-1) of the line's position */
    --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
    /* Percent (0-1) of the char's position */
    --char-percent: calc(var(--char-index) / var(--char-total));
    /* Offset from center, positive & negative */
    --char-offset: calc(var(--char-index) - var(--char-center));
    /* Absolute distance from center, only positive */
    --distance: calc((var(--char-offset) * var(--char-offset)) / var(--char-center));
    /* Distance from center where -1 is the far left, 0 is center, 1 is far right */
    --distance-sine: calc(var(--char-offset) / var(--char-center));
    /* Distance from center where 1 is far left/far right, 0 is center */
    --distance-percent: calc((var(--distance) / var(--char-center)));
}

.single-award-area-marketer {
    padding: 25px 25px 15px 25px;
    border-radius: 15px;
    border: 1px solid #dddddd;
    margin-bottom: 18px;
}

.single-award-area-marketer:last-child {
    margin-bottom: 0;
}

.single-award-area-marketer .title {
    font-size: 20px !important;
    line-height: 30px;
    margin-bottom: 5px;
}

.single-award-area-marketer p {
    font-size: 14px;
    line-height: 26px;
}

.single-univercity-exp-4 {
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #dde3e9;
    margin-bottom: 15px;
}

.single-univercity-exp-4 .title {
    font-size: 20px !important;
    margin-bottom: 7px;
}

.single-blog-area-one a.thumbnail {
    overflow: hidden;
    display: block;
    border-radius: 10px;
}

.single-blog-area-one a.thumbnail:hover img {
    transform: scale(1);
}

.single-blog-area-one a.thumbnail img {
    border-radius: 5px;
    transform: scale(1.2);
    transition: 0.5s;
    border-radius: 10px;
    width: 100%;
}

.single-blog-area-one .inner-content {
    padding: 40px;
    background: #ffffff;
    box-shadow: 0px 10px 33px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}

@media only screen and (max-width: 575px) {
    .single-blog-area-one .inner-content {
        padding: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .single-blog-area-one .inner-content a.title .title {
        font-size: 18px;
    }
}

@media only screen and (max-width: 479px) {
    .single-blog-area-one .inner-content {
        padding: 20px 10px;
    }
}

.single-blog-area-one .inner-content .top-area {
    margin-bottom: 20px;
    display: flex;
}

.single-blog-area-one .inner-content .top-area span {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
}

.single-blog-area-one .inner-content .top-area span.name {
    margin-right: 50px;
    position: relative;
}

.single-blog-area-one .inner-content .top-area span.name::after {
    position: absolute;
    right: -35px;
    width: 20px;
    height: 1px;
    content: "";
    background: #74787c;
    top: 12px;
}

.single-blog-area-one .inner-content a.extand-icon i {
    padding: 5px;
    border: 1px solid #0d0d0d;
    border-radius: 50%;
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0d0d;
    transform: rotate(-45deg);
    background: #ffff;
    cursor: pointer;
}

.single-blog-area-one .inner-content a.extand-icon:hover i {
    border-color: var(--color-primary);
    color: #0d0d0d;
}

.rts-post-area-h2 {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 40px #d8dde1;
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
}

.rts-post-area-h2.style-four {
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px #dde3e9;
    border-radius: 5px;
    overflow: hidden;
}

.rts-post-area-h2.style-four a.thumbnail {
    overflow: hidden;
}

.rts-post-area-h2.style-four a.thumbnail img {
    transform: scale(1.06);
}

.rts-post-area-h2.style-four .content-area .icon-area i {
    color: #ffae00 !important;
}

.rts-post-area-h2 a.thumbnail img {
    border-radius: 15px;
    width: 100%;
}

.rts-post-area-h2 .content-area {
    padding: 30px;
}

@media only screen and (max-width: 1199px) {
    .rts-post-area-h2 .content-area {
        padding: 20px;
    }
}

.rts-post-area-h2 .content-area .icon-area i {
    color: #ffae00;
    margin-right: 7px;
}

.rts-post-area-h2 .content-area .title {
    margin-top: 10px;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
}

@media only screen and (max-width: 1199px) {
    .rts-post-area-h2 .content-area .title {
        font-size: 18px;
        line-height: 29px;
    }
}

.rts-post-area-h2 .content-area a.rts-btn {
    color: #fff;
    padding: 11px 22px;
}

.blog-h3 .rts-post-area-h2 .content-area .icon-area i {
    color: var(--color-primary-3);
}

.mySwiperblog-1 .rts-post-area-h2 {
    box-shadow: none;
    background: #fff;
}

.section-separator-top {
    border-top: 1px solid #d9dfe3;
}

.rts-blog-area-swiper-blog-page {
    position: relative;
}

.rts-blog-area-swiper-blog-page .swiper-button-wrapper-project-ho-3 .swiper-button-next {
    right: 12%;
}

.rts-blog-area-swiper-blog-page .swiper-button-wrapper-project-ho-3 .swiper-button-prev {
    left: 12%;
}

.containerblog-details {
    max-width: 1062px;
    margin: auto;
}

.blog-details-bg-attachment-image {
    background-image: url(../images/bg/bg-blog-details.jpg);
    height: 700px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media only screen and (max-width: 767px) {
    .blog-details-bg-attachment-image {
        height: 450px;
    }
}

@media only screen and (max-width: 575px) {
    .blog-detials-content-area {
        padding: 0 10px;
    }
}

p.bold-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #141414;
    padding-left: 30px;
    border-left: 2px solid #141414;
}

.thumbnail-blog-details img {
    border-radius: 15px;
}

.blog-details-tag-wrapper-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-details-tag-wrapper-area .single-tag-area {
    display: flex;
    align-items: center;
}

.blog-details-tag-wrapper-area .single-tag-area span {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #141414;
}

.blog-details-tag-wrapper-area .single-tag-area ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding-left: 0;
    margin: 0;
    margin-left: 17px;
}

.blog-details-tag-wrapper-area .single-tag-area ul li {
    margin-right: 10px;
}

.blog-details-tag-wrapper-area .single-tag-area ul li button {
    background: #ffffff;
    padding: 8px 20px;
    border-radius: 5px;
    color: #141414;
    transition: 0.3s;
}

.blog-details-tag-wrapper-area .single-tag-area ul li button:hover {
    background: var(--color-primary-m);
    color: #fff;
}

.blog-details-tag-wrapper-area .social-tag-wrapper {
    background: transparent;
}

.blog-details-tag-wrapper-area .social-tag-wrapper .socials p.disc {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #141414;
}

.blog-details-tag-wrapper-area .social-tag-wrapper ul li a i {
    transition: 0.3s;
}

.blog-details-tag-wrapper-area .social-tag-wrapper ul li a:hover {
    background: var(--color-primary-m);
}

.blog-details-tag-wrapper-area .social-tag-wrapper ul li a:hover i {
    color: #fff;
}

.blog-details .menu-area.main-menu {
    display: none;
}

.blog-details .social-area-five {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 100px;
}

.authore-area-details-blog {
    display: flex;
    align-items: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
}

@media only screen and (max-width: 767px) {
    .authore-area-details-blog {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 30px;
    }
}

.authore-area-details-blog .thumbnail-author {
    display: block;
    max-width: 100%;
    margin-right: 30px;
}

.authore-area-details-blog .thumbnail-author img {
    max-width: max-content;
}

.authore-area-details-blog .details-author p.details {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #74787c;
}

@media only screen and (max-width: 767px) {
    .rts-breadcrumb-area .breadcrumb-title .title {
        text-align: left !important;
    }
}

.blog-details-author-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 479px) {
    .blog-details-author-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.blog-details-author-main .single-author {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.blog-details-author-main .single-author .details {
    text-align: left;
    margin-left: 15px;
}

.blog-details-author-main .single-author .details .name {
    margin-bottom: -2px;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #141414;
}

.blog-details-author-main .single-author .details span {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #74787c;
}

.blog-details-author-main .single-author .user-area {
    display: flex;
    align-items: center;
}

.blog-details-author-main .single-author .user-area i {
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    background: var(--color-primary-m);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 17px;
}

.blog-details-author-main .single-author .user-area span.date {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #141414;
}

.rts-blog-mazin-single a.thumbnail {
    overflow: hidden;
    display: block;
    position: relative;
    border-radius: 8px;
    margin-bottom: 20px;
}

.rts-blog-mazin-single a.thumbnail img {
    width: 100%;
    transition: 0.5s;
}

.rts-blog-mazin-single a.thumbnail:hover img {
    transform: scale(1.05);
}

.rts-blog-mazin-single a.thumbnail .publish-tag {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    background: #ffffff;
    padding: 5px 17px;
    align-items: center;
}

.rts-blog-mazin-single a.thumbnail .publish-tag .icon {
    width: 13px;
    margin-right: 5px;
}

.rts-blog-mazin-single a.thumbnail .publish-tag span {
    border-radius: 1px;
    font-size: 13px;
    line-height: 101%;
    color: #1f1f21;
}

.rts-blog-mazin-single a .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #1f1f21;
    margin-top: 15px;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: 0.3s;
}

.rts-blog-mazin-single a:hover .title {
    color: var(--color-primary-m);
}

.rts-blog-mazin-single .blog-disc {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #777777;
}

.blog-details #menu-btn {
    padding: 39px 0;
}

.blog-details .footer-bg-3 .rts-btn.btn-main-3 {
    background: var(--color-primary-m) !important;
    box-shadow: none;
}

.blog-details .footer-bg-3 .rts-btn.btn-main-3::after {
    background: var(--color-primary-m);
}

.rts-breadcrumb-area {
    padding: 140px 0 0 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-breadcrumb-area .breadcrumb-title .project-info {
        position: relative;
        width: 100%;
        border-radius: 15px;
        margin-bottom: 30px;
        margin-top: -33px;
    }
}

@media only screen and (max-width: 767px) {
    .rts-breadcrumb-area .breadcrumb-title .project-info {
        position: relative;
        width: 100%;
        border-radius: 15px;
        margin-bottom: 30px;
        margin-top: -33px;
    }
}

.rts-breadcrumb-area .breadcrumb-title .project-info .info-body {
    padding: 20px 40px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 479px) {
    .rts-breadcrumb-area .breadcrumb-title .project-info .info-body {
        padding: 15px 10px;
    }
}

.rts-breadcrumb-area .breadcrumb-title .project-info .info-body .single-info {
    display: flex;
    align-items: center;
    padding: 24px 0;
}

@media only screen and (max-width: 479px) {
    .rts-breadcrumb-area .breadcrumb-title .project-info .info-body .single-info {
        padding: 15px 0;
    }
}

.rts-breadcrumb-area .breadcrumb-title .project-info .info-body .single-info:last-child {
    border-bottom: none;
}

.rts-breadcrumb-area .breadcrumb-title .project-info .info-body .single-info .info-ico i {
    height: 50px;
    width: 50px;
    background: #ffffff;
    color: var(--color-primary-m);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.rts-breadcrumb-area .breadcrumb-title .project-info .info-body .single-info .info-details {
    margin-left: 20px;
    text-align: left;
}

.rts-breadcrumb-area .breadcrumb-title .project-info .info-body .single-info .info-details span {
    margin-bottom: 5px;
}

.rts-breadcrumb-area .breadcrumb-title .project-info .info-body .single-info .info-details .name {
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 3px;
}

.main-testimonials {
    display: flex;
    align-items: center;
    width: 95%;
}

@media only screen and (max-width: 767px) {
    .main-testimonials {
        flex-direction: column;
        align-items: flex-start;
    }
}

.main-testimonials img {
    margin-right: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-testimonials img {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .main-testimonials img {
        margin-bottom: 30px;
        width: 150px;
        height: 150px;
    }
}

.main-testimonials .review-area p.disc {
    font-weight: 500;
    font-size: 24px;
    line-height: 40px;
    color: #0d0d0d;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-testimonials .review-area p.disc {
        font-size: 16px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .main-testimonials .review-area p.disc {
        font-size: 16px;
        line-height: 26px;
    }
}

.main-testimonials .review-area .full-deg span.name {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: #74787c;
    text-transform: uppercase;
}

.main-testimonials .review-area .full-deg span.degic {
    color: #0d0d0d;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rts-single-testimonials-h3.style-four .top-area {
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px #dde3e9;
    border-radius: 40px;
}

.rts-single-testimonials-h3.style-four .top-area .start-area {
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px #dde3e9;
    border-radius: 40px;
}

.rts-single-testimonials-h3.style-four .top-area .start-area i {
    color: #ffae00;
}

.rts-single-testimonials-h3 .top-area {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 40px 80px 40px;
}

@media only screen and (max-width: 1199px) {
    .rts-single-testimonials-h3 .top-area {
        padding: 25px;
    }
}

.rts-single-testimonials-h3 .top-area .quote {
    margin-bottom: 40px;
}

.rts-single-testimonials-h3 .top-area p {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #74787c;
    margin-bottom: 20px;
}

.rts-single-testimonials-h3 .top-area .start-area {
    padding: 10px 22px;
    background: #ffffff;
    box-shadow: 0px 5px 35px #ebeef0;
    border-radius: 100px;
    max-width: max-content;
    margin: auto;
}

.rts-single-testimonials-h3 .top-area .start-area i {
    color: var(--color-primary-3);
    margin: 0 1px;
}

.rts-single-testimonials-h3 .client-profile-area {
    position: relative;
    margin-top: -50px;
}

@media only screen and (max-width: 1199px) {
    .rts-single-testimonials-h3 .client-profile-area {
        margin-top: -7px;
    }
}

.rts-single-testimonials-h3 .client-profile-area img {
    margin-bottom: 15px;
}

.rts-single-testimonials-h3 .client-profile-area .name {
    font-weight: 800;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0px;
    color: #141414;
}

.rts-single-testimonials-h3 .client-profile-area span {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    color: #74787c;
}

.mazin-review-area-wrapper {
    position: relative;
}

.mazin-review-area-wrapper img {
    position: absolute;
    top: -50px;
}

.mazin-review-area-wrapper .content-inner {
    padding-left: 200px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mazin-review-area-wrapper .content-inner {
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .mazin-review-area-wrapper .content-inner {
        padding-left: 0;
    }
}

.mazin-review-area-wrapper .content-inner p.review {
    font-weight: 400;
    font-size: 36px;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: #1f1f21;
    font-family: var(--font-primary);
}

@media only screen and (max-width: 767px) {
    .mazin-review-area-wrapper .content-inner p.review {
        font-size: 22px;
    }
}

.mazin-review-area-wrapper .content-inner .reviewer-wrapper {
    display: flex;
    align-items: center;
}

.mazin-review-area-wrapper .content-inner .reviewer-wrapper a {
    font-weight: 500;
    font-size: 24px;
    color: #1f1f21;
    text-transform: capitalize;
    font-family: var(--font-primary);
    padding-right: 20px;
    position: relative;
    margin-right: 20px;
}

@media only screen and (max-width: 767px) {
    .mazin-review-area-wrapper .content-inner .reviewer-wrapper a {
        font-size: 20px;
    }
}

.mazin-review-area-wrapper .content-inner .reviewer-wrapper a::after {
    position: absolute;
    content: "";
    right: 0;
    height: 80%;
    width: 1px;
    background: #777777;
    top: 15%;
}

.mazin-review-area-wrapper .content-inner .reviewer-wrapper span {
    font-weight: 400;
    font-size: 16px;
    color: #777777;
    margin-bottom: -5px;
}

.Swiper-mazin-testimonials {
    padding: 50px 0;
    position: relative;
}

.Swiper-mazin-testimonials .swiper-pagination {
    margin-top: 20px;
    left: 0%;
}

.Swiper-mazin-testimonials .swiper-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    background: #777777;
    margin-right: 8px;
}

.Swiper-mazin-testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #1f1f21;
}

.Swiper-mazin-testimonials .swiper-button-prev {
    left: 92%;
    border-radius: 50%;
    transition: 0.3s;
}

@media only screen and (max-width: 767px) {
    .Swiper-mazin-testimonials .swiper-button-prev {
        left: 88%;
    }
}

@media only screen and (max-width: 575px) {
    .Swiper-mazin-testimonials .swiper-button-prev {
        left: 80%;
    }
}

.Swiper-mazin-testimonials .swiper-button-prev:hover {
    transform: translateX(-8px) scale(1.5);
}

.Swiper-mazin-testimonials .swiper-button-prev::after {
    content: "\f060";
    font-family: "Font Awesome 5 Pro";
    font-weight: 200;
    font-size: 22px;
    color: #d6d6d6;
    transition: 0.3s;
}

.Swiper-mazin-testimonials .swiper-button-next {
    right: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.Swiper-mazin-testimonials .swiper-button-next:hover {
    transform: translateX(8px) scale(1.5);
}

.Swiper-mazin-testimonials .swiper-button-next::after {
    content: "\f061";
    font-family: "Font Awesome 5 Pro";
    font-weight: 200;
    font-size: 22px;
    color: #d6d6d6;
    transition: 0.3s;
}

.Swiper-mazin-testimonials .swiper-button-next,
.Swiper-mazin-testimonials .swiper-button-prev {
    top: 85%;
}

.Swiper-mazin-testimonials .swiper-button-next:hover,
.Swiper-mazin-testimonials .swiper-button-prev:hover {
    border-color: #1f1f21;
}

.Swiper-mazin-testimonials .swiper-button-next:hover::after,
.Swiper-mazin-testimonials .swiper-button-prev:hover::after {
    color: #1f1f21;
}

.pagination-blog-mazin {
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pagination-blog-mazin {
        top: -100px;
    }
}

@media only screen and (max-width: 767px) {
    .pagination-blog-mazin {
        display: none;
    }
}

.pagination-blog-mazin .swiper-button-prev {
    left: 75%;
    height: 60px;
    width: 60px;
    background: transparent;
    border: 1px solid rgba(31, 31, 33, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .pagination-blog-mazin .swiper-button-prev {
        left: 81%;
    }
}

.pagination-blog-mazin .swiper-button-prev:hover {
    transform: translateX(-8px) scale(1.04);
}

.pagination-blog-mazin .swiper-button-prev::after {
    content: "\f060";
    font-family: "Font Awesome 5 Pro";
    font-weight: 200;
    font-size: 18px;
    color: #d6d6d6;
    transition: 0.3s;
}

.pagination-blog-mazin .swiper-button-next {
    right: 0;
    height: 60px;
    width: 60px;
    background: transparent;
    border: 1px solid rgba(31, 31, 33, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

.pagination-blog-mazin .swiper-button-next:hover {
    transform: translateX(8px) scale(1.04);
}

.pagination-blog-mazin .swiper-button-next::after {
    content: "\f061";
    font-family: "Font Awesome 5 Pro";
    font-weight: 200;
    font-size: 18px;
    color: #d6d6d6;
    transition: 0.3s;
}

.pagination-blog-mazin .swiper-button-next,
.pagination-blog-mazin .swiper-button-prev {
    top: 54px;
}

.pagination-blog-mazin .swiper-button-next:hover,
.pagination-blog-mazin .swiper-button-prev:hover {
    border-color: #1f1f21;
}

.pagination-blog-mazin .swiper-button-next:hover::after,
.pagination-blog-mazin .swiper-button-prev:hover::after {
    color: #1f1f21;
}

.rts-mazin-testimonials-area {
    position: relative;
}

.rts-mazin-testimonials-area .mazin-cont {
    position: relative;
}

.rts-mazin-testimonials-area .wrapper-mazin-textimonials-btn {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    top: 80%;
    right: 0;
    z-index: 5;
}

.rts-mazin-testimonials-area .swiper-button-prevs:hover::after,
.rts-mazin-testimonials-area .swiper-button-nexts:hover::after {
    color: #0d0d0d;
    font-size: 28px;
}

.rts-mazin-testimonials-area .swiper-paginations {
    position: absolute;
    bottom: -5px;
}

.rts-mazin-testimonials-area .swiper-pagination-bullet {
    background: rgba(92, 92, 92, 0.4);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin: 0 5px;
}

.rts-mazin-testimonials-area .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-primary-m);
}

.swiper-button-prevs {
    right: 50px;
    background: transparent;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .swiper-button-prevs {
        left: 81%;
    }
}

.swiper-button-prevs:hover {
    transform: translateX(-8px) scale(1.04);
}

.swiper-button-prevs::after {
    content: "\f060";
    font-family: "Font Awesome 5 Pro";
    font-weight: 200;
    font-size: 20px;
    color: #d6d6d6;
    transition: 0.3s;
}

.swiper-button-nexts {
    right: -48px;
    background: transparent;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swiper-button-nexts:hover {
    transform: translateX(8px) scale(1.04);
}

.swiper-button-nexts::after {
    content: "\f061";
    font-family: "Font Awesome 5 Pro";
    font-weight: 200;
    font-size: 20px;
    color: #d6d6d6;
    transition: 0.3s;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 62px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: "unicons";
    content: "\e84b";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: #000;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    border: 2px solid var(--color-primary);
    box-shadow: none;
    border-radius: 50% !important;
    border-radius: 5px;
}

.progress-wrap:hover::after {
    opacity: 1;
    content: "\e84b";
    border: 2px solid var(--color-primary);
}

.progress-wrap::before {
    position: absolute;
    font-family: "unicons";
    content: "\e84b";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    opacity: 0;
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 0;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg {
    color: var(--color-primary);
    border-radius: 50%;
    background: #ffffff;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--color-primary);
    stroke-width: 34px;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.home-blue .progress-wrap svg.progress-circle path {
    stroke: var(--color-primary-2);
}

.home-blue .progress-wrap::after {
    border-color: var(--color-primary-2);
    box-shadow: 0px 3px 20px 6px #0742e952;
    color: var(--color-primary-2);
}

body.modal-open {
    padding-right: 0 !important;
}

.modal-style-one {
    background: #000000e3 !important;
}

.modal-style-one::-webkit-scrollbar {
    display: none;
}

.modal-style-one .modal-dialog .modal-content {
    border-radius: 5px;
    padding: 40px;
    box-shadow: 0px 2px 20px rgba(24, 16, 16, 0.09);
    border: none;
}

@media only screen and (max-width: 575px) {
    .modal-style-one .modal-dialog .modal-content {
        padding: 20px;
    }
}

.modal-style-one .modal-dialog .modal-content .modal-header {
    border: none;
}

.modal-style-one .modal-dialog .modal-content .modal-body {
    border: none !important;
}

.modal-style-one .modal-dialog .modal-content .modal-body form .single-line-input {
    display: flex;
}

.modal-style-one .modal-dialog .modal-content .modal-body form .single-line-input .single-input-box {
    width: 48%;
}

.modal-style-one .modal-dialog .modal-content .modal-body form .single-line-input .single-input-box.end {
    margin-left: auto;
}

.modal-style-one .modal-dialog .modal-content .modal-body form input {
    border: 1px solid var(--color-primary);
    height: 50px;
    border-radius: 5px;
}

.modal-style-one .modal-dialog .modal-content .modal-body form input:focus {
    box-shadow: none;
    border: 1px solid #000;
}

.modal-style-one .modal-dialog .modal-content .modal-body form textarea {
    height: 100px;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
}

.modal-style-one .modal-dialog .modal-content .modal-body form textarea:focus {
    box-shadow: none;
    border: 1px solid #000;
}

.modal-style-one .modal-dialog .modal-content .modal-body form label {
    color: #0d0d0d;
    font-size: 18px;
}

.modal-style-one .modal-dialog .modal-content .modal-footer {
    border: none !important;
}

.modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -0.5rem 2.5rem auto !important;
    opacity: 1;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 700px;
        margin: 18.75rem auto !important;
    }
}

.home-mazin .modal-style-one .modal-dialog .modal-content .modal-body form input,
.home-mazin .modal-style-one .modal-dialog .modal-content .modal-body form textarea {
    border: 1px solid var(--color-primary-m);
    border-bottom: 1px solid #5d5d7e;
    border-top: none;
    border-right: none;
    border-left: none;
    border-radius: 0;
    height: 25px;
}

.modal-style-one .modal-dialog .modal-content .modal-body form textarea {
    height: 100px !important;
}

.single-line-input.check {
    flex-direction: column;
}

.single-line-input.check label.lavel {
    display: block;
}

.single-line-input.check .rts-check-main {
    height: 130px;
    height: 170px;
    padding: 10px;
    border: 1px solid #5d5d7e;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    resize: both;
    display: flow-root;
    position: relative;
    box-sizing: border-box;
}

.single-line-input.check .rts-check-main ul {
    margin: 0;
    padding-left: 7px;
}

.single-line-input.check .rts-check-main ul li {
    margin: 5px 0;
}

.rts-checkbox,
.rts-radio {
    width: 20px;
    height: 20px;
    background: 0 0;
    margin-top: 0;
    border: 2px solid #d6d6d6;
}

.check-wrapper>*> :last-child {
    margin-bottom: 0;
}

.rts-checkbox:not(:disabled),
.rts-radio:not(:disabled) {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: 0 0;
    margin-top: 0;
    border: 2px solid #d6d6d6;
    overflow: hidden;
}

.rts-check-main .check-wrapper li::marker {
    display: none;
}

.rts-check-main .check-wrapper .form-check {
    max-width: max-content;
    margin: 7px 0;
}

.rts-check-main .check-wrapper input {
    max-width: max-content !important;
}

#exampleModalmazin .rts-btn.btn-primary-m {
    border-radius: 5px;
}

#exampleModalmazin .rts-btn.btn-primary-m::after {
    border-radius: 5px;
}

.photographer-home .modal-style-one .modal-dialog .modal-content .modal-body form label::before {
    background: var(--color-primary);
}

.photographer-home .single-line-input.check .rts-check-main {
    border-color: var(--color-primary);
}

.cta-main-wrapper {
    background: #1e1e1e;
    padding: 100px;
    border-radius: 15px;
    box-shadow: 0px 20px 40px #d8dde1;
    overflow: hidden;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .cta-main-wrapper {
        padding: 25px;
    }
}

@media only screen and (max-width: 575px) {
    .cta-main-wrapper {
        padding: 10px;
    }
}

.cta-main-wrapper .image-thumbnail {
    position: absolute;
    right: 60px;
    bottom: 0;
}

@media only screen and (max-width: 1199px) {
    .cta-main-wrapper .image-thumbnail {
        width: 50%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cta-main-wrapper .image-thumbnail {
        width: 50%;
        right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .cta-main-wrapper .image-thumbnail {
        display: none;
    }
}

.cta-main-wrapper .content-wrapper .title {
    color: #fff;
}

.cta-main-wrapper .content-wrapper p.disc {
    color: #74787c;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

.contact-area .call-inner {
    display: flex;
    margin-bottom: 35px;
    align-items: center;
}

.contact-area .call-inner .call-area .icon {
    margin-right: 20px;
}

.contact-area .call-inner .call-area .icon svg {
    display: block;
    height: 65px;
    width: 65px;
    background: rgba(255, 255, 255, 0);
    border-radius: 50%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: visible;
}

.contact-area .call-inner .number span {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #74787c;
    margin-bottom: 10px;
}

.contact-area .call-inner .number a {
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    margin-top: 10px;
}

.mazin-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 102px;
    background: #6344c6;
    margin-bottom: -95px;
}

@media only screen and (max-width: 767px) {
    .mazin-cta {
        padding: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .mazin-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 10px;
    }
}

@media only screen and (max-width: 575px) {
    .mazin-cta .left {
        margin-bottom: 20px;
    }
}

.mazin-cta .left .title {
    color: #fff;
    font-size: 48px;
}

@media only screen and (max-width: 767px) {
    .mazin-cta .left .title {
        font-size: 32px;
    }
}

.mazin-cta .left .disc {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.6);
}

.mazin-cta .right a.rts-btn.btn-secondary-m {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--font-primary);
    line-height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    min-width: max-content;
}

.mazin-cta .right a.rts-btn.btn-secondary-m.btn-main {
    border-radius: 0;
}

.mazin-cta .right a.rts-btn.btn-secondary-m.btn-main:hover {
    background: none;
}

.mazin-cta .right a.rts-btn.btn-secondary-m.btn-main::after {
    border-radius: 0;
    background: #1f1f21;
}

.brand-container {
    max-width: 1800px;
    margin: auto;
}

.brand-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media screen and (max-width: 1920px) {
    .brand-main-wrapper {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .brand-main-wrapper {
        gap: 20px;
    }
}

.brand-main-wrapper .rts-single-brand {
    width: 360px;
    height: 150px;
    background: #ffffff;
    box-shadow: 0px 4px 40px rgba(216, 221, 225, 0.6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .brand-main-wrapper .rts-single-brand {
        width: 180px;
        height: 105px;
        gap: 20px;
    }
}

.brand-main-wrapper .rts-single-brand:hover {
    transform: translateY(-15px) scale(1.06);
}

.counter-wrapper-h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1199px) {
    .counter-wrapper-h3 {
        justify-content: center;
        gap: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .counter-wrapper-h3 {
        gap: 15px;
    }
}

.counter-wrapper-h3 .single-counter-h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 30px;
    width: 230px;
    border-radius: 15px;
    height: 230px;
    border: 1px solid rgba(209, 216, 223, 0.77);
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    transition: 0.3s;
}

.counter-wrapper-h3 .single-counter-h3 h3 {
    font-weight: 500;
    font-size: 48px;
    line-height: 66px;
    margin-bottom: 5px;
}

.counter-wrapper-h3 .single-counter-h3 span {
    margin-bottom: 0;
}

.counter-wrapper-h3 .single-counter-h3:hover {
    transform: translateY(-15px);
}

.counter-bg-4 {
    background-image: url(../images/bg/counter-up.jpg);
    padding: 100px 0;
    background-size: cover;
}

.main-wrapper-counter-up {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-wrapper-counter-up {
        gap: 30px;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .main-wrapper-counter-up {
        gap: 30px;
        justify-content: center;
    }
}

.single-counter-style-4 {
    display: flex;
}

.single-counter-style-4 .icon {
    margin-right: 25px;
}

.single-counter-style-4 .inner .title {
    color: #fff;
    margin-bottom: 0;
    position: relative;
}

.single-counter-style-4 .inner span {
    color: #fff;
    position: relative;
}

.plus::after {
    position: absolute;
    right: -20px;
    content: "\f067";
    font-family: "Font Awesome 5 Pro" !important;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
}

.breadcrumb-title {
    text-align: center;
}

.breadcrumb-title .title {
    margin-bottom: 10px;
}

.breadcrumb-title .post-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    color: #74787c;
}

.single-contact-one-inner .content {
    display: flex;
    align-items: center;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
}

.single-contact-one-inner .content .icone {
    margin-right: 20px;
}

.single-contact-one-inner .content .info span {
    margin-bottom: 0;
    color: var(--color-primary-3);
    font-weight: 500;
}

.single-contact-one-inner .content .info a h5 {
    margin-bottom: 0;
    transition: 0.3s;
}

.contact-form-wrapper {
    padding: 100px;
    border-radius: 15px;
    background-color: #fff;
}

.contact-form-wrapper .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 66px;
    color: #141414;
    margin-bottom: 30px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    height: 60px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.contact-form-wrapper input {
    margin-bottom: 25px;
}

.contact-form-wrapper form .name-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-form-wrapper form .name-area input {
    flex-basis: 49%;
}

.contact-form-wrapper form textarea {
    height: 140px;
    padding: 15px;
}

.rts-single-contact-style-four {
    display: flex;
    align-items: center;
    background: linear-gradient(130.08deg, #ffffff 0%, #ecf0f3 100%);
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 40px #dde3e9;
    border-radius: 5px;
    padding: 40px;
}

@media only screen and (max-width: 479px) {
    .rts-single-contact-style-four {
        padding: 20px;
    }
}

.rts-single-contact-style-four .details-area {
    margin-left: 27px;
}

.rts-single-contact-style-four .details-area span {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #74787c;
    margin-bottom: 10px;
}

.rts-single-contact-style-four .details-area a {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: #141414;
}

.designer-home .rts-btn {
    color: #fff;
}

.contact-form-style-four .dedidation-2 {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: space-between;
}

.contact-form-style-four .dedidation-2 .single {
    flex-basis: 48.5%;
}

.contact-form-style-four label {
    color: #141410;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
}

.contact-form-style-four input {
    background: #ffffff;
    border: 1px solid #dfe8f1;
    border-radius: 5px;
    height: 55px;
}

.contact-form-style-four input:focus {
    border: 1px solid #141414;
    background: transparent;
}

.contact-form-style-four textarea {
    height: 180px;
    background: #ffffff;
    border: 1px solid #dfe8f1;
    border-radius: 5px;
    margin-bottom: 30px;
}

.contact-form-style-four textarea:focus {
    border: 1px solid #141414;
    background: transparent;
}

.bg-contact-mazin {
    background: #1f1f21;
}

.container-two-left {
    max-width: 1545px;
    margin-left: auto;
}

.marquee_text {
    display: block;
    height: max-content;
}

.marquee_text .js-marquee {
    color: #f8f8f8;
    font-size: 152px;
    font-family: var(--font-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .marquee_text .js-marquee {
        font-size: 120px;
    }
}

@media only screen and (max-width: 767px) {
    .marquee_text .js-marquee {
        font-size: 90px;
    }
}

@media only screen and (max-width: 575px) {
    .marquee_text .js-marquee {
        font-size: 80px;
    }
}

.marquee_text .js-marquee span {
    color: var(--color-primary-m);
}

.mezin-form .single-input-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mezin-form .single-input-row input {
    flex-basis: 48.5%;
    padding-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 50px;
    color: #ffffff;
}

.mezin-form .single-input-row input::placeholder {
    font-style: italic;
    color: #a0a0a0b3 !important;
}

.mezin-form .single-input-row input:focus {
    border-bottom: 1px solid #ffffff;
}

.mezin-form textarea {
    padding-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.mezin-form textarea::placeholder {
    font-style: italic;
    color: #a0a0a0b3 !important;
}

.mezin-form textarea:focus {
    border-bottom: 1px solid #ffffff;
}

.mezin-form button {
    max-width: max-content;
}

.mezin-form button:hover {
    color: #141410;
}

.home-mazin .progress-wrap svg.progress-circle path {
    stroke: var(--color-primary-m);
}

.home-mazin .progress-wrap::after {
    border-color: var(--color-primary-m);
}

.home-mazin .progress-wrap::after {
    color: var(--color-primary-m);
}

.home-mazin.six .progress-wrap svg.progress-circle path {
    stroke: var(--color-primary);
}

.home-mazin.six .progress-wrap::after {
    border-color: var(--color-primary);
}

.home-mazin.six .progress-wrap::after {
    color: var(--color-primary);
}

.home-mazin.marketer .progress-wrap::after {
    color: var(--color-primary-3);
}

.home-mazin.marketer .progress-wrap::after {
    border-color: var(--color-primary-3);
}

.home-mazin.marketer .progress-wrap svg.progress-circle path {
    stroke: var(--color-primary-3);
}

.rts-progress-area .thumbnail {
    display: block;
    overflow: hidden;
    max-width: max-content;
}

.rts-progress-area .thumbnail img {
    transition: 0.3s;
}

.rts-progress-area .thumbnail:hover img {
    transform: scale(0.95);
}

.single-progress-area-h4 {
    margin-top: 30px;
}

.single-progress-area-h4:first-child {
    margin-top: 0;
}

.single-progress-area-h4 .page-wrapper {
    width: calc(100% - 100px);
    margin: 100px auto 200px;
}

.single-progress-area-h4 .progress {
    height: 5px;
    position: relative;
    margin-top: 14px;
    border-radius: 0;
}

.single-progress-area-h4 .progress .bg--primary {
    background: var(--color-primary-m);
    border-radius: 0;
}

.single-progress-area-h4 .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.single-progress-area-h4 .progress-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.single-progress-area-h4 .progress-top p {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    margin-bottom: 0;
    font-family: var(--font-primary);
}

.single-progress-area-h4 .progress-top span.parcent {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #ffffff;
}

/*For CodePen*/
svg.radial-progress {
    height: auto;
    max-width: 240px;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid rgba(31, 31, 33, 0.08);
    transform: rotate(-90deg);
    width: 100%;
    background-image: none;
    border-radius: 50%;
    transition: 0.3s;
}

svg.radial-progress circle {
    fill: transparent;
    stroke: #fff;
}

svg.radial-progress circle.bar-static {
    stroke: rgba(31, 31, 33, 0.08) !important;
    stroke-width: 3px;
    transition: 0.3s;
}

svg.radial-progress circle.bar--animated {
    stroke-dasharray: 219.9114857513;
    stroke: var(--color-primary-m);
    stroke-dashoffset: 219.9114857513;
    stroke-width: 3px;
    transition: 0.3s;
    stroke-linecap: round;
}

svg.radial-progress text {
    fill: #fafafa;
    font-size: 16px;
    font-weight: 700;
    text-anchor: middle;
    font-family: var(--font-primary);
    fill: rgba(31, 31, 33, 0.2);
    transition: 0.3s;
}

svg.radial-progress:hover circle.bar-static {
    stroke-width: 1px;
}

svg.radial-progress:hover circle.bar--animated {
    stroke-width: 4px;
}

svg.radial-progress:hover text {
    fill: #1f1f21;
}

section.svg-container svg.radial-progress:nth-child(even) {
    margin: 0 15px;
}

section.svg-container:nth-last-of-type(1) svg.radial-progress {
    background: linear-gradient(260deg, #ff0300, #ffc900);
}

section.svg-container:nth-last-of-type(0) svg.radial-progress {
    background-image: linear-gradient(60deg,
            #3d3393 0%,
            #2b76b9 37%,
            #2cacd1 65%,
            #35eb93 100%);
}

.devider {
    font-size: 50px;
    padding: 20px;
    min-height: 11vh;
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-225deg, #ff057c 0%, #ff057c 40%, #321575 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.devider:nth-last-of-type(2) {
    background-image: linear-gradient(260deg, #ff0300, #ffc900);
}

.single-progress-circle {
    display: flex;
    justify-content: center;
    position: relative;
}

.single-progress-circle .small-text {
    position: absolute;
    top: 55%;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #1f1f21;
    font-family: var(--font-primary);
}

/* Loader Styles start here */
/***********************************
PAGE LOAD ANIMATION
***********************************/
.preloader {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: default;
    position: fixed;
    z-index: 9999999;
    background: var(--color-primary-m);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.preloader .animation-preloader {
    z-index: 1000;
}

.preloader .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--color-primary-m);
    height: 9em;
    margin: 0 auto 3.5em auto;
    width: 9em;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .spinner {
        width: 7.5em;
        height: 7.5em;
        margin: 0 auto 1.5em auto;
    }
}

.preloader .animation-preloader .txt-loading {
    font-size: 80px;
    line-height: 118px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 700;
}

@media (max-width: 767px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 50px;
        line-height: 77px;
    }
}

@media (max-width: 575px) {
    .preloader .animation-preloader .txt-loading {
        font-size: 36px;
        line-height: 58px;
    }
}

.preloader .animation-preloader .txt-loading .letters-loading {
    color: var(--color-primary-m);
    position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
    -webkit-animation: letters-loading 4s infinite;
    animation: letters-loading 4s infinite;
    color: #000;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    position: absolute;
    top: -3px;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
}

.preloader p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #243342;
}

.preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.preloader .loader .row {
    height: 100%;
}

.preloader .loader .loader-section {
    padding: 0px;
}

.preloader .loader .loader-section .bg {
    background-color: #fff;
    height: 100%;
    left: 0;
    width: 100%;
    -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
    width: 0;
    -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

.dark-version {
    background: #000;
}

.dark-version .preloader {
    background: #000;
}

.dark-version.home-mazin {
    background: #1f1f21;
}

.dark-version.home-mazin .mezin-form textarea,
.dark-version.home-mazin .mezin-form .single-input-row input {
    color: #fff;
}

.dark-version.home-mazin .menu-area {
    cursor: pointer;
}

.dark-version.home-mazin .menu-area svg path {
    fill: #ffffff;
    transition: 0.3s;
}

.dark-version.home-mazin .menu-area svg .two {
    stroke: #ffffff;
    transition: 0.3s;
}

.dark-version.home-mazin .menu-area svg:hover path {
    fill: #6344c6;
}

.dark-version.home-mazin .menu-area svg:hover path.two {
    stroke: #6344c6;
}

.dark-version.home-mazin .rts-mazin-testimonials-area .swiper-pagination-bullet {
    background: #444444;
    opacity: 1;
}

.dark-version.home-mazin .rts-mazin-testimonials-area .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}

.dark-version.home-mazin .bg-mazin {
    background-image: url(../images/bg/bg-slider-mazin-dark.jpg);
}

.dark-version.home-mazin .header-five-wrapper .menu-area ul li a::after {
    bottom: -1px;
}

.dark-version.home-mazin .header-five-wrapper .logo-area .thumbnail .logo-for-white {
    display: none;
}

.dark-version.home-mazin .header-five-wrapper .logo-area .thumbnail .logo-for-dark {
    display: block;
}

.dark-version.home-mazin .header-five-wrapper .menu-area ul li a,
.dark-version.home-mazin .social-area-five .socials-text,
.dark-version.home-mazin .contact-menu-area-five .sign-in-area .icon i,
.dark-version.home-mazin .contact-menu-area-five .sign-in-area .sign-ion-text p {
    color: #fff;
}

.dark-version.home-mazin .header-five-wrapper .menu-area ul li a:hover,
.dark-version.home-mazin .social-area-five .socials-text:hover,
.dark-version.home-mazin .contact-menu-area-five .sign-in-area .icon i:hover,
.dark-version.home-mazin .contact-menu-area-five .sign-in-area .sign-ion-text p:hover {
    color: var(--color-primary-m);
}

.dark-version.home-mazin .rts-header-five {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-version.home-mazin .social-area-five .socials ul li a i {
    color: #fff;
}

.dark-version.home-mazin .social-area-five .socials ul li a i:hover {
    color: var(--color-primary-m);
}

.dark-version.home-mazin .contact-menu-area-five .sign-in-area .icon i {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-version.home-mazin .rts-banner-five-area-start .banner-five-left span.sub-five {
    color: #fff;
}

.dark-version.home-mazin .rts-banner-five-area-start .banner-five-left .rts-btn.btn-main {
    color: #ffffff;
    background: #1f1f21;
}

.dark-version.home-mazin .rts-banner-five-area-start .banner-five-left .rts-btn.btn-main::after {
    background: #ffffff0d;
}

.dark-version.home-mazin .rts-banner-five-area-start .banner-five-left .title {
    color: #fff;
}

.dark-version.home-mazin .rts-banner-five-area-start .thumbnail::before {
    display: none;
}

.dark-version.home-mazin .rts-banner-five-area-start .thumbnail::after {
    display: none;
}

.dark-version.home-mazin .rts-mazin-testimonials-area .swiper-button-prevs:hover::after,
.dark-version.home-mazin .rts-mazin-testimonials-area .swiper-button-nexts:hover::after {
    color: #ffffff;
}

@media only screen and (min-width: 1600px) and (max-width: 1919px) {
    .dark-version.home-mazin .banner-mazin-right-area .vedio-icone {
        right: 60px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .dark-version.home-mazin .banner-mazin-right-area .vedio-icone {
        right: 80px;
        top: 16%;
    }
}

@media only screen and (max-width: 575px) {
    .dark-version.home-mazin .banner-mazin-right-area .vedio-icone {
        right: 48px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .dark-version.home-mazin .rts-banner-five-area-start .thumbnail {
        margin-left: 0;
    }
}

@media only screen and (max-width: 1199px) {
    .dark-version.home-mazin .rts-banner-five-area-start .thumbnail {
        margin-left: 0;
    }
}

.dark-version.home-mazin a.live-chat-option .detsil span.support {
    color: #fff;
}

.dark-version.home-mazin .bg-m-service {
    background: rgba(255, 255, 255, 0.03);
}

.dark-version.home-mazin .wrapper-about-five .rts-btn.btn-secondary-m {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    background: none;
}

.dark-version.home-mazin .wrapper-about-five .rts-btn.btn-secondary-m:hover {
    color: #ffffff;
}

.dark-version.home-mazin .wrapper-about-five .rts-btn.btn-secondary-m:hover::after {
    background: #ffffff0d;
}

.dark-version.home-mazin .wrapper-about-five .rts-btn.btn-secondary-m:after {
    background: #ffffff0d;
}

.dark-version.home-mazin .rts-btn.btn-secondary-m {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.dark-version.home-mazin .wrapper-about-five {
    background: #232324;
}

.dark-version.home-mazin .wrapper-about-five .discription-me {
    color: rgba(255, 255, 255, 0.6);
}

.dark-version.home-mazin .single-progress-area-h4 .progress {
    background: rgba(255, 255, 255, 0.1);
}

.dark-version.home-mazin .single-progress-area-h4 .progress-bar {
    background: #fff;
}

.dark-version.home-mazin .single-progress-area-h4 .progress-top p,
.dark-version.home-mazin .single-progress-area-h4 .progress-top span.parcent {
    color: #fff;
}

.dark-version.home-mazin .wrapper-about-five .single-education .institute-area .period .time {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    color: #fff;
}

.dark-version.home-mazin .wrapper-about-five .single-education .institute-area .period span.sd {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 200;
}

.dark-version.home-mazin .left-title-mazin .subtitle span {
    color: #fff;
}

.dark-version.home-mazin .left-title-mazin .title {
    color: #fff;
}

.dark-version.home-mazin .single-award {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-version.home-mazin .single-award .right span {
    color: #fff;
}

.dark-version.home-mazin .single-award .left a .title {
    color: #fff;
}

.dark-version.home-mazin .single-award .left p.disc {
    color: #777777;
}

.dark-version.home-mazin .marquee_text .js-marquee {
    color: rgba(255, 255, 255, 0.1);
}

.dark-version.home-mazin .faq-home-5-wrapper {
    background: rgba(255, 255, 255, 0.03);
}

.dark-version.home-mazin .faq-home-5-wrapper .accordion-faq-home-five .accordion-item {
    background: #1f1f21;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.04);
}

.dark-version.home-mazin .faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header button {
    background: #1f1f21;
    color: #fff;
}

.dark-version.home-mazin .faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-header button[aria-expanded="true"] {
    color: var(--color-primary-m);
}

.dark-version.home-mazin .faq-home-5-wrapper .accordion-faq-home-five .accordion-item .accordion-body p {
    color: #777777;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.02em;
}

.dark-version.home-mazin svg.radial-progress text {
    fill: rgba(61, 61, 61, 0.55);
}

.dark-version.home-mazin svg.radial-progress circle.bar-static {
    stroke: rgba(255, 255, 255, 0.08) !important;
}

.dark-version.home-mazin .single-progress-circle .small-text {
    color: #fff;
}

.dark-version.home-mazin svg.radial-progress {
    border-color: rgba(255, 255, 255, 0.08);
}

.dark-version.home-mazin svg.radial-progress:hover text {
    fill: #fff;
}

.dark-version.home-mazin .bg-contact-mazin {
    background: rgba(255, 255, 255, 0.03);
}

.dark-version.home-mazin .mezin-form .single-input-row input {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-version.home-mazin .mezin-form .single-input-row input:focus {
    border-color: #ffffff;
}

.dark-version.home-mazin .mezin-form textarea {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-version.home-mazin .mezin-form textarea:focus {
    border-color: #ffffff;
}

.dark-version.home-mazin .rts-blog-mazin-single a .title {
    color: #fff;
}

.dark-version.home-mazin .mazin-review-area-wrapper .content-inner p.review {
    color: #fff;
}

.dark-version.home-mazin .Swiper-mazin-testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #ededed;
}

.dark-version.home-mazin .mazin-review-area-wrapper .content-inner .reviewer-wrapper a {
    color: #fff;
}

.dark-version.home-mazin .bg-footer-mazin {
    background: rgba(255, 255, 255, 0.03);
}

.dark-version.home-mazin .rts-copyright-mazin {
    background: #1f1f21;
}

.dark-version.home-mazin .header--sticky.sticky {
    background: #353535 !important;
}

.dark-version.home-mazin .wrapper-about-five .title-area .title.small {
    background: #232324;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-version.home-mazin .pagination-blog-mazin .swiper-button-prev {
    border: 1px solid rgba(154, 154, 158, 0.24);
}

.dark-version.home-mazin .pagination-blog-mazin .swiper-button-next {
    border: 1px solid rgba(154, 154, 158, 0.24);
}

.dark-version.home-mazin .pagination-blog-mazin .swiper-button-prev:hover,
.dark-version.home-mazin .pagination-blog-mazin .swiper-button-next:hover {
    border: 1px solid #ffffff;
}

.dark-version.home-mazin .pagination-blog-mazin .swiper-button-prev:hover::after,
.dark-version.home-mazin .pagination-blog-mazin .swiper-button-next:hover::after {
    color: #fff;
}

.dark-version.home-mazin .Swiper-mazin-testimonials .swiper-button-next::after,
.dark-version.home-mazin .Swiper-mazin-testimonials .swiper-button-prev::after {
    color: rgba(154, 154, 158, 0.24);
}

.dark-version.home-mazin .Swiper-mazin-testimonials .swiper-button-next:hover::after,
.dark-version.home-mazin .Swiper-mazin-testimonials .swiper-button-prev:hover::after {
    color: #fff;
}

.dark-version.home-mazin .wrapper-about-five .single-education .institute-details .title {
    color: #fff;
}

.dark-version.home-mazin .side-bar {
    background: #0d0d0d;
}

.dark-version.home-mazin ul#mobile-menu-active li a {
    color: #fff;
}

.dark-version.home-mazin .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .single .social-wrapper-two ul li a:hover i {
    color: var(--color-primary-m);
}

.dark-version .modal-style-one {
    background: #000000f5 !important;
}

.dark-version .rts-btn.btn-main {
    background: #ffffff0d;
    color: #ffffff;
    border-width: 0;
}

.dark-version .rts-btn.btn-main:hover {
    background: none;
}

.dark-version .mazin-cta .right a.rts-btn.btn-secondary-m {
    color: #ffffff;
}

.dark-version .mazin-cta .right a.rts-btn.btn-secondary-m:hover {
    color: #ffffff;
}

.dark-version .mazin-cta .right a.rts-btn.btn-secondary-m:hover::after {
    background: none;
}

.dark-version .rts-contact-area .slider-div .left-contact-area form .btn-primary-m {
    color: #ffffff;
}

.dark-version .header-one {
    background: #2d2d2d;
}

.dark-version .banner-image-one {
    background: #151515;
}

.dark-version nav.main-nav ul li a {
    color: #fff;
}

.dark-version .banner-inner-one h1.title {
    color: #fff;
}

.dark-version .banner-inner-one span.pre-title {
    color: #ffff;
}

.dark-version .banner-inner-one p.disc {
    color: #fff !important;
}

.dark-version .shape-images-banner-one .one {
    opacity: 0.02;
}

.dark-version .shape-images-banner-one .two {
    opacity: 0.015;
}

.dark-version .shape-images-banner-one .three {
    opacity: 0.02;
}

.dark-version h1,
.dark-version h2,
.dark-version h3,
.dark-version h4,
.dark-version h5,
.dark-version h6,
.dark-version .h1,
.dark-version .h2,
.dark-version .h3,
.dark-version .h4,
.dark-version .h5,
.dark-version .h6 {
    color: #fff;
}

.dark-version .title-area-main-left span.pre-title {
    color: #e4e4e4;
}

.dark-version p {
    color: #c3c3c3;
}

.dark-version .light-bg-inner-wrapper {
    background-image: url(../images/bg/bg-body-lg-dark.png);
}

.dark-version .single-blog-area-one a.thumbnail {
    border-radius: 10px 10px 0 0;
}

.dark-version .single-blog-area-one .inner-content {
    background: #0d0d0d;
    box-shadow: 0px 10px 33px rgba(0, 0, 0, 0.04);
    border-radius: 0 0 10px 10px;
}

.dark-version .portfolio-wrapper-one {
    background: #0d0d0d;
}

.dark-version .home-mazin button.close-icon-menu svg path {
    stroke: #ffffff;
}

.dark-version .modal-style-one .modal-dialog .modal-content {
    background: #181818;
}

.dark-version .experience-one-inner .experience-right .icon i {
    border: 1px solid #888888;
    color: #ffffff;
    background: #000;
}

.dark-version .experience-one-inner .experience-left .end .title,
.dark-version .experience-one-inner .experience-left .start p,
.dark-version .main-testimonials .review-area p.disc,
.dark-version .main-testimonials .review-area .full-deg span.degic,
.dark-version .modal-style-one .modal-dialog .modal-content .modal-body form label {
    color: #fff;
}

.dark-version .service-one-bg {
    background-image: url(../images/service/bg-dark-01.png);
}

.dark-version .single-service,
.dark-version .modal-style-one .modal-dialog .modal-content .modal-body form textarea,
.dark-version .modal-style-one .modal-dialog .modal-content .modal-body form input {
    background: #000000;
}

.dark-version .education-area .single-education .institute-area .name .title {
    color: #ffffff;
}

.dark-version .left-title-mazin.button .button-area .swiper-button-prev {
    border-color: #ffffff;
}

.dark-version .left-title-mazin.button .button-area .swiper-button-prev:hover::after {
    color: #ffffff;
}

.dark-version .left-title-mazin.button .button-area .swiper-button-next {
    border-color: #ffffff;
}

.dark-version .left-title-mazin.button .button-area .swiper-button-next:hover::after {
    color: #ffffff;
}

.dark-version.home-mazin.marketer .banner-three-main .shape-image-banner-three img {
    opacity: 0.1;
}

.dark-version.home-mazin.marketer .banner-three-wrapper .title,
.dark-version.home-mazin.marketer .title-area-h3 .title,
.dark-version.home-mazin.marketer .rts-single-testimonials-h3 .client-profile-area .name {
    color: #fff;
}

.dark-version.home-mazin.marketer .download-area-inner .socials p,
.dark-version.home-mazin.marketer .social-tag-wrapper .socials p,
.dark-version.home-mazin.marketer .social-area-wrapper ul li a i,
.dark-version.home-mazin.marketer .about-contact-h2 .single-contact .details a.disc,
.dark-version.home-mazin.marketer .about-contact-h2 .single-contact .icon-area i,
.dark-version.home-mazin.marketer .tab-area-main-wrapper ul.nav-tabs li button {
    color: #fff;
}

.dark-version.home-mazin.marketer .download-area-inner,
.dark-version.home-mazin.marketer .social-tag-wrapper,
.dark-version.home-mazin.marketer .download-area-inner .socials ul li a,
.dark-version.home-mazin.marketer .social-tag-wrapper .socials ul li a,
.dark-version.home-mazin.marketer .single-service-h3,
.dark-version.home-mazin.marketer .single-tab-wrapper,
.dark-version.home-mazin.marketer .about-contact-h2 .single-contact .icon-area i,
.dark-version.home-mazin.marketer .counter-wrapper-h3 .single-counter-h3,
.dark-version.home-mazin.marketer .brand-main-wrapper .rts-single-brand,
.dark-version.home-mazin.marketer .rts-single-testimonials-h3 .top-area,
.dark-version.home-mazin.marketer .rts-single-testimonials-h3 .top-area .start-area,
.dark-version.home-mazin.marketer .rts-post-area-h2,
.dark-version.home-mazin.marketer .tab-area-main-wrapper ul,
.dark-version.home-mazin.marketer .single-univercity-exp-4 {
    background: linear-gradient(130.08deg, #0d0300 0%, #191919 100%);
    box-shadow: 0px 20px 40px #00000070;
}

.dark-version.home-mazin.marketer .brand-main-wrapper .rts-single-brand img {
    filter: contrast(0);
}

.dark-version.home-mazin.marketer .counter-wrapper-h3 .single-counter-h3 {
    border: 1px solid rgba(38, 38, 38, 0.77);
}

.dark-version.home-mazin.marketer button.close-icon-menu svg path,
.dark-version.home-mazin.marketer .photographer-home button.close-icon-menu svg path {
    stroke: #fff;
}

.dark-version.home-mazin.marketer .tab-area-main-wrapper ul.nav-tabs li button {
    border-right: 1px solid #1d1d1d;
}

.dark-version.home-mazin.marketer .single-univercity-exp-4,
.dark-version.home-mazin.marketer .single-award-area-marketer {
    border: 1px solid #313131;
}

.dark-version .banner-three-wrapper .right-area::before {
    background: rgba(255, 57, 14, 0.08);
}

.dark-version .banner-three-main::after {
    background: rgba(255, 57, 14, 0.08);
}

.dark-version.five .header--sticky.sticky {
    background: #2d2d2d !important;
}

body.photographer-home.dark-version {
    background: #2d2d2d !important;
}

body.photographer-home.dark-version .single-univercity-exp-4,
body.photographer-home.dark-version .single-award-area-marketer {
    border: 1px solid #474747;
}

body.photographer-home.dark-version .progress {
    background-color: #000000;
}

body.photographer-home.dark-version .title {
    color: #fff;
}

body.photographer-home.dark-version .home-2-banner-content,
body.photographer-home.dark-version .social-area-wrapper ul li a,
body.photographer-home.dark-version .rts-single-counter-up,
body.photographer-home.dark-version .single-tab-wrapper,
body.photographer-home.dark-version .about-contact-h2 .single-contact .icon-area i,
body.photographer-home.dark-version .rts-single-service-h2,
body.photographer-home.dark-version .single-product-area-h2,
body.photographer-home.dark-version .rts-post-area-h2,
body.photographer-home.dark-version .cta-main-wrapper,
body.photographer-home.dark-version .single-univercity-exp-4 {
    background: linear-gradient(130.08deg, #383528 0%, #191919 100%);
    box-shadow: 0px 20px 40px #00000070;
}

body.photographer-home.dark-version .social-area-wrapper ul li a i,
body.photographer-home.dark-version .rts-single-counter-up h3 span,
body.photographer-home.dark-version .tab-area-main-wrapper ul.nav-tabs li button,
body.photographer-home.dark-version .about-contact-h2 .single-contact .icon-area i,
body.photographer-home.dark-version .about-contact-h2 .single-contact .details a.disc,
body.photographer-home.dark-version .h2-title-area.text-center .pre-title {
    color: #fff;
}

body.photographer-home.dark-version .tab-area-main-wrapper ul {
    background: #2d2b23;
    box-shadow: none;
}

body.photographer-home.dark-version .h2-title-area.text-center .pre-title {
    border: 1px solid #fff;
}

body.photographer-home.dark-version .h2-title-area.text-center::after,
body.photographer-home.dark-version .h2-title-area::after {
    background: linear-gradient(180deg, #00000000 0%, #2d2d2d 100%);
}

body.photographer-home.dark-version .h2-title-area.text-center span.bg-text,
body.photographer-home.dark-version .h2-title-area span.bg-text {
    color: #d8d8d812;
}

body.photographer-home.dark-version .tab-area-main-wrapper ul.nav-tabs li button {
    border-right: 1px solid #e7e7e721;
}

body.photographer-home.dark-version .side-bar {
    background-color: black;
}

body.photographer-home.dark-version .side-bar .inner-wrapper .contact-info-area-wrapper .single .title {
    color: #d8d8d8;
}

body.photographer-home.dark-version ul#mobile-menu-active li a {
    color: #d8d8d8;
}

.home-four.home-mazin.dark-version .rts-banner-style-four .thumbnail .thumb-badge .right,
.home-four.home-mazin.dark-version .social-area-wrapper ul li a i,
.home-four.home-mazin.dark-version .banner-content-four span.pre-title,
.home-four.home-mazin.dark-version .title-area-home-4 .pre-title,
.home-four.home-mazin.dark-version .title-area-home-4 .title,
.home-four.home-mazin.dark-version .single-skill-inner-4 .inner-text .title,
.home-four.home-mazin.dark-version .accordion-skill-style .accordion-item .accordion-header button .left .disc .title,
.home-four.home-mazin.dark-version .accordion-skill-style .accordion-item .accordion-header button .right,
.home-four.home-mazin.dark-version .about-style-circle .details-about-area .experience-area p,
.home-four.home-mazin.dark-version .product-title-tab-b .tab-button-area ul li button,
.home-four.home-mazin.dark-version .rts-prodyct-style-four .thumbnail .icon i,
.home-four.home-mazin.dark-version .rts-single-testimonials-h3 .client-profile-area .name,
.home-four.home-mazin.dark-version .contact-form-style-four label,
.home-four.home-mazin.dark-version .rts-single-contact-style-four .details-area a,
.home-four.home-mazin.dark-version .accordion-skill-style .accordion-item .accordion-header button[aria-expanded="true"]::before,
.home-four.home-mazin.dark-version .accordion-skill-style .accordion-item .accordion-header button::before {
    color: #fff;
}

.home-four.home-mazin.dark-version .open-h2-menu-area.header-four,
.home-four.home-mazin.dark-version .rts-banner-style-four .thumbnail .thumb-badge,
.home-four.home-mazin.dark-version .socials.style-four ul li a,
.home-four.home-mazin.dark-version .banner-content-four span.pre-title,
.home-four.home-mazin.dark-version .title-area-home-4 .pre-title,
.home-four.home-mazin.dark-version .accordion-skill-style .accordion-item,
.home-four.home-mazin.dark-version .accordion-skill-style .accordion-item .accordion-header button::before,
.home-four.home-mazin.dark-version .skill-style-four-main-wrapper,
.home-four.home-mazin.dark-version .single-skill-inner-4,
.home-four.home-mazin.dark-version .about-style-circle,
.home-four.home-mazin.dark-version .rts-service-style-4,
.home-four.home-mazin.dark-version .rts-prodyct-style-four,
.home-four.home-mazin.dark-version .rts-prodyct-style-four .thumbnail .icon i,
.home-four.home-mazin.dark-version .rts-single-testimonials-h3.style-four .top-area,
.home-four.home-mazin.dark-version .rts-single-testimonials-h3.style-four .top-area .start-area,
.home-four.home-mazin.dark-version .brand-main-wrapper .rts-single-brand,
.home-four.home-mazin.dark-version .rts-post-area-h2 .content-area,
.home-four.home-mazin.dark-version .rts-post-area-h2.style-four,
.home-four.home-mazin.dark-version .rts-single-contact-style-four {
    background: linear-gradient(130.08deg, #383528 0%, #191919 100%);
    box-shadow: 0px 20px 40px #00000070;
    border: 1px solid #3b3b3b;
}

.home-four.home-mazin.dark-version .contact-form-style-four textarea,
.home-four.home-mazin.dark-version .contact-form-style-four input {
    background: #212121;
    border: 1px solid #000000;
}

.home-four.home-mazin.dark-version .rts-single-contact-style-four .icon-area img {
    filter: contrast(0);
}

.home-four.home-mazin.dark-version .accordion-skill-style .accordion-item .accordion-header button .left img {
    filter: contrast(0);
}

.home-four.home-mazin.dark-version .rts-contact-area .shape-two,
.home-four.home-mazin.dark-version .rts-contact-area .shape-one,
.home-four.home-mazin.dark-version .rts-about-area .shape-about-4,
.home-four.home-mazin.dark-version .rts-skill-area .side-shape,
.home-four.home-mazin.dark-version .shape-skill,
.home-four.home-mazin.dark-version .rts-banner-style-four::after,
.home-four.home-mazin.dark-version .rts-banner-style-four .banner-shape-4 {
    opacity: 0.02;
}

.home-four.home-mazin.dark-version .accordion-skill-style .accordion-item::after {
    border: 1px solid #3f3f3f;
}

.home-four.home-mazin.dark-version button.close-icon-menu svg path {
    stroke: #fff;
}

.home-four.home-mazin.dark-version .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .phone a:hover,
.home-four.home-mazin.dark-version .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .address a:hover,
.home-four.home-mazin.dark-version .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .mail a:hover,
.home-four.home-mazin.dark-version .rts-sidebar-menu-desktop .inner-wrapper .contact-info-area-wrapper .single .social-wrapper-two ul li a i:hover {
    color: #ffae00;
}

/* Footer area style  */
.footer-one-bg {
    background: #0d0d0d;
}

.footer-wrapper-container {
    max-width: 90%;
    margin: auto;
}

.footer-top-area-one {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-top-area-one {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .footer-top-area-one {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-top-area-one .single-wized {
        margin-bottom: 50px;
    }

    .footer-top-area-one .single-wized:last-child {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 767px) {
    .footer-top-area-one .single-wized {
        margin-bottom: 40px;
    }

    .footer-top-area-one .single-wized:last-child {
        margin-bottom: 0;
    }
}

.footer-top-area-one .single-wized h2.title {
    font-weight: 400;
    font-size: 60px;
    line-height: 70px;
    color: #fff;
    margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
    .footer-top-area-one .single-wized h2.title {
        font-size: 40px;
        line-height: 60px;
    }
}

@media only screen and (max-width: 479px) {
    .footer-top-area-one .single-wized h2.title {
        font-size: 30px;
        line-height: 44px;
    }
}

.footer-top-area-one .single-wized .contact-footer-btn {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    color: #fff;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.footer-top-area-one .single-wized .contact-footer-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0%;
    width: 100%;
    border-radius: 100%;
    background: #000;
    transition: 0.6s;
    z-index: -1;
}

.footer-top-area-one .single-wized .contact-footer-btn:hover {
    color: #fff;
    border: none;
    box-shadow: 0px 3px 31px 3px rgba(98, 98, 98, 0.137);
}

.footer-top-area-one .single-wized .contact-footer-btn:hover::after {
    height: 100%;
}

.footer-top-area-one .single-wized .contact-area .title {
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    text-transform: uppercase;
    color: #fff;
}

.footer-top-area-one .single-wized .contact-area a {
    display: block;
    transition: 0.3s;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 7px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.footer-top-area-one .single-wized .contact-area a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0px;
    width: 100%;
    z-index: -1;
    background: var(--color-primary);
    transition: 0.3s;
}

.footer-top-area-one .single-wized .contact-area a:hover {
    color: var(--color-primary);
}

.rts-footer-social-area {
    border-top: 1px solid #202020;
    border-bottom: 1px solid #202020;
}

.rts-footer-social-area .footer-social-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .rts-footer-social-area .footer-social-wrapper {
        justify-content: center;
    }
}

@media only screen and (max-width: 479px) {
    .rts-footer-social-area .footer-social-wrapper {
        justify-content: flex-start;
    }
}

.rts-footer-social-area .footer-social-wrapper a {
    position: relative;
}

@media only screen and (max-width: 767px) {
    .rts-footer-social-area .footer-social-wrapper a {
        margin-right: 20px;
        margin-bottom: 15px;
    }
}

.rts-footer-social-area .footer-social-wrapper a::after {
    position: absolute;
    content: "";
    left: -28px;
    bottom: -21px;
    width: 150px;
    height: 65px;
    transition: 0.3s;
    opacity: 0;
    background: radial-gradient(50% 50% at 50% 50%,
            rgba(253, 1, 188, 0.5) 0%,
            rgba(13, 13, 13, 0.5) 100%);
}

.rts-footer-social-area .footer-social-wrapper a:hover::after {
    opacity: 1;
}

.rts-footer-social-area .footer-social-wrapper a.facebook::after {
    background: radial-gradient(50% 50% at 50% 50%,
            rgba(1, 161, 253, 0.5) 0%,
            rgba(13, 13, 13, 0.5) 100%);
}

.rts-footer-social-area .footer-social-wrapper a.twitter::after {
    background: radial-gradient(50% 50% at 50% 50%,
            rgba(0, 47, 177, 0.562) 0%,
            rgba(13, 13, 13, 0.5) 100%);
}

.rts-footer-social-area .footer-social-wrapper a.pinterest::after {
    background: radial-gradient(50% 50% at 50% 50%,
            rgba(211, 0, 0, 0.5) 0%,
            rgba(13, 13, 13, 0.5) 100%);
}

.rts-footer-social-area .footer-social-wrapper a.linkedin::after {
    background: radial-gradient(50% 50% at 50% 50%,
            #0073b163 0%,
            rgba(13, 13, 13, 0.5) 100%);
}

.rts-footer-social-area .footer-social-wrapper a.discord::after {
    background: radial-gradient(50% 50% at 50% 50%,
            #0e005c63 0%,
            rgba(13, 13, 13, 0.5) 100%);
}

.rts-copyright-area .inner-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

@media only screen and (max-width: 575px) {
    .rts-copyright-area .inner-wrapper img {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .rts-copyright-area .inner-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

.rts-copyright-area p.copyright {
    margin-bottom: 0;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

@media only screen and (max-width: 479px) {
    .rts-copyright-area p.copyright {
        text-align: center;
    }
}

.rts-copyright-area p.copyright a {
    transition: 0.3s;
}

.bg-footer-two {
    background: #141414;
}

.rts-footer-area.footer-two .footer-two-main-wrapper {
    display: flex;
    align-items: flex-start;
}

.footer-two-single.logo-area a img {
    margin-bottom: 33px;
}

.footer-two-single.logo-area p.disc-footer {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #74787c;
}

.footer-mid-wrapper-two {
    display: flex;
    align-items: flex-start;
    margin-left: 170px;
}

@media only screen and (max-width: 1199px) {
    .footer-mid-wrapper-two {
        margin-left: 74px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-mid-wrapper-two {
        margin-left: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-mid-wrapper-two {
        margin-left: 0;
        margin-top: 15px;
        margin-bottom: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer-mid-wrapper-two .title {
    color: #fff;
}

.footer-mid-wrapper-two .body ul {
    padding-left: 0;
    list-style: none;
}

.footer-mid-wrapper-two .single-footer-area {
    margin-right: 80px;
}

@media only screen and (max-width: 1199px) {
    .footer-mid-wrapper-two .single-footer-area {
        margin-right: 0;
    }
}

.footer-mid-wrapper-two .single-footer-area .title {
    margin-bottom: 37px;
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
}

.footer-mid-wrapper-two .single-footer-area .body.location ul li a {
    margin-bottom: 15px;
    display: block;
    transition: 0.3s;
}

.footer-mid-wrapper-two .single-footer-area .body.location ul li a:hover {
    color: #fff;
}

.footer-mid-wrapper-two .single-footer-area .body.location ul li a.active {
    color: #fff;
    font-weight: 700;
}

.footer-mid-wrapper-two .single-footer-area .body ul li a {
    transition: 0.3s;
}

.footer-mid-wrapper-two .single-footer-area .body ul li a:hover {
    color: #fff;
}

.footer-mid-wrapper-two .single-footer-area:last-child {
    margin-right: 0;
}

.footer-two-single-gallery-area .gallery-image a img {
    margin-bottom: 7px;
    margin-right: 4px;
    width: 90px;
    height: 85px;
}

.copy-right-f-two {
    border-top: 1px solid #202020;
    padding-top: 30px;
    padding-bottom: 35px;
}

.copy-right-f-two p.disc {
    color: #ffffff;
}

@media only screen and (max-width: 575px) {
    .copy-right-f-two p.disc {
        text-align: center;
    }
}

.copy-right-f-two p.disc a {
    transition: 0.3s;
}

.copy-right-f-two p.disc a:hover {
    color: var(--color-primary);
}

.copy-right-f-two .nav {
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
    .copy-right-f-two .nav {
        justify-content: center;
        margin-left: -30px;
        margin-top: 10px;
    }
}

.copy-right-f-two .nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.copy-right-f-two .nav ul li {
    margin-left: 40px;
    margin-top: 0;
    margin-bottom: 0;
}

@media only screen and (max-width: 479px) {
    .copy-right-f-two .nav ul li {
        margin-left: 26px;
    }
}

.copy-right-f-two .nav ul li a {
    text-transform: uppercase;
    color: #fff;
}

@media only screen and (max-width: 479px) {
    .copy-right-f-two .nav ul li a {
        font-size: 12px;
    }
}

.footer-bg-3 {
    background: #141414;
}

@media only screen and (max-width: 767px) {
    .footer-bg-3 {
        padding: 0 15px;
    }
}

.footer-three .footer-single-wized a.logo img {
    margin-bottom: 30px;
}

.footer-three .footer-single-wized p.disc {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #74787c;
}

.footer-three-mid.footer-single-wized .title {
    font-weight: 800;
    font-size: 24px;
    line-height: 33px;
    color: #ffffff;
}

.footer-two-single-gallery-area.three .title {
    color: #fff;
    margin-bottom: 30px;
}

.mid-footer-wrapper-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -2px 0;
}

@media only screen and (max-width: 767px) {
    .mid-footer-wrapper-4 {
        flex-direction: column;
        align-items: flex-start;
    }
}

.mid-footer-wrapper-4 .social-inner {
    margin-left: 90px;
}

@media only screen and (max-width: 1199px) {
    .mid-footer-wrapper-4 .social-inner {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .mid-footer-wrapper-4 .social-inner {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .mid-footer-wrapper-4 .social-inner {
        margin-left: 30px;
    }
}

.mid-footer-wrapper-4 .social-inner ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.mid-footer-wrapper-4 .social-inner ul li {
    margin: 0;
}

.mid-footer-wrapper-4 .social-inner ul li a {
    padding: 45px 0;
    border-top: 1px solid #212121;
    border-right: 1px solid #212121;
    border-left: 1px solid #212121;
    display: block;
    color: #fff;
    width: 171px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media only screen and (max-width: 1199px) {
    .mid-footer-wrapper-4 .social-inner ul li a {
        padding: 30px 0;
    }
}

.mid-footer-wrapper-4 .social-inner ul li a::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: -1;
    transition: 0.3s;
    background: #000;
}

.mid-footer-wrapper-4 .social-inner ul li a:hover {
    border-color: #000;
    box-shadow: 0px 4px 22px rgba(255, 255, 255, 0.048);
}

.mid-footer-wrapper-4 .social-inner ul li a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
    top: 0;
}

.footer-four-left.footer-single-wized.ptb--100 {
    margin-top: 7px;
}

.footer-three-mid.footer-single-wized .title {
    margin-bottom: 30px;
}

.footer-three-mid.footer-single-wized .body.contact-area {
    margin-right: 60px;
}

.footer-three-mid.footer-single-wized .body.contact-area .single-address {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.footer-three-mid.footer-single-wized .body.contact-area .single-address .icon {
    margin-right: 10px;
}

.footer-three-mid.footer-single-wized .body.contact-area .single-address .icon i {
    width: 42px;
    height: 42px;
    display: block;
    background: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-primary-m);
}

.footer-three-mid.footer-single-wized .body.contact-area .single-address .discription p {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 0;
}

.footer-three-mid.footer-single-wized .body.contact-area .single-address .discription span {
    font-weight: 500;
    font-size: 14px;
    color: #74787c;
    line-height: 19px;
}

.footer-copyright-four {
    padding-top: 60px;
    border-top: 1px solid #212121;
    padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .footer-copyright-four {
        padding: 30px 0;
    }
}

.footer-copyright-four .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media only screen and (max-width: 767px) {
    .footer-copyright-four .inner {
        flex-direction: column;
        gap: 15px;
    }
}

.footer-copyright-four .inner .left p {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 22px;
}

@media only screen and (max-width: 479px) {
    .footer-copyright-four .inner .left p {
        text-align: center;
    }
}

.footer-copyright-four .inner .right .menu ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.footer-copyright-four .inner .right .menu ul li {
    margin: 0;
    margin-left: 40px;
}

@media only screen and (max-width: 767px) {
    .footer-copyright-four .inner .right .menu ul li {
        margin-left: 0;
    }
}

.footer-copyright-four .inner .right .menu ul li a {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    transition: 0.3s;
}

.footer-copyright-four .inner .right .menu ul li a:hover {
    color: var(--color-primary-3);
}

.designer-home .footer-copyright-four .inner .right .menu ul li a:hover {
    color: #ffae00;
}

.footer-three.four .footer-three-mid.footer-single-wized .body.contact-area .single-address .icon i {
    color: #ffae00;
}

.rts-contact-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: none;
}

@media (max-width: 991px) {
    .rts-contact-area {
        background: #1f1f21;
    }
}

.rts-contact-area .shape-one {
    position: absolute;
    right: -5%;
    bottom: -5%;
    z-index: -1;
}

.rts-contact-area .shape-two {
    position: absolute;
    left: -20%;
    bottom: -10%;
    z-index: -1;
}

.rts-contact-area .slider-div {
    background: #1f1f21;
    float: right;
    min-width: 132%;
}

@media (max-width: 991px) {
    .rts-contact-area .slider-div {
        min-width: 100%;
    }
}

.rts-contact-area .slider-div .left-contact-area {
    padding-left: 200px;
}

@media (max-width: 991px) {
    .rts-contact-area .slider-div .left-contact-area {
        padding-left: 0;
    }
}

.rts-contact-area .slider-div .left-contact-area .left-title-mazin .subtitle span {
    color: #ffffff;
}

.rts-contact-area .slider-div .left-contact-area .left-title-mazin .title {
    color: #ffffff;
}

.rts-contact-area .slider-div .left-contact-area form .btn-primary-m {
    background: var(--color-primary-m);
    border-radius: 0;
    border: none;
}

.rts-contact-area .slider-div .left-contact-area form .btn-primary-m::after {
    border-radius: 0;
    background: #1f1f21;
    border: 0px solid rgba(255, 255, 255, 0.1);
}

.rts-contact-area .slider-div .left-contact-area form .btn-primary-m:hover::after {
    border-width: 1px;
}

.rts-contact-area .map-area-mazin {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 88%;
    -webkit-filter: grayscale(100%);
}

@media (max-width: 991px) {
    .rts-contact-area .map-area-mazin {
        display: none;
    }
}

.bg-footer-mazin {
    background: #1f1f21;
    padding-top: 90px;
}

.footer-top-info-mazin {
    display: flex;
    align-items: flex-start;
    gap: 110px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 1199px) {
    .footer-top-info-mazin {
        flex-direction: column;
        gap: 30px;
    }
}

.footer-top-info-mazin .logo-social-area .social-area-footer-mazen ul {
    padding-left: 0;
    margin: 0;
    display: flex;
    align-items: center;
    list-style: none;
    margin-top: 30px;
}

.footer-top-info-mazin .logo-social-area .social-area-footer-mazen ul li {
    margin-right: 10px;
}

.footer-top-info-mazin .logo-social-area .social-area-footer-mazen ul li a i {
    display: block;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #777777;
    transition: 0.3s;
    text-align: center;
}

.footer-top-info-mazin .logo-social-area .social-area-footer-mazen ul li a:hover i {
    color: #fff;
    background: var(--color-primary-m);
    transform: translateY(-5px);
}

.footer-top-info-mazin .footer-single-wized .title {
    color: #ffffff;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: -0.02em;
    margin-top: 20px;
}

@media only screen and (max-width: 1199px) {
    .footer-top-info-mazin .footer-single-wized .title {
        margin-bottom: 5px;
        margin-top: 0;
    }
}

.footer-top-info-mazin .footer-single-wized a.mail {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    transition: 0.3s;
    letter-spacing: 0.02em;
}

.footer-top-info-mazin .footer-single-wized a.mail:hover {
    color: var(--color-primary-m);
}

.footer-bottom-mazin {
    display: flex;
    align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-bottom-mazin {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-bottom-mazin {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

.footer-bottom-mazin .left {
    flex-basis: 50%;
}

.footer-bottom-mazin .left .title {
    font-weight: 500;
    font-size: 32px;
    line-height: 46px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 0;
}

@media only screen and (max-width: 575px) {
    .footer-bottom-mazin .left .title {
        font-size: 22px;
    }
}

.footer-bottom-mazin .left .title a {
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-mazin .left .title a:hover {
    color: var(--color-primary-m);
}

.footer-bottom-mazin .right {
    flex-basis: 50%;
}

.footer-bottom-mazin .right .input-area {
    position: relative;
}

.footer-bottom-mazin .right .input-area button {
    position: absolute;
    right: 10px;
    top: 35%;
    transform: translateY(-50%);
    max-width: max-content;
}

.footer-bottom-mazin .right .input-area button i {
    font-size: 32px;
    transform: rotate(90deg);
}

.footer-bottom-mazin .right .input-area input {
    padding-left: 0;
    font-weight: 400;
    font-size: 32px;
    line-height: 46px;
    color: rgba(255, 255, 255, 0.6);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-mazin .right .input-area input::placeholder {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-bottom-mazin .right .input-area input:focus {
    border-bottom: 1px solid #ffffff;
}

.rts-copyright-mazin {
    background: #262628;
}

.rts-copyright-mazin p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
}

.rts-copyright-mazin p a {
    transition: 0.3s;
}

.rts-copyright-mazin p span {
    color: #ffff;
}

.swiper-button-wrapper-project-ho-3 {
    display: none;
}

.footer-three-mid.footer-single-wized .body.contact-area .single-address .icon i {
    color: #ff390e;
}

.six .footer-top-info-mazin .logo-social-area .social-area-footer-mazen ul li a:hover i {
    color: #fff !important;
    background: var(--color-primary);
}

.six .bg-footer-mazin {
    padding-top: 120px;
}

.blog .square:hover {
    -webkit-transform: translate(20px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog .square {
    width: 400px;
    height: 500px;
    background: white;
    border-radius: 4px;
    box-shadow: 0px 5px 20px #d9dbdf;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog .mask {
    clip: rect(0px, 460px, 220px, 0px);
    border-radius: 4px;
    position: relative;
}

.blog img {
    width: 400px;
    height: 230px;
    object-fit: cover;
}

.blog .h1 {
    margin: auto;
    text-align: left;
    margin-top: 20px;
    padding-left: 30px;

    font-family: "Merriweather", serif;
    font-size: 24px;
}

.blog p {
    text-align: justify;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    color: #c8c8c8;
    line-height: 18px;
}

.blog .button {
    background-color: #ffbe62;
    color: white;
    width: 90px;
    padding: 10px 18px;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 70px;
    font-size: 12px;
    cursor: pointer;
    font-family: "merriweather";
}

.blog .content h6 {
    padding: 0 26px;
    margin-top: 22px;
}

.breadcrumb-top {
    background-color: #e7dbc3;
    padding: 50px 0;
    text-align: center;
}

ul {
    list-style: none;
}

.recent-post-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-recent-post {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
}

.single-recent-post img {
    height: 100px;
    width: 150px;
    object-fit: cover;
}

.single-recent-post .recent-post-content h5 {
    font-size: 16px;
}

.blog-details-wrap .blog-details-top img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.blog-details-content-wrap ul {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.breadcrumb {
    display: flex;
    border-radius: 10px;
    margin: auto;
    text-align: center;
    top: 50%;
    width: 100%;
    height: 40px;
    transform: translateY(-50%);
    z-index: 1;
    /* justify-content: center; */
}

.breadcrumb__item {
    height: 100%;
    background-color: white;
    color: #252525;
    font-family: "Oswald", sans-serif;
    border-radius: 7px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transform: skew(-21deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
    margin: 5px;
    padding: 0 40px;
    cursor: pointer;
}

.breadcrumb__item:hover {
    background: #dab032;
    color: #fff;
}

.breadcrumb__inner {
    display: flex;
    flex-direction: column;
    margin: auto;
    z-index: 2;
    transform: skew(21deg);
}

.breadcrumb__title {
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

@media all and (max-width: 1000px) {
    .breadcrumb {
        height: 35px;
    }

    .breadcrumb__title {
        font-size: 11px;
    }

    .breadcrumb__item {
        padding: 0 30px;
    }
}

@media all and (max-width: 710px) {
    .breadcrumb {
        height: 30px;
    }

    .breadcrumb__item {
        padding: 0 20px;
    }
}

.services-inner .single-service img {
    height: 20rem;
    border-radius: 0;
    width: 100%;
    object-fit: cover;
}

#blog .blog-title h1 {
    font-size: 40px;
    line-height: 1.23;
    margin-bottom: 40px;
}

figure.snip1390 {
    font-family: "Roboto", Arial, sans-serif;
    position: relative;
    overflow: hidden;
    margin: 10px;
    color: #000000;
    text-align: center;
    font-size: 16px;
    background-color: #2c3447;
    padding: 30px;
    background-image: linear-gradient(-25deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(255, 255, 255, 0.1) 100%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

figure.snip1390 *,
figure.snip1390 *:before,
figure.snip1390 *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

figure.snip1390 figcaption {
    width: 100%;
}

figure.snip1390 h2,
figure.snip1390 h4,
figure.snip1390 blockquote {
    margin: 0;
}

figure.snip1390 h2,
figure.snip1390 h4 {
    font-weight: 300;
}

figure.snip1390 h2 {
    color: #ffffff;
    font-size: 36px;
}

figure.snip1390 h4 {
    color: #a6a6a6;
    font-size: 24px;
}

figure.snip1390 blockquote {
    font-size: 1em;
    padding: 45px 20px 40px 50px;
    margin-top: 30px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: inset -1.4px -1.4px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    height: 300px;
    font-family: sans-serif;
}

figure.snip1390 blockquote:before {
    font-family: "FontAwesome";
    content: "\201C";
    position: absolute;
    font-size: 70px;
    opacity: 0.25;
    font-style: normal;
    top: 0px;
    left: 20px;
}

figure.snip1390 .profile {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    object-fit: cover;
    border: solid 5px #a6a57a;
}

.swiper {
    width: 100%;
    height: 100%;
}

.gallery-item img {
    height: 100px;
    width: 200px;
    object-fit: cover;
}

.button.cv {
    border: 1px solid transparent;
    background-color: #ffc107;
    color: white;
}

#menu-btn {
    display: none;
}

.mobile-container {
    max-width: 480px;
    margin: auto;
    color: white;
    border-radius: 10px;
}

.topnav {
    background-color: #e3e3e3;
}

.topnav #myLinks {
    display: none;
    margin-top: 89px;
}

.topnav a {
    color: #000;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    display: block;
}

.topnav a.icon {
    display: block;
    position: absolute;
    right: 0;
    top: 20px;
}

#blog {
    padding-top: 3rem;
}

@media screen and (max-width: 768px) {
    .rts-header-five {
        height: 90px;
    }

    .rts-about-area.home-six #sidebar {
        position: relative;
        width: auto;
    }

    .rts-about-area.home-six .about-area-inner .sidebar-area {
        margin: 30px 0;
    }

    figure.snip1390 {
        height: auto;
    }

    figure.snip1390 blockquote {
        height: auto;
    }

    .blog .square {
        width: auto;
    }

    .blog img {
        width: 300px;
    }

    .blog-d {
        margin: 20px auto;
    }

    #menu-btn {
        display: block;
    }

    .logo-area h2 {
        margin-bottom: 22rem;
    }

    .single-testimonials-card {
        height: auto;
    }

    p {
        font-size: 16px;
    }

    .banner-inner-one p.disc {
        font-size: 16px;
    }

    .banner-inner-one h1.title {
        font-size: 40px;
    }

    .rts-btn {
        padding: 14px 25px;
    }

    .rts-about-area.home-six .about-area-inner .about-right-content .services-area .title {
        font-size: 36px;
    }

    .rts-about-area.home-six .about-area-inner .about-right-content .services-area {
        margin-top: 50px;
    }

    #blog .blog-title h1 {
        font-size: 36px;
    }

    .blog p {
        font-size: 14px;
    }

    #blog {
        padding-top: 0;
    }

    .rts-about-area.home-six .about-area-inner .about-right-content .testimonial-area {
        margin-top: 50px;
    }

    .rts-about-area.home-six .about-area-inner .about-right-content .clients-area {
        margin-top: 50px;
    }

    .rts-about-area.home-six .about-area-inner .about-right-content .contact-area {
        margin-top: 50px;
        padding: 0 20px;
    }

    .footer-top-info-mazin .footer-single-wized .title {
        font-size: 20px;
    }

    .footer-top-info-mazin {
        gap: 20px;
    }

    .bg-footer-mazin {
        padding-top: 50px;
    }

    input#email,
    input#email::placeholder {
        font-size: 16px;
    }

    .blog .square {
        height: auto;
        padding-bottom: 20px;
    }

    figure.snip1390 h2 {
        font-size: 24px;
    }

    figure.snip1390 h4 {
        font-size: 18px;
    }
}

img.project-img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
}

.center {
    text-align: center;
}

/* Section Styling */
.process-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
}

.header-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* .header-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
} */

/* Process Steps */
.process-steps {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px;
}

.episode {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.episode:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.episode__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #176077;
    margin-right: 20px;
    min-width: 60px;
    text-align: center;
    background: #e6f2ff;
    padding: 10px;
    border-radius: 10px;
}

.episode__content {
    flex: 1;
}

.episode__content .title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.episode__content .desc {
    font-size: 1.8rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-title {
        font-size: 2rem;
    }

    .episode {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .episode__number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .episode__content .title {
        font-size: 2rem;
    }

    .episode__content .desc {
        font-size: 1.8rem;
    }
}

header h1 {
    color: #007bff;
    font-size: 3.5rem;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #176077;
    color: white;
    border-radius: 10px;
    padding: 4px 2px;
}

.card-title {
    color: #ffff;
    font-weight: bold;
    text-align: center;
    padding: 10px 3px;
}

.card-text {
    font-size: 16px;
    color: #ffff;
    text-align: justify;
}

.icon {
    font-size: 50px;
}

.card-body {
    text-align: center;
}

.timeline-item {
    padding: 3em 2em 2em;
    position: relative;
    color: #ffffff;
    border-left: 2px solid rgba(0, 0, 0, 0.3);
    background: #176077;
    margin: 15px;
    border-radius: 16px;
}

.timeline-item h4 {
    color: white;
}

.timeline-item p {
    font-size: 1rem;
}

.timeline-item::before {
    content: attr(date-is);
    position: absolute;
    left: 2em;
    font-weight: bold;
    top: 1em;
    display: block;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.timeline-item::after {
    width: 10px;
    height: 10px;
    display: block;
    top: 2em;
    position: absolute;
    left: -7px;
    border-radius: 10px;
    content: "";
    border: 2px solid rgba(0, 0, 0, 0.3);
    background: white;
}

.timeline-item:last-child {
    border-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0)) 1 100%;
}

.header-title {
    color: #176077;
}

.about-img {
    width: 100%;
    height: 75%;
}

p.disc {
    color: #0d0d0d;
    font-size: 18px;
    text-align: justify;
}

p.disc i {
    color: #176077;
    font-size: 24px;
}

.content p {
    text-align: justify;
}


#contact-content {
    background: antiquewhite;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2px 50px;
}

.ag-format-container {
    width: 1142px;
    margin: 0 auto;
}

.ag-courses_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    padding: 50px 0;
}

.ag-courses_item {
    -ms-flex-preferred-size: calc(33.33333% - 30px);
    flex-basis: calc(33.33333% - 30px);

    margin: 0 15px 30px;

    overflow: hidden;

    border-radius: 28px;
}

.ag-courses-item_link {
    display: block;
    padding: 30px 20px;
    background-color: #121212;

    overflow: hidden;

    position: relative;
}

.ag-courses-item_link:hover,
.ag-courses-item_link:hover .ag-courses-item_date {
    text-decoration: none;
    color: #FFF;
}

.ag-courses-item_link:hover .ag-courses-item_bg {
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
    opacity: 0.6;
}

.ag-courses-item_title {
    min-height: 87px;
    margin: 0 0 25px;

    overflow: hidden;

    font-weight: bold;
    font-size: 30px;
    color: #FFF;

    z-index: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ag-courses-item_date-box {
    font-size: 18px;
    color: #FFF;

    z-index: 2;
    position: relative;
}

.ag-courses-item_date {
    font-weight: bold;
    color: #f9b234;

    -webkit-transition: color .5s ease;
    -o-transition: color .5s ease;
    transition: color .5s ease
}

.ag-courses-item_bg {
    height: 128px;
    width: 128px;
    background-color: #f9b234;

    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;

    border-radius: 50%;

    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.ag-courses_item:nth-child(2n) .ag-courses-item_bg {
    background-color: #3ecd5e;
}

.ag-courses_item:nth-child(3n) .ag-courses-item_bg {
    background-color: #e44002;
}

.ag-courses_item:nth-child(4n) .ag-courses-item_bg {
    background-color: #952aff;
}

.ag-courses_item:nth-child(5n) .ag-courses-item_bg {
    background-color: #cd3e94;
}

.ag-courses_item:nth-child(6n) .ag-courses-item_bg {
    background-color: #4c49ea;
}



@media only screen and (max-width: 979px) {
    .ag-courses_item {
        -ms-flex-preferred-size: calc(50% - 30px);
        flex-basis: calc(50% - 30px);
    }

    .ag-courses-item_title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .ag-format-container {
        width: 96%;
    }

}

@media only screen and (max-width: 639px) {
    .ag-courses_item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    .ag-courses-item_title {
        min-height: 72px;
        line-height: 1;

        font-size: 24px;
    }

    .ag-courses-item_link {
        padding: 22px 40px;
    }

    .ag-courses-item_date-box {
        font-size: 16px;
    }
}



.certified ol {
    width: 100%;
    margin-inline: auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    list-style: none;
}

.certified li {
    --frontColor: white;
    --inlineP: 0.5rem;
    --borderR: 4rem;
    --arrowW: 2rem;
    --arrowH: 1.5rem;
    counter-increment: cardnr;
    display: grid;
    grid-template:
        "title"
        "descr" 1fr;
    margin-inline: var(--inlineP);
    margin-bottom: calc(var(--borderR));
    position: relative;
    width: 25%;
}

.certified li .title,
.certified li .descr {
    background: var(--frontColor);
    padding-inline: 1rem;
    padding-bottom: 1rem;
}

.certified li .title {
    color: var(--accent-color);
    text-align: center;
    padding-bottom: 0.5rem;
}

.certified li .title,
.certified li .descr {
    filter: drop-shadow(0.125rem 0.125rem 0.075rem rgba(0, 0, 0, 0.25));
}

.certified li .title {
    grid-area: title;
    font-size: 24px;
    font-weight: bold;
}

.certified li .descr {
    grid-area: descr;
    font-size: 15px;
    text-align: center;
}

.certified li .descr::before {
    content: "";
    width: var(--arrowW);
    height: var(--arrowH);
    position: absolute;
    right: 1.5rem;
    top: 100%;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.certified li::after {
    content: counter(cardnr, decimal-leading-zero);
    position: absolute;
    z-index: -1;

    left: calc(var(--inlineP) * -1);
    right: calc(var(--inlineP) * -1);
    top: var(--borderR);
    bottom: calc(var(--borderR) * -1);

    display: flex;
    align-items: flex-end;
    background: var(--accent-color);
    background-image: linear-gradient(160deg,
            rgba(255, 255, 255, 0.25),
            transparent 25% 75%,
            rgba(0, 0, 0, 0.25));
    border-radius: 0 0 var(--borderR) 0;

    --pad: 1rem;
    padding: var(--pad);
    font-size: calc(var(--borderR) - var(--pad) * 2);
    color: white;
}

.certified li::before {
    content: "";
    position: absolute;
    height: var(--borderR);
    top: calc(100% + var(--borderR) - 2px);
    left: calc(var(--inlineP) * -1);
    right: calc(var(--inlineP) * -1);
    border-radius: 0 var(--borderR) 0 0;

    background-image: linear-gradient(var(--accent-color), transparent 60%);
    opacity: 0.5;
    filter: blur(2px);
}

.about-item {
    margin: 35px 0;
}

.about-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Banner Section */
.banner-section {
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
}

.banner-content p {
    font-size: 2rem;
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #176077;
}

.about-section p {
    font-size: 2rem;
    line-height: 1.8;
}

/* Zig-Zag Layout */
.flex-row-reverse {
    flex-direction: row-reverse;
}