@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
:root {
    --color-primary: #333d99;
    --color-secondary: #1f1f25;
    --color-body: #6b6b6b;
    --color-heading-1: #111032;
    --color-white: #fff;
    --color-border: #ddd8f9;
    --border-width: 1px;
    --radius: 10px;
    --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: "Syne", sans-serif;
    --font-secondary: "Rubik", sans-serif;
    --font-3: "fontawesome";
    --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: 60px;
    --h2: 48px;
    --h3: 30px;
    --h4: 26px;
    --h5: 24px;
    --h6: 18px;
}

* {
    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: "Rubik", sans-serif;
    color: var(--color-body);
    font-weight: var(--p-regular);
    position: relative;
    overflow-x: hidden;
    margin: 0;
}
@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: "Syne", sans-serif;
    line-height: 1.4074;
    color: var(--color-heading-1);
}

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

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

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

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

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

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

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

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

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

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

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

p {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
    font-weight: var(--p-regular);
    color: var(--color-body);
    margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
    p {
        margin: 0 0 20px;
        font-size: 14px;
        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: "Syne", 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: 1.3;
    }
}
@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: 1.4;
    }
}
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 30px;
        line-height: 1.3;
    }
}
@media only screen and (max-width: 575px) {
    h1 {
        font-size: 28px;
        line-height: 1.3;
    }
}
@media only screen and (max-width: 479px) {
    h1 {
        font-size: 26px;
        line-height: 1.3;
    }
}

@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: 1.4;
    }
}
@media only screen and (max-width: 767px) {
    h2 {
        font-size: 32px;
        line-height: 1.4;
    }
}
@media only screen and (max-width: 575px) {
    h2 {
        font-size: 32px;
        line-height: 1.4;
    }
}
@media only screen and (max-width: 479px) {
    h2 {
        font-size: 26px;
        line-height: 1.4;
    }
}

@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
==========================*/
.mb_dec--25 {
    margin-bottom: -25px;
}

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

.m--0 {
    margin: 0;
}

.rts-section-gap {
    padding: 120px 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: 60px 0;
    } */
    .rts-section-gap {
        padding: 0px 20px;
    }
}

.rts-section-gapBottom {
    padding-bottom: 120px;
}
@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: 100px 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: 100px;
}
@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: 100px;
}
@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;
    }
}

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

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

.rts-section-gap3Top {
    padding-top: 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rts-section-gap3Top {
        padding-top: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .rts-section-gap3Top {
        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;
    }
}
.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 (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;
    }
}

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

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

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

.g-40 {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
}

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

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

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

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

[hidden] {
    display: none;
}

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

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

a:focus {
    outline: none;
}

address {
    margin: 0 0 24px;
}

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

b,
strong {
    font-weight: bold;
}

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

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

kbd,
ins {
    color: #ffffff;
}

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

small {
    font-size: smaller;
}

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

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

dd {
    margin: 0 15px 15px;
}

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

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

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

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

ol ul {
    margin-bottom: 0;
}

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

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

figure {
    margin: 0;
}

form {
    margin: 0;
}

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

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

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

button,
input {
    line-height: normal;
}

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

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

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

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

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

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

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

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

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

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

del {
    color: #333;
}

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

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

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

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

dd {
    margin: 0 15px 15px;
}

caption {
    caption-side: top;
}

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

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

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

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

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

blockquote blockquote {
    margin-right: 0;
}

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

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

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

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

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

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

input[type="checkbox"],
input[type="radio"] {
    opacity: 1;
    position: relative;
    height: auto !important;
    max-width: 18px;
    width: max-content;
}
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.jpg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-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 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);
    }
}
@keyframes slideInLeft2 {
    from {
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 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);
    }
}
@keyframes slideInUp2 {
    from {
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0);
        visibility: hidden;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}
@keyframes slideInUp3 {
    from {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
        visibility: hidden;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}
[data-aos="slideInUp2"] {
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos="slideInUp2"].aos-animate {
    opacity: 1;
}
@media screen and (min-width: 768px) {
    [data-aos="slideInUp2"] {
        transform: translateY(30px);
    }
    [data-aos="slideInUp2"].aos-animate {
        transform: translateY(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);
    }
}
.reveal-item {
    position: relative;
    display: block;
    overflow: hidden;
}

.reveal-item .reveal-animation {
    position: absolute;
    top: 0;
    width: 100%;
    height: 101%;
    background: var(--color-primary);
}

.reveal-item .reveal-animation::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bs-gray-400);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
}

.reveal-animation.reveal-primary::before {
    background: #0c0c0a;
}

.reveal-animation.reveal-dark::before {
    background: #000;
}

.reveal-animation.reveal-white::before {
    background: #000;
}

.reveal-animation.reveal-top.aos-animate::before,
.reveal-animation.reveal-bottom.aos-animate::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.reveal-animation.reveal-start.aos-animate::before,
.reveal-animation.reveal-end.aos-animate::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.reveal-animation.reveal-top::before {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}

.reveal-animation.reveal-start::before {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
}

.reveal-animation.reveal-end::before {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}

.reveal-animation.reveal-bottom::before {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
}

[data-aos="reveal-top"],
[data-aos="reveal-start"],
[data-aos="reveal-end"],
[data-aos="reveal-bottom"] {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

[data-aos="reveal-top"] {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

[data-aos="reveal-top"].aos-animate {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
}

[data-aos="reveal-start"] {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

[data-aos="reveal-start"].aos-animate {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}

[data-aos="reveal-end"] {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

[data-aos="reveal-end"].aos-animate {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
}

[data-aos="reveal-bottom"] {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

[data-aos="reveal-bottom"].aos-animate {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
}

[data-aos="reveal-item"] {
    visibility: hidden;
    -webkit-transition-property: visibility;
    transition-property: visibility;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

[data-aos="reveal-item"].aos-animate {
    visibility: visible;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(1.5, 1.5, 1.5);
        transform: scale3d(1.5, 1.5, 1.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.scaleIn {
    -webkit-animation-name: scaleIn;
    animation-name: scaleIn;
}

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

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

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

@-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.6, 0.6, 0.6);
        transform: scale3d(0.6, 0.6, 0.6);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

/* elements  */
.container-full-header {
    max-width: 1760px;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
@media only screen and (min-width: 1600px) and (max-width: 1919px) {
    .container-full-header {
        padding: 0 15px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .container-full-header {
        padding: 0 15px;
    }
}
@media only screen and (max-width: 1199px) {
    .container-full-header {
        padding: 0 15px;
    }
}

.header-one .header-top-area {
    background: var(--color-primary);
}
.header-one .header-top-area .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
    .header-one .header-top-area .header-top {
        display: none;
    }
}
.header-one .header-top-area .header-top .left {
    display: flex;
    align-items: center;
    gap: 50px;
}
.header-one .header-top-area .header-top .left .map-area {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 7px;
}
.header-one .header-top-area .header-top .left .map-area i {
    color: #fff;
    font-size: 18px;
}
.header-one .header-top-area .header-top .left .map-area a {
    color: #fff;
    font-size: 14px;
}
.header-one .header-top-area .header-top .right {
    display: flex;
    align-items: center;
    gap: 50px;
}
.header-one .header-top-area .header-top .right .map-area {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 7px;
}
.header-one .header-top-area .header-top .right .map-area i {
    color: #fff;
    font-size: 18px;
}
.header-one .header-top-area .header-top .right .map-area a {
    color: #fff;
    font-size: 14px;
}

.header-wrapper-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header-wrapper-1 .logo {
    padding: 20px 0;
}
.header-wrapper-1 .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-wrapper-1 .header-right input {
    height: 44px;
    border-radius: 100px;
    font-size: 14px;
    width: 240px;
}
@media only screen and (max-width: 1199px) {
    .header-wrapper-1 .header-right input {
        width: 250px;
    }
}
@media only screen and (max-width: 767px) {
    .header-wrapper-1 .header-right input {
        width: 150px;
    }
}
@media only screen and (max-width: 575px) {
    .header-wrapper-1 .header-right input {
        width: 150px;
    }
}
.header-wrapper-1 .header-right .input-area {
    position: relative;
}
@media only screen and (max-width: 767px) {
    .header-wrapper-1 .header-right .input-area {
        display: none;
    }
}
.header-wrapper-1 .header-right .input-area i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--color-primary);
}
.header-wrapper-1 .header-right .cart-button i {
    color: var(--color-primary);
}

.logo-area-start {
    display: flex;
    align-items: center;
    gap: 98px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .logo-area-start {
        gap: 30px;
    }
}
@media only screen and (max-width: 1199px) {
    .logo-area-start {
        gap: 25px;
    }
}

.text-clip {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #000;
    font-family: var(--font-secondary);
}

.header--sticky {
    transition: 0.3s;
}

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

.title-area-center {
    text-align: center;
}
.title-area-center .pre {
    border-radius: 30px;
    padding: 5px 16px;
    color: #615efc;
    margin-bottom: 30px;
    text-align: center;
    display: block;
    max-width: max-content;
    margin: auto;
    border: 1px solid rgba(97, 94, 252, 0.2);
}
.title-area-center .title {
    margin-top: 14px;
}

.thumbnail-appoinment {
    height: 100%;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}

.thumbnail-appoinment img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.header-top-area-2 {
    border-bottom: 1px solid rgba(97, 94, 252, 0.2);
}

.header-top-two {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}
@media only screen and (max-width: 991px) {
    .header-top-two {
        padding: 10px 0;
    }
}
.header-top-two .rightarea {
    display: flex;
    align-items: center;
    gap: 70px;
}
@media only screen and (max-width: 1199px) {
    .header-top-two .rightarea {
        gap: 25px;
    }
}
.header-top-two .rightarea .single-contact-area {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}
@media only screen and (max-width: 991px) {
    .header-top-two .rightarea .single-contact-area {
        display: none;
    }
}
.header-top-two .rightarea .single-contact-area::after {
    position: absolute;
    content: "";
    right: -36px;
    height: 36px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    background: rgba(97, 94, 252, 0.2);
}
@media only screen and (max-width: 1199px) {
    .header-top-two .rightarea .single-contact-area::after {
        display: none;
    }
}
.header-top-two .rightarea .single-contact-area:last-child::after {
    display: none;
}
.header-top-two .rightarea .single-contact-area i {
    color: var(--color-primary);
    font-size: 32px;
}
.header-top-two .rightarea .single-contact-area .information span {
    font-size: 14px;
    font-weight: 400;
    color: #111032;
    line-height: 0;
}

header.header-one.style-two.header--sticky {
    background: #fff;
}

@media only screen and (max-width: 1199px) {
    .header-one.style-two .header-wrapper-1 {
        display: none;
    }
}

.header-one.style-two .header-top-area-2 {
    transition: 0.3s;
}

.header-one.style-two.sticky .header-top-area-2 {
    display: none;
    transition: 0.3s;
}

.menu-btn {
    display: none;
    height: 45px;
    width: 45px;
    background: var(--color-primary);
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
}
@media only screen and (max-width: 1199px) {
    .menu-btn {
        display: block;
        display: flex;
    }
    .menu-btn rect {
        fill: #fff;
    }
}

.has-dropdown::after {
    position: absolute;
    content: "\f078";
    right: -22px;
    top: 53%;
    transform: translateY(-50%);
    font-weight: 400;
    color: #111032;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 14px;
}
.has-dropdown:hover::after {
    color: var(--color-primary);
    content: "\f077";
}
.has-dropdown.menu-item-open::after {
    color: var(--color-primary);
    content: "\f077";
}

.submenu.parent-nav > li {
    margin: 6px 0;
}
.submenu.parent-nav > li:last-child {
    margin-bottom: 0 !important;
}

#ui-datepicker-div {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.46);
    display: none;
}
#ui-datepicker-div tr td {
    transition: 0.3s;
}
#ui-datepicker-div tr td a {
    text-decoration: none;
}
#ui-datepicker-div tr td:hover {
    background: var(--color-primary);
}
#ui-datepicker-div tr td:hover a {
    color: #fff;
}
#ui-datepicker-div .ui-datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
}

.rts-mega-menu .mega-menu-item {
    gap: 7px;
}
.rts-mega-menu .mega-menu-item li a:hover {
    background: var(--color-primary) !important;
    color: #fff;
}
.rts-mega-menu .mega-menu-item li a.active {
    border-radius: 2px;
}

.has-dropdown.mega-menu::after {
    display: none;
}
.has-dropdown.mega-menu > a {
    position: relative;
}

.has-dropdown.mega-menu > a::after {
    position: absolute;
    content: "\f078";
    right: -22px;
    top: 53%;
    transform: translateY(-50%);
    font-weight: 400;
    color: #111032;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    font-size: 14px;
}

.has-dropdown.mega-menu.menu-item-open > a::after {
    content: "\f077";
}

.nav-area {
    margin-left: 14rem;
}

@media only screen and (max-width: 1199px) {
    .nav-area {
        display: none;
    }
}
.nav-area ul {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0;
    margin: 0;
    list-style: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .nav-area ul {
        gap: 40px;
    }
}
@media only screen and (max-width: 1199px) {
    .nav-area ul {
        gap: 20px;
    }
}
.nav-area ul li {
    margin: 0;
    padding: 0;
}
.nav-area ul li a {
    color: #111032;
}

.nav-area ul li.main-nav {
    padding: 27px 0;
    cursor: pointer;
}

.side-bar {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: -100%;
    width: 465px;
    padding: 40px 30px;
    padding-top: 50px;
    height: 100%;
    display: block;
    background-color: white;
    backdrop-filter: blur(7px);
    z-index: 1900;
    transition: all 600ms ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow: visible;
}
@media only screen and (max-width: 575px) {
    .side-bar {
        width: 310px;
    }
}
.side-bar .inner-main-wrapper-desk .thumbnail {
    display: flex;
    justify-content: center;
}
.side-bar .inner-main-wrapper-desk .thumbnail img {
    width: 85%;
    margin: auto;
}
.side-bar .inner-main-wrapper-desk .inner-content {
    text-align: center;
    margin-top: 30px;
}
.side-bar .inner-main-wrapper-desk .inner-content p {
    max-width: 95%;
    text-align: center;
    margin: auto;
}
.side-bar .inner-main-wrapper-desk .inner-content .title {
    font-weight: 600;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer {
    padding-top: 50px;
    margin-top: 80px;
    border-top: 1px solid #c2c2c2;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer .title {
    font-weight: 500;
}
.side-bar .inner-main-wrapper-desk .inner-content .footer a.rts-btn {
    margin: auto;
}

.side-bar.show {
    right: 0;
    overflow-y: auto;
}

.side-bar button {
    max-width: max-content;
    margin-right: auto;
    margin-left: -53px;
    margin-top: 0;
    position: absolute;
    border: none;
}
.side-bar button i {
    color: #ffffff;
    height: 50px;
    width: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 14px;
    margin-top: -53px;
    font-size: 27px;
    background: var(--color-primary);
}

.mobile-menu-main .buttons-area {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}
@media (min-width: 768px) {
    .mobile-menu-main .buttons-area {
        display: none;
    }
}
.mobile-menu-main .buttons-area .rts-btn {
    font-size: 14px;
    padding: 8px 25px;
}
.mobile-menu-main .rts-social-style-one ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}
.mobile-menu-main .rts-social-style-one ul li {
    list-style: none;
    margin: 0;
}

#anywhere-home {
    cursor: url(../images/banner/shape/close.png), auto;
    background: #0e1013;
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease-in-out;
    pointer-events: none;
    z-index: 50;
}

#anywhere-home.bgshow {
    background: #0e1013;
    opacity: 70%;
    visibility: visible;
    pointer-events: visible;
    z-index: 999;
    top: 0;
}

#side-bar .inner-main-wrapper-desk {
    display: none;
    margin-top: 50px;
}
@media only screen and (max-width: 767px) {
    #side-bar .inner-main-wrapper-desk {
        display: none;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #side-bar .mobile-menu-main {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    #side-bar .mobile-menu-main {
        display: block;
    }
}

.mobile-menu-main nav ul {
    padding: 0 20px;
    display: block;
}
.mobile-menu-main nav ul li {
    margin: 0;
    padding: 0;
}
.mobile-menu-main nav ul li a.main {
    padding: 12px 0 17px 0;
    border-bottom: 1px solid #f3f3f3;
    cursor: pointer;
    font-weight: 500;
}
.mobile-menu-main nav ul li.has-droupdown {
    position: relative;
}
.mobile-menu-main nav ul li.has-droupdown ul {
    padding: 0;
}
.mobile-menu-main nav ul li.has-droupdown ul a {
    padding: 10px 0;
    font-weight: 400;
    font-size: 16px;
}
.mobile-menu-main nav ul li.has-droupdown ul a.tag {
    font-weight: 500;
    margin-top: 15px;
    font-size: 16px;
    border-bottom: 2px solid var(--color-primary);
    padding: 10px 0;
    margin-top: 0;
}
.mobile-menu-main nav ul li.has-droupdown ul li {
    margin: 7px 0 !important;
    border-bottom: 1px solid #f3f3f3;
    margin-top: 0 !important;
}
.mobile-menu-main nav ul li.has-droupdown::after {
    position: absolute;
    content: "\f078";
    font-family: "Font Awesome 6 pro" !important;
    font-size: 16px;
    right: 0;
    font-weight: 400;
    top: 5px;
    padding: 8px 13px;
    color: #fff;
    background: var(--color-primary) !important;
    pointer-events: none;
    cursor: pointer;
}
.mobile-menu-main nav ul li.has-droupdown.mm-active::after {
    content: "\f077";
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl::after {
    font-size: 10px;
    padding: 3px 10px;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul {
    padding: 0 20px;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li {
    margin: 10px 0 !important;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    color: #1f1f25;
    font-size: 16px;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li:hover {
    color: var(--color-primary);
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li a {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    font-size: 16px;
    color: #1f1f25;
}
.mobile-menu-main nav ul li a {
    display: block;
}
.mobile-menu-main .social-wrapper-one {
    margin-top: 50px;
}

@media screen and (max-width: 1024px) {
    .side-bar.header-two .inner-main-wrapper-desk,
    .side-bar.header-three .inner-main-wrapper-desk {
        display: none;
    }
}
@media screen and (min-width: 1024px) {
    .side-bar.header-two .mobile-menu,
    .side-bar.header-three .mobile-menu {
        display: none !important;
    }
}

.header-one
    .main-nav-desk
    nav
    ul
    li.has-droupdown
    .submenu.inner-page
    .sub-dropdown {
    position: relative;
}
.header-one
    .main-nav-desk
    nav
    ul
    li.has-droupdown
    .submenu.inner-page
    .sub-dropdown:hover::after {
    color: var(--color-primary);
}
.header-one
    .main-nav-desk
    nav
    ul
    li.has-droupdown
    .submenu.inner-page
    .sub-dropdown::after {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 6 Pro" !important;
    font-size: 16px;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}
.header-one
    .main-nav-desk
    nav
    ul
    li.has-droupdown
    .submenu.inner-page
    .sub-dropdown
    .third-lvl {
    margin-left: -4px;
}

.header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page {
    padding: 15px 0;
}
.header-three
    .main-nav-desk
    nav
    ul
    li.has-droupdown
    .submenu.inner-page
    .sub-dropdown {
    position: relative;
}
.header-three
    .main-nav-desk
    nav
    ul
    li.has-droupdown
    .submenu.inner-page
    .sub-dropdown:hover::after {
    color: var(--color-primary);
}
.header-three
    .main-nav-desk
    nav
    ul
    li.has-droupdown
    .submenu.inner-page
    .sub-dropdown::after {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 6 Pro" !important;
    font-size: 16px;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}
.header-three
    .main-nav-desk
    nav
    ul
    li.has-droupdown
    .submenu.inner-page
    .sub-dropdown
    .third-lvl {
    margin-left: -4px;
}
.header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page li {
    margin: 0;
    width: 100%;
}
.header-three .main-nav-desk nav ul li.has-droupdown .submenu.inner-page li a {
    display: block;
    width: 100%;
    padding: 0 15px;
}

.sub-dropdown {
    position: relative !important;
    display: block !important;
}
.sub-dropdown .submenu.third-lvl {
    opacity: 0 !important;
    min-width: 185px !important;
    left: 100% !important;
    top: -13% !important;
    margin: 0;
    border-radius: 0 !important;
}
.sub-dropdown .submenu.third-lvl.base {
    display: block !important;
}
.sub-dropdown:hover .sub-menu-link {
    color: var(--color-primary);
}
.sub-dropdown:hover .submenu.third-lvl.base {
    opacity: 1 !important;
    min-width: 185px !important;
    top: 0 !important;
    right: 3px;
    display: block !important;
}
.sub-dropdown:hover .submenu.third-lvl.base li {
    display: block;
}
.sub-dropdown:hover .submenu.third-lvl.base li a {
    display: block !important;
}

.header-three .sub-dropdown:hover .submenu.third-lvl.base {
    margin-left: -14px !important;
}

.header-two .header-main-wrapper .sub-dropdown:hover .submenu.third-lvl.base {
    margin-left: 90px !important;
}

header.heder-two .sub-dropdown:hover .submenu.third-lvl.base {
    opacity: 1 !important;
    min-width: 185px !important;
    top: 0 !important;
    right: 3px;
    display: block;
    margin-left: 0 !important;
}
header.heder-two .sub-dropdown::after {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 6 Pro" !important;
    font-size: 16px;
    right: 20px;
    top: 8px;
    color: #fff;
}
header.heder-two .sub-dropdown:hover a.sub-menu-link {
    color: var(--color-primary) !important;
}
header.heder-two .sub-dropdown:hover::after {
    color: var(--color-primary) !important;
}
header.heder-two .sub-dropdown .submenu.third-lvl.base {
    display: block;
}

header.header-three .sub-dropdown:hover .submenu.third-lvl.base {
    opacity: 1 !important;
    min-width: 185px !important;
    top: 0 !important;
    right: 3px;
    display: block;
    margin-left: 0 !important;
}
header.header-three .sub-dropdown::after {
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 6 Pro" !important;
    font-size: 16px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}
header.header-three .sub-dropdown:hover a.sub-menu-link {
    color: var(--color-primary) !important;
}
header.header-three .sub-dropdown:hover::after {
    color: var(--color-primary) !important;
}
header.header-three .sub-dropdown .submenu.third-lvl.base {
    display: block;
}

.gym-home .side-bar button i,
.gym-home .mobile-menu-main nav ul li.has-droupdown::after {
    background: var(--color-primary-gym) !important;
}
.gym-home .mobile-menu-main .buttons-area .rts-btn {
    border: 1px solid var(--color-primary-gym);
    color: var(--color-primary-gym);
}
.gym-home .mobile-menu-main .buttons-area .rts-btn.btn-primary {
    background: var(--color-primary-gym) !important;
    color: #ffffff;
}
.gym-home .mobile-menu-main nav ul li a.main:hover {
    color: var(--color-primary-gym);
}
.gym-home .mobile-menu-main nav ul li a.main:focus {
    color: var(--color-primary-gym);
}
.gym-home .mobile-menu-main nav ul li.has-droupdown ul a.tag {
    border-bottom: 2px solid var(--color-primary-gym);
}
.gym-home .mobile-menu-main nav ul li.has-droupdown ul a.tag:hover {
    color: var(--color-primary-gym);
}
.gym-home .mobile-menu-main nav ul li.has-droupdown ul.third-lvl a:hover {
    color: var(--color-primary-gym);
}
.gym-home .mobile-menu-main nav ul li.has-droupdown.third-lvl ul li:hover {
    color: var(--color-primary-gym);
}
.gym-home .mobile-menu-main nav ul.mm-collapse li a:hover {
    color: var(--color-primary-gym);
}
.gym-home .mobile-menu-main .rts-social-style-one ul li a:hover {
    color: var(--color-primary-gym);
}
.gym-home .progress-wrap::after {
    color: var(--color-primary-gym);
}

.kitchen-home .side-bar button i,
.kitchen-home .mobile-menu-main nav ul li.has-droupdown::after {
    background: var(--color-primary-kitchen) !important;
}
.kitchen-home .mobile-menu-main .buttons-area .rts-btn {
    border: 1px solid var(--color-primary-kitchen);
    color: var(--color-primary-kitchen);
}
.kitchen-home .mobile-menu-main .buttons-area .rts-btn.btn-primary {
    background: var(--color-primary-kitchen) !important;
    color: #ffffff;
}
.kitchen-home .mobile-menu-main nav ul li a.main:hover {
    color: var(--color-primary-kitchen);
}
.kitchen-home .mobile-menu-main nav ul li a.main:focus {
    color: var(--color-primary-kitchen);
}
.kitchen-home .mobile-menu-main nav ul li.has-droupdown ul a.tag {
    border-bottom: 2px solid var(--color-primary-kitchen);
}
.kitchen-home .mobile-menu-main nav ul li.has-droupdown ul a.tag:hover {
    color: var(--color-primary-kitchen);
}
.kitchen-home .mobile-menu-main nav ul li.has-droupdown ul.third-lvl a:hover {
    color: var(--color-primary-kitchen);
}
.kitchen-home .mobile-menu-main nav ul li.has-droupdown.third-lvl ul li:hover {
    color: var(--color-primary-kitchen);
}
.kitchen-home .mobile-menu-main nav ul.mm-collapse li a:hover {
    color: var(--color-primary-kitchen);
}
.kitchen-home .mobile-menu-main .rts-social-style-one ul li a:hover {
    color: var(--color-primary-kitchen);
}
.kitchen-home .progress-wrap::after {
    color: var(--color-primary-kitchen);
}

.social-area-tranaparent {
    display: flex;
    align-items: center;
    gap: 20px;
}
.social-area-tranaparent span {
    color: #fff;
}
.social-area-tranaparent ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}
.social-area-tranaparent ul li {
    margin: 0;
}
.social-area-tranaparent ul li a i {
    color: #fff;
}

.rts-btn {
    padding: 18px 26px;
    font-size: 16px;
    border-radius: 100px;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    max-width: max-content;
    transition: 0.3s;
}
.rts-btn.btn-primary {
    background: var(--color-primary);
    color: #fff;
    display: flex;
    padding: 1rem 2rem;
    align-items: center;
    gap: 5px;
}
.rts-btn.btn-primary img {
    margin-right: 2px;
}
.rts-btn.btn-primary:hover {
    background: #111032;
    color: #fff;
}

.cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 40px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

.banner-area-one {
    background-image: url(../images/banner/01.webp);
    position: relative;
    height: 798px;
    display: flex;
    align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .banner-area-one {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 650px;
    }
}
@media only screen and (max-width: 1199px) {
    .banner-area-one {
        height: 600px;
    }
}
@media only screen and (max-width: 991px) {
    .banner-area-one {
        flex-direction: column-reverse;
        height: auto;
        align-items: flex-start;
    }
}
.banner-area-one .person-image {
    position: absolute;
    bottom: 0;
    right: 12%;
    left: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .banner-area-one .person-image {
        right: 0%;
        max-width: 30%;
    }
}
@media only screen and (max-width: 1199px) {
    .banner-area-one .person-image {
        max-width: 30%;
    }
}
@media only screen and (max-width: 991px) {
    .banner-area-one .person-image {
        position: relative;
        right: auto;
        max-width: 100%;
        display: flex;
        justify-content: center;
        margin: auto;
        margin-bottom: 30px;
    }
}

.banner-content-area {
    padding-left: 235px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .banner-content-area {
        padding-left: 100px;
    }
}
@media only screen and (max-width: 1199px) {
    .banner-content-area {
        padding-left: 30px;
    }
}
@media only screen and (max-width: 575px) {
    .banner-content-area {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media only screen and (max-width: 479px) {
    .banner-content-area {
        padding-left: 10px;
        padding-right: 10px;
    }
}
.banner-content-area .title {
    /* font-size: 90px; */
    font-size: 80px;
    line-height: 1.1;
}
@media only screen and (max-width: 1199px) {
    .banner-content-area .title {
        /* font-size: 54px; */
        font-size: 44px;
    }
}
@media only screen and (max-width: 991px) {
    .banner-content-area .title {
        font-size: 44px;
    }
    .banner-content-area .title br {
        display: none;
    }
}

.fsz {
    font-size: 4.5rem !important;
    margin-top: 1rem;
    line-height: 1.4 !important;
}

.break {
    display: none;
}

@media only screen and (max-width: 575px) {
    .break {
        display: block !important;
    }

    .fsz {
        font-size: 2.2rem !important;
        margin-top: 1rem;
    }
    .banner-content-area .title {
        font-size: 32px;
        line-height: 1.3;
    }
}
.banner-content-area p.disc {
    max-width: 580px;
    color: #111032;
}

.person-image .single-tag {
    position: absolute;
    left: 0;
    top: 45%;
    background: #fff;
    border-radius: 40px;
    padding: 10px 20px;
    border: 1px solid rgba(97, 94, 252, 0.2);
}
@media only screen and (max-width: 575px) {
    .person-image .single-tag {
        padding: 4px 9px;
    }
}
.person-image .single-tag span {
    color: #111032;
    font-size: 18px;
}
.person-image .single-tag.two {
    bottom: 20%;
    top: auto;
    left: -10%;
}
@media only screen and (max-width: 991px) {
    .person-image .single-tag.two {
        left: 0;
    }
}
.person-image .single-tag.three {
    bottom: 23%;
    top: auto;
    right: -10%;
    left: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .person-image .single-tag.three {
        right: 2%;
    }
}
@media only screen and (max-width: 991px) {
    .person-image .single-tag.three {
        right: 0;
    }
}

.banner-wrapper-bg {
    /* background-image: url(../images/banner/02.jpg); */
    background-image: url(../images/banner/022.png);
}
.banner-wrapper-bg.bg-2-banner-2 {
    background-image: url(../images/banner/10.jpg);
}
.banner-wrapper-bg.bg-2-banner-3 {
    background-image: url(../images/banner/11.jpg);
}

.banner-content-area.style-two .pre-title span {
    color: #111032;
}
.banner-content-area.style-two .title {
    font-size: 80px;
}
@media only screen and (max-width: 1199px) {
    .banner-content-area.style-two .title {
        font-size: 62px;
    }
}
@media only screen and (max-width: 991px) {
    .banner-content-area.style-two .title {
        font-size: 52px;
        line-height: 1.1;
    }
}
@media only screen and (max-width: 575px) {
    .banner-content-area.style-two .title {
        font-size: 42px;
        line-height: 1.1;
    }
}
.banner-content-area.style-two p.disc {
    color: #111032;
}

.mySwiper-banner-2 {
    position: relative;
}
.mySwiper-banner-2 .swiper-button-next,
.mySwiper-banner-2 .swiper-button-prev {
    background-image: none;
    height: 60px;
    width: 60px;
    border: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.mySwiper-banner-2 .swiper-button-next i,
.mySwiper-banner-2 .swiper-button-prev i {
    color: var(--color-primary);
    transition: 0.3s;
}
.mySwiper-banner-2 .swiper-button-next:hover,
.mySwiper-banner-2 .swiper-button-prev:hover {
    background: var(--color-primary);
}
.mySwiper-banner-2 .swiper-button-next:hover i,
.mySwiper-banner-2 .swiper-button-prev:hover i {
    color: #fff;
}
.mySwiper-banner-2 .swiper-button-prev {
    left: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .mySwiper-banner-2 .swiper-button-prev {
        left: 30px;
    }
}
@media only screen and (max-width: 1199px) {
    .mySwiper-banner-2 .swiper-button-prev {
        right: 120px;
        bottom: 30px;
        top: auto;
        left: auto;
    }
}
.mySwiper-banner-2 .swiper-button-next {
    right: 80px;
    left: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .mySwiper-banner-2 .swiper-button-next {
        right: 30px;
    }
}
@media only screen and (max-width: 1199px) {
    .mySwiper-banner-2 .swiper-button-next {
        right: 40px;
        bottom: 30px;
        top: auto;
    }
}

.float-right {
    position: relative;
    transition: 1s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.swiper-slide-active .float-right {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition-delay: 1400ms;
}

.float-right-1 {
    position: relative;
    transition: 1s cubic-bezier(0.5, 0.5, 0, 1);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.swiper-slide-active .float-right-1 {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition-delay: 1000ms;
}

.float-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
}

.swiper-slide-active .float-bottom {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1700ms;
}

.float-bottom-2 {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1000ms ease;
}

.float-bottom-3 {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1500ms ease;
}

.swiper-slide-active .float-bottom-3 {
    opacity: 1;
    transform: translateY(0);
    transition: all 1500ms ease;
    transition-delay: 1900ms;
}

.swiper-slide-active .float-bottom-2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2000ms;
}

.rts-banner-area-three {
    height: 798px;
    background-image: url(../images/banner/03.jpg);
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 991px) {
    .rts-banner-area-three {
        height: auto;
        padding-bottom: 60px;
    }
}
.rts-banner-area-three.style-five {
    height: auto;
}
.rts-banner-area-three.style-five .pre-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-size: 18px;
}
.rts-banner-area-three.style-five .title {
    margin-top: 15px;
}
@media only screen and (max-width: 767px) {
    .rts-banner-area-three.style-five .title {
        color: #fff !important;
    }
}
.rts-banner-area-three.style-five .uni-circle-text {
    position: absolute;
    right: -45px;
    top: 74%;
    max-width: max-content;
    left: auto;
    width: 162px;
    height: 162px;
}
@media only screen and (max-width: 767px) {
    .rts-banner-area-three.style-five .uni-circle-text {
        display: none;
    }
}
.rts-banner-area-three.style-five .uni-circle-text svg {
    width: 162px;
    height: 162px;
    max-width: 162px;
    padding: 10px;
}
.rts-banner-area-three.style-five .uni-circle-text i {
    font-size: 32px;
}

.banner-three-inner-content .title {
    font-size: 80px;
    color: #fff;
    margin-bottom: 60px;
    line-height: 1.1;
}
@media only screen and (max-width: 1199px) {
    .banner-three-inner-content .title {
        font-size: 60px;
    }
}
@media only screen and (max-width: 767px) {
    .banner-three-inner-content .title {
        font-size: 44px;
    }
    .banner-three-inner-content .title br {
        display: none;
    }
}
@media only screen and (max-width: 575px) {
    .banner-three-inner-content .title {
        margin-bottom: 20px;
        font-size: 36px;
    }
}
.banner-three-inner-content .button-wrapper {
    gap: 34px;
}
.banner-three-inner-content .rts-btn {
    background: #fff;
    color: #111032;
    font-weight: 400;
    font-size: 18px;
}
.banner-three-inner-content .call-infor-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}
.banner-three-inner-content .call-infor-wrapper .icon i {
    font-size: 50px;
    color: #fff;
}
.banner-three-inner-content .call-infor-wrapper .info span {
    display: block;
    font-size: 16px;
    color: #fff;
}
.banner-three-inner-content .call-infor-wrapper .info a {
    font-size: 32px;
    font-family: var(--font-primary);
    color: #fff;
}

.banner-three-inner-content {
    position: relative;
}
@media only screen and (max-width: 991px) {
    .banner-three-inner-content * {
        color: #fff;
    }
}
@media only screen and (max-width: 991px) {
    .banner-three-inner-content {
        padding: 50px 0 0 0;
    }
}

.take-consultent-area-form {
    padding: 60px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
}
@media only screen and (max-width: 1199px) {
    .take-consultent-area-form {
        padding: 20px;
    }
}
.take-consultent-area-form .title {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.take-consultent-area-form form input {
    height: 44px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.take-consultent-area-form form .input-half-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.take-consultent-area-form form button {
    max-width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.take-consultent-area-form form input {
    position: relative;
}
.take-consultent-area-form form input::after {
    position: absolute;
    content: "\f095";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-family: var(--font-3);
}

.rts-banner-area-three {
    position: relative;
}
.rts-banner-area-three .left-side-tect-top {
    position: absolute;
    transform: rotate(-90deg);
    left: -70px;
    top: 20%;
    right: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .rts-banner-area-three .left-side-tect-top {
        transform: none;
        left: 34px;
        top: 20%;
    }
}
@media only screen and (max-width: 1199px) {
    .rts-banner-area-three .left-side-tect-top {
        transform: none;
        left: 15px;
        top: 20%;
    }
}
@media only screen and (max-width: 991px) {
    .rts-banner-area-three .left-side-tect-top {
        display: none;
    }
}
.rts-banner-area-three .left-side-tect-top span {
    color: #111032;
}
.rts-banner-area-three .left-side-tect-top-bottom {
    position: absolute;
    transform: rotate(-90deg);
    left: 5px;
    bottom: 12%;
    right: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .rts-banner-area-three .left-side-tect-top-bottom {
        display: none;
    }
}
@media only screen and (max-width: 1199px) {
    .rts-banner-area-three .left-side-tect-top-bottom {
        display: none;
    }
}
.rts-banner-area-three .left-side-tect-top-bottom span {
    color: #111032;
}

.rts-banner-area-four {
    background-image: url(../images/banner/04.jpg);
}

.banner-content-four {
    text-align: center;
    max-width: 1068px;
    margin: auto;
}
.banner-content-four .title {
    font-size: 48px;
}
@media only screen and (max-width: 575px) {
    .banner-content-four .title {
        font-size: 36px;
    }
}
.banner-content-four p {
    font-size: 24px;
    color: var(--color-primary);
}
@media only screen and (max-width: 575px) {
    .banner-content-four p {
        font-size: 16px;
    }
}
.banner-content-four .search-your-doctor-form {
    padding: 65px 45px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    border-radius: 10px;
    background: #fff;
    margin: auto;
    margin-top: 60px;
}
@media only screen and (max-width: 575px) {
    .banner-content-four .search-your-doctor-form {
        padding: 30px;
    }
}
.banner-content-four .search-your-doctor-form form {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
@media only screen and (max-width: 991px) {
    .banner-content-four .search-your-doctor-form form {
        flex-wrap: wrap;
    }
}
.banner-content-four .search-your-doctor-form form input {
    height: 50px;
    border-radius: 33px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    width: 362px;
    padding-left: 45px;
}
@media only screen and (max-width: 991px) {
    .banner-content-four .search-your-doctor-form form input {
        width: 270px !important;
    }
}
@media only screen and (max-width: 767px) {
    .banner-content-four .search-your-doctor-form form input {
        min-width: 100%;
        width: 100%;
    }
}
.banner-content-four .search-your-doctor-form form .nice-select {
    width: 362px !important;
    height: 50px;
    border-radius: 33px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    width: 362px;
    padding-left: 45px;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 991px) {
    .banner-content-four .search-your-doctor-form form .nice-select {
        width: 270px !important;
    }
}
@media only screen and (max-width: 767px) {
    .banner-content-four .search-your-doctor-form form .nice-select {
        width: 100% !important;
    }
}
.banner-content-four .search-your-doctor-form form .nice-select::after {
    right: auto;
    left: 20px;
    border-bottom: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
}
.banner-content-four .search-your-doctor-form form .search-input {
    position: relative;
    width: 100%;
}
.banner-content-four .search-your-doctor-form form .search-input i {
    position: absolute;
    top: 50%;
    font-weight: 600;
    transform: translateY(-50%);
    color: var(--color-primary);
    left: 28px;
}

@media (min-width: 992px) {
    .col-lg-five {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }
}
.single-banner-feature {
    text-align: center;
    padding: 20px 10px 20px 10px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
}
.single-banner-feature .icon {
    margin-bottom: 20px;
}
.single-banner-feature p {
    font-size: 16px;
    color: #111032;
    margin-bottom: 0;
    line-height: 1;
}
.single-banner-feature span {
    font-size: 12px;
}

.rts-banner-area-three.banner-four {
    background-image: none;
    position: relative;
    z-index: 1;
}
.rts-banner-area-three.banner-four .banner-three-inner-content .title {
    color: #111032;
    font-size: 90px;
}
@media only screen and (max-width: 1199px) {
    .rts-banner-area-three.banner-four .banner-three-inner-content .title {
        font-size: 60px;
    }
}
@media only screen and (max-width: 575px) {
    .rts-banner-area-three.banner-four .banner-three-inner-content .title {
        font-size: 36px;
    }
}
.rts-banner-area-three.banner-four .banner-three-inner-content .title span {
    color: var(--color-primary);
    font-weight: 500;
}
.rts-banner-area-three.banner-four p.disc {
    max-width: 65%;
}
@media only screen and (max-width: 767px) {
    .rts-banner-area-three.banner-four p.disc {
        max-width: 100%;
    }
}
.rts-banner-area-three.banner-four .btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.thumbnail-right-banner-five {
    position: absolute;
    margin-left: -150px;
    z-index: -1;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition-delay: 0;
    animation: moveright 1s linear;
}
@media only screen and (max-width: 767px) {
    .thumbnail-right-banner-five {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }
}
.thumbnail-right-banner-five img {
    min-width: max-content;
}
@media only screen and (max-width: 767px) {
    .thumbnail-right-banner-five img {
        height: 100%;
        object-fit: cover;
        min-width: 100%;
    }
}
.thumbnail-right-banner-five::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    top: 0;
    bottom: 0;
    background: rgba(17, 16, 50, 0.2274509804);
    height: 100%;
    width: 100%;
    z-index: 0;
    display: none;
}
@media only screen and (max-width: 991px) {
    .thumbnail-right-banner-five::after {
        display: block;
    }
}

@keyframes moveright {
    from {
        clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    }
    to {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}
@keyframes moveLeft {
    from {
        clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    }
    to {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}
.move-right {
    animation: moveright 1s linear;
}

.move-left {
    animation: moveLeft 1s linear;
}

.bg_six-image {
    background-image: url(../images/banner/06.jpg);
}

.rts-banner-area-six {
    height: 740px;
}
@media only screen and (max-width: 767px) {
    .rts-banner-area-six {
        height: 610px;
    }
}
@media only screen and (max-width: 575px) {
    .rts-banner-area-six {
        height: 455px;
    }
}
@media only screen and (max-width: 479px) {
    .rts-banner-area-six {
        height: 544px;
    }
}
.rts-banner-area-six .content-wrapper .title {
    font-size: 140px;
    color: #fff;
    z-index: -1;
}
@media only screen and (max-width: 1199px) {
    .rts-banner-area-six .content-wrapper .title {
        font-size: 110px;
    }
}
@media only screen and (max-width: 991px) {
    .rts-banner-area-six .content-wrapper .title {
        font-size: 94px;
    }
}
@media only screen and (max-width: 767px) {
    .rts-banner-area-six .content-wrapper .title {
        font-size: 69px;
    }
}
@media only screen and (max-width: 575px) {
    .rts-banner-area-six .content-wrapper .title {
        font-size: 54px;
    }
}
.rts-banner-area-six .content-wrapper p.disc {
    max-width: 381px;
    line-height: 24px;
    color: #fff;
    margin-top: 60px;
}
@media only screen and (max-width: 991px) {
    .rts-banner-area-six .content-wrapper p.disc {
        position: relative;
        z-index: 10;
    }
}
.rts-banner-area-six .content-wrapper a.rts-btn.btn-primary {
    background: #fff;
    color: var(--color-primary);
    padding: 22px 35px;
}
@media only screen and (max-width: 767px) {
    .rts-banner-area-six .content-wrapper a.rts-btn.btn-primary {
        position: relative;
        z-index: 10;
    }
}
.rts-banner-area-six .content-wrapper a.rts-btn.btn-primary:hover {
    background: #111032;
    color: #fff;
}
.rts-banner-area-six .large-image-thumbnail {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
@media only screen and (max-width: 767px) {
    .rts-banner-area-six .large-image-thumbnail {
        width: 60%;
    }
}

.move-down {
    animation: movedown 1s linear;
}

@keyframes movedown {
    from {
        clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
    }
    to {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}
.move-up {
    animation: moveup 1s linear;
}

@keyframes moveup {
    from {
        clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
    }
    to {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}
.rts-banner-area-six {
    position: relative;
}
.rts-banner-area-six .single-short-service {
    position: absolute;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    left: 70%;
    top: 40%;
}
@media only screen and (max-width: 991px) {
    .rts-banner-area-six .single-short-service {
        left: 62%;
    }
}
@media only screen and (max-width: 767px) {
    .rts-banner-area-six .single-short-service {
        left: 47%;
        top: 64%;
    }
}
@media only screen and (max-width: 575px) {
    .rts-banner-area-six .single-short-service {
        display: none;
    }
}
.rts-banner-area-six .single-short-service.two {
    left: 55%;
    top: 57%;
}
@media only screen and (max-width: 767px) {
    .rts-banner-area-six .single-short-service.two {
        left: 2%;
        top: 81%;
    }
}
.rts-banner-area-six .single-short-service .title {
    font-size: 16px;
    margin-bottom: 5px;
}
.rts-banner-area-six .single-short-service p.disc {
    font-size: 14px;
    margin-bottom: 0;
}

.rts-banner-seven {
    background-image: url(../images/banner/07.jpg);
    height: 840px;
}
@media only screen and (max-width: 767px) {
    .rts-banner-seven {
        height: 600px;
    }
}
@media only screen and (max-width: 575px) {
    .rts-banner-seven {
        height: 698px;
    }
}
.rts-banner-seven.bg-2 {
    background-image: url(../images/banner/08.jpg);
}
.rts-banner-seven.bg-3 {
    background-image: url(../images/banner/09.jpg);
}

.rts-banner-seven {
    position: relative;
}
.rts-banner-seven .rts-banner-content-seven {
    max-width: 640px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .rts-banner-seven .rts-banner-content-seven {
        height: 770px;
    }
}
@media only screen and (max-width: 1199px) {
    .rts-banner-seven .rts-banner-content-seven {
        height: 770px;
    }
}
.rts-banner-seven .rts-banner-content-seven .pre-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.rts-banner-seven .rts-banner-content-seven .pre-title span {
    color: var(--color-primary);
    font-size: 18px;
}
@media only screen and (max-width: 479px) {
    .rts-banner-seven .rts-banner-content-seven .pre-title span {
        font-size: 16px;
    }
}
.rts-banner-seven .rts-banner-content-seven .title {
    font-size: 80px;
    line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .rts-banner-seven .rts-banner-content-seven .title {
        font-size: 70px;
    }
}
@media only screen and (max-width: 1199px) {
    .rts-banner-seven .rts-banner-content-seven .title {
        font-size: 70px;
    }
}
@media only screen and (max-width: 767px) {
    .rts-banner-seven .rts-banner-content-seven .title {
        font-size: 45px;
    }
    .rts-banner-seven .rts-banner-content-seven .title br {
        display: none;
    }
}
@media only screen and (max-width: 479px) {
    .rts-banner-seven .rts-banner-content-seven .title {
        font-size: 32px;
    }
}
.rts-banner-seven .rts-banner-content-seven p.disc {
    color: #111032;
    max-width: 85%;
}
@media only screen and (max-width: 575px) {
    .rts-banner-seven .rts-banner-content-seven p.disc {
        max-width: 100%;
    }
}
.rts-banner-seven .bottom-star-area {
    display: flex;
    align-items: center;
    gap: 70px;
    top: auto;
    bottom: 64px;
    position: absolute;
}
@media only screen and (max-width: 575px) {
    .rts-banner-seven .bottom-star-area {
        flex-direction: column;
        gap: 20px;
    }
}
.rts-banner-seven .bottom-star-area .star-area-left span {
    font-weight: 400;
    color: #111032;
}
.rts-banner-seven .bottom-star-area .star-area-left .top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
}
.rts-banner-seven .bottom-star-area .star-area-left .wrapper {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0;
}
.rts-banner-seven .bottom-star-area .star-area-left .wrapper .single {
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00b67a;
}
.rts-banner-seven .bottom-star-area .star-area-left .wrapper .single i {
    color: #fff;
    font-size: 14px;
}
.rts-banner-seven .bottom-star-area .right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.rts-banner-seven .bottom-star-area .right .trusted-patient .title {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 24px;
    font-family: var(--font-secondary);
}

.mySwiper-banner-eight {
    position: relative;
}
.mySwiper-banner-eight .swiper-button-next,
.mySwiper-banner-eight .swiper-button-prev {
    top: 50%;
    bottom: auto;
}
.mySwiper-banner-eight .swiper-slide-active .title {
    transition-delay: 2000ms;
}
.mySwiper-banner-eight .swiper-slide-active .rts-banner-area-sergery {
    transition: 2s;
}
.mySwiper-banner-eight .rts-banner-area-sergery {
    transition: 0.3s;
}
.mySwiper-banner-eight .rts-banner-area-sergery.two {
    background-image: url(../images/banner/13.webp);
}
.mySwiper-banner-eight .rts-banner-area-sergery.three {
    background-image: url(../images/banner/14.webp);
}

.bg_large_video-8 {
    background-image: url(../images/banner/15.webp);
    height: 700px;
    position: relative;
}
.bg_large_video-8 .inner-content-video {
    position: absolute;
    height: 100%;
    width: 100%;
    cursor: url(../images/banner/video.webp), auto;
    left: 0;
    top: 0;
}
.bg_large_video-8 .inner-content-video img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.rts-banner-area-two.nine .banner-wrapper-bg {
    background-image: url(../images/banner/16.webp);
}
.rts-banner-area-two.nine .banner-wrapper-bg.bg-2-banner-2 {
    background-image: url(../images/banner/17.webp);
}
.rts-banner-area-two.nine .banner-wrapper-bg.bg-2-banner-3 {
    background-image: url(../images/banner/18.webp);
}

.mySwiper-banner-seven .swiper-button-next,
.mySwiper-banner-seven .swiper-button-prev,
.mySwiper-banner-eight .swiper-button-next,
.mySwiper-banner-eight .swiper-button-prev {
    background-image: none;
    height: 60px;
    width: 60px;
    border: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
@media only screen and (max-width: 767px) {
    .mySwiper-banner-seven .swiper-button-next,
    .mySwiper-banner-seven .swiper-button-prev,
    .mySwiper-banner-eight .swiper-button-next,
    .mySwiper-banner-eight .swiper-button-prev {
        display: none;
    }
}
@media only screen and (max-width: 991px) {
    .mySwiper-banner-seven .swiper-button-next,
    .mySwiper-banner-seven .swiper-button-prev,
    .mySwiper-banner-eight .swiper-button-next,
    .mySwiper-banner-eight .swiper-button-prev {
        top: 70%;
    }
}
.mySwiper-banner-seven .swiper-button-next i,
.mySwiper-banner-seven .swiper-button-prev i,
.mySwiper-banner-eight .swiper-button-next i,
.mySwiper-banner-eight .swiper-button-prev i {
    color: var(--color-primary);
    transition: 0.3s;
}
.mySwiper-banner-seven .swiper-button-next:hover,
.mySwiper-banner-seven .swiper-button-prev:hover,
.mySwiper-banner-eight .swiper-button-next:hover,
.mySwiper-banner-eight .swiper-button-prev:hover {
    background: var(--color-primary);
}
.mySwiper-banner-seven .swiper-button-next:hover i,
.mySwiper-banner-seven .swiper-button-prev:hover i,
.mySwiper-banner-eight .swiper-button-next:hover i,
.mySwiper-banner-eight .swiper-button-prev:hover i {
    color: #fff;
}
.mySwiper-banner-seven .swiper-button-prev,
.mySwiper-banner-eight .swiper-button-prev {
    left: 80px;
}
.mySwiper-banner-seven .swiper-button-next,
.mySwiper-banner-eight .swiper-button-next {
    right: 80px;
    left: auto;
}

.banner-area-one .rts-btn {
    padding: 14px 26px;
}

.rts-banner-area-three .left-side-tect-top span,
.rts-banner-area-three .left-side-tect-top-bottom span {
    color: #fff;
}

header .rts-btn {
    padding: 13px 26px;
}
@media only screen and (max-width: 575px) {
    header .rts-btn {
        display: none !important;
    }
}

.rts-banner-area-three.style-five .left-side-tect-top span,
.rts-banner-area-three.style-five .left-side-tect-top-bottom span {
    color: #111032;
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .rts-banner-area-three.style-five .left-side-tect-top {
        display: none;
    }
}
@media only screen and (max-width: 1199px) {
    .rts-banner-area-three.style-five .left-side-tect-top {
        display: none;
    }
}

.rts-banner-area-sergery {
    background-image: url(../images/banner/12.webp);
    height: 840px;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 767px) {
    .rts-banner-area-sergery {
        height: 520px;
    }
}
.rts-banner-area-sergery .inner-content {
    max-width: 69%;
    margin: auto;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .rts-banner-area-sergery .inner-content {
        max-width: 100%;
    }
}
.rts-banner-area-sergery .inner-content * {
    color: #fff;
}
.rts-banner-area-sergery .inner-content .rts-btn {
    margin: auto;
    margin-top: 30px;
}
.rts-banner-area-sergery .inner-content .pre-title {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    font-size: 18px;
}
.rts-banner-area-sergery .inner-content .title {
    font-size: 80px;
}
@media only screen and (max-width: 767px) {
    .rts-banner-area-sergery .inner-content .title {
        font-size: 52px;
    }
}
@media only screen and (max-width: 575px) {
    .rts-banner-area-sergery .inner-content .title {
        font-size: 34px;
    }
}

.select-area-down {
    padding: 10px 6px 10px 25px;
    background: #fff;
    border-radius: 33px;
    height: 56px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(97, 94, 252, 0.2);
    justify-content: space-between;
    max-width: 520px;
}
.select-area-down .rts-btn {
    padding: 14px 24px;
}
@media only screen and (max-width: 1199px) {
    .select-area-down {
        max-width: max-content;
    }
}
@media only screen and (max-width: 767px) {
    .select-area-down {
        flex-wrap: wrap;
        height: auto;
        border-radius: 5px;
    }
}
@media only screen and (max-width: 575px) {
    .select-area-down {
        padding: 10px 6px 10px 6px;
    }
}
.select-area-down ul li.options {
    width: 100%;
    height: 24px;
    line-height: 24px;
    background-color: #fff;
    border: none;
    border-radius: 3px;
    margin-bottom: 5px;
    padding: 0 10px;
    position: absolute;
    left: 0;
    min-width: max-content;
    color: #6b6b6b;
    cursor: pointer;
}
.select-area-down ul li.options:hover {
    background-color: #eee;
}
.select-area-down select {
    border: none;
}
.select-area-down form {
    width: 170px;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    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: var(--font-3);
    content: "\f077";
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: var(--color-primary);
    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: 1px solid var(--color-primary);
    border: none !important;
    box-shadow: none;
    border-radius: 50% !important;
    border-radius: 5px;
}

.progress-wrap:hover::after {
    opacity: 1;
    content: "\f077";
}

.progress-wrap::before {
    position: absolute;
    font-family: var(--font-3);
    content: "\f077";
    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: transparent;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--color-primary);
    stroke-width: 4px;
    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);
}
.home-blue .progress-wrap::after {
    border-color: var(--color-primary);
    box-shadow: 0px 3px 20px 6px rgba(7, 66, 233, 0.3215686275);
    color: var(--color-primary);
}

.container {
    max-width: 1310px;
    margin: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .container {
        padding: 0 15px;
    }
}

.single-short-service {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
}
.single-short-service .title {
    margin-bottom: 0;
    font-size: 24px;
}
@media only screen and (max-width: 991px) {
    .single-short-service .title {
        font-size: 18px;
    }
}

.procedure-iamge-wrapper .thumbnail img {
    width: 100%;
}

.mid-hr {
    width: 1px;
    height: 100% !important;
    background: #e1e1ff;
    margin: auto;
    opacity: 1;
}

.single-service-area {
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    height: 100%;
    transition: 0.3s;
    background: #fff;
}
.single-service-area .icon {
    margin-bottom: 36px;
}
.single-service-area .title {
    font-size: 23px;
    margin-bottom: 16px;
}
.single-service-area p.disc {
    font-size: 16px;
    margin-bottom: 10px;
}
.single-service-area:hover {
    border: 1px solid var(--color-primary);
}

.btn-transparent {
    color: #111032;
    font-weight: 400;
    transition: 0.3s;
}
.btn-transparent i {
    transform: rotate(-45deg);
    transition: 0.3s;
    position: relative;
    bottom: -1px;
    font-weight: 400;
}
.btn-transparent:hover i {
    transform: rotate(0deg);
}

.container-80 {
    max-width: 1760px;
    margin: auto;
}

.containerFlow {
    animation: containerFlow 1s linear forwards;
}

@keyframes containerFlow {
    from {
        max-width: 1920px;
        margin: auto;
    }
    to {
        max-width: 1760px;
        margin: auto;
    }
}
.bg-light {
    background-color: #f1f1ff !important;
    border-radius: 10px;
}

.swiper-container-h2 {
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
}
.swiper-container-h2 .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 20px;
    border-radius: 10px;
    height: 8px;
}

.team-swiper-container-h1 {
    position: relative;
    padding-bottom: 50px;
}
.team-swiper-container-h1 .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.single-service-area.style-bg-light {
    background: #f1f1ff;
    border: 1px solid rgba(97, 94, 252, 0.2);
}
.single-service-area.style-bg-light:hover {
    border: 1px solid var(--color-primary);
}
.single-service-area.style-bg-light .rts-btn {
    margin-top: 25px;
}
.single-service-area.style-bg-light .rts-btn i {
    transform: rotate(-45deg);
    font-weight: 400;
}
.single-service-area.style-bg-light.border-trnasparent {
    border: 1px solid transparent;
}
.single-service-area.style-bg-light.border-trnasparent:hover {
    border: 1px solid var(--color-primary);
}

.rts-service-area {
    position: relative;
    z-index: 1;
}
.rts-service-area .bg-shape {
    position: absolute;
    left: 60px;
    top: -30px;
    z-index: -1;
}

.single-procedure {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
@media only screen and (max-width: 479px) {
    .single-procedure {
        flex-direction: column;
    }
}
.single-procedure .information-area .title {
    margin-bottom: 5px;
}

.special-procedure-area {
    position: relative;
    z-index: 1;
}
.special-procedure-area .bg-slape {
    position: absolute;
    left: 60px;
    top: 40px;
    z-index: -1;
}

.button-dental-bwtween-area {
    text-align: left;
}
.button-dental-bwtween-area .title-area-left {
    text-align: left;
}
.button-dental-bwtween-area .title-area-left .pre-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.button-dental-bwtween-area .title-area-left .title {
    margin-top: 20px;
}
@media only screen and (max-width: 575px) {
    .button-dental-bwtween-area .title-area-left .title br {
        display: none;
    }
}

.single-dental-service-areas {
    position: relative;
}
.single-dental-service-areas .inner-content {
    position: absolute;
    position: absolute;
    left: 40px;
    bottom: 15px;
}
.single-dental-service-areas .inner-content a .title {
    min-width: max-content;
    color: white;
    font-size: 26px;
}

.round-btn {
    height: 45px;
    min-width: 45px;
    max-width: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #111032;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 25px;
    bottom: 30px;
    transition: 0.3s;
}
.round-btn i {
    color: #111032;
    transition: 0.3s;
}
.round-btn:hover {
    background: #111032;
}
.round-btn:hover i {
    color: #fff;
}

.single-service-six {
    padding: 38px 33px 20px 28px;
    position: relative;
    height: 100%;
}
.single-service-six.bg-pink {
    background: #ffcfc5;
    border-radius: 10px;
}
.single-service-six.bg-green {
    background: #abffb8;
    border-radius: 10px;
}
.single-service-six.bg-yello {
    background: #ffedab;
    border-radius: 10px;
}
.single-service-six.bg-sayan {
    background: #e8e8ff;
    border-radius: 10px;
}
.single-service-six .title {
    color: #111032;
}
.single-service-six p.disc {
    color: #111032;
    font-size: 16px;
}

.single-procedure.style-six {
    padding: 15px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    border-radius: 10px;
}

.single-service-medicle {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.single-service-medicle .thumbnail img {
    width: 100%;
}
.single-service-medicle .title-area-rotate {
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    transform: rotate(-90deg);
    right: -191px;
    left: auto;
    top: 192px;
    background: #f1f1ff;
    height: 81px;
    gap: 20px;
    padding: 15px 17px;
    border-radius: 0 0 10px 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    width: 465px;
    transition: 0.3s;
}
.single-service-medicle .title-area-rotate .icon {
    min-width: max-content;
}
.single-service-medicle .title-area-rotate .icon img {
    min-width: max-content;
    transform: rotate(90deg);
    transition: 0.3s;
}
.single-service-medicle .title-area-rotate .title {
    min-width: max-content;
    font-size: 32px;
    margin: 0;
    font-weight: 400;
    color: #111032;
    transition: 0.3s;
}
.single-service-medicle:hover .title-area-rotate {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
}
.single-service-medicle:hover .title-area-rotate .title {
    color: #fff;
}
.single-service-medicle:hover .title-area-rotate img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(53%) saturate(571%)
        hue-rotate(204deg) brightness(114%) contrast(101%);
}

.service-content-iamge {
    position: absolute;
    left: 100px;
    top: 100px;
    z-index: -1;
}

.service-area .title-between-area .rts-btn.btn-primary {
    padding: 10px 22px;
}

.single-service-area.style-bg-light .rts-btn {
    padding: 12px 26px;
}

.service-and-price-table {
    position: relative;
}
.service-and-price-table .service-price-single.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}
.service-and-price-table .service-price-single.head p {
    margin: 0;
    font-size: 16px;
    color: #111032;
    font-weight: 500;
}
.service-and-price-table .service-price-single.head .price-area {
    padding-right: 70px;
}
@media only screen and (max-width: 767px) {
    .service-and-price-table .service-price-single.head .price-area {
        padding-right: 0;
    }
}
.service-and-price-table .service-price-single.body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 15px;
    border-top: 1px solid rgba(97, 94, 252, 0.2);
}
.service-and-price-table .service-price-single.body:last-child {
    border-bottom: 1px solid rgba(97, 94, 252, 0.2);
}
.service-and-price-table .service-price-single.body p {
    margin: 0;
    color: #6b6b6b;
}
.service-and-price-table .service-price-single.body .price-area {
    padding-right: 50px;
}
@media only screen and (max-width: 991px) {
    .service-and-price-table .service-price-single.body .price-area {
        padding-right: 0;
    }
}
.service-and-price-table::after {
    position: absolute;
    content: "";
    right: 220px;
    height: calc(100% - 47px);
    top: 47px;
    width: 1px;
    background: rgba(97, 94, 252, 0.2);
}
@media only screen and (max-width: 1199px) {
    .service-and-price-table::after {
        display: none;
    }
}

.thumbnail-service-free img {
    width: 100%;
    aspect-ratio: 3/1.4;
}

.thumbnail-service-free img {
    border-radius: 10px;
}

.content-wrapper-service-details {
    margin-top: 40px;
}
.content-wrapper-service-details .title {
    margin-bottom: 10px;
    font-size: 24px;
}
.content-wrapper-service-details p {
    margin: 0;
}
.content-wrapper-service-details p b {
    color: #111032;
    font-weight: 500;
}
.content-wrapper-service-details .check-area-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}
@media only screen and (max-width: 575px) {
    .content-wrapper-service-details .check-area-wrapper {
        flex-direction: column;
        gap: 10px;
    }
}
.content-wrapper-service-details .check-area-wrapper .left-wrapper .single {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}
.content-wrapper-service-details .check-area-wrapper .left-wrapper .single p {
    color: #111032;
}

.single-rightsidebar-single .title {
    font-size: 24px;
}

.single-department-service-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    margin-bottom: 10px;
    transition: 0.3s;
}
.single-department-service-wrapper:hover {
    border-color: rgb(97, 94, 252);
    transform: translateY(-4px);
}
.single-department-service-wrapper:last-child {
    margin-bottom: 0;
}
.single-department-service-wrapper .left-side {
    display: flex;
    align-items: center;
    appearance: none;
    gap: 12px;
}
.single-department-service-wrapper .left-side .icon img {
    max-width: 30px;
}
.single-department-service-wrapper .left-side .title {
    margin-bottom: 0;
    font-size: 18px;
}

.single-rightsidebar-single .doctor-title-table {
    margin-top: 40px;
}
.single-rightsidebar-single .doctor-title-table .top {
    padding: 30px;
    background: var(--color-primary);
    border-radius: 10px 10px 0 0;
    position: relative;
}
.single-rightsidebar-single .doctor-title-table .top * {
    color: #fff;
}
.single-rightsidebar-single .doctor-title-table .top p.disc {
    margin-bottom: 30px;
}
.single-rightsidebar-single .doctor-title-table .top a.rts-btn.btn-primary {
    border: 1px solid #fff;
    color: #fff !important;
    padding: 11px 22px;
}
.single-rightsidebar-single
    .doctor-title-table
    .top
    a.rts-btn.btn-primary:hover {
    border: 1px solid transparent;
}
.single-rightsidebar-single .doctor-title-table .top img {
    position: absolute;
    bottom: 5%;
    left: 50%;
}
.single-rightsidebar-single .doctor-title-table .bottom {
    padding: 30px;
    background-color: #f1f1ff;
    border-radius: 0 0 10px 10px;
}
.single-rightsidebar-single .doctor-title-table .bottom .title {
    font-size: 24px;
    color: var(--color-primary);
}
.single-rightsidebar-single .doctor-title-table .bottom .single-table {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(97, 94, 252, 0.2);
}

.thumbnail-image-right-cardio {
    margin-top: 40px;
    position: relative;
}
.thumbnail-image-right-cardio img {
    width: 100%;
}
.thumbnail-image-right-cardio .inner {
    position: absolute;
    left: 23px;
    bottom: 38px;
}
.thumbnail-image-right-cardio .inner .title {
    color: #fff;
    font-size: 24px;
}
.thumbnail-image-right-cardio .inner .rts-btn {
    background: #fff !important;
    color: #111032;
}

.meet-doctor-area-sd .single-team-area-start .thumbnail img {
    border: 1px solid rgba(97, 94, 252, 0.2);
    display: block;
    border-radius: 10px;
}

.patient-success-portfolio .rts-btn.btn-primary.border.bg-transparent {
    border: 1px solid #fff !important;
    color: #fff !important;
    padding: 12px 27px;
    margin-top: 150px;
}
@media only screen and (max-width: 767px) {
    .patient-success-portfolio .rts-btn.btn-primary.border.bg-transparent {
        margin-top: 60px;
    }
}
.patient-success-portfolio .rts-btn.btn-primary.border.bg-transparent img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(564%)
        hue-rotate(31deg) brightness(116%) contrast(100%);
}

.rts-single-blog .rts-btn.btn-primary.border.bg-transparent {
    padding: 11px 26px;
    border: 1px solid rgba(97, 94, 252, 0.2) !important;
    color: #111032;
}

.right-whychoose-us-style-one {
    position: relative;
}
.right-whychoose-us-style-one .thumbnail-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 438px;
}
@media only screen and (max-width: 575px) {
    .right-whychoose-us-style-one .thumbnail-image img {
        max-width: 320px;
    }
}
.right-whychoose-us-style-one .inner-content .top {
    position: absolute;
    left: 40px;
    top: 40px;
}
.right-whychoose-us-style-one .inner-content .top .title {
    color: #fff;
    font-size: 80px;
    margin-bottom: 3px;
}
@media only screen and (max-width: 991px) {
    .right-whychoose-us-style-one .inner-content .top .title {
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 575px) {
    .right-whychoose-us-style-one .inner-content .top .title {
        font-size: 40px;
    }
}
.right-whychoose-us-style-one .inner-content .top .time-shedule {
    display: flex;
    align-items: center;
    gap: 8px;
}
.right-whychoose-us-style-one .inner-content .top .time-shedule span {
    font-size: 48px;
    font-weight: 400;
    color: #fff;
}
@media only screen and (max-width: 575px) {
    .right-whychoose-us-style-one .inner-content .top .time-shedule span {
        font-size: 28px;
    }
}
@media only screen and (max-width: 575px) {
    .right-whychoose-us-style-one .inner-content .top .time-shedule img {
        max-width: 30px;
    }
}
.right-whychoose-us-style-one .inner-content .call-us {
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.right-whychoose-us-style-one .inner-content .call-us span {
    color: #fff;
    font-size: 18px;
}

.service-details-surgery-main h2.title {
    font-size: 36px;
    line-height: 1.3;
    margin-top: 40px;
}
@media only screen and (max-width: 575px) {
    .service-details-surgery-main h2.title {
        font-size: 20px;
    }
}

.service-details-surgery .container-wrapper-faq {
    max-width: 100% !important;
}

.check-area-service-details .single-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.bg-light-1 {
    background: #f8f8ff;
}

.card-transparent-service .single-service-area {
    background: transparent;
}

.rts-large-image-area-9 {
    height: 850px;
    background-image: url(../images/video/01.webp);
    background-attachment: fixed;
    position: relative;
}
.rts-large-image-area-9 .rating-area-card {
    position: absolute;
    width: 344px;
    height: 251px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border-radius: 10px 0px 0px 0px;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rts-large-image-area-9 .rating-area-card .inner {
    text-align: center;
}
.rts-large-image-area-9 .rating-area-card .inner .title {
    font-size: 128px;
    margin: 0;
    color: #fff;
    margin-top: -45px;
    line-height: 1.2;
}

.about-image-left-wrapper {
    position: relative;
    margin-right: -30px;
}
.about-image-left-wrapper .review-area {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px 0 0 0;
}
.about-image-left-wrapper .review-area .stars-area {
    margin-top: 13px;
}
.about-image-left-wrapper .review-area .stars-area .wrapper {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}
.about-image-left-wrapper .review-area .stars-area .wrapper .single {
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00b67a;
}
.about-image-left-wrapper .review-area .stars-area .wrapper .single i {
    color: #fff;
    font-size: 14px;
}
.about-image-left-wrapper .review-area .stars-area .content {
    color: #111032;
}
.about-image-left-wrapper .review-area .stars-area .content span {
    font-size: 14px;
    color: #111032;
}

.title-wrapper-left {
    text-align: left;
}
.title-wrapper-left .pre {
    border-radius: 30px;
    padding: 5px 16px;
    color: #615efc;
    margin-bottom: 21px;
    display: block;
    max-width: max-content;
    border: 1px solid rgba(97, 94, 252, 0.2);
}
.title-wrapper-left .title {
    text-align: left;
    font-size: 48px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .title-wrapper-left .title {
        font-size: 36px;
    }
}
@media only screen and (max-width: 1199px) {
    .title-wrapper-left .title {
        font-size: 32px;
    }
}
@media only screen and (max-width: 767px) {
    .title-wrapper-left .title {
        font-size: 26px;
    }
    .title-wrapper-left .title br {
        display: none;
    }
}
@media only screen and (max-width: 575px) {
    .title-wrapper-left .title {
        font-size: 22px;
    }
}
.title-wrapper-left p.disc {
    font-size: 16px;
}

.button-wrapper {
    display: flex;
    align-items: center;
    gap: 54px;
}
@media only screen and (max-width: 575px) {
    .button-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
.button-wrapper .signature {
    gap: 15px;
    display: flex;
    align-items: center;
}
.button-wrapper .signature img {
    max-width: max-content;
}
.button-wrapper .signature img.one {
    border-radius: 50%;
    padding: 4px;
    border: 1px solid rgba(97, 94, 252, 0.2);
}
.button-wrapper .signature img.sign {
    max-width: 105px;
    height: fit-content;
}

.about-content-wrapper-right p.disc {
    text-align: left;
    font-size: 15px;
    max-width: 95%;
}

.radious-0 {
    border-radius: 0 !important;
}

.why-choose-us-main-wrapper {
    margin-top: 40px;
}
.why-choose-us-main-wrapper .single-choose-us {
    margin-bottom: 20px;
    padding: 22px 20px;
    border-radius: 20px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
}
@media only screen and (max-width: 575px) {
    .why-choose-us-main-wrapper .single-choose-us {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
.why-choose-us-main-wrapper .single-choose-us:last-child {
    margin-bottom: 0;
}
.why-choose-us-main-wrapper .single-choose-us .info .title {
    font-size: 20px;
    margin-bottom: 8px;
}
.why-choose-us-main-wrapper .single-choose-us .info p {
    font-size: 16px;
}

.review-area.flex .stars-area {
    display: flex;
    align-items: center;
    gap: 30px;
}
.review-area.flex .stars-area .wrapper {
    display: flex;
    align-items: center;
}
.review-area.flex .stars-area .wrapper {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}
.review-area.flex .stars-area .wrapper .single {
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00b67a;
}
.review-area.flex .stars-area .wrapper .single i {
    color: #fff;
    font-size: 14px;
}
.review-area.flex .stars-area .content {
    color: #111032;
}
.review-area.flex .stars-area .content span {
    font-size: 16px;
    color: #111032;
    font-weight: 500;
}

.single-check-wrapper-main-about {
    display: flex;
    align-items: center;
    gap: 50px;
}
@media only screen and (max-width: 767px) {
    .single-check-wrapper-main-about {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
.single-check-wrapper-main-about .single {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.single-check-wrapper-main-about .single img {
    min-width: max-content;
}
.single-check-wrapper-main-about .single span {
    font-weight: 600;
    font-size: 16px;
    color: #111032;
    font-family: var(--font-primary);
}

.about-image-left-wrapper.two {
    position: relative;
}
@media only screen and (max-width: 991px) {
    .about-image-left-wrapper.two .thumbnail-main img {
        width: 100%;
    }
}
.about-image-left-wrapper.two .patient-number {
    position: absolute;
    left: 30px;
    bottom: -50px;
    background: var(--color-primary);
    padding: 15px 22px;
    border-radius: 10px;
    width: 182px;
    z-index: 1;
}
.about-image-left-wrapper.two .patient-number::after {
    position: absolute;
    content: "";
    left: 9px;
    top: 9px;
    right: 9px;
    bottom: 90px;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
    background: rgba(118, 115, 251, 0.8);
    backdrop-filter: blur(2px);
    z-index: -1;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.about-image-left-wrapper.two .patient-number .title {
    color: #fff;
    line-height: 1;
}
.about-image-left-wrapper.two .patient-number .top .title {
    margin-bottom: 0;
    font-size: 48px;
    margin-bottom: 0;
}
.about-image-left-wrapper.two .patient-number .top span {
    font-size: 24px;
    color: #fff;
}
.about-image-left-wrapper.two .patient-number .bottom .title {
    font-size: 26px;
    margin-bottom: 0;
}
.about-image-left-wrapper.two .patient-number .bottom span {
    font-size: 16px;
    color: #fff;
}

.about-four-content-4 {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    height: 100%;
}
.about-four-content-4 .thumbnail {
    height: 100%;
}
.about-four-content-4 .thumbnail img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.about-four-content-4 .small-image-right-side {
    display: flex;
    flex-direction: column;
}
.about-four-content-4 .small-image-right-side .counbter-about {
    background: #615efc;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 15px;
}
.about-four-content-4 .small-image-right-side .counbter-about .title {
    color: #fff;
    font-size: 48px;
    margin-bottom: 5px;
}
.about-four-content-4 .small-image-right-side .counbter-about .title span {
    color: #fff;
    font-size: 48px;
    margin-bottom: 5px;
}
.about-four-content-4 .small-image-right-side .counbter-about span {
    color: #fff;
    font-size: 18px;
}
.about-four-content-4 .small-image-right-side .review-area {
    position: relative;
    right: 0;
    bottom: 0;
    padding: 0;
    border-radius: 10px 0 0 0;
}
.about-four-content-4 .small-image-right-side .review-area .stars-area {
    margin-top: 13px;
}
.about-four-content-4
    .small-image-right-side
    .review-area
    .stars-area
    .wrapper {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}
.about-four-content-4
    .small-image-right-side
    .review-area
    .stars-area
    .wrapper
    .single {
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00b67a;
}
.about-four-content-4
    .small-image-right-side
    .review-area
    .stars-area
    .wrapper
    .single
    i {
    color: #fff;
    font-size: 14px;
}
.about-four-content-4
    .small-image-right-side
    .review-area
    .stars-area
    .content {
    color: #111032;
}
.about-four-content-4
    .small-image-right-side
    .review-area
    .stars-area
    .content
    span {
    font-size: 14px;
    color: #111032;
}

.about-four-content .short-service-area .single-short-service-area {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(97, 94, 252, 0.2);
}
.about-four-content .short-service-area .single-short-service-area p {
    margin: 0;
    margin-left: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #111032;
}
.about-four-content .thumbnail-small-about {
    border-radius: 10px;
    overflow: hidden;
}
.about-four-content .button-wrapper {
    display: flex;
    align-items: center;
    margin-top: 45px;
}
@media only screen and (max-width: 575px) {
    .about-four-content .button-wrapper {
        align-items: flex-start;
    }
}
.about-four-content .button-wrapper .call-infor-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-four-content .button-wrapper .call-infor-wrapper .info * {
    color: var(--color-primary);
}
.about-four-content .button-wrapper .call-infor-wrapper .info span {
    display: block;
}
.about-four-content .button-wrapper .call-infor-wrapper .info a {
    font-size: 24px;
}

.bg_dark {
    background: #111032;
}

.rts-about-area {
    z-index: 1;
}
.rts-about-area .move-right img {
    width: 100%;
}

.about-five-right-area .pre-title {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 10px;
}
.about-five-right-area .title {
    color: white;
    font-size: 48px;
    margin-top: 15px;
}
@media only screen and (max-width: 1199px) {
    .about-five-right-area .title {
        font-size: 34px;
    }
}
@media only screen and (max-width: 575px) {
    .about-five-right-area .title {
        font-size: 24px;
    }
}
.about-five-right-area p.disc {
    color: #ffffff;
    max-width: 85%;
}
@media only screen and (max-width: 575px) {
    .about-five-right-area p.disc {
        max-width: 100%;
        font-size: 16px;
    }
}

.bottom-right-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.about-seven-left-content .pre {
    padding: 6px 15px;
    border-radius: 33px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    margin-bottom: 70px;
    color: var(--color-primary);
    display: block;
    max-width: max-content;
}
@media only screen and (max-width: 767px) {
    .about-seven-left-content .pre {
        margin-bottom: 20px;
    }
}
.about-seven-left-content p.disc-large {
    font-size: 30px;
    color: #111032;
    line-height: 38px;
    max-width: 100%;
}
@media only screen and (max-width: 575px) {
    .about-seven-left-content p.disc-large {
        font-size: 18px;
        line-height: 1.4;
    }
}
.about-seven-left-content .button-wrapper {
    display: flex;
    align-items: center;
    margin-top: 45px;
}
.about-seven-left-content .button-wrapper .call-infor-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-seven-left-content .button-wrapper .call-infor-wrapper .info * {
    color: var(--color-primary);
}
.about-seven-left-content .button-wrapper .call-infor-wrapper .info span {
    display: block;
}
.about-seven-left-content .button-wrapper .call-infor-wrapper .info a {
    font-size: 24px;
}

.thumbnail-seven-about {
    position: relative;
}
@media only screen and (max-width: 991px) {
    .thumbnail-seven-about {
        margin: auto;
        text-align: center;
    }
}
.thumbnail-seven-about .counter-up-area {
    position: absolute;
    left: -60px;
    bottom: -40px;
    background: #615efc;
    border-radius: 10px;
    padding: 19px 25px;
    width: 170px;
}
@media only screen and (max-width: 991px) {
    .thumbnail-seven-about .counter-up-area {
        left: 10%;
    }
}
@media only screen and (max-width: 575px) {
    .thumbnail-seven-about .counter-up-area {
        left: 0%;
    }
}
.thumbnail-seven-about .counter-up-area .icon {
    margin-bottom: 15px;
}
.thumbnail-seven-about .counter-up-area .title {
    font-size: 40px;
    font-family: var(--font-secondary);
    margin-top: 30px;
    margin-bottom: 5px;
    margin-top: 20px;
}
.thumbnail-seven-about .counter-up-area span {
    color: #fff;
}

.title-area-main-wrapper-left-nine .pre-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.title-area-main-wrapper-left-nine .title {
    font-size: 48px;
}
@media only screen and (max-width: 767px) {
    .title-area-main-wrapper-left-nine .title {
        font-size: 34px;
    }
}
.title-area-main-wrapper-left-nine p.disc {
    font-size: 16px;
}

.about-inner-conetent-right-nine {
    padding-left: 70px;
}
@media only screen and (max-width: 991px) {
    .about-inner-conetent-right-nine {
        padding-left: 10px;
        margin-top: 30px;
    }
}
.about-inner-conetent-right-nine .rating-area {
    display: flex;
    align-items: center;
    gap: 25px;
}
@media only screen and (max-width: 575px) {
    .about-inner-conetent-right-nine .rating-area {
        flex-wrap: wrap;
    }
}
.about-inner-conetent-right-nine .rating-area img.main {
    max-width: 190px;
}
.about-inner-conetent-right-nine .rating-area .rating-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.about-inner-conetent-right-nine .rating-area .rating-area img {
    display: block;
}
.about-inner-conetent-right-nine .rating-area .rating-area p {
    color: #111032;
}
.about-inner-conetent-right-nine .button-bottom-about {
    display: flex;
    align-items: center;
    gap: 56px;
    margin-top: 25px;
}
@media only screen and (max-width: 767px) {
    .about-inner-conetent-right-nine .button-bottom-about {
        flex-wrap: wrap;
        gap: 25px;
    }
}
.about-inner-conetent-right-nine .button-bottom-about .user-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-inner-conetent-right-nine
    .button-bottom-about
    .user-wrapper
    .infor
    .title {
    margin-bottom: 2px;
    font-weight: 500;
    font-family: var(--font-secondary);
}
.about-inner-conetent-right-nine
    .button-bottom-about
    .user-wrapper
    .infor
    span {
    color: #111032;
}

.top-title-wrapper-center-clip .title {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #111032;
    font-size: 90px;
    text-align: center;
    font-family: var(--font-secondary);
}
@media only screen and (max-width: 1199px) {
    .top-title-wrapper-center-clip .title {
        font-size: 60px;
    }
}
@media only screen and (max-width: 767px) {
    .top-title-wrapper-center-clip .title {
        font-size: 40px;
    }
}
@media only screen and (max-width: 575px) {
    .top-title-wrapper-center-clip .title {
        font-size: 32px;
    }
}

.portfolio-area-main-wrapper .thumbnail-image img {
    width: 100%;
}

.portfolio-area-main-wrapper .right-images-content {
    background-image: url(../images/portfolio/02.jpg);
    height: 100%;
    border-radius: 10px;
    padding: 40px;
}
@media only screen and (max-width: 575px) {
    .portfolio-area-main-wrapper .right-images-content {
        padding: 25px;
    }
}
.portfolio-area-main-wrapper .right-images-content .title {
    font-size: 48px;
    color: #fff;
}
@media only screen and (max-width: 1199px) {
    .portfolio-area-main-wrapper .right-images-content .title {
        font-size: 26px;
    }
}
.portfolio-area-main-wrapper .right-images-content p.disc {
    color: #ffffff;
}
.portfolio-area-main-wrapper .right-images-content .rts-btn:hover {
    border: 1px solid var(--color-primary) !important;
}

.appoinment-area-main {
    /* background-image: url(../images/appoinment/01.jpg); */
    background-color: rgb(31, 40, 87);
    padding: 70px;
}
@media only screen and (max-width: 575px) {
    .appoinment-area-main {
        padding: 15px;
    }
}
.appoinment-area-main .title {
    color: #fff;
    font-size: 48px;
}
@media only screen and (max-width: 575px) {
    .appoinment-area-main .title {
        font-size: 32px;
    }
}
@media only screen and (max-width: 479px) {
    .appoinment-area-main .title {
        font-size: 26px;
    }
}

.appoinment-area-main {
    border-radius: 10px 0 0 10px;
    height: 100%;
}
.appoinment-area-main form input {
    height: 50px;
    border-radius: 25px;
    margin-bottom: 20px;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 14px;
}
.appoinment-area-main form input:focus {
    border: 1px solid #fff;
}
.appoinment-area-main form .half-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}
@media only screen and (max-width: 575px) {
    .appoinment-area-main form .half-input-wrapper {
        flex-direction: column;
    }
}
.appoinment-area-main form a.rts-btn {
    background: #fff;
    color: var(--color-primary);
}
.appoinment-area-main form a.rts-btn img {
    filter: brightness(0) saturate(100%) invert(30%) sepia(70%) saturate(3539%)
        hue-rotate(234deg) brightness(110%) contrast(98%);
}

.request-appoinemnt-area-main-wrapper {
    background-image: url(../images/appoinment/03.jpg);
    padding: 76px 0 !important;
}

.request-appoinemnt-area-main-wrapper {
    text-align: center;
    border-radius: 10px;
}
.request-appoinemnt-area-main-wrapper .pre {
    border-radius: 30px;
    padding: 5px 16px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    display: block;
    max-width: max-content;
    margin: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.request-appoinemnt-area-main-wrapper .title {
    margin-top: 20px;
    color: #fff;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
    .request-appoinemnt-area-main-wrapper .title {
        font-size: 54px;
    }
}
@media only screen and (max-width: 767px) {
    .request-appoinemnt-area-main-wrapper .title {
        font-size: 44px;
    }
}
@media only screen and (max-width: 575px) {
    .request-appoinemnt-area-main-wrapper .title {
        font-size: 32px;
        line-height: 1.3;
    }
}
@media only screen and (max-width: 479px) {
    .request-appoinemnt-area-main-wrapper .title {
        font-size: 26px;
    }
}
.request-appoinemnt-area-main-wrapper .title span {
    font-size: 48px;
}
@media only screen and (max-width: 575px) {
    .request-appoinemnt-area-main-wrapper .title span {
        font-size: 32px;
    }
}
.request-appoinemnt-area-main-wrapper .rts-btn {
    margin: auto;
    background: #fff;
    color: var(--color-primary);
}

.uni-circles-blureds {
    overflow: hidden;
    z-index: -1;
}

.uni-circles-blureds > div {
    width: 1000px;
    height: 1000px;
    display: block;
    position: absolute;
    border-radius: 100%;
    filter: blur(80px);
}

.uni-circles-blureds > div:first-child {
    left: -50%;
    top: -50%;
    background: #fff;
}

.uni-circles-blureds > div:last-child {
    right: -50%;
    bottom: -75%;
    background: #888888;
}

.uni-circle-text {
    position: absolute;
    left: 57%;
    top: 20%;
    transform: translate(-70%, -44%);
    border-radius: 100%;
    z-index: 10;
}
.uni-circle-text i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    color: #fff;
    z-index: 15;
}

.uni-circle-text-path {
    fill: currentColor;
    height: auto;
    max-width: 145px;
    width: 145px;
    right: 10%;
    transform-origin: center;
    text-transform: uppercase;
}

.uni-circle-text::before {
    content: "";
    display: block;
    width: 78px;
    height: 78px;
    border: 1px solid rgba(131, 131, 131, 0.175);
    position: absolute;
    transform: scale(0.5);
    left: 0;
    top: 0;
    transform: translate(20px, 20px);
    border-radius: 100%;
}

.uni-animation-spin {
    display: inline-flex;
    animation: spin 10s linear 0s infinite;
    background: var(--color-primary);
    border-radius: 50%;
}
.uni-animation-spin textPath {
    color: #fff;
    font-size: 13px;
}

.uni-animation-bounce {
    display: inline-flex;
    animation: bounce 3s linear 0s infinite;
}

.uni-animation-fade {
    display: inline-flex;
    animation: fade 2s linear 0s infinite;
}

.uni-animation-delay-small {
    animation-delay: 0.2s;
}

.uni-animation-delay-large {
    animation-delay: 0.4s;
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(16px);
    }
    100% {
        transform: translateY(0);
    }
}
.appoinment-area-wrapper-main-7 {
    background: var(--color-primary);
    padding: 78px 100px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}
@media only screen and (max-width: 767px) {
    .appoinment-area-wrapper-main-7 {
        padding: 30px;
    }
}
.appoinment-area-wrapper-main-7::after {
    height: 810px;
    width: 810px;
    border-radius: 50%;
    background: rgba(43, 39, 255, 0.2);
    position: absolute;
    right: -10%;
    top: 50%;
    content: "";
    z-index: -1;
    transform: translateY(-50%);
}
.appoinment-area-wrapper-main-7 .right-area-start-appoinment-7 {
    position: absolute;
    right: 60px;
    z-index: 1;
    bottom: 0;
}
@media only screen and (max-width: 991px) {
    .appoinment-area-wrapper-main-7 .right-area-start-appoinment-7 {
        max-width: 28%;
    }
}
@media only screen and (max-width: 767px) {
    .appoinment-area-wrapper-main-7 .right-area-start-appoinment-7 {
        display: none;
    }
}
.appoinment-area-wrapper-main-7 .appoinemnt-area-left .title {
    margin-top: 70px;
    font-weight: 500;
    color: #fff;
}
.appoinment-area-wrapper-main-7 .appoinemnt-area-left p.disc {
    font-size: 16px;
    color: #fff;
    max-width: 426px;
}
.appoinment-area-wrapper-main-7 .rts-btn {
    background: #fff;
    color: var(--color-primary);
}
.appoinment-area-wrapper-main-7 .rts-btn:hover {
    background: #111032;
    color: #fff;
}

.rts-find-application-area-inner {
    border-radius: 10px;
    background: var(--color-primary);
    padding: 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
@media only screen and (max-width: 575px) {
    .rts-find-application-area-inner {
        padding: 55px;
    }
}
@media only screen and (max-width: 479px) {
    .rts-find-application-area-inner {
        padding: 25px;
    }
}
.rts-find-application-area-inner::after {
    position: absolute;
    right: 130px;
    top: -70px;
    background: #5956ff;
    height: 411px;
    width: 411px;
    content: "";
    z-index: -1;
    border-radius: 50%;
}
.rts-find-application-area-inner .large-iamge {
    position: absolute;
    right: 170px;
    bottom: 0;
}
@media only screen and (max-width: 1199px) {
    .rts-find-application-area-inner .large-iamge {
        right: 55px;
    }
}
@media only screen and (max-width: 991px) {
    .rts-find-application-area-inner .large-iamge {
        right: 10px;
        max-width: 30%;
    }
}
@media only screen and (max-width: 767px) {
    .rts-find-application-area-inner .large-iamge {
        display: none;
    }
}
.rts-find-application-area-inner .find-app-wrapper {
    display: flex;
    align-items: center;
    gap: 11px;
}
.rts-find-application-area-inner .title {
    color: #fff;
}
.rts-find-application-area-inner p.disc {
    max-width: 482px;
    color: #fff;
}

.appoinment-area-main.appoinment-page form textarea {
    height: 97px;
    color: white;
    padding: 10px;
    border-radius: 20px;
}
.appoinment-area-main.appoinment-page form textarea:focus {
    border-color: #fff;
}

@media only screen and (max-width: 991px) {
    .rts-appoinment-area .thumbnail-appoinment-5 img {
        width: 100%;
        margin-top: 50px;
    }
}
@media only screen and (max-width: 991px) {
    .rts-appoinment-area .uni-circle-text {
        display: none;
    }
}

/* .parent-nav li a.active {
  background: var(--color-primary);
  color: #fff;
} */

.main-nav a {
    transition: 0.3s;
    font-weight: 500;
}
.main-nav:hover > a {
    color: var(--color-primary);
}
.main-nav > a.active {
    background: transparent !important;
    color: var(--color-primary) !important;
}

.menu-item-open > a {
    color: #5956ff;
}

.g-75 {
    --bs-gutter-y: 30px;
    --bs-gutter-x: 70px;
}
@media only screen and (max-width: 575px) {
    .g-75 {
        --bs-gutter-y: 20px;
        --bs-gutter-x: 20px;
    }
}

.single-pricing-area {
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    padding: 40px 50px;
}
@media only screen and (max-width: 479px) {
    .single-pricing-area {
        padding: 25px;
    }
}
.single-pricing-area .pricing-head {
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 30px;
}
.single-pricing-area .pricing-head span {
    color: #111111;
}
.single-pricing-area .pricing-head .price {
    color: var(--color-primary);
    margin-bottom: 6px;
}
.single-pricing-area .pricing-head p {
    color: #1f1f1f;
    margin-bottom: 20px;
}
.single-pricing-area .body p {
    font-size: 16px;
}
.single-pricing-area .single-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}
.single-pricing-area .single-check i {
    color: var(--color-primary);
}
.single-pricing-area .rts-btn {
    margin-top: 40px;
}
.single-pricing-area.active {
    background: #615efc;
}
.single-pricing-area.active h2,
.single-pricing-area.active p,
.single-pricing-area.active span {
    color: #fff !important;
}
.single-pricing-area.active i {
    color: #fff;
}
.single-pricing-area.active .rts-btn {
    border: 1px solid #fff;
}
.single-pricing-area.active .rts-btn:hover {
    border-color: #111032;
}

.title-between-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
@media only screen and (max-width: 991px) {
    .title-between-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}
.title-between-area .title {
    margin-bottom: 0;
}
.title-between-area p.disc {
    max-width: 520px;
}

.single-team-area-start {
    position: relative;
}
.single-team-area-start.with-border .thumbnail {
    border: 1px solid rgb(97, 94, 252);
}
.single-team-area-start .thumbnail {
    display: block;
    overflow: hidden;
}
.single-team-area-start .thumbnail img {
    transition: 0.3s;
}
.single-team-area-start:hover .thumbnail img {
    transform: scale(1.06);
}
.single-team-area-start .bottom {
    text-align: center;
    margin-top: 30px;
}
.single-team-area-start .bottom .title {
    font-size: 20px;
    margin-bottom: 10px;
    transition: 0.3s;
}
.single-team-area-start .bottom .title:hover {
    color: var(--color-primary);
}
.single-team-area-start .bottom p {
    margin-bottom: 10px;
}
.single-team-area-start .bottom .social-area-tranaparent {
    justify-content: center;
}
.single-team-area-start .bottom .social-area-tranaparent ul li a i {
    color: var(--color-primary);
}
.single-team-area-start.team-absolute-bottom {
    position: relative;
}
.single-team-area-start.team-absolute-bottom .thumbnail {
    border-radius: 10px;
    display: block;
    overflow: hidden;
}
.single-team-area-start.team-absolute-bottom .thumbnail img {
    transition: 0.3s;
}
.single-team-area-start.team-absolute-bottom .bottom {
    margin-top: 0;
    position: absolute;
    left: 50%;
    min-width: max-content;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 15px 23px;
    bottom: -45px;
    border-radius: 10px;
    border: 1px solid var(--color-primary);
    transition: 0.3s;
}
.single-team-area-start.team-absolute-bottom .bottom .social-area-tranaparent {
    margin-bottom: 10px;
}
.single-team-area-start.team-absolute-bottom
    .bottom
    .social-area-tranaparent
    i {
    transition: 0.3s;
}
.single-team-area-start.team-absolute-bottom .bottom a .title {
    margin-bottom: 5px;
    transition: 0.3s;
}
.single-team-area-start.team-absolute-bottom .bottom p {
    transition: 0.3s;
}
.single-team-area-start.team-absolute-bottom:hover .thumbnail img {
    transform: scale(1.1);
}
.single-team-area-start.team-absolute-bottom:hover .bottom {
    background: var(--color-primary);
}
.single-team-area-start.team-absolute-bottom:hover .bottom .title {
    color: #fff;
}
.single-team-area-start.team-absolute-bottom:hover .bottom i {
    color: #fff;
}
.single-team-area-start.team-absolute-bottom:hover .bottom p {
    color: #fff;
}

.swiper {
    overflow: hidden;
}

.single-team-area-start.team-radious-style .thumbnail {
    border-radius: 50%;
    overflow: hidden;
    display: block;
    height: 300px;
    width: 300px;
    margin: auto;
}
@media only screen and (max-width: 991px) {
    .single-team-area-start.team-radious-style .thumbnail {
        height: 250px;
        width: 250px;
    }
}
@media only screen and (max-width: 767px) {
    .single-team-area-start.team-radious-style .thumbnail {
        height: 200px;
        width: 200px;
    }
}

.rts-apponemnt-area-5-content .call-infor-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}
.rts-apponemnt-area-5-content .call-infor-wrapper .info * {
    color: var(--color-primary);
}
.rts-apponemnt-area-5-content .call-infor-wrapper .info span {
    display: block;
}
.rts-apponemnt-area-5-content .call-infor-wrapper .info a {
    font-size: 24px;
}

.title-area-left .pre-title {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
}

.rts-appoinment-area {
    z-index: 1;
}
.rts-appoinment-area .right-bottom-area {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.rts-appoinment-area .right-bottom-area img {
    max-width: 259.15px;
}

.single-details-content-info {
    height: 100%;
}
.single-details-content-info .title {
    font-size: 20px;
    margin-bottom: 18px;
    color: #111032;
}
.single-details-content-info .inner {
    padding: 18px 13px;
    border-radius: 10px;
    background: #f0f0ff;
}
.single-details-content-info .inner p {
    margin-bottom: 0px;
    color: #111032;
    font-weight: 400;
    font-size: 16px;
}
.single-details-content-info .inner p:last-child {
    margin-bottom: 0;
}

.swiper-container-h1-team-8 .team-radious-style .thumbnail {
    height: 207px;
    width: 207px;
    border-color: rgba(97, 94, 252, 0.2);
    transition: 0.3s;
}
.swiper-container-h1-team-8 .team-radious-style .thumbnail:hover {
    border-color: var(--color-primary);
}

.rts-single-blog {
    background-color: #ffffff;
    border-radius: 1.2rem;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px,
        rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px,
        rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
        rgba(42, 51, 70, 0.04) 0px 6px 6px -3px,
        rgba(14, 63, 126, 0.04) 0px 12px 12px -6px,
        rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    padding: 1rem;
}
.rts-single-blog .thumbnail {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}
.rts-single-blog .thumbnail img {
    transition: 0.3s;
}
.rts-single-blog:hover .thumbnail img {
    transform: scale(1.1);
}
.rts-single-blog .inner-content {
    margin-top: 25px;
    padding: 0.5rem 2rem;
    padding-bottom: 2rem;
}
.rts-single-blog .inner-content .author-area {
    display: flex;
    align-items: center;
    gap: 34px;
}
.rts-single-blog .inner-content .author-area span {
    font-size: 14px;
    font-weight: 400;
    position: relative;
}
.rts-single-blog .inner-content .author-area span.name::after {
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #d9d9d9;
    content: "";
}
.rts-single-blog a.button-wrapper {
    margin-top: 15px;
    display: block;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(97, 94, 252, 0.2);
    margin-bottom: 28px;
}
.rts-single-blog a.button-wrapper .title {
    font-size: 17px;
    transition: 0.3s;
    margin-bottom: 0;
    font-weight: 500;
}

.rts-single-blog a.button-wrapper p {
    margin-top: 1rem;
    font-size: 1.35rem;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media only screen and (max-width: 575px) {
    .rts-single-blog a.button-wrapper .title {
        font-size: 15px;
    }
}
.rts-single-blog a.button-wrapper:hover .title {
    color: var(--color-primary);
}

.single-blog-list-area .thumbnail {
    display: block;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.single-blog-list-area .thumbnail img {
    transition: 0.3s;
    width: 100%;
}
.single-blog-list-area:hover .thumbnail img {
    transform: scale(1.1);
}
.single-blog-list-area .inner-content-area {
    padding: 40px 50px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    border-radius: 0 0 10px 10px;
}
@media only screen and (max-width: 767px) {
    .single-blog-list-area .inner-content-area {
        padding: 25px;
    }
}
.single-blog-list-area .inner-content-area .tag-author-area {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media only screen and (max-width: 575px) {
    .single-blog-list-area .inner-content-area .tag-author-area {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.single-blog-list-area .inner-content-area .tag-author-area .single {
    display: flex;
    align-items: center;
    gap: 10px;
}
.single-blog-list-area .inner-content-area .tag-author-area .single i {
    color: var(--color-primary);
}
.single-blog-list-area .inner-content-area a {
    margin-top: 25px;
    display: block;
    margin-bottom: 35px;
}
.single-blog-list-area .inner-content-area a .title {
    font-size: 34px;
    line-height: 44px;
    transition: 0.3s;
}
@media only screen and (max-width: 767px) {
    .single-blog-list-area .inner-content-area a .title {
        font-size: 26px;
        line-height: 1.3;
    }
}
@media only screen and (max-width: 575px) {
    .single-blog-list-area .inner-content-area a .title {
        font-size: 20px;
    }
}
.single-blog-list-area .inner-content-area a:hover .title {
    color: var(--color-primary);
}
.single-blog-list-area .inner-content-area .rts-btn {
    padding: 18px 45px;
    margin: 0;
}

.single-sidebar-wized {
    padding: 35px 30px;
    border-radius: 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    margin-bottom: 40px;
}
@media only screen and (max-width: 575px) {
    .single-sidebar-wized {
        padding: 15px;
    }
}
.single-sidebar-wized:last-child {
    margin-bottom: 0;
}
.single-sidebar-wized .search {
    position: relative;
}
.single-sidebar-wized .search input {
    height: 50px;
    border-radius: 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    color: #7d7d7d;
}
.single-sidebar-wized .search input:focus {
    border: 1px solid var(--color-primary);
}
.single-sidebar-wized .search i {
    position: absolute;
    right: 18px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}
.single-sidebar-wized .title-area {
    margin-bottom: 25px;
}
.single-sidebar-wized .title-area .title {
    font-size: 24px;
}
.single-sidebar-wized .single-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    padding: 15px 20px;
    transition: 0.3s;
    margin-bottom: 10px;
}
.single-sidebar-wized .single-service:last-child {
    margin-bottom: 0;
}
.single-sidebar-wized .single-service p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #111032;
    transition: 0.3s;
}
.single-sidebar-wized .single-service i {
    color: #111032;
    transition: 0.3s;
}
.single-sidebar-wized .single-service:hover {
    background: var(--color-primary);
}
.single-sidebar-wized .single-service:hover p {
    color: #fff;
}
.single-sidebar-wized .single-service:hover i {
    color: #fff;
}

.signle-post-short-area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.signle-post-short-area:last-child {
    margin-bottom: 0;
}
.signle-post-short-area .thumbnail {
    display: block;
    overflow: hidden;
    max-width: 85px;
}
.signle-post-short-area .infor .time {
    display: flex;
    align-items: center;
    gap: 12px;
}
.signle-post-short-area .infor .title {
    font-size: 18px;
    margin: 0;
    margin-top: 10px;
    line-height: 24px;
    transition: 0.3s;
}
@media only screen and (max-width: 575px) {
    .signle-post-short-area .infor .title {
        font-size: 18px;
    }
}
.signle-post-short-area .infor .title:hover {
    color: var(--color-primary);
}

.tag-wrapper-small {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.tag-wrapper-small .single-tag {
    padding: 6px 15px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    border-radius: 6px;
    font-size: 14px;
    color: #74787c;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}
.tag-wrapper-small .single-tag:hover {
    background: #615efc;
    color: #fff;
}

.blog-details-main-wrapper .tag-author-area {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
@media only screen and (max-width: 575px) {
    .blog-details-main-wrapper .tag-author-area {
        gap: 10px;
    }
    .blog-details-main-wrapper .tag-author-area .single span{
        font-size: 1.1rem;
    }
}
.blog-details-main-wrapper .tag-author-area .single {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-details-main-wrapper .tag-author-area .single i {
    color: var(--color-primary);
}
.blog-details-main-wrapper .thumbnail-main img {
    width: 100%;
}
.blog-details-main-wrapper .inner-content {
    padding: 40px 50px;
    border: 1px solid rgba(97, 94, 252, 0.2);
}
@media only screen and (max-width: 767px) {
    .blog-details-main-wrapper .inner-content {
        padding: 25px;
    }
}
@media only screen and (max-width: 575px) {
    .blog-details-main-wrapper .inner-content {
        padding: 15px;
    }
}
.blog-details-main-wrapper .inner-content .title {
    margin-top: 25px;
    display: block;
    line-height: 34px;
}
@media only screen and (max-width: 575px) {
    .blog-details-main-wrapper .inner-content .title {
        line-height: 1.3;
        font-size: 18px;
    }
}
.blog-details-main-wrapper .inner-content .quote-area {
    padding: 25px 40px;
    border-radius: 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    margin-bottom: 35px;
}
@media only screen and (max-width: 575px) {
    .blog-details-main-wrapper .inner-content .quote-area {
        padding: 15px;
    }
}
.blog-details-main-wrapper .inner-content .quote-area p {
    font-size: 18px;
    color: #30373e;
    font-weight: 500;
    line-height: 26px;
    font-family: var(--font-seconday);
    margin: 0;
    margin-bottom: 0 !important;
}
.blog-details-main-wrapper .inner-content p.disc {
    margin-bottom: 23px;
}

.tag-share-wrapper-blog-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media only screen and (max-width: 767px) {
    .tag-share-wrapper-blog-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
.tag-share-wrapper-blog-details .tag-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.tag-share-wrapper-blog-details .tag-area span {
    color: #30373e;
    font-size: 18px;
    font-weight: 600;
}
.tag-share-wrapper-blog-details .tag-area button {
    max-width: max-content;
    padding: 11px 17px;
    border-radius: 30px;
    transition: 0.3s;
}
.tag-share-wrapper-blog-details .tag-area button:hover {
    background: var(--color-primary);
    color: #fff;
}
.tag-share-wrapper-blog-details .social-area {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tag-share-wrapper-blog-details .social-area span {
    color: #30373e;
    font-size: 18px;
    font-weight: 600;
}
.tag-share-wrapper-blog-details .social-area ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}
.tag-share-wrapper-blog-details .social-area ul li a {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0ff;
    transition: 0.3s;
}
.tag-share-wrapper-blog-details .social-area ul li a i {
    transition: 0.3s;
    color: #111032;
}
.tag-share-wrapper-blog-details .social-area ul li a:hover {
    background: var(--color-primary);
}
.tag-share-wrapper-blog-details .social-area ul li a:hover i {
    color: #fff;
}

.blog-author-area-main {
    margin-top: 40px;
    padding-top: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}

.blog-author-area-main {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media only screen and (max-width: 575px) {
    .blog-author-area-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
.blog-author-area-main .thumbnail {
    min-width: max-content;
}
.blog-author-area-main .thumbnail img {
    min-width: max-content;
}
.blog-author-area-main .information span {
    margin: 0;
}
.blog-author-area-main .information .title {
    margin: 0;
}
.blog-author-area-main .information p.disc {
    margin: 0;
}

.comment-form-details title {
    font-size: 30px;
}
.comment-form-details .input-half-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.comment-form-details input {
    height: 60px;
    margin-bottom: 15px;
}
.comment-form-details textarea {
    height: 140px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    padding: 13px;
}
.comment-form-details textarea:focus {
    border: 1px solid var(--color-primary);
}
.comment-form-details button {
    margin-top: 20px;
}

.awards-area-start-one .title-area-center p.disc {
    max-width: 50%;
    margin: auto;
}
@media only screen and (max-width: 767px) {
    .awards-area-start-one .title-area-center p.disc {
        max-width: 100%;
    }
}

.single-awards-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 0;
    border-bottom: 1px solid rgba(97, 94, 252, 0.2);
}
.single-awards-area .title {
    margin: 0;
    font-size: 32px;
    transition: 0.3s;
}
@media only screen and (max-width: 767px) {
    .single-awards-area .title {
        font-size: 24px;
    }
}
@media only screen and (max-width: 479px) {
    .single-awards-area .title {
        font-size: 18px;
    }
}
@media only screen and (max-width: 767px) {
    .single-awards-area .right-logo img {
        max-width: 100px;
    }
}
.single-awards-area:hover .title {
    padding-left: 15px;
    border-left: 5px solid var(--color-primary);
}

.rts-success-story-area .vedio-icone {
    position: relative;
}
.rts-success-story-area .vedio-icone img.mous {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    max-width: 100px;
    height: auto;
    pointer-events: none;
    transition: 0.3s;
}
.rts-success-story-area .vedio-icone:hover img.mous {
    transform: translate(-50%, -50%) scale(1);
}

.mySwiper-banner-seven {
    position: relative;
}
.mySwiper-banner-seven .bottom-star-area {
    display: flex;
    align-items: center;
    gap: 70px;
    top: auto;
    bottom: 64px;
    position: absolute;
    z-index: 10;
    left: 320px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .mySwiper-banner-seven .bottom-star-area {
        left: 100px;
    }
}
@media only screen and (max-width: 1199px) {
    .mySwiper-banner-seven .bottom-star-area {
        left: 30px;
    }
}
@media only screen and (max-width: 575px) {
    .mySwiper-banner-seven .bottom-star-area {
        flex-direction: column;
        gap: 20px;
        left: 15px;
    }
}
.mySwiper-banner-seven .bottom-star-area .star-area-left span {
    font-weight: 400;
    color: #111032;
}
.mySwiper-banner-seven .bottom-star-area .star-area-left .top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 15px;
}
.mySwiper-banner-seven .bottom-star-area .star-area-left .wrapper {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0;
}
.mySwiper-banner-seven .bottom-star-area .star-area-left .wrapper .single {
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00b67a;
}
.mySwiper-banner-seven .bottom-star-area .star-area-left .wrapper .single i {
    color: #fff;
    font-size: 14px;
}
.mySwiper-banner-seven .bottom-star-area .right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.mySwiper-banner-seven .bottom-star-area .right .trusted-patient .title {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 24px;
    font-family: var(--font-secondary);
}

.single-hospitalbranch {
    background: #fff;
    border-radius: 10px;
    display: block;
    overflow: hidden;
}
.single-hospitalbranch .thumbnail {
    display: block;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.single-hospitalbranch .thumbnail img {
    transition: 0.3s;
    aspect-ratio: 3/2;
    object-fit: contain;
}
.single-hospitalbranch:hover .thumbnail img {
    transform: scale(1.1);
}
.single-hospitalbranch .inner-content {
    padding: 24px;
}
.single-hospitalbranch .inner-content .title {
    margin-bottom: 8px;
    font-size: 24px;
    transition: 0.3s;
}
.single-hospitalbranch .inner-content .title:hover {
    color: var(--color-primary) !important;
}
.single-hospitalbranch .inner-content .bottom-area-start {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(97, 94, 252, 0.2);
    margin-top: 25px;
    justify-content: space-between;
}
.single-hospitalbranch .inner-content .bottom-area-start .left {
    display: flex;
    align-items: center;
    gap: 6px;
}
.single-hospitalbranch .inner-content .bottom-area-start .left .icon i {
    font-size: 22px;
    color: var(--color-primary);
}
.single-hospitalbranch .inner-content .bottom-area-start .left p {
    font-size: 14px;
    color: #111032;
    line-height: 20px;
}
.single-hospitalbranch .inner-content .bottom-area-start .right span {
    color: #111032;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 5px;
    display: block;
}
.single-hospitalbranch .inner-content .bottom-area-start .right .stars-area {
    display: flex;
    align-items: center;
    gap: 1px;
}
.single-hospitalbranch .inner-content .bottom-area-start .right .stars-area i {
    font-size: 14px;
    color: var(--color-primary);
}

.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 0;
}

.brand-wrapper-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media only screen and (max-width: 991px) {
    .brand-wrapper-main {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
}
.brand-wrapper-main .single-brand {
    max-width: 190px;
}
.brand-wrapper-main .single-brand img {
    max-width: 190px;
}
@media only screen and (max-width: 1199px) {
    .brand-wrapper-main .single-brand img {
        max-width: 120px;
    }
}

.swiper-container-h3 {
    position: relative;
    padding-bottom: 60px;
    overflow: hidden;
}
.swiper-container-h3 .swiper-pagination {
    bottom: 0;
}

.swiper-next-prev-controller .swiper-button-next,
.swiper-next-prev-controller .swiper-button-prev {
    position: absolute;
    height: 50px;
    width: 50px;
    background: transparent;
    border: 1px solid #615efc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}
.swiper-next-prev-controller .swiper-button-next i,
.swiper-next-prev-controller .swiper-button-prev i {
    color: #615efc;
}
.swiper-next-prev-controller .swiper-button-next:hover,
.swiper-next-prev-controller .swiper-button-prev:hover {
    background: var(--color-primary);
}
.swiper-next-prev-controller .swiper-button-next:hover i,
.swiper-next-prev-controller .swiper-button-prev:hover i {
    color: #fff;
}
.swiper-next-prev-controller .swiper-button-next {
    right: -80px;
}
.swiper-next-prev-controller .swiper-button-prev {
    left: -80px;
}

.button-dental-bwtween-area .swiper-button-next,
.button-dental-bwtween-area .swiper-button-prev {
    position: absolute;
    height: 50px;
    width: 50px;
    background: transparent;
    border: 1px solid #615efc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: none;
    bottom: 0;
    top: auto;
    transition: 0.3s;
}
@media only screen and (max-width: 575px) {
    .button-dental-bwtween-area .swiper-button-next,
    .button-dental-bwtween-area .swiper-button-prev {
        display: none;
    }
}
.button-dental-bwtween-area .swiper-button-next i,
.button-dental-bwtween-area .swiper-button-prev i {
    color: #615efc;
    transition: 0.3s;
}
.button-dental-bwtween-area .swiper-button-next:hover,
.button-dental-bwtween-area .swiper-button-prev:hover {
    background: var(--color-primary);
}
.button-dental-bwtween-area .swiper-button-next:hover i,
.button-dental-bwtween-area .swiper-button-prev:hover i {
    color: #fff;
}
.button-dental-bwtween-area .swiper-button-next {
    right: 0;
}
.button-dental-bwtween-area .swiper-button-prev {
    right: 60px;
    left: auto;
}

.jarallax {
    min-height: 100vh;
    /* Massage some hw accel, good for all, best for mobile */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

li.has-dropdown {
    position: relative;
}
li.has-dropdown .submenu {
    min-width: 230px;
    height: auto;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: 0.3s;
    border-radius: 0 0 6px 6px;
    background-color: #fff;
    border-left: 0;
    border-bottom: 0;
    border-right: 0;
    display: inline-block;
    box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
    padding: 0 0;
    transform-origin: 0 0;
    transform: scaleY(0);
}
li.has-dropdown .submenu li {
    margin-right: 0;
    padding: 0;
}
li.has-dropdown .submenu li a {
    padding: 6px 16px !important;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s;
    border-radius: 4px;
    display: block;
}
li.has-dropdown .submenu li a:hover {
    background: var(--color-primary);
    color: #fff;
}
li.has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: translateY(0);
    transform: scaleY(1);
}

.rts-btn.btn-primary.border.bg-transparent {
    color: var(--color-primary);
    border: 1px solid var(--color-primary) !important;
}
.rts-btn.btn-primary.border.bg-transparent img {
    filter: brightness(0) saturate(100%) invert(46%) sepia(55%) saturate(5974%)
        hue-rotate(228deg) brightness(98%) contrast(103%);
}
.rts-btn.btn-primary.border.bg-transparent:hover {
    background: var(--color-primary) !important;
    color: #fff;
}
.rts-btn.btn-primary.border.bg-transparent:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(10%) saturate(7500%)
        hue-rotate(241deg) brightness(114%) contrast(108%);
}

.rts-mega-menu {
    position: absolute;
    width: 100%;
    height: auto;
    top: 100%;
    transform: scaleY(0);
    left: 0;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    transition: all 0.3s;
    border-radius: 0 0 5px 5px !important;
    background-color: #ffffff;
    display: inline-block;
    box-shadow: 0 36px 35px rgba(61, 60, 60, 0.08);
    transform-origin: 0 0 0;
    padding: 30px 30px;
}
.rts-mega-menu.with-add {
    padding: 0;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
}
.rts-mega-menu.with-add .menu-add-top-area {
    padding: 30px 0 25px 0;
    border-bottom: 1px solid #e1e1ff;
    margin-left: 50px;
}
.rts-mega-menu.with-add .menu-add-top-area .title {
    margin-bottom: 0;
    font-size: 24px;
    color: var(--color-primary);
}
.rts-mega-menu.with-add .menu-right-add {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    max-width: max-content;
    margin-left: auto;
    position: relative;
    border-radius: 0 0 7px 0;
    overflow: hidden;
}
.rts-mega-menu.with-add .menu-right-add .absolute-image img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
}
.rts-mega-menu.with-add .menu-right-add .absolute-image .inner-content {
    position: absolute;
    left: 23px;
    bottom: 23px;
}
.rts-mega-menu.with-add .menu-right-add .absolute-image .inner-content .title {
    color: #fff;
    font-size: 24px;
}
.rts-mega-menu.with-add
    .menu-right-add
    .absolute-image
    .inner-content
    .rts-btn {
    background: #fff;
    color: var(--color-primary);
}
.rts-mega-menu.with-add .mega-menu-item li a {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}
.rts-mega-menu.with-add .mega-menu-item li a img {
    max-width: 30px;
    height: auto;
    padding: 0;
    background: transparent;
    transition: 0.3s;
    margin-right: 5px;
}
.rts-mega-menu.with-add .mega-menu-item li a:hover img {
    filter: brightness(0) saturate(100%) invert(97%) sepia(3%) saturate(0%)
        hue-rotate(288deg) brightness(103%) contrast(100%);
}
.rts-mega-menu.with-add .mega-menu-item li a.active img {
    filter: brightness(0) saturate(100%) invert(97%) sepia(3%) saturate(0%)
        hue-rotate(288deg) brightness(103%) contrast(100%);
}

.mega-menu-item {
    padding: 0;
    margin: 0;
    flex-direction: column;
    display: flex;
    align-items: flex-start !important;
}
.mega-menu-item li {
    margin-bottom: 19px;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
}
.mega-menu-item li:hover a {
    border: 1px solid #e6e5ff;
    border-radius: 4px;
}
.mega-menu-item li a {
    display: flex !important;
    align-items: center;
    padding: 6px 12px !important;
    border: 1px solid transparent;
    width: 90%;
}
.mega-menu-item li a img {
    margin-right: 16px;
    padding: 10px;
    max-width: max-content;
    background: #f0f0ff;
    border-radius: 4px;
}
.mega-menu-item li a .info p {
    margin-bottom: 2px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #083a5e;
}
.mega-menu-item li a .info span {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #497696;
}

.has-dropdown.mega-menu {
    position: static !important;
}

.has-dropdown.mega-menu:hover .rts-mega-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: scaleY(1);
}

.container-full-header .rts-mega-menu {
    transform: translateX(-50%) scaleY(0);
    left: 50%;
    max-width: 80%;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .container-full-header .rts-mega-menu {
        max-width: 90%;
    }
}
.container-full-header .has-dropdown.mega-menu:hover .rts-mega-menu {
    transform: translateX(-50%) scaleY(1);
}

.has-dropdown.mega-menu:hover > a::after {
    content: "\f077";
    color: var(--color-primary);
}

.appoinment-area-main.contact-page {
    border-radius: 10px;
    background: #f9f8ff;
    border: 1px solid #ddd8f9;
    background-image: none;
}
.appoinment-area-main.contact-page input,
.appoinment-area-main.contact-page textarea,
.appoinment-area-main.contact-page .custom-select {
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}
.appoinment-area-main.contact-page input span,
.appoinment-area-main.contact-page textarea span,
.appoinment-area-main.contact-page .custom-select span {
    color: var(--color-primary) !important;
}
.appoinment-area-main.contact-page .rts-btn {
    background: var(--color-primary);
    color: #fff;
}

.shedule-1 table {
    width: 100%;
    border-collapse: separate;
    /* Allows space between cells */
    border-spacing: 6px;
    /* 4px gutter between cells */
    margin: 0;
    font-size: 14px;
    /* Matches overall table background */
}
.shedule-1 th,
.shedule-1 td {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5;
}
.shedule-1 th {
    background-color: rgba(244, 244, 249, 0);
    color: #333;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    border-radius: 10px;
    text-transform: capitalize;
}
.shedule-1 .time {
    background-color: #f9f9f9;
    font-weight: 400;
    font-size: 14px;
    color: var(--color-primary);
}
.shedule-1 .doctor {
    font-size: 12px;
    padding: 20px;
    line-height: 1.3;
    text-align: center;
    border-radius: 8px;
}
.shedule-1 .doctor-blue {
    background-color: #5b67fc;
    /* Dark blue background */
    color: white;
}
.shedule-1 .doctor-blue a:hover {
    color: #fff;
}
.shedule-1 .doctor-blue:hover a {
    color: #fff;
}
.shedule-1 .doctor-light {
    background-color: #f1f1ff;
    /* Light blue background */
    color: var(--color-primary);
    border: none;
}
.shedule-1 .doctor-light * {
    color: var(--color-primary);
}
.shedule-1 .schedule th:first-child,
.shedule-1 .schedule td:first-child {
    background-color: #fafafa;
    /* Light gray background for time column */
    color: var(--color-primary);
}
.shedule-1 .schedule td {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 1.5;
    /* Slight shadow for emphasis */
    /* Ensure the background color stays intact with the border spacing */
}
.shedule-1 .schedule td a {
    font-size: 16px;
    margin-bottom: 0;
    display: block;
    text-decoration: none !important;
}
.shedule-1 .schedule td .schedule .doctor-blue {
    background-color: #5b67fc;
}
.shedule-1 .schedule td .schedule .doctor-light {
    background-color: #f1f1ff;
}

.counter-area-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media only screen and (max-width: 991px) {
    .counter-area-main-wrapper {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: space-between;
    }
}
@media only screen and (max-width: 767px) {
    .counter-area-main-wrapper {
        gap: 80px;
        justify-content: center;
    }
}
.counter-area-main-wrapper .single-counter {
    position: relative;
    text-align: center;
}
.counter-area-main-wrapper .single-counter:last-child::after {
    display: none;
}
.counter-area-main-wrapper .single-counter::after {
    position: absolute;
    content: "";
    right: -150px;
    height: 100%;
    top: 0;
    width: 1px;
    background: rgba(97, 94, 252, 0.2);
}
@media only screen and (max-width: 991px) {
    .counter-area-main-wrapper .single-counter::after {
        display: none;
    }
}
.counter-area-main-wrapper .single-counter .icon-area {
    margin-bottom: 0;
}
.counter-area-main-wrapper .single-counter .title {
    margin-top: 20px;
    margin-bottom: 16px;
    font-size: 40px;
}

.counter-area-main-wrapper .single-counter p {
    font-size: 2rem;
    color: #333;
    font-weight: 500;
}


@media(max-width:765px){
    .counter-area-main-wrapper .single-counter p {
        font-size: 1.5rem;
    }

    .counter-area-main-wrapper .single-counter .title {
        margin-bottom: 5px;
        font-size: 30px;
    }
}

.single-dental-service-areas .thumbnail img {
    width: 1000%;
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: "";
    display: block;
    height: 7px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 7px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

.after-before-main-wrapper-one body {
    position: relative;
    background-color: #dddddd;
    font-family: "helvetica", sans-serif;
    font-weight: lighter;
    font-size: 14px;
    color: #555;
    margin: 0;
    padding: 0;
    min-width: 320px;
}
.after-before-main-wrapper-one h1 {
    text-transform: uppercase;
    color: #333;
}
.after-before-main-wrapper-one h3 {
    font-weight: lighter;
    color: #555555;
}
.after-before-main-wrapper-one a {
    position: relative;
    color: #a8244f;
    text-decoration: none;
}
.after-before-main-wrapper-one a:before {
    content: "";
    height: 2px;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    background-color: #7e1b3b;
    transform: rotateY(90deg);
    transition: transform 0.2s ease-in-out;
}
.after-before-main-wrapper-one a:hover {
    color: #7e1b3b;
    text-decoration: none;
}
.after-before-main-wrapper-one a:hover:before {
    transform: rotateY(0deg);
}
.after-before-main-wrapper-one .split {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: strech;
}
.after-before-main-wrapper-one .split p {
    flex-basis: 100%;
}
@media screen and (min-width: 767px) {
    .after-before-main-wrapper-one .split p {
        flex-basis: 48%;
    }
}
.after-before-main-wrapper-one nav.social {
    display: inline-block;
    padding: 0;
    margin-bottom: 18px;
}
.after-before-main-wrapper-one nav.social li {
    list-style: none;
    float: left;
}
.after-before-main-wrapper-one nav.social li a {
    padding: 5px;
}
.after-before-main-wrapper-one nav.social li:first-child a {
    padding-left: 0;
}
.after-before-main-wrapper-one .container {
    position: relative;
    width: 100%;
    margin: 50px 0;
}
.after-before-main-wrapper-one .container .inner {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 20px 30px;
    background-color: #eee;
}
.after-before-main-wrapper-one .comparison-slider-wrapper {
    position: relative;
    width: 100%;
    background-color: white;
}
.after-before-main-wrapper-one .comparison-slider-wrapper .comparison-slider {
    position: relative;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}
.after-before-main-wrapper-one
    .comparison-slider-wrapper
    .comparison-slider
    > img {
    width: 100%;
    height: auto;
    display: block;
}
.after-before-main-wrapper-one
    .comparison-slider-wrapper
    .comparison-slider
    .overlay {
    display: none;
    position: absolute;
    width: max-content;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-primary);
    padding: 10px;
    box-sizing: border-box;
    color: #ddd;
    text-align: right;
}
@media screen and (min-width: 767px) {
    .after-before-main-wrapper-one
        .comparison-slider-wrapper
        .comparison-slider
        .overlay {
        display: block;
    }
}
.after-before-main-wrapper-one
    .comparison-slider-wrapper
    .comparison-slider
    .resize {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}
.after-before-main-wrapper-one
    .comparison-slider-wrapper
    .comparison-slider
    .resize
    > img {
    display: block;
    min-width: 100%;
    max-width: none;
}
.after-before-main-wrapper-one
    .comparison-slider-wrapper
    .comparison-slider
    .resize
    .overlay {
    right: auto;
    left: 20px;
    text-align: left;
}
.after-before-main-wrapper-one
    .comparison-slider-wrapper
    .comparison-slider
    .divider {
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    left: 50%;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    cursor: ew-resize;
}
.after-before-main-wrapper-one
    .comparison-slider-wrapper
    .comparison-slider
    .divider:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: -9px;
    top: 50%;
    margin-top: -10px;
    background-color: white;
    transform: rotate(45deg);
    transition: all 0.1s ease-in-out;
}
.after-before-main-wrapper-one
    .comparison-slider-wrapper
    .comparison-slider
    .divider:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    left: -5px;
    top: 50%;
    margin-top: -6px;
    background-color: white;
    transform: rotate(45deg);
    transition: all 0.1s ease-in-out;
}
.after-before-main-wrapper-one
    .comparison-slider-wrapper
    .comparison-slider
    .divider.draggable:before {
    width: 30px;
    height: 30px;
    left: -14px;
    margin-top: -15px;
}
.after-before-main-wrapper-one
    .comparison-slider-wrapper
    .comparison-slider
    .divider.draggable:after {
    width: 20px;
    height: 20px;
    left: -9px;
    margin-top: -10px;
    background-color: #555;
}
.after-before-main-wrapper-one .comparison-slider-wrapper .caption {
    position: relative;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 12px;
    font-style: italic;
}
.after-before-main-wrapper-one .suppoprt-me {
    display: inline-block;
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 20vw;
    max-width: 250px;
    min-width: 200px;
    z-index: 9;
}
.after-before-main-wrapper-one .suppoprt-me img {
    width: 100%;
    height: auto;
}

.after-before-main-wrapper-conetnt p.disc {
    margin-bottom: 25px;
}
.after-before-main-wrapper-conetnt .step-by-step {
    display: flex;
    align-items: center;
    gap: 30px;
}
.after-before-main-wrapper-conetnt .step-by-step svg {
    min-width: max-content;
}
.after-before-main-wrapper-conetnt .step-by-step .title {
    margin-bottom: 8px;
}
.after-before-main-wrapper-conetnt .step-by-step p.disc {
    max-width: 90%;
    margin-bottom: 0;
}

.before-and-after-area .title {
    text-align: center;
    font-size: 80px;
    margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
    .before-and-after-area .title {
        font-size: 64px;
    }
}
@media only screen and (max-width: 767px) {
    .before-and-after-area .title {
        font-size: 54px;
    }
}
@media only screen and (max-width: 575px) {
    .before-and-after-area .title {
        font-size: 44px;
    }
}
@media only screen and (max-width: 479px) {
    .before-and-after-area .title {
        font-size: 34px;
        margin-bottom: 20px;
    }
}

.single-testimonials-style {
    background: #ffffff;
    padding: 31px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: block;
    z-index: 1;
}
@media only screen and (max-width: 479px) {
    .single-testimonials-style {
        padding: 20px;
    }
}
.single-testimonials-style.two .quots {
    margin-left: auto;
    max-width: max-content;
    margin-bottom: 0;
}
.single-testimonials-style.two .quote-tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single-testimonials-style.two .quote-tag-wrapper .tag-top span {
    padding: 10px 21px;
    border-radius: 33px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-primary);
}
.single-testimonials-style.two .author-wrapper .brand {
    max-width: 120px;
    height: max-content;
}
.single-testimonials-style .shape {
    z-index: -1;
    position: absolute;
    right: 30px;
    top: 0;
}
.single-testimonials-style .quots {
    margin-bottom: 30px;
}
.single-testimonials-style p.disc {
    color: #111032;
    font-size: 16px;
}
@media only screen and (max-width: 479px) {
    .single-testimonials-style p.disc {
        font-size: 16px;
    }
}
.single-testimonials-style .author-area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.single-testimonials-style .author-area .info .name {
    margin-bottom: 3px;
}
.single-testimonials-style .author-area .info .stars-area i {
    font-size: 14px;
    color: #fe922f;
}

.swiper-container-h1 {
    position: relative;
    overflow: hidden;
    padding-bottom: 64px;
}

.container-custom-testimonials {
    max-width: 1600px;
    margin: auto;
}

.single--testimonials-2 {
    padding-left: 550px !important;
    border-radius: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .single--testimonials-2 {
        padding-left: 400px !important;
    }
}
@media only screen and (max-width: 1199px) {
    .single--testimonials-2 {
        padding-left: 30px !important;
    }
}

.single--testimonials-2 {
    background-image: url(../images/testimonials/01.jpg);
    padding: 80px 80px;
    border-radius: 40px;
}
@media only screen and (max-width: 1199px) {
    .single--testimonials-2 {
        background-color: #615efc;
        background-image: none;
    }
}
@media only screen and (max-width: 575px) {
    .single--testimonials-2 {
        padding: 30px;
        border-radius: 10px;
    }
}
.single--testimonials-2 .content-area {
    position: relative;
    max-width: 80%;
    left: 50px;
}
@media only screen and (max-width: 1199px) {
    .single--testimonials-2 .content-area {
        left: 5%;
        max-width: 100%;
    }
}
@media only screen and (max-width: 991px) {
    .single--testimonials-2 .content-area {
        left: 0;
    }
}
.single--testimonials-2 .content-area .quote {
    margin-bottom: 20px;
}
.single--testimonials-2 .content-area p {
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
    .single--testimonials-2 .content-area p {
        font-size: 26px;
    }
}
.single--testimonials-2 .content-area .author-area-main * {
    color: #fff;
}
.single--testimonials-2 .content-area .author-area-main .title {
    margin-bottom: 5px;
    font-size: 32px;
}

.mySwiper-testimonials-2 {
    position: relative;
    border-radius: 40px;
}
@media only screen and (max-width: 991px) {
    .mySwiper-testimonials-2 {
        border-radius: 10px;
    }
}
.mySwiper-testimonials-2 .swiper-pagination {
    bottom: 50px;
    right: 160px;
    max-width: max-content;
    left: auto;
    z-index: 100;
}
@media only screen and (max-width: 575px) {
    .mySwiper-testimonials-2 .swiper-pagination {
        bottom: 30px;
        right: 30px;
    }
}
.mySwiper-testimonials-2 .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    cursor: pointer;
}

.rts-testimonials-area .title-between-area {
    position: relative;
}
.rts-testimonials-area .title-between-area .swiper-button-next,
.rts-testimonials-area .title-between-area .swiper-button-prev {
    position: absolute;
    height: 50px;
    width: 50px;
    background: transparent;
    border: 1px solid #615efc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: none;
    bottom: 0;
    top: auto;
    transition: 0.3s;
}
@media only screen and (max-width: 575px) {
    .rts-testimonials-area .title-between-area .swiper-button-next,
    .rts-testimonials-area .title-between-area .swiper-button-prev {
        display: none;
    }
}
.rts-testimonials-area .title-between-area .swiper-button-next i,
.rts-testimonials-area .title-between-area .swiper-button-prev i {
    color: #615efc;
    transition: 0.3s;
}
.rts-testimonials-area .title-between-area .swiper-button-next:hover,
.rts-testimonials-area .title-between-area .swiper-button-prev:hover {
    background: var(--color-primary);
}
.rts-testimonials-area .title-between-area .swiper-button-next:hover i,
.rts-testimonials-area .title-between-area .swiper-button-prev:hover i {
    color: #fff;
}
.rts-testimonials-area .title-between-area .swiper-button-next {
    right: 0;
}
.rts-testimonials-area .title-between-area .swiper-button-prev {
    right: 60px;
    left: auto;
}

.rts-hospital-branch .tab-content > .tab-pane {
    display: block !important;
    opacity: 1;
    position: absolute;
    z-index: -5;
    visibility: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0s;
}
.rts-hospital-branch .tab-content > .tab-pane.show.active {
    display: block !important;
    position: relative;
    z-index: 1;
    visibility: visible;
}

.rts-hospital-branch .tab-content {
    position: relative;
    height: auto;
}

.rts-hospital-branch .nav {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}
.rts-hospital-branch .nav li {
    margin: 0;
    padding: 0;
}
.rts-hospital-branch .nav li button {
    padding: 9px 26px;
    border-radius: 33px;
    border: 1px solid rgba(97, 94, 252, 0.2) !important;
    border-color: rgba(97, 94, 252, 0.2);
}
.rts-hospital-branch .nav li button.active {
    background: var(--color-primary) !important;
    color: #ffffff;
}

.custom-select {
    width: 100%;
    height: 44px;
    border-radius: 100px;
    margin-bottom: 16px;
    border: 1px solid var(--color-border);
}
.custom-select.one {
    background: transparent;
    height: 50px;
    display: flex;
    align-items: center;
}
.custom-select.one:focus {
    border: 1px solid #fff;
}
.custom-select.one::after {
    border-color: #fff;
    right: 25px;
}
.custom-select.one span {
    color: #fff;
}

.rts-appoinment-area .uni-animation-spin {
    padding: 6px;
}

.title-six-center {
    text-align: center;
}
.title-six-center .title {
    font-size: 48px;
}
@media only screen and (max-width: 767px) {
    .title-six-center .title {
        font-size: 32px;
    }
}
@media only screen and (max-width: 575px) {
    .title-six-center .title {
        font-size: 26px;
    }
}
@media only screen and (max-width: 479px) {
    .title-six-center .title {
        font-size: 24px;
    }
}

.single-lab-test {
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}
@media only screen and (max-width: 1199px) {
    .single-lab-test {
        padding: 20px;
    }
}
.single-lab-test.bg-pink {
    background: #ffcfc4;
}
.single-lab-test.bg-green {
    background: #abffb8;
}
.single-lab-test.bg-light-card {
    background: #e8e8ff;
}
.single-lab-test .title {
    font-size: 32px;
    margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
    .single-lab-test .title {
        font-size: 26px;
    }
}
@media only screen and (max-width: 575px) {
    .single-lab-test .title {
        font-size: 24px;
    }
    .single-lab-test .title br {
        display: none;
    }
}
.single-lab-test .thumbnail {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}
.single-lab-test .thumbnail img {
    width: 100%;
}
.single-lab-test .lap-test-wrapper {
    margin-top: 35px;
}
.single-lab-test .lap-test-wrapper .single-lab-test-service {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.single-lab-test .lap-test-wrapper .single-lab-test-service p {
    margin: 0;
    color: #111032;
    font-size: 18px;
    font-weight: 400;
}
@media only screen and (max-width: 1199px) {
    .single-lab-test .lap-test-wrapper .single-lab-test-service p {
        font-size: 16px;
    }
}
.single-lab-test .price {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
    font-family: var(--font-secondary);
    font-size: 26px;
    font-weight: 500;
}
.single-lab-test .price i {
    margin-right: 10px;
}

.container-wrapper-faq {
    /* max-width: 850px; */
    margin: auto;
}
.container-wrapper-faq .accordion .accordion-item {
    margin-bottom: 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    border-radius: 10px;
    padding: 16px 30px;
}
@media only screen and (max-width: 575px) {
    .container-wrapper-faq .accordion .accordion-item {
        padding-left: 5px;
    }
}
.container-wrapper-faq .accordion .accordion-item .accordion-header {
    background: transparent;
    box-shadow: none;
    border: none;
}
.container-wrapper-faq .accordion .accordion-item .accordion-header button {
    background: transparent;
    box-shadow: none;
    border: none;
    font-size: 20px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: #111032;
}

@media(max-width:765px)
{
    .container-wrapper-faq .accordion .accordion-item .accordion-header button {
        font-size: 15px;
    }
    .container-wrapper-faq .accordion .accordion-item .accordion-body {
        font-size: 12px;
    }
}

.container-wrapper-faq
    .accordion
    .accordion-item
    .accordion-header
    button::after {
    background-image: none;
    content: "\f055";
    font-family: var(--font-3);
    font-weight: 100;
    transform: none;
    margin-left: auto;
    top: 23%;
    position: absolute;
    right: 0;
}
.container-wrapper-faq
    .accordion
    .accordion-item
    .accordion-header
    button[aria-expanded="true"]::after {
    content: "\f056";
}
.container-wrapper-faq .accordion .accordion-item .accordion-body {
    /* color: #111032; */
    color: #585858;
}

.rts-footer-area .rts-btn {
    padding: 14px 26px;
}

.mr-dec-feature {
    margin-right: -40px;
}
@media only screen and (max-width: 991px) {
    .mr-dec-feature {
        margin-right: 0;
    }
}

.ml-dec-feature {
    margin-left: -40px;
}
@media only screen and (max-width: 991px) {
    .ml-dec-feature {
        margin-left: 0;
    }
}

.thumbnail-main-feature-1 {
    margin-top: -50px;
}
@media only screen and (max-width: 991px) {
    .thumbnail-main-feature-1 {
        margin-top: 0;
    }
}

.feature-signle-sm-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    gap: 14px;
    margin-bottom: 30px;
}
.feature-signle-sm-card:last-child {
    margin-bottom: 0;
}
.feature-signle-sm-card .details .title {
    font-size: 20px;
    margin: 0;
}

.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::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: -32%;
    top: -31%;
    display: block;
    width: 130px;
    height: 130px;
    background: transparent;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    animation: waves 3s ease-in-out infinite;
}
.vedio-icone .video-play-button::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #fff;
    transition: all 200ms;
    border-radius: 50%;
}
.vedio-icone .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 15px solid var(--color-primary);
    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;
}

.banner-content-four.doctors.search input {
    width: 460px !important;
}
@media only screen and (max-width: 1199px) {
    .banner-content-four.doctors.search input {
        width: 350px !important;
    }
}
@media only screen and (max-width: 991px) {
    .banner-content-four.doctors.search input {
        width: 100% !important;
    }
}
.banner-content-four.doctors.search .search-your-doctor-form form .nice-select {
    width: 460px !important;
}
@media only screen and (max-width: 1199px) {
    .banner-content-four.doctors.search
        .search-your-doctor-form
        form
        .nice-select {
        width: 350px !important;
    }
}
@media only screen and (max-width: 991px) {
    .banner-content-four.doctors.search
        .search-your-doctor-form
        form
        .nice-select {
        width: 100% !important;
    }
}
.banner-content-four.doctors.search .rts-btn {
    padding: 16px 28px;
}

.large-team-details-thumbnail {
    padding: 20px;
    border-radius: 10px;
    background: #f1f1ff;
}
.large-team-details-thumbnail img {
    width: 100%;
}

.large-doctor-details-area-left .bottom-doctor-details {
    padding: 20px;
    background: #f1f1ff;
    border-radius: 10px;
    margin-top: 20px;
}
.large-doctor-details-area-left .bottom-doctor-details .inner {
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
}
.large-doctor-details-area-left .bottom-doctor-details .inner .single-shedule {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(97, 94, 252, 0.2);
}
.large-doctor-details-area-left
    .bottom-doctor-details
    .inner
    .single-shedule
    p {
    margin: 0;
}

.doctor-all-details-area .pre-title {
    color: var(--color-primary);
    padding: 5px 12px;
    border-radius: 33px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    margin-bottom: 20px;
    display: block;
    max-width: max-content;
}
.doctor-all-details-area .name {
    font-size: 36px;
}
@media only screen and (max-width: 575px) {
    .doctor-all-details-area .name {
        font-size: 30px;
    }
}
.doctor-all-details-area p {
    margin-bottom: 30px;
    font-size: 18px;
    color: #111032;
}
@media only screen and (max-width: 575px) {
    .doctor-all-details-area p {
        font-size: 16px;
    }
}
.doctor-all-details-area p b {
    font-size: 20px;
    font-weight: 500;
    color: #111032;
}

.follow-me-social-area {
    display: flex;
    align-items: center;
    gap: 30px;
}
.follow-me-social-area span {
    font-size: 16px;
    color: #111032;
    font-weight: 500;
}
.follow-me-social-area ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}
.follow-me-social-area ul li {
    margin: 0;
    padding: 0;
}
.follow-me-social-area ul li i {
    font-size: 16px;
    color: var(--color-primary);
}

.rts-breadcrumb-area {
    /* background-image: url(../images/breadcrumb/01.jpg); */
    background-image: url(../images/breadcrumb/4.jpg);
}

.breadcrumb-area-wrapper {
    text-align: left;
    align-items: center;
}
.breadcrumb-area-wrapper h1.title {
    font-size: 64px;
}
@media only screen and (max-width: 575px) {
    .breadcrumb-area-wrapper h1.title {
        font-size: 54px;
    }
}
@media only screen and (max-width: 767px) {
    .breadcrumb-area-wrapper h1.title {
        font-size: 44px;
    }
}
@media only screen and (max-width: 575px) {
    .breadcrumb-area-wrapper h1.title {
        font-size: 34px;
    }
}
.breadcrumb-area-wrapper .nav-bread-crumb {
    display: flex;
    align-items: center;
    gap: 10px;
    /* justify-content: center; */
    justify-content: left;
}
.breadcrumb-area-wrapper .nav-bread-crumb i {
    color: #111032;
}
.breadcrumb-area-wrapper .nav-bread-crumb a {
    color: #111032;
}
.breadcrumb-area-wrapper .nav-bread-crumb a.current {
    text-decoration: underline;
}

.container-140 {
    max-width: 1640px;
    margin: auto;
}

.large-video-main-wrapper {
    background: var(--color-primary);
    border-radius: 10px;
}
.large-video-main-wrapper .title {
    color: #fff;
}
.large-video-main-wrapper p {
    color: #fff;
}

.large-iamge-area-large {
    margin-top: 60px;
}
.large-iamge-area-large img {
    border-radius: 10px;
}

.footer-bg {
    background: #111032;
}

.subscribe-area-start {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media only screen and (max-width: 767px) {
    .subscribe-area-start {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}
.subscribe-area-start .subscribe-area {
    position: relative;
}
@media only screen and (max-width: 575px) {
    .subscribe-area-start .subscribe-area {
        width: 100%;
    }
}
.subscribe-area-start .subscribe-area input {
    height: 56px;
    width: 418px;
    border-radius: 100px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    color: #fff;
}
@media only screen and (max-width: 575px) {
    .subscribe-area-start .subscribe-area input {
        width: 100%;
    }
}
.subscribe-area-start .subscribe-area input:focus {
    border: 1px solid var(--color-primary);
}
.subscribe-area-start .subscribe-area button {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
}

.rts-success-story-area .vedio-icone img {
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .rts-success-story-area .move-right {
        font-size: 44px !important;
    }
}
@media only screen and (max-width: 575px) {
    .rts-success-story-area .move-right {
        font-size: 36px !important;
    }
}

.footer-wrapper-style-between {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 201px;
    padding-top: 50px;
    border-top: 1px solid #201f57;
    padding-bottom: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
    .footer-wrapper-style-between {
        gap: 80px;
    }
}
@media only screen and (max-width: 1199px) {
    .footer-wrapper-style-between {
        gap: 80px;
    }
}
@media only screen and (max-width: 991px) {
    .footer-wrapper-style-between {
        gap: 30px;
        flex-wrap: wrap;
    }
}
@media only screen and (max-width: 575px) {
    .footer-wrapper-style-between {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
.footer-wrapper-style-between .single-wized:nth-child(1) {
    flex-basis: 202px;
}
.footer-wrapper-style-between .single-wized:nth-child(2) {
    flex-basis: 119px;
}
.footer-wrapper-style-between .single-wized:nth-child(3) {
    flex-basis: 142px;
}
.footer-wrapper-style-between .single-wized:nth-child(4) {
    flex-basis: 213px;
}
.footer-wrapper-style-between .single-wized .title {
    color: #fff;
    font-size: 20px;
    position: relative;
    max-width: max-content;
}
.footer-wrapper-style-between .single-wized .title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    background: #fff;
    width: 100%;
    height: 1px;
}
.footer-wrapper-style-between .single-wized .body {
    /* padding-top: 25px; */
}
.footer-wrapper-style-between .single-wized .body .location {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}
.footer-wrapper-style-between .single-wized .body a {
    display: block;
    color: #fff;
    margin-bottom: 20px;
    transition: 0.3s;
    font-weight: 400;
}
.footer-wrapper-style-between .single-wized .body a:last-child {
    margin-bottom: 0;
}
.footer-wrapper-style-between .single-wized .body a:hover {
    color: var(--color-primary);
}
.footer-wrapper-style-between .single-wized .body .nav-bottom {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-wrapper-style-between .single-wized .body .nav-bottom li {
    margin: 0;
    padding: 0;
    /* margin-bottom: 20px; */
    margin-bottom: 10px;
}

.copyright-area {
    background: #201f57;
    padding: 24px 0;
}
.copyright-area .copyright-area-inner {
    text-align: center;
}
.copyright-area .copyright-area-inner p {
    color: #fff;
    margin: 0;
}
.copyright-area .copyright-area-inner p a {
    transition: 0.3s;
}

.footer-two {
    background: #f1f1ff;
}
.footer-two .footer-wrapper-style-between .single-wized .title {
    color: var(--color-primary);
}
.footer-two .footer-wrapper-style-between .single-wized .title::after {
    background: var(--color-primary);
}
.footer-two .footer-wrapper-style-between .single-wized .body a,
.footer-two .footer-wrapper-style-between .single-wized .body .location {
    color: #111032;
}
.footer-two .footer-wrapper-style-between .single-wized .body a:hover {
    color: var(--color-primary);
}
.footer-two .subscribe-area-start .subscribe-area input {
    color: var(--color-primary);
}
.footer-two .footer-wrapper-style-between {
    border-color: rgba(97, 94, 252, 0.2);
}

.copyright-area.two {
    background: #fff;
}
.copyright-area.two p {
    color: #111032;
}

.footer-three {
    background: #f8f8ff;
}

.container-small {
    max-width: 1070px;
    margin: auto;
}
@media only screen and (max-width: 767px) {
    .container-small {
        padding: 0 15px;
    }
}

.health-package-single-wrapper {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(97, 94, 252, 0.12);
    background: #f9f8ff;
}
.health-package-single-wrapper .inner-content {
    padding-top: 30px;
}
.health-package-single-wrapper .inner-content .price {
    margin-bottom: 10px;
    font-size: 28px;
    color: var(--color-primary);
}
.health-package-single-wrapper .inner-content .title {
    font-size: 28px;
    margin-bottom: 16px;
    transition: 0.3s;
}
@media only screen and (max-width: 575px) {
    .health-package-single-wrapper .inner-content .title {
        font-size: 20px;
    }
}
.health-package-single-wrapper .inner-content .title:hover {
    color: var(--color-primary);
}
.health-package-single-wrapper .check-main-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
    .health-package-single-wrapper .check-main-wrapper {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
}
.health-package-single-wrapper
    .check-main-wrapper
    .single-wrapper
    .single-check {
    margin: 10px 0;
}
.health-package-single-wrapper
    .check-main-wrapper
    .single-wrapper
    .single-check
    span {
    color: #111032;
    font-size: 16px;
}
.health-package-single-wrapper a.thumbnail {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}
.health-package-single-wrapper a.thumbnail img {
    transition: 0.3s;
}
.health-package-single-wrapper .rts-btn {
    padding: 15px 35px;
}
.health-package-single-wrapper:hover a img {
    transform: scale(1.1);
}

.international-client-left-wrapper .title {
    font-size: 48px;
    margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
    .international-client-left-wrapper .title {
        font-size: 34px;
    }
}
@media only screen and (max-width: 575px) {
    .international-client-left-wrapper .title {
        font-size: 24px;
    }
}
.international-client-left-wrapper p.disc {
    margin-bottom: 25px;
    max-width: 90%;
}
@media only screen and (max-width: 575px) {
    .international-client-left-wrapper p.disc {
        max-width: 100%;
    }
}
.international-client-left-wrapper .check-between-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 70px;
}
@media only screen and (max-width: 575px) {
    .international-client-left-wrapper .check-between-wrapper {
        flex-direction: column;
        gap: 0;
    }
}
.international-client-left-wrapper .check-between-wrapper .single-check {
    margin: 10px 0;
}

.plane-a-trip-wrapper-button ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px;
}
.plane-a-trip-wrapper-button ul li {
    width: 100%;
    border: none !important;
    margin: 0;
}
.plane-a-trip-wrapper-button ul li button {
    border: none !important;
    background-color: #f1f1ff !important;
    text-align: left;
    border: none !important;
    padding: 10px;
    border-radius: 10px !important;
    border: 1px solid rgba(97, 94, 252, 0.2) !important;
    color: #111032;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}
.plane-a-trip-wrapper-button ul li button.active {
    border: 1px solid var(--color-primary) !important;
}

.tab-content-trip-plane {
    padding: 30px;
    background: #f1f1ff;
    border-radius: 10px;
}
@media only screen and (max-width: 575px) {
    .tab-content-trip-plane {
        padding: 20px;
    }
}
.tab-content-trip-plane .title {
    margin-bottom: 15px;
}
.tab-content-trip-plane .single-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}
.tab-content-trip-plane .single-check span {
    color: #111032;
}
.tab-content-trip-plane a {
    margin-top: 15px;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 500;
    color: var(--color-primary);
}
.tab-content-trip-plane .thumbnail img {
    width: 100%;
}
@media only screen and (max-width: 991px) {
    .tab-content-trip-plane .thumbnail img {
        margin-top: 30px;
    }
}

.international-form {
    width: 100%;
}
.international-form .input-half-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
    margin-bottom: 25px;
}
@media only screen and (max-width: 575px) {
    .international-form .input-half-wrapper {
        flex-direction: column;
    }
}
.international-form .input-half-wrapper .single {
    flex-basis: 50%;
}
@media only screen and (max-width: 575px) {
    .international-form .input-half-wrapper .single {
        width: 100%;
    }
}
.international-form .input-half-wrapper .single input,
.international-form .input-half-wrapper .single .nice-select {
    height: 45px;
    border: 1px solid rgba(97, 94, 252, 0.2);
}
.international-form .input-half-wrapper .single input:focus,
.international-form .input-half-wrapper .single .nice-select:focus {
    border-color: var(--color-primary);
}
.international-form .input-half-wrapper .single .nice-select {
    margin-bottom: 0;
    border-radius: 10px;
}
.international-form .input-half-wrapper .single .nice-select span {
    color: #6b6b6b;
    font-size: 16px;
}
.international-form .input-half-wrapper .single .nice-select.one::after {
    border-color: var(--color-body);
    right: 25px;
}
.international-form textarea {
    height: 120px;
    border: 1px solid rgba(97, 94, 252, 0.2);
    margin-bottom: 25px;
}
.international-form textarea:focus {
    border-color: var(--color-primary);
}
.international-form .rts-btn {
    border-radius: 10px;
}

.single-contact-information-card {
    background: #f9f8ff;
    border: 1px solid #ddd8f9;
    padding: 55px;
    border-radius: 10px;
    text-align: center;
}
.single-contact-information-card .icon {
    margin-bottom: 25px;
}
.single-contact-information-card a {
    display: block;
    color: #110c2d;
}

.procedure-single-content-wrapper h2.title {
    font-size: 36px;
    margin-bottom: 30px;
}
.procedure-single-content-wrapper .cottom-single {
    margin-bottom: 20px;
}
.procedure-single-content-wrapper .cottom-single:last-child {
    margin-bottom: 0;
}
.procedure-single-content-wrapper .cottom-single .title {
    font-size: 24px;
    margin-bottom: 15px;
}
.procedure-single-content-wrapper .cottom-single p.disc {
    max-width: 80%;
    margin: 0;
}

.portfolio-detials-wrapper .thumbnail-large-image .thumbnail {
    display: block;
    width: 100%;
}
.portfolio-detials-wrapper .thumbnail-large-image .thumbnail img {
    width: 100%;
}
.portfolio-detials-wrapper .thumbnail-large-image .thumbnail-bottom-wrapper {
    height: 80px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 40px;
}
@media only screen and (max-width: 991px) {
    .portfolio-detials-wrapper
        .thumbnail-large-image
        .thumbnail-bottom-wrapper {
        gap: 30px;
        padding: 20px;
        flex-wrap: wrap;
        height: auto;
    }
}
.portfolio-detials-wrapper
    .thumbnail-large-image
    .thumbnail-bottom-wrapper
    .single-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.portfolio-detials-wrapper
    .thumbnail-large-image
    .thumbnail-bottom-wrapper
    span {
    color: #fff;
}
.portfolio-detials-wrapper .thumbnail-large-image .thumbnail-bottom-wrapper i {
    color: #fff;
}

.bottom-content-area .title {
    font-size: 24px;
}
.bottom-content-area span {
    color: var(--color-primary);
    font-size: 20px;
}
.bottom-content-area .list-single {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 18px 0;
}
.bottom-content-area .list-single img {
    position: static;
    margin-bottom: -2px;
}
.bottom-content-area .list-single p {
    max-width: 924px;
    position: relative;
    margin-top: -2px;
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    background: var(--color-white);
    width: 50%;
    height: 100%;
    z-index: 1000;
}

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

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

/* Loaded Styles */
.loaded .loader-wrapper .loader-section.section-left {
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

.loaded .loader-wrapper .loader-section.section-right {
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

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

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

.loader:after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: 4px solid transparent;
    border-top-color: var(--color-primary);
    border-right-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    border-radius: 100%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.loader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    z-index: 1001;
    transform: translate(-50%, -50%);
}

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

.logoImg {
    /* width: 28rem; */
    width: 22rem;
    margin-left: 3rem;
}

.quote {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4c4c4c;
    font-style: italic;
}

.sCard {
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.sCard p{
    font-size: 1.5rem;
}

.serviceP {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4c4c4c;
}

.sImg {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover !important;
}

.footerLogo {
    width: 98%;
    background-color: #fff;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.footerP {
    color: #fff;
    margin-top: 1rem;
}

.servicePara {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    color: #4c4c4c;
    text-align: justify;
}

.iLine span {
    font-size: 1.7rem;
    font-weight: 500;
    font-style: italic;
}

.dualImg {
    width: 100%;
    aspect-ratio: 3/1;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgb(201, 201, 201);
}

.bsPoints {
    margin-bottom: 1rem;
    padding: 0.8rem;
    background-color: #1f5cab;
    text-align: center;
    color: #fff;
    border-radius: 1rem;
}

.subH {
    font-size: 1.6rem;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: center;
}

.tCard {
    padding: 2rem 2rem;
    background-color: #f5f7ff;
    border-radius: 1rem;
    border: 1px solid rgb(121, 172, 255);
    margin-bottom: 1.5rem;
}

.tCard p {
    font-size: 1.5rem;
    text-align: justify;
}

.dserviceImg {
    width: 100%;
    aspect-ratio: 3/1.5;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid #f1f1f1;
}

.sMain-img {
    filter: contrast(1.2);
    border-radius: 1rem;
    border: 1px solid #d6d6d6;
}

.dCard {
    padding: 3rem 3rem;
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgb(196, 219, 255);
    transition: all 0.5s ease;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.dCard:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-1rem);
}

.dCard li {
    font-size: 1.45rem;
    line-height: 1.5;
    margin-bottom: 1.4rem;
    color: #40578d;
}

.dUlist {
    margin-top: -1.4rem;
}

.dUlist li {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #40578d;
}

.quoteCard {
    padding: 1rem;
}

.pCard {
    text-align: center;
}

.pCard img {
    width: 10rem;
}

.pCard h4 {
    font-size: 1.5rem;
    margin-top: 1rem;
    font-weight: 700;
    color: #000000;
}

.btnBuyOne {
    padding: 1.2rem 2.5rem;
    color: #fff;
    background-color: #3288ff;
    border-radius: 1rem;
    transition: all 0.5s ease;
}
.btnBuyOne:hover {
    color: #fff;
    background-color: #1f5cab;
}

.btnBuyTwo {
    padding: 1.2rem 2.5rem;
    color: #fff;
    background-color: #1a2761;
    border-radius: 1rem;
    transition: all 0.5s ease;
}
.btnBuyTwo:hover {
    color: #fff;
    background-color: #10133d;
}

.ytVideo iframe {
    width: 100%;
    aspect-ratio: 16/10;
    margin-bottom: 1rem;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid #d6d6d6;
}

.btnSeemore {
    padding: 1rem 2rem;
    background-color: #1b5baf;
    border: 1px solid #1b5baf;
    color: #fff;
    border-radius: 2rem;
    transition: all 0.5s ease;
}
.btnSeemore:hover {
    background-color: #ffffff;
    color: #1b5baf;
}

.wls {
    text-align: justify;
}

.wlsImg {
    width: 100%;
    aspect-ratio: 3/2.2;
    border-radius: 0.5rem;
    border: 20px solid #3a3a3a;
}

.slist {
    display: flex;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #333;
}
.sListimg {
    width: 15px;
    height: 15px;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}
.slist2 {
    display: flex;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #555;
}
.sList2Icon {
    font-size: 1rem;
    margin-right: 0.5rem;
    margin-top: 1rem;
}

.toCard {
    padding: 2rem 2rem;
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgb(196, 219, 255);
    margin-bottom: 1rem;
}

.toCard h4 {
    font-size: 2rem;
    text-align: center;
}
.toCard p {
    font-size: 1.5rem;
    margin-top: -0.5rem;
}

.liPoints {
    padding: 1.5rem;
    background-color: #f1f1ff;
    text-align: center;
    margin-top: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #c8d4ff;
    color: #454545;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
}
.liPoints:hover {
    background-color: #ffffff;
    color: #1f5cab;
    border: 1px solid #1f5cab;
    transform: translateY(-0.5rem);
}

.cardLight {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgb(196, 219, 255);
    padding: 2rem 3rem;
}

.btnSeeMore {
    background-color: #3858c2;
    border: 1px solid #3858c2;
    padding: 1rem 3rem;
    color: #fff;
    transition: all 0.5s ease;
}
.btnSeeMore:hover {
    color: #3858c2;
    background-color: #fff;
}

.rsImg {
    width: 100%;
    background-color: #efefef;
    aspect-ratio: 3/2.2;
    object-fit: contain;
}

.sectionHeading {
    padding: 2rem 0.5rem;
    margin-bottom: 1rem;
}
.sectionHeading h3 {
    font-size: 4rem;
    font-weight: 700;
}

.blogImg {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 2rem;
}

.dualBlog {
    padding: 2rem;
    padding-bottom: 1px;
    background-color: rgb(248, 250, 255);
    border: 1px solid rgb(187, 209, 255);
    border-radius: 1rem;
    margin-bottom: 2rem;
}
.dualBlog p {
    font-size: 1.3rem;
    text-align: justify;
    line-height: 1.7;
}
.btnLink {
    font-weight: 700;
    text-decoration: underline !important;
    color: #333d99;
}

.postCard {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
        rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}
.postCard img {
    border-radius: 0.5rem 0.5rem 0rem 0rem;
    aspect-ratio: 3/2;
    object-fit: cover;
}
.postCard .contentBox {
    padding: 2rem 1rem;
    padding-bottom: 0.1rem;
}
.postCard h4 {
    font-size: 1.7rem;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogPreview {
    width: 100%;
    aspect-ratio: 3/2.3;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid #eee;
}
.oz {
    opacity: 0;
}
.vBlog {
    width: 100%;
    aspect-ratio: 3/1.6;
    object-fit: cover;
}

.sepCard {
    padding: 2rem 3rem;
    border-radius: 1rem;
    background-color: aliceblue;
    margin-bottom: 2rem;
}

.sepCard p,
li {
    color: #444;
}

.sLink {
    font-weight: 600;
    color: #40578d;
}

.hCard {
    padding: 1.5rem;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
    background-color: #f7fcff;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    height: auto;
    margin-bottom: 2rem;
}
.hCard img {
    aspect-ratio: 3/1.8;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 1px solid #cbd7ff;
    border-radius: 0.5rem;
}
.hCard p {
    padding: 0.3rem 0.5rem;
    color: #333;
    font-size: 1.4rem;
}

.ulS {
    font-size: 1.4rem;
    color: #444;
    display: flex;
}
.ulsIcon {
    margin-top: 0.6rem;
    margin-right: 0.5rem;
}

.liCard {
    border: 1px solid #eee;
    padding: 2rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 1rem;
    margin-bottom: 2rem;
}
.liCard img {
    width: 100%;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 1rem;
    margin-bottom: 1rem;
    aspect-ratio: 3/2;
    object-fit: contain;
    background-color: #fff;
}
.tcardImg {
    aspect-ratio: 2/2.5;
    object-fit: contain;
    padding: 1rem;
    background-color: #fff;
    margin-bottom: 1.5rem;
}

.heroImg {
    width: 100%;
    /* margin-top: -10rem; */
}

.sUl li {
    font-size: 1.4rem;
    line-height: 1.5;
}

strong {
    color: #444;
}

.ytVideo {
    width: 100%;
    aspect-ratio: 3/1.8;
    /* background-color: #333d99; */
}

.iframeYt {
    width: 100%;
    aspect-ratio: 3/1.5;
    background-color: #333d99;
}

.em{
    background-color: rgb(255, 79, 79);
    padding: .3rem 1rem;
    border-radius: 3rem;
}

.linkP{
    text-align: center;
    padding: .3rem 1rem;
    border: 1px solid rgb(116, 169, 234);
    background-color: rgba(23, 95, 184, 0.188);
    border-radius: 2rem;
}

.productCard{
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #eee;
    margin-top: 1rem;
}

.productCard img{
    width: 100%;
    aspect-ratio: 3/1.8;
}

.productCard .pInfo{
    padding: .1rem .5rem;
    padding-top: .5rem;
}

.productCard .pInfo p{
    font-size: 1.6rem;
    line-height: 1.5;
    color: #333;
}

.taglineBox{
    text-align: center;
    padding: 5rem;
}

.taglineBox h3{
    font-size: 4rem;
    margin-bottom: 2rem;
}

.taglineBox p{
    font-size: 1.6rem;
    color: #333;
    line-height: 1.8;
}

@media (max-width: 765px) {

    .taglineBox{
        padding: 1rem;
    }

    .taglineBox h3{
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        margin-top: 2rem;
    }

    .taglineBox p{
        font-size: 1.4rem;
        line-height: 1.7;
    }

    .mtPhone {
        margin-top: -2rem;
    }
    h6 {
        font-size: 1.6rem;
    }
    ul li {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    .ulS {
        font-size: 1.15rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    .sepCard {
        padding: 2rem 2rem;
    }

    .dualBlog p {
        font-size: 1.2rem;
    }
    .rts-single-blog .inner-content {
        padding: 0.5rem 0.8rem;
        padding-bottom: 1rem;
    }
    .sectionHeading p {
        font-size: 1.3rem;
        line-height: 1.5;
    }
    .sectionHeading h3 {
        font-size: 2.5rem;
        font-weight: 700;
    }
    .slist {
        font-size: 1.3rem;
    }

    .liPoints {
        letter-spacing: 0.2px;
        font-size: 1.2rem;
        line-height: 1.5;
        padding: 2rem 2.5rem;
    }
    .toCard h4 {
        font-size: 1.5rem;
        text-align: center;
    }
    .toCard p {
        font-size: 1.25rem;
        margin-top: -1.2rem;
        line-height: 1.6;
        text-align: justify;
    }

    li {
        font-size: 1.2rem;
    }
    .wls {
        font-size: 1.2rem !important;
        line-height: 1.7;
    }
    .mtphone {
        margin-top: -4rem;
    }

    .pCard h4 {
        font-size: 1.1rem;
    }

    .btnBuyOne {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .btnBuyTwo {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    .dUlist li {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    .dUlist {
        margin-top: 0.5rem;
    }

    .dCard li {
        font-size: 1.2rem;
    }

    .dCard {
        padding: 2rem 2rem;
        background-color: #ffffff;
        border-radius: 1rem;
        border: 1px solid rgb(196, 219, 255);
    }
    .tCard {
        margin: 1rem;
        margin-bottom: 0;
    }
    .tCard p {
        font-size: 1.3rem;
        line-height: 1.5;
    }
    .subH {
        font-size: 1.7rem;
    }

    .servicePara {
        font-size: 1.3rem;
        line-height: 1.6;
        margin-top: -1rem;
    }
    .footerLogo {
        width: 100%;
    }
    .logoImg {
        width: 18rem;
        margin-left: .1rem;
    }
}




