/*=== Scss File indexing Here===========

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

========================================*/
/* Default  */
@import url("../css/vendor/canela-font.css");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --rt-theme: #09A24F;
  /* --rt-primary: #890C25; */
  --rt-primary: #008080;
  /* --rt-primary-1: #B71A34; */
  --rt-primary-1: #075050;
  /* --rt-primary-2: #890C25; */
  --rt-primary-2: #008080;
  --rt-secondary: #110C2D;
  --rt-footer: #181818;
  --rt-body: #737477;
  --rt-heading: #262626;
  --rt-white:#fff;
  --rt-rating: var(--rt-primary);
  --rt-border: #D9D9D9;
  --rt-line: #eee;
  --rt-hover: #AF0E2E;
  --copyright-border: #242424;
  --rt-radius:3px;
  --rt-radius-none: none;
  --rt-none: none;
  --footer-bg: #181818;
  --light-white: #f6f6f6;
  --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;
  --f-light: 300;
  --f-regular: 400;
  --f-medium: 500;
  --f-semi-bold: 600;
  --f-bold: 700;
  --f-extra-bold: 800;
  --f-black: 900;
  --translate: translate(-50%, -50%);
  --transition: all 0.4s ease;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Canela trial";
  --font-hind: "Hind", sans-serif;
  --fontawesome: "fontawesome", sans-serif;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 64px;
  --h2: 48px;
  --h3: 40px;
  --h4: 36px;
  --h5: 24px;
  --h6: 20px;
  --p-l: 24px;
  --p-m: 20px;
  --p-s: 16px;
  --p-xs: 14px;
}

/*==== canela font =======*/
* {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

.font-32 {
  font-size: 32px;
  line-height: 40px;
}

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,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: var(--f-regular);
}

p {
  font-size: var(--p-s);
  line-height: var(--line-height-b2);
  font-weight: var(--f-regular);
  color: var(--rt-body);
  margin: 0 auto 20px;
  font-family: var(--font-primary);
}
@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 26px;
  }
}
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(--rt-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(--rt-secondary);
}

var {
  font-family: "Overpass", 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(--rt-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(--rt-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(--rt-body);
}
ul li a {
  text-decoration: none;
  color: var(--color-gray);
}
ul li a:hover {
  color: var(--rt-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(--rt-body);
  margin-top: 10px;
  margin-bottom: 10px;
}
ol li a {
  color: var(--rt-secondary);
  text-decoration: none;
}
ol li a:hover {
  color: var(--rt-primary);
}
ol ul {
  padding-left: 30px;
}

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

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

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

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

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

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

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

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

.m--0 {
  margin: 0;
}

.rts-section-gap {
  padding: 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-padding {
  padding: 120px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-padding {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-padding {
    padding: 60px 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ptb_lp--10 {
    padding: 10px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--15 {
    padding: 15px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--20 {
    padding: 20px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--25 {
    padding: 25px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--30 {
    padding: 30px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--35 {
    padding: 35px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--40 {
    padding: 40px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--45 {
    padding: 45px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--50 {
    padding: 50px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--55 {
    padding: 55px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--60 {
    padding: 60px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--65 {
    padding: 65px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--70 {
    padding: 70px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--75 {
    padding: 75px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--80 {
    padding: 80px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--85 {
    padding: 85px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--90 {
    padding: 90px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--95 {
    padding: 95px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--100 {
    padding: 100px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--105 {
    padding: 105px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--110 {
    padding: 110px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--115 {
    padding: 115px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--120 {
    padding: 120px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--125 {
    padding: 125px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--130 {
    padding: 130px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--135 {
    padding: 135px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--140 {
    padding: 140px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--145 {
    padding: 145px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--150 {
    padding: 150px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--155 {
    padding: 155px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--160 {
    padding: 160px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--165 {
    padding: 165px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--170 {
    padding: 170px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--175 {
    padding: 175px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--180 {
    padding: 180px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--185 {
    padding: 185px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--190 {
    padding: 190px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--195 {
    padding: 195px 0;
  }

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

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

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

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

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

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

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

  .ptb_lp--200 {
    padding: 200px 0;
  }

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

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

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

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

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

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

  .mb_lp--200 {
    margin-bottom: 200px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ptb_lg--5 {
    padding: 5px 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ptb_sm--0 {
    padding: 0;
  }

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

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

  .pt_sm--150 {
    padding-top: 150px;
  }

  .pb_sm--110 {
    padding-bottom: 110px;
  }

  .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 !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;
  }
}
@media only screen and (max-width: 575px) {
  .ptb_mobile--5 {
    padding: 5px 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mb_mobile--100 {
    margin-bottom: 100px !important;
  }
}
.slick-gutter-5 {
  margin-left: -5px;
  margin-right: -5px;
}
.slick-gutter-5 .slick-slide {
  padding-left: 5px;
  padding-right: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w-100 {
  max-width: 100px;
}

.w-110 {
  max-width: 110px;
}

.w-120 {
  max-width: 120px;
}

.w-130 {
  max-width: 130px;
}

.w-140 {
  max-width: 140px;
}

.w-150 {
  max-width: 150px;
}

.w-160 {
  max-width: 160px;
}

.w-170 {
  max-width: 170px;
}

.w-180 {
  max-width: 180px;
}

.w-190 {
  max-width: 190px;
}

.w-200 {
  max-width: 200px;
}

.w-210 {
  max-width: 210px;
}

.w-220 {
  max-width: 220px;
}

.w-230 {
  max-width: 230px;
}

.w-240 {
  max-width: 240px;
}

.w-250 {
  max-width: 250px;
}

.w-260 {
  max-width: 260px;
}

.w-270 {
  max-width: 270px;
}

.w-280 {
  max-width: 280px;
}

.w-290 {
  max-width: 290px;
}

.w-300 {
  max-width: 300px;
}

.w-310 {
  max-width: 310px;
}

.w-320 {
  max-width: 320px;
}

.w-330 {
  max-width: 330px;
}

.w-340 {
  max-width: 340px;
}

.w-350 {
  max-width: 350px;
}

.w-360 {
  max-width: 360px;
}

.w-370 {
  max-width: 370px;
}

.w-380 {
  max-width: 380px;
}

.w-390 {
  max-width: 390px;
}

.w-400 {
  max-width: 400px;
}

.w-410 {
  max-width: 410px;
}

.w-420 {
  max-width: 420px;
}

.w-430 {
  max-width: 430px;
}

.w-440 {
  max-width: 440px;
}

.w-450 {
  max-width: 450px;
}

.w-460 {
  max-width: 460px;
}

.w-470 {
  max-width: 470px;
}

.w-480 {
  max-width: 480px;
}

.w-490 {
  max-width: 490px;
}

.w-500 {
  max-width: 500px;
}

.w-510 {
  max-width: 510px;
}

.w-520 {
  max-width: 520px;
}

.w-530 {
  max-width: 530px;
}

.w-540 {
  max-width: 540px;
}

.w-550 {
  max-width: 550px;
}

.w-560 {
  max-width: 560px;
}

.w-570 {
  max-width: 570px;
}

.w-580 {
  max-width: 580px;
}

.w-590 {
  max-width: 590px;
}

.w-600 {
  max-width: 600px;
}

.w-610 {
  max-width: 610px;
}

.w-620 {
  max-width: 620px;
}

.w-630 {
  max-width: 630px;
}

.w-640 {
  max-width: 640px;
}

.w-650 {
  max-width: 650px;
}

.w-660 {
  max-width: 660px;
}

.w-670 {
  max-width: 670px;
}

.w-680 {
  max-width: 680px;
}

.w-690 {
  max-width: 690px;
}

.w-700 {
  max-width: 700px;
}

.w-710 {
  max-width: 710px;
}

.w-720 {
  max-width: 720px;
}

.w-730 {
  max-width: 730px;
}

.w-740 {
  max-width: 740px;
}

.w-750 {
  max-width: 750px;
}

.w-760 {
  max-width: 760px;
}

.w-770 {
  max-width: 770px;
}

.w-780 {
  max-width: 780px;
}

.w-790 {
  max-width: 790px;
}

.w-800 {
  max-width: 800px;
}

.w-810 {
  max-width: 810px;
}

.w-820 {
  max-width: 820px;
}

.w-830 {
  max-width: 830px;
}

.w-840 {
  max-width: 840px;
}

.w-850 {
  max-width: 850px;
}

.w-860 {
  max-width: 860px;
}

.w-870 {
  max-width: 870px;
}

.w-880 {
  max-width: 880px;
}

.w-890 {
  max-width: 890px;
}

.w-900 {
  max-width: 900px;
}

.w-910 {
  max-width: 910px;
}

.w-920 {
  max-width: 920px;
}

.w-930 {
  max-width: 930px;
}

.w-940 {
  max-width: 940px;
}

.w-950 {
  max-width: 950px;
}

.w-960 {
  max-width: 960px;
}

.w-970 {
  max-width: 970px;
}

.w-980 {
  max-width: 980px;
}

.w-990 {
  max-width: 990px;
}

.w-1000 {
  max-width: 1000px;
}

.rt-gap-10 {
  gap: 10px;
}

.rt-gap-15 {
  gap: 15px;
}

.rt-gap-20 {
  gap: 20px;
}

.rt-gap-25 {
  gap: 25px;
}

.rt-gap-30 {
  gap: 30px;
}

.rt-gap-35 {
  gap: 35px;
}

.rt-gap-40 {
  gap: 40px;
}

.rt-gap-45 {
  gap: 45px;
}

.rt-gap-50 {
  gap: 50px;
}

.rt-gap-55 {
  gap: 55px;
}

.rt-gap-60 {
  gap: 60px;
}

.rt-gap-65 {
  gap: 65px;
}

.rt-gap-70 {
  gap: 70px;
}

.rt-gap-75 {
  gap: 75px;
}

.rt-gap-80 {
  gap: 80px;
}

.rt-gap-85 {
  gap: 85px;
}

.rt-gap-90 {
  gap: 90px;
}

.rt-gap-95 {
  gap: 95px;
}

.rt-gap-100 {
  gap: 100px;
}

.rt-gap-105 {
  gap: 105px;
}

.rt-gap-110 {
  gap: 110px;
}

.rt-gap-115 {
  gap: 115px;
}

.rt-gap-120 {
  gap: 120px;
}

.rt-gap-125 {
  gap: 125px;
}

.rt-gap-130 {
  gap: 130px;
}

.rt-gap-135 {
  gap: 135px;
}

.rt-gap-140 {
  gap: 140px;
}

.rt-gap-145 {
  gap: 145px;
}

.rt-gap-150 {
  gap: 150px;
}

.rt-gap-155 {
  gap: 155px;
}

.rt-gap-160 {
  gap: 160px;
}

.rt-gap-165 {
  gap: 165px;
}

.rt-gap-170 {
  gap: 170px;
}

.rt-gap-175 {
  gap: 175px;
}

.rt-gap-180 {
  gap: 180px;
}

.rt-gap-185 {
  gap: 185px;
}

.rt-gap-190 {
  gap: 190px;
}

.rt-gap-195 {
  gap: 195px;
}

.rt-gap-200 {
  gap: 200px;
}

* {
  -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(--rt-primary);
  transition: all 0.3s ease;
}

a:focus {
  outline: none;
}

address {
  margin: 0 0 24px;
}

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

b,
strong {
  font-weight: bold;
}

mark {
  background: var(--rt-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(--rt-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(--rt-border);
  transition: var(--transition);
  color: var(--rt-body);
  width: 100%;
}
input:focus, input:active,
button:focus,
button:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  outline: none;
  border-color: var(--rt-primary) !important;
}

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(--p-s);
  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(--rt-border);
  border-radius: var(--rt-radius-none);
  /* -- 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(--rt-body);
  /* 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(--rt-body);
}
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(--rt-body);
}
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(--rt-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(--rt-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(--rt-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(--rt-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(--rt-primary);
}

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

input:checked ~ .rn-check-box-label::before {
  background: var(--rt-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(--p-s);
  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(--rt-primary);
  box-shadow: none;
}
.form-group textarea {
  min-height: 160px;
  border: 0 none;
  border-radius: 4px;
  resize: none;
  padding: 15px;
  font-size: var(--p-s);
  transition: var(--transition);
  background-color: var(--color-lightest);
  border: 1px solid transparent;
}
.form-group textarea:focus {
  border-color: var(--rt-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(--rt-primary);
  color: var(--color-white);
  font-weight: var(--p-medium);
  font-size: var(--p-s);
  line-height: var(--line-height-b3);
  height: 50px;
  border: 2px solid var(--rt-primary);
  transition: var(--transition);
}
input[type=submit]:hover {
  background: transparent;
  color: var(--rt-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(--rt-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);
}

.bg_tr-image--1 {
  background-image: url(../images/bg/bg-image-1.png);
  background-size: cover;
}

.bg_tr-image--2 {
  background-image: url(../images/bg/bg-image-2.png);
  background-size: cover;
}

.bg_tr-image--3 {
  background-image: url(../images/bg/bg-image-3.png);
  background-size: cover;
}

.bg_tr-image--4 {
  background-image: url(../images/bg/bg-image-4.png);
  background-size: cover;
}

.bg_tr-image--5 {
  background-image: url(../images/bg/bg-image-5.png);
  background-size: cover;
}

.bg_tr-image--6 {
  background-image: url(../images/bg/bg-image-6.png);
  background-size: cover;
}

.bg_tr-image--7 {
  background-image: url(../images/bg/bg-image-7.png);
  background-size: cover;
}

.bg_tr-image--8 {
  background-image: url(../images/bg/bg-image-8.png);
  background-size: cover;
}

.bg_tr-image--9 {
  background-image: url(../images/bg/bg-image-9.png);
  background-size: cover;
}

.bg_tr-image--10 {
  background-image: url(../images/bg/bg-image-10.png);
  background-size: cover;
}

.bg_tr-image--11 {
  background-image: url(../images/bg/bg-image-11.png);
  background-size: cover;
}

.bg_tr-image--12 {
  background-image: url(../images/bg/bg-image-12.png);
  background-size: cover;
}

.bg_tr-image--13 {
  background-image: url(../images/bg/bg-image-13.png);
  background-size: cover;
}

.bg_tr-image--14 {
  background-image: url(../images/bg/bg-image-14.png);
  background-size: cover;
}

.bg_tr-image--15 {
  background-image: url(../images/bg/bg-image-15.png);
  background-size: cover;
}

.bg_tr-image--16 {
  background-image: url(../images/bg/bg-image-16.png);
  background-size: cover;
}

.bg_tr-image--17 {
  background-image: url(../images/bg/bg-image-17.png);
  background-size: cover;
}

.bg_tr-image--18 {
  background-image: url(../images/bg/bg-image-18.png);
  background-size: cover;
}

.bg_tr-image--19 {
  background-image: url(../images/bg/bg-image-19.png);
  background-size: cover;
}

.bg_tr-image--20 {
  background-image: url(../images/bg/bg-image-20.png);
  background-size: cover;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*!
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);
  }
}
@keyframes rubberBand-2 {
  from {
    transform: scale3d(1, 1, 1);
  }
  0% {
    transform: scale3d(1, 0.95, 1);
  }
  50% {
    transform: scale3d(1, 0, 1);
  }
  100% {
    transform: scale3d(1, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@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);
  }
}
@keyframes slideInRight-2 {
  from {
    transform: translate3d(30%, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.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(1.4, 1.4);
    transform: scale(1.4, 1.4);
    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(--rt-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 marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee-2 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}
@keyframes topbottom {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(10%);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(calc(-100% - 40px));
  }
}
@keyframes marquee2 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes customOne {
  0% {
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1.3);
    transform: translateY(-50%) scale(1.3);
    opacity: 0;
  }
}
@keyframes liveAuction {
  0% {
    background: var(--color-white);
  }
  100% {
    background: var(--color-danger);
  }
}
.cd-intro {
  margin: 4em auto;
}

@media only screen and (min-width: 768px) {
  .cd-intro {
    margin: 5em auto;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-intro {
    margin: 6em auto;
  }
}
.cd-headline {
  font-size: 3rem;
  line-height: 1.2;
}

@media only screen and (min-width: 768px) {
  .cd-headline {
    font-size: 4.4rem;
    font-weight: 300;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-headline {
    font-size: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .cd-headline {
    font-size: 40px;
  }
}
@media only screen and (max-width: 479px) {
  .cd-headline {
    font-size: 26px;
  }
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* -------------------------------- 

xclip 

-------------------------------- */
.cd-headline.clip span {
  display: inline-block;
  padding: 0;
}

.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: middle;
  position: relative;
  margin-top: -20px;
}
.cd-headline.clip .cd-words-wrapper b {
  font-weight: 700;
}

.cd-headline.clip .cd-words-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 100%;
  background-color: var(--rt-primary-3);
  transform: translateY(-50%);
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

.container {
  max-width: 1290px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.rt-primary-bg {
  background: var(--rt-primary) !important;
}

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

.rt-theme-bg {
  background: #f6f6f6;
}

.rt-footer-bg {
  background: var(--rt-footer);
}

.rt-theme {
  color: var(--rt-theme);
}

.rt-white {
  color: var(--rt-white) !important;
}

.rt-secondary {
  color: var(--rt-secondary);
}

.rt-primary {
  color: var(--rt-primary);
}

.rt-rating-color {
  color: var(--rt-rating);
}

.rt-relative {
  position: relative;
}

.rt-absolute {
  position: absolute;
}

.rt-sticky {
  position: sticky;
}

.rt-fixed {
  position: fixed;
}

.rt-static {
  position: static;
}

.rt-center {
  text-align: center;
}

.rt-clip-text {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #DEDEDE;
  -webkit-text-stroke: 1px;
}

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

.section__with__heading {
  padding: 105px 0 120px;
}

.rts-padding-100 {
  padding: 100px 0;
}

.rts-section-title {
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.2;
  margin-top: -15px;
}

.rts-border-bottom-2 {
  border-bottom: 2px solid #eeeeee;
}

.rts-border-bottom-1 {
  border-bottom: 1px solid var(--rt-border);
}

.section-title {
  line-height: 100%;
}

.rt-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .rt-between {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.rt-flex {
  display: flex;
  align-items: center;
}

.before-white::before {
  background: var(--rt-white) !important;
}

.lh-100 {
  line-height: 100%;
}

.rt-bold {
  font-weight: 700;
}

.rt-semi {
  font-weight: 600;
}

.rt-medium {
  font-weight: 500;
}

.rt-regular {
  font-weight: 400;
}

.rt-light {
  font-weight: 300;
}

.--h1 {
  font-size: var(--h1);
}

.--h2 {
  font-size: var(--h2);
}

.--h3 {
  font-size: var(--h3);
}

.--h4 {
  font-size: var(--h4);
}

.--h5 {
  font-size: var(--h5);
}

.--h6 {
  font-size: var(--h6);
}

.--p-l {
  font-size: var(--p-l);
}

.--p-m {
  font-size: var(--p-m);
}

.--p-s {
  font-size: var(--p-s);
}

.--p-xs {
  font-size: var(--p-xs);
}

.o-hidden {
  overflow: hidden;
}

.video-container iframe {
  height: 100%;
  position: absolute;
  width: 100%;
  inset: 0;
  z-index: 9999;
}

.rts-section-padding {
  padding: 120px 0;
}
@media screen and (max-width: 992px) {
  .rts-section-padding {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .rts-section-padding {
    padding: 60px 0;
  }
}

.rts__padding--120-100 {
  padding-top: 120px;
  padding-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .rts__padding--120-100 {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 768px) {
  .rts__padding--120-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.rts__pt100 {
  padding-top: 100px;
}
@media screen and (max-width: 992px) {
  .rts__pt100 {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .rts__pt100 {
    padding-top: 60px;
  }
}

@media screen and (max-width: 992px) {
  .pt--120 {
    padding-top: 100px !important;
  }
}
@media screen and (max-width: 768px) {
  .pt--120 {
    padding-top: 80px !important;
  }
}

@media screen and (max-width: 992px) {
  .pb--180 {
    padding-bottom: 140px !important;
  }
}
@media screen and (max-width: 768px) {
  .pb--180 {
    padding-bottom: 120px !important;
  }
}

/* ====== Circle =========*/
.rts__circle svg {
  height: 156px;
  width: 156px;
  position: relative;
  padding: 5px;
  animation: rotate 10s linear infinite;
}
.rts__circle svg text textPath {
  font-size: 11.5px;
  fill: var(--rt-white);
  font-family: var(--font-secondary);
}
.rts__circle.v__1 {
  background: var(--rt-primary-2);
  border: 1px solid var(--rt-white);
  border-radius: 50%;
}
.rts__circle.v__2 svg {
  height: 160px;
  width: 160px;
  padding: 0;
  animation: rotate 10s linear infinite;
}
.rts__circle.v__2 svg text textPath {
  font-size: 11.5px;
}
.rts__circle.v__2 .rts__circle--icon i {
  transform: rotate(0);
  font-size: 20px;
}
.rts__circle--icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rts__circle--icon i {
  transform: rotate(-30deg);
  color: var(--rt-white);
}
.rts__circle.v__3 {
  display: inline-block;
  position: relative;
}
.rts__circle.v__3 text textPath {
  font-size: 11.5px;
  fill: var(--rt-heading);
  font-family: var(--font-secondary);
  font-weight: 400;
}
.rts__circle.v__3 .rts__circle--icon i {
  color: var(--rt-heading);
  transform: rotate(0);
  font-size: 20px;
}

.stroke__text {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #DEDEDE;
  -webkit-text-stroke: 1px;
  font-family: var(--font-hind);
}
.stroke__text.v__1 {
  font-size: 96px;
  font-weight: 500;
  line-height: 80px;
}

.rts__slider--arrow {
  display: flex;
  gap: 10px;
  align-items: center;
}
.rts__slider--arrow .slider__btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 1px solid var(--rt-white);
  color: var(--rt-white);
  display: grid;
  place-items: center;
}
.rts__slider--arrow.v__2 {
  max-width: max-content;
  position: absolute;
  right: 100px;
  z-index: 9;
  bottom: 80px;
  flex-direction: column;
}
@media screen and (max-width: 1400px) {
  .rts__slider--arrow.v__2 {
    display: none;
  }
}
.rts__slider--arrow.v__2 .slider__btn {
  border-color: var(--rt-heading);
  color: var(--rt-heading);
  transition: var(--transition);
  cursor: pointer;
}
.rts__slider--arrow.v__2 .slider__btn:hover {
  background: var(--rt-primary-2);
  color: var(--rt-white);
  border-color: var(--rt-primary-2);
}

.rts__pagination {
  display: flex;
  gap: 10px;
  max-width: max-content;
}
.rts__pagination.v__1 {
  margin: 60px auto 0;
}
.rts__pagination .swiper-pagination-bullet {
  background: var(--rt-line);
  opacity: 1;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  margin: 0 !important;
}
.rts__pagination .swiper-pagination-bullet-active {
  background: var(--rt-primary-2);
}

/* ======= content css =========*/
.rts__section--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .rts__section--wrapper {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }
}
.rts__section--wrapper.v__2 {
  flex-direction: column;
  align-items: self-start;
  max-width: 470px;
}
.rts__section--wrapper.v__2 .rts__section--title {
  margin-bottom: 25px;
}
.rts__section--wrapper.v__3 {
  margin-bottom: 60px;
  align-items: start;
}
.rts__section--wrapper.v__3 .rts__section--title {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .rts__section--wrapper.v__3 .rts__section--title {
    width: 100%;
  }
}
.rts__section--wrapper.v__3 .rts__section--details {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .rts__section--wrapper.v__3 .rts__section--details {
    width: 100%;
  }
}
.rts__section--wrapper.v__3 .rts__section--details .rts__description {
  max-width: 480px;
  text-transform: capitalize;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .rts__section--wrapper.v__3 .rts__section--details .rts__description {
    max-width: 100%;
  }
}
.rts__section--wrapper.v__4 {
  flex-direction: column;
  align-items: self-start;
  max-width: 485px;
}
.rts__section--wrapper.v__4 .rts__section--title, .rts__section--wrapper.v__4 .rts__section--description {
  color: var(--rt-white);
}
.rts__section--wrapper.v__4 .rts__section--title {
  margin-bottom: 25px;
}
.rts__section--wrapper.v__4 .rts__section--description {
  margin-bottom: 50px;
}
.rts__section--wrapper.v__4 .slider__btn {
  transition: var(--transition);
}
.rts__section--wrapper.v__4 .slider__btn:hover {
  background: var(--rt-white);
  color: var(--rt-heading);
}
.rts__section--wrapper.v__5 {
  justify-content: center;
  margin-bottom: 40px;
}
.rts__section--wrapper.v__5 .rts__section--title {
  text-transform: capitalize;
}
.rts__section--wrapper.v__6 {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .rts__section--wrapper.v__6 {
    flex-direction: column-reverse;
  }
}
.rts__section--wrapper.v__6 .rts__section--wrapper--description {
  max-width: 305px;
  margin-top: 100px;
  margin-right: -90px;
  margin-left: 0;
  margin-bottom: 0;
  color: var(--rt-white);
}
@media screen and (max-width: 768px) {
  .rts__section--wrapper.v__6 .rts__section--wrapper--description {
    margin-top: 0;
    max-width: 100%;
  }
}
.rts__section--wrapper.v__6 .rts__section--wrapper--title {
  font-size: 80px;
  text-align: right;
  color: var(--rt-white);
  position: relative;
  line-height: 1.2;
}
@media screen and (max-width: 576px) {
  .rts__section--wrapper.v__6 .rts__section--wrapper--title {
    font-size: 40px;
  }
}
.rts__section--wrapper.v__6 .rts__section--wrapper--title::before {
  position: absolute;
  content: "";
  background-image: url(../images/icon/highlight.svg);
  height: 45px;
  width: 50px;
  background-repeat: no-repeat;
  right: -40px;
}
.rts__section--wrapper.v__6 .rts__section--wrapper--title span {
  display: block;
}
@media screen and (max-width: 768px) {
  .rts__section--wrapper.v__6 .rts__section--wrapper--title span {
    display: inline-block;
  }
}
.rts__section--wrapper.v__7 {
  flex-direction: column;
  align-items: self-start;
}
.rts__section--wrapper.v__7 .rts__section--title {
  color: var(--rt-heading);
}
.rts__section--wrapper.v__7 .rts__section--title {
  margin-bottom: 25px;
  text-transform: capitalize;
}
.rts__section--wrapper.v__7 .rts__section--description {
  margin-bottom: 50px;
  color: var(--body-color);
}
.rts__section--wrapper.v__7 .rts__section--subheading {
  display: flex;
  gap: 15px;
  text-transform: capitalize;
  width: 100%;
  color: var(--rt-primary-1);
  font-family: var(--font-primary);
}
.rts__section--wrapper.v__8 .rts__section--title {
  text-transform: capitalize;
}
.rts__section--wrapper.v__8 .rts__section--link .rts-nbg-btn::before {
  background: transparent;
}
.rts__section--wrapper.v__8 .rts__section--link .rts-nbg-btn span {
  transform: rotate(0);
}
.rts__section--wrapper.v__9 {
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .rts__section--wrapper.v__9 {
    align-items: center;
  }
}
.rts__section--wrapper.v__9 .rts__section--title {
  text-transform: capitalize;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .rts__section--wrapper.v__9 .rts__section--title {
    text-align: center;
  }
}
.rts__section--wrapper.v__10 .rts__section--wrapper--left {
  width: 100%;
}
.rts__section--wrapper.v__10 .rts__section--title {
  min-width: 330px;
  max-width: 330px;
  text-transform: capitalize;
}
.rts__section--wrapper.v__10 .rts__description {
  min-width: 470px;
  max-width: 470px;
}
.rts__section--wrapper.v__11 {
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .rts__section--wrapper.v__11 {
    align-items: flex-start;
  }
}
.rts__section--wrapper.v__11 .rts__section--subheading {
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .rts__section--wrapper.v__11 .rts__section--subheading {
    justify-content: flex-start;
  }
}
.rts__section--wrapper.v__11 .rts__section--title {
  text-transform: capitalize;
}
.rts__section--wrapper.rt__lowercase .rts__section--title {
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .rts__section--wrapper--left {
    margin-bottom: 20px;
  }
}
.rts__section--subheading {
  display: flex;
  gap: 15px;
  text-transform: capitalize;
  width: 100%;
  color: var(--rt-primary-1);
  font-family: var(--font-primary);
  align-items: center;
}
.rts__section--subheading img {
  height: 32px;
  width: 32px;
}
.rts__section--title {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: -15px;
}
@media screen and (max-width: 768px) {
  .rts__section--title {
    margin-bottom: 20px;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .rts__section--title br {
    display: none;
  }
}
.rts__section .campus__vector {
  margin-top: 70px;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .rts__section .campus__vector {
    display: none;
  }
}

.program .rts__section--wrapper .rts__section--title {
  margin-bottom: 10px;
}
.program .rts__section--wrapper .rts__section--description {
  margin-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .program .rts__section--wrapper .rts__section--description {
    margin-bottom: 50px;
  }
}
.program .rts__section--wrapper .campus__vector {
  margin-left: 100px;
}
@media screen and (max-width: 992px) {
  .program .rts__section--wrapper .campus__vector {
    display: none;
  }
}
.program .rts__section--wrapper .rts-theme-btn {
  border-radius: 30px;
  transform: rotate(-50deg);
  margin-left: 170px;
  margin-top: -30px;
}
@media screen and (max-width: 992px) {
  .program .rts__section--wrapper .rts-theme-btn {
    transform: rotate(0);
    margin-left: 0;
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .program__content.mt--85 {
    margin-top: 0 !important;
  }
}

.rts__program--item {
  max-width: 300px;
  max-height: 360px;
  height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-bottom: 38px;
  padding-right: 26px;
  padding-left: 28px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .rts__program--item {
    max-width: 100%;
  }
}
.rts__program--item::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
  transition: var(--transition);
}
.rts__program--item::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  content: "";
  transition: var(--transition);
  left: -50%;
  opacity: 0;
}
.rts__program--item:hover::after, .rts__program--item.active::after {
  opacity: 1;
  left: 0;
}
.rts__program--item:hover::before, .rts__program--item.active::before {
  opacity: 0;
}
.rts__program--item:hover .rts__program--item--description, .rts__program--item.active .rts__program--item--description {
  opacity: 1;
}
.rts__program--item > * {
  position: relative;
  z-index: 1;
}
.rts__program--item--title {
  color: var(--rt-white);
  margin-bottom: 15px;
  font-weight: 400;
}
.rts__program--item--description {
  color: var(--rt-white);
  opacity: 0;
  transition: var(--transition);
  font-size: 15px;
}
.rts__program--item .rts-nbg-btn {
  position: absolute;
  bottom: 40px;
  color: var(--rt-white);
  font-weight: 400;
}
.rts__program--item .rts-nbg-btn::before {
  background: transparent;
}
.rts__program--item.v__2 {
  border-radius: 10px;
  height: 300px;
}
.rts__program--item.v__2:not(:last-child) {
  margin-bottom: 30px;
}
.rts__program--item.v__2 .rts__program--item--title {
  opacity: 0;
  transition: var(--transition);
}
.rts__program--item.v__2 .rts-nbg-btn {
  opacity: 0;
}
.rts__program--item.v__2 .rts__program--item--title--show {
  color: var(--rt-white);
  margin-bottom: 0;
  position: absolute;
  bottom: 40px;
}
.rts__program--item.v__2:hover .rts__program--item--title {
  opacity: 1;
}
.rts__program--item.v__2:hover .rts-nbg-btn {
  opacity: 1;
  z-index: 99;
}
.rts__program--item.v__2:hover .rts__program--item--title--show {
  opacity: 0;
}

.campus__life {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.campus__life--single {
  height: 180px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 50px;
  overflow: hidden;
  border: 1px solid var(--rt-border);
}
@media screen and (max-width: 992px) {
  .campus__life--single {
    padding: 30px;
  }
}
.campus__life--single > * {
  position: relative;
  z-index: 1;
}
.campus__life--single:hover .campus__life--single--bg {
  opacity: 1;
  left: 0;
}
.campus__life--single:hover .campus__life--single--bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}
.campus__life--single:hover .campus__life--single--title a {
  color: var(--rt-white);
}
.campus__life--single:hover .campus__life--single--description {
  color: var(--rt-white);
}
.campus__life--single:hover .campus__life--single--button a {
  border-color: var(--rt-white);
}
.campus__life--single:hover .campus__life--single--button a i {
  color: var(--rt-white);
}
.campus__life--single:hover .campus__life--single--button a:hover {
  border-color: var(--rt-primary);
}
.campus__life--single--bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: -10%;
  opacity: 0;
  transition: var(--transition);
}
.campus__life--single--bg::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.6);
}
.campus__life--single--content {
  max-width: 340px;
  transition: var(--transition);
}
.campus__life--single--title {
  margin-bottom: 10px;
  font-weight: 400;
}
.campus__life--single--title a {
  color: var(--rt-heading);
}
.campus__life--single--description {
  color: var(--body-color);
}
.campus__life--single--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.campus__life--single--button a {
  border: 1px solid var(--rt-heading);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.campus__life--single--button a i {
  color: var(--rt-heading);
  transform: rotate(-30deg);
  transition: var(--transition);
}
.campus__life--single--button a:hover {
  background: var(--rt-primary);
  border-color: var(--rt-primary);
}
.campus__life--single--button a:hover i {
  transform: rotate(0);
}

/* ====== Team Member ========*/
.rts__single--member:hover .rts__single--member--thumb img {
  transform: scale(1.05);
}
.rts__single--member--thumb {
  max-width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}
.rts__single--member--thumb img {
  width: 300px;
  height: 340px;
  max-width: 300px;
  min-height: 340px;
  transform: scale(1);
  transition: var(--transition);
}
@media screen and (max-width: 992px) {
  .rts__single--member--thumb img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: top;
  }
}
.rts__single--member--meta--title {
  font-weight: 400;
  margin-bottom: 5px;
}
.rts__single--member--meta--title a {
  color: var(--rt-heading);
}
.rts__single--member--meta--title a:hover {
  color: var(--rt-primary-1);
}
/* ====== Research Area =======*/
.rts__research--single--thumb {
  margin-bottom: 30px;
  overflow: hidden;
  width: 100%;
}
.rts__research--single--thumb:hover img {
  transform: scale(1.05);
}
.rts__research--single--thumb img {
  transform: scale(1);
  transition: var(--transition);
  width: 100%;
}
.rts__research--single--meta--title {
  font-size: 26px;
  font-family: var(--font-secondary);
  text-transform: capitalize;
  line-height: 36px;
  margin-bottom: 15px;
  display: block;
  color: var(--rt-heading);
  font-weight: 400;
  transition: var(--transition);
}
.rts__research--single--meta--title:hover {
  color: var(--rt-primary-1);
}
/*======= Student Feedback ======*/
.rts__testimonial--active {
  min-width: 850px;
}
@media screen and (max-width: 768px) {
  .rts__testimonial--active {
    min-width: 100%;
  }
}

.rts__single--testimonial {
  padding: 40px 25px 40px 40px;
  background: var(--rt-white);
}
@media screen and (max-width: 768px) {
  .rts__single--testimonial {
    padding: 40px;
  }
}
@media screen and (max-width: 576px) {
  .rts__single--testimonial {
    text-align: center;
  }
}
.rts__single--testimonial .rts__rating--star {
  margin-bottom: 15px;
}
.rts__single--testimonial .rts__rating--star i {
  color: var(--rt-primary-1);
  font-size: 14px;
}
.rts__single--testimonial--text {
  font-size: 18px;
  color: var(--rt-heading);
  line-height: 28px;
}
.rts__single--testimonial--author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .rts__single--testimonial--author {
    justify-content: center;
  }
}
.rts__single--testimonial--author--meta {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .rts__single--testimonial--author--meta {
    flex-direction: column;
  }
}
.rts__single--testimonial--author--meta .rts__author--info h5 {
  font-weight: 400;
  line-height: 1;
  font-size: 20px;
  margin-bottom: 5px !important;
}
.rts__single--testimonial--author--meta .rts__author--info .designation {
  font-size: 15px;
  color: var(--rt-heading);
}
.rts__single--testimonial--quote {
  width: 70px;
  height: 55px;
}
@media screen and (max-width: 576px) {
  .rts__single--testimonial--quote {
    display: none;
  }
}

/*======== UPCOMING EVENT ====== */
.rts__single--event--thumb {
  margin-bottom: 25px;
  overflow: hidden;
  width: 100%;
}
.rts__single--event--thumb:hover img {
  transform: scale(1.05);
}
.rts__single--event--thumb img {
  transform: scale(1);
  transition: var(--transition);
  width: 100%;
  object-fit: cover;
}
.rts__single--event--meta--dl {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .rts__single--event--meta--dl {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.rts__single--event--meta--dl .date, .rts__single--event--meta--dl .location {
  display: flex;
  gap: 10px;
  align-items: center;
}
.rts__single--event--meta--dl .date span, .rts__single--event--meta--dl .location span {
  color: var(--rt-heading);
}
.rts__single--event--meta--dl .date i, .rts__single--event--meta--dl .location i {
  font-size: 18px;
}
.rts__single--event--meta--dl .date img {
  height: 18px;
  width: 18px;
}
.rts__single--event--meta--title {
  font-weight: 400;
}
.rts__single--event--meta--title a {
  transition: var(--transition);
}
.rts__single--event--meta--title a:hover {
  color: var(--rt-primary-1);
}
.rts__single--event.v__2 {
  border: 1px solid #C2C2C2;
  padding: 20px 20px 30px 20px;
  border-radius: 10px;
}
.rts__single--event.v__2 .rts__single--event--thumb {
  border-radius: 10px;
}
.rts__single--event.v__3 .rts__single--event--thumb {
  border-radius: 10px;
}

/*======== TUTION FEE ==========*/
.tution.v__2 .rts-theme-btn {
  border-radius: 30px;
}
.tution.v__2 .tution__single--box {
  border-radius: 10px;
}

.tution__single--box {
  background: #f6f6f6;
  padding: 60px 45px 60px 40px;
  transition: var(--transition);
}
@media screen and (max-width: 768px) {
  .tution__single--box {
    padding: 40px;
  }
}
.tution__single--box.v__1, .tution__single--box:hover {
  background: var(--rt-primary-2);
  color: var(--rt-white);
}
.tution__single--box.v__1 .tution__single--box--title, .tution__single--box.v__1 .tution__single--box--faculty, .tution__single--box.v__1 .tution__single--box--feature li, .tution__single--box:hover .tution__single--box--title, .tution__single--box:hover .tution__single--box--faculty, .tution__single--box:hover .tution__single--box--feature li {
  color: var(--rt-white);
}
.tution__single--box--title {
  font-size: 26px;
  margin-bottom: 50px;
}
.tution__single--box--faculty {
  text-decoration: underline;
  font-family: var(--rt-primary);
  font-weight: 500;
  margin-bottom: 25px;
}
.tution__single--box--faculty:not(:first-child) {
  margin-top: 30px;
}
.tution__single--box--feature {
  padding: 0;
  margin: 0;
  list-style: none;
}
.tution__single--box--feature li {
  position: relative;
  margin-left: 20px;
  margin-bottom: 0;
  margin-top: 0;
}
.tution__single--box--feature li:not(:last-child) {
  margin-bottom: 15px;
}
.tution__single--box--feature li::before {
  position: absolute;
  left: -20px;
  top: 0;
  content: "\f00c";
  font-family: var(--fontawesome);
}

/*===== FEEDBACK SLIDER ========*/
.feedback {
  background: var(--light-white);
}

/*======== MARQUEE SECTION ========*/
.single__marque__item {
  background: var(--rt-heading);
  height: 80px;
  display: flex;
  align-items: center;
}
.single__marque__item.v__2 {
  background: var(--rt-primary-2);
}
.single__marque__item.v__2 .single__marque__item__list {
  animation: marquee2 40s linear infinite;
}
.single__marque__item__list {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.single__marque__item__list__text {
  display: flex;
  margin: 0;
  gap: 40px;
  font-size: 36px;
  font-family: var(--font-secondary);
  color: var(--rt-white);
  text-transform: capitalize;
  margin-right: 40px;
}
.single__marque__item__list__text span img {
  height: 40px;
  min-width: 35px;
}

/*======== ABOUT US ========*/
.about__description__text {
  font-family: var(--font-secondary);
  margin-left: 60px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
@media screen and (max-width: 1200px) {
  .about__description__text {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 992px) {
  .about__description__text {
    margin-left: 0;
  }
}
.about__description__text span {
  color: var(--rt-heading);
}

.about__image img {
  border-radius: 10px;
  min-height: 350px;
  object-fit: cover;
}

/*========== ALUMNI STORIES =========*/
.alumni-banner .rts__section--description {
  max-width: 470px;
  color: var(--rt-heading);
  text-align: center;
}

.left__side .rts__section--wrapper.v__7 {
  margin-bottom: 0;
}
.left__side .rts__section--description {
  margin-bottom: 30px !important;
}
.left__side__image img {
  margin-bottom: 30px;
}

.right__side__image img {
  margin-bottom: 30px;
}
.right__side__link {
  margin-top: 70px;
}

.left__side__description, .right__side__description {
  color: var(--rt-heading);
}

.rts__light {
  background: #f6f6f6;
}

.rts__primary__bg {
  background: var(--rt-primary-1);
}

.rts__primary__bg-2 {
  /* background: #890C25; */
  background: #008080;
}

.save-from-hidden span {
  display: none;
}

/* Header */
.header.v__1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
.header.v__1 .container-fluid {
  padding: 0 100px 0;
}
@media screen and (max-width: 1200px) {
  .header.v__1 .container-fluid {
    padding: 0 15px 0;
  }
}
.header.v__1 .navigation__menu--item__link {
  color: var(--rt-white);
}
.header.v__2 {
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header.v__2 {
    padding: 15px 0;
  }
}
.header.v__2 .container-fluid {
  padding: 0 100px 0;
}
.header.v__2 .header__wrapper {
  margin-top: 0;
}
.header.v__2 .navigation__menu--item__link {
  color: var(--rt-heading);
}
.header.v__2 .navigation__menu--item.has-arrow::before {
  color: var(--rt-heading);
}
.header.v__2 .header__right--item .menu__trigger, .header.v__2 .header__right--item .lang__trigger, .header.v__2 .header__right--item .search__trigger {
  cursor: pointer;
  line-height: 1;
}
.header.v__2 .header__right--item .lang__trigger, .header.v__2 .header__right--item .search__trigger {
  font-size: 18px;
  color: var(--rt-heading);
}
.header.v__2 .navigation__menu--item:hover .navigation__menu--item__link {
  color: var(--rt-primary-2);
  transition: var(--transition);
}
.header.v__2 .navigation__menu--item:hover .navigation__menu--item__link::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--rt-primary-2);
  bottom: 40px;
  position: absolute;
}
.header.v__2 .navigation__menu--item.has-arrow:hover::before {
  color: var(--rt-primary-2);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.header__right--item {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__right--item .menu__trigger, .header__right--item .lang__trigger, .header__right--item .search__trigger {
  cursor: pointer;
  line-height: 1;
}
.header__right--item .lang__trigger, .header__right--item .search__trigger {
  font-size: 18px;
  color: var(--rt-white);
}
.header__right--item .lang__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
  min-width: 90px;
  max-width: 90px;
}
.header__right--item .lang__trigger .selected__lang {
  font-size: 14px;
}
.header__right--item .lang__trigger .translate__lang {
  position: absolute;
  top: 200%;
  background: var(--rt-white);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 11px rgba(0, 0, 0, 0.1);
}
.header__right--item .lang__trigger .translate__lang.show {
  opacity: 1;
  visibility: visible;
}
.header__right--item .lang__trigger .translate__lang ul {
  padding: 10px 15px;
  margin: 0;
  list-style: none;
}
.header__right--item .lang__trigger .translate__lang ul li {
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .header.v__3 {
    padding: 15px 0;
  }
}
.header.v__3 .header__wrapper {
  margin-top: 0;
  padding: 0 100px;
}
@media screen and (max-width: 1200px) {
  .header.v__3 .header__wrapper {
    padding: 0 15px;
  }
}
.header.v__3 .header__center__content {
  display: flex;
  gap: 100px;
  align-items: center;
}
.header.v__3 .header__social__link {
  display: flex;
  gap: 25px;
  color: #A7A7A7;
}
@media screen and (max-width: 576px) {
  .header.v__3 .header__social__link {
    display: none;
  }
}
.header.v__3 .header__social__link a {
  font-size: 20px;
  transition: var(--transition);
}
.header.v__3 .header__social__link a:hover {
  color: var(--rt-primary-2);
}
.header.v__3 .navigation__menu--item:hover .navigation__menu--item__link {
  color: var(--rt-primary-2);
  transition: var(--transition);
}
.header.v__3 .navigation__menu--item:hover .navigation__menu--item__link::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--rt-primary-2);
  bottom: 40px;
  position: absolute;
}
.header.v__3 .navigation__menu--item.has-arrow::before {
  color: var(--rt-heading);
}
.header.v__3 .header__right--item .menu__trigger, .header.v__3 .header__right--item .lang__trigger, .header.v__3 .header__right--item .search__trigger {
  cursor: pointer;
  line-height: 1;
}
.header.v__3 .header__right--item .lang__trigger, .header.v__3 .header__right--item .search__trigger {
  font-size: 18px;
  color: var(--rt-heading);
}
@media screen and (max-width: 1200px) {
  .header.v__5 {
    padding: 15px 0;
  }
}
.header.v__5 .rt-border-bottom {
  border-bottom: 1px solid #eee;
}
.header.v__5 .header__wrapper {
  margin-top: 0;
}
.header.v__5 .container-fluid {
  padding: 0 100px;
}
@media screen and (max-width: 1200px) {
  .header.v__5 .container-fluid {
    padding: 0 15px;
  }
}
.header.v__5 .navigation__menu--item.has-arrow::before {
  color: var(--rt-heading);
}
.header.v__5 .navigation__menu--item ul.submenu, .header.v__5 .navigation__menu--item .sub__style {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.header.v__5 .navigation__menu--item:hover .navigation__menu--item__link {
  color: var(--rt-primary-2);
  transition: var(--transition);
}
.header.v__5 .navigation__menu--item:hover .navigation__menu--item__link::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--rt-primary-2);
  bottom: 40px;
  position: absolute;
  transition: var(--transition);
}
.header.v__5 .navigation__menu--item.has-arrow:hover::before {
  color: var(--rt-primary-2);
  transition: var(--transition);
}
.header.v__5 .header__right--item .menu__trigger, .header.v__5 .header__right--item .lang__trigger, .header.v__5 .header__right--item .search__trigger {
  cursor: pointer;
  line-height: 1;
}
.header.v__5 .header__right--item .lang__trigger, .header.v__5 .header__right--item .search__trigger {
  font-size: 18px;
  color: var(--rt-heading);
}
@media screen and (max-width: 1200px) {
  .header__menu {
    display: none;
  }
}

.navigation__menu ul {
  display: flex;
  max-width: max-content;
  /* gap: 60px; */
  gap: 40px;
  position: relative;
  padding: 0;
  margin: 0;
}
.navigation__menu--item {
  position: relative;
  margin: 0;
}
.navigation__menu--item:hover > a {
  color: red;
}
.navigation__menu--item__link {
  position: relative;
  /* font-size: 15px; */
  font-size: 12px;
  font-family: var(--font-primary);
  font-weight: 500;
  text-transform: uppercase;
  padding: 37px 0;
  display: block;
  color: var(--rt-heading);
}
.navigation__menu--item.has-child:hover ul.submenu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.navigation__menu--item.has-child:hover ul.submenu li.has-child:hover ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.navigation__menu--item.has-arrow {
  position: relative;
}
.navigation__menu--item.has-arrow::before {
  position: absolute;
  content: "+";
  font-family: var(--fontawesome);
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  color: var(--rt-white);
  font-size: 12px;
  transition: var(--transition);
}
.navigation__menu--item.has-arrow:hover::before {
  content: "\f068";
  transition: var(--transition);
}
.navigation__menu--item ul.submenu,
.navigation__menu--item .sub__style {
  position: absolute;
  top: 100%;
  min-width: 200px;
  background: var(--rt-white);
  z-index: 1024;
  display: inline-block;
  opacity: 0;
  padding: 30px 0;
  transform: scaleY(0);
  transform-origin: top center;
  visibility: hidden;
  transition: var(--transition);
  left: 0;
}
.navigation__menu--item ul.submenu li,
.navigation__menu--item .sub__style li {
  position: relative;
  display: block;
  padding: 0 30px;
}
.navigation__menu--item ul.submenu li:hover > a,
.navigation__menu--item .sub__style li:hover > a {
  color: var(--rt-primary-2);
}
.navigation__menu--item ul.submenu li:hover > a::before,
.navigation__menu--item .sub__style li:hover > a::before {
  width: 80%;
}
.navigation__menu--item ul.submenu li:not(:last-child),
.navigation__menu--item .sub__style li:not(:last-child) {
  margin: 0 0 15px;
}
.navigation__menu--item ul.submenu li.has-arrow,
.navigation__menu--item .sub__style li.has-arrow {
  position: relative;
}
.navigation__menu--item ul.submenu li.has-arrow::before,
.navigation__menu--item .sub__style li.has-arrow::before {
  position: absolute;
  content: "+";
  font-family: var(--fontawesome);
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  color: var(--rt-heading);
  font-size: 12px;
  transition: var(--transition);
}
.navigation__menu--item ul.submenu li.has-arrow:hover::before,
.navigation__menu--item .sub__style li.has-arrow:hover::before {
  content: "\f068";
}
.navigation__menu--item ul.submenu li a,
.navigation__menu--item .sub__style li a {
  padding: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 400;
  position: relative;
  color: var(--rt-heading);
}
.navigation__menu--item ul.submenu li a::before,
.navigation__menu--item .sub__style li a::before {
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  position: absolute;
  content: "";
  background: var(--rt-primary-2);
  transition: var(--transition);
}
.navigation__menu--item ul.submenu li a:hover::before,
.navigation__menu--item .sub__style li a:hover::before {
  width: 100%;
}
.navigation__menu--item ul.submenu li ul,
.navigation__menu--item .sub__style li ul {
  top: 0;
  position: absolute;
  left: 100%;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition: var(--transition);
}

.header__sticky {
  position: relative;
  top: 0;
  display: block;
  width: 100%;
  box-shadow: none;
  background: transparent;
  z-index: 999;
  margin: auto;
  align-items: center;
  left: 0;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
  top: 0;
  transform: translateY(0);
}
.header__sticky.fixed {
  position: fixed !important;
  box-shadow: 0px 7px 18px #1810100d;
  background: var(--rt-white);
}
.header__sticky.fixed .header__logo--link img {
  filter: invert(100);
}
.header__sticky.fixed .header__right--item .menu__trigger img {
  filter: invert(100);
}
.header__sticky.fixed .navigation__menu--item__link {
  padding: 30px 0;
  color: var(--rt-heading);
}
.header__sticky.fixed .navigation__menu--item.has-arrow::before {
  color: var(--rt-heading);
}
.header__sticky.fixed .navigation__menu--item:hover .navigation__menu--item__link::before {
  bottom: 32px;
}

.header__sticky.back-hide-header {
  transform: translateY(-100%);
  transition: var(--transition);
}

.header.v__5.fixed .header__logo--link img, .header.v__2.fixed .header__logo--link img, .header.v__3.fixed .header__logo--link img {
  filter: invert(0);
}
.header.v__5.fixed .header__right--item .menu__trigger img, .header.v__2.fixed .header__right--item .menu__trigger img, .header.v__3.fixed .header__right--item .menu__trigger img {
  filter: invert(0);
}
.header.v__5.fixed .header__right--item .lang__trigger,
.header.v__5.fixed .header__right--item .search__trigger, .header.v__2.fixed .header__right--item .lang__trigger,
.header.v__2.fixed .header__right--item .search__trigger, .header.v__3.fixed .header__right--item .lang__trigger,
.header.v__3.fixed .header__right--item .search__trigger {
  color: var(--rt-heading);
}

.header.v__1.fixed .header__right--item .lang__trigger,
.header.v__1.fixed .header__right--item .search__trigger {
  color: var(--rt-heading);
}

#side-bar .inner-main-wrapper-desk {
  display: block;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #side-bar .inner-main-wrapper-desk {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #side-bar .inner-main-wrapper-desk {
    display: none;
  }
}
#side-bar .mobile-menu-main {
  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;
}
.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;
}
.mobile-menu-main nav ul li.has-droupdown ul a.tag {
  font-weight: 700;
  margin-top: 15px;
  font-size: 18px;
  border-bottom: 2px solid var(--rt-primary);
  padding: 10px 0;
}
.mobile-menu-main nav ul li.has-droupdown ul li {
  margin: 7px 0 !important;
  border-bottom: 1px solid #f3f3f3;
}
.mobile-menu-main nav ul li.has-droupdown::after {
  position: absolute;
  content: "+";
  font-family: var(--fontawesome) !important;
  font-size: 16px;
  right: 0;
  font-weight: 400;
  top: 5px;
  padding: 8px 13px;
  color: #fff;
  background: var(--rt-primary-2) !important;
  pointer-events: none;
  cursor: pointer;
}
.mobile-menu-main nav ul li.has-droupdown.mm-active::after {
  content: "\f068";
}
.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;
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li:hover {
  color: var(--rt-primary);
}
.mobile-menu-main nav ul li.has-droupdown.third-lvl ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.mobile-menu-main nav ul li a {
  display: block;
  color: var(--rt-body);
  font-size: 15px;
}
.mobile-menu-main .social-wrapper-one {
  margin-top: 50px;
}

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

.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: none !important;
}
.sub-dropdown:hover .sub-menu-link {
  color: var(--rt-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;
}

.mobile-menu-main .rts-social-style-one ul {
  padding-left: 0;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 15px;
  justify-content: center;
}
.mobile-menu-main .rts-social-style-one ul li {
  margin: 0;
}
.mobile-menu-main .rts-social-style-one ul li a {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #f3f3f3;
  transition: 0.3s;
}
.mobile-menu-main .rts-social-style-one ul li:hover a {
  background: var(--rt-primary-2);
  color: #fff;
  border-color: var(--rt-primary-2);
  transform: translateY(-5px);
}

/* Banner */
.rts-btn {
  display: block;
  max-width: max-content;
  padding: 18px 34px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}
.rts-btn.btn-primary {
  background: var(--rt-primary) !important;
  color: #fff;
  border: 1px solid transparent;
}
.rts-btn.btn-primary:hover {
  border: 1px solid #BBB1F2;
  background: transparent !important;
  color: var(--rt-primary) !important;
}
.rts-btn.with-arrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rts-btn.btn-border {
  border: 1px solid #BBB1F2;
  color: var(--rt-primary);
}
.rts-btn.btn-border:hover {
  background: var(--rt-primary);
  color: #fff;
}
.rts-btn.btn-primary-white {
  background: #fff !important;
  color: #110C2D;
  border: 1px solid transparent;
}
.rts-btn.btn-primary-white:hover {
  background: transparent !important;
  border-color: #fff;
  color: #fff;
}

.rts-theme-btn {
  max-width: max-content;
  transition: var(--transition);
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 15px 30px;
  background: var(--rt-primary-2);
  color: var(--rt-white);
  overflow: hidden;
  z-index: 1;
}
.rts-theme-btn::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  left: -70%;
  background: var(--rt-secondary);
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
  border-radius: inherit;
}
.rts-theme-btn:hover {
  color: var(--rt-white);
}
.rts-theme-btn:hover::before {
  opacity: 1;
  left: 0;
}
.rts-theme-btn.primary {
  color: var(--rt-white);
  background: var(--rt-primary);
}
.rts-theme-btn.primary.btn-arrow {
  min-width: 200px;
}
.rts-theme-btn.primary::before {
  background: var(--rt-secondary);
}
.rts-theme-btn.btn-arrow {
  min-width: 180px;
}
.rts-theme-btn.btn-arrow span {
  transform: rotate(-35deg);
  margin-left: 10px;
  transition: var(--transition);
}
.rts-theme-btn.btn-arrow:hover span {
  transform: rotate(0) !important;
}
.rts-theme-btn.with-arrow span {
  transform: rotate(-35deg);
  margin-left: 10px;
  transition: var(--transition);
}
.rts-theme-btn.with-arrow:hover span {
  transform: rotate(0) !important;
}
.rts-theme-btn.full-btn {
  max-width: 100%;
}
.rts-theme-btn.v2 {
  background: var(--rt-primary);
}
.rts-theme-btn.v2::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  left: -70%;
  background: var(--rt-secondary);
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
  border-radius: inherit;
}
.rts-theme-btn.v2:hover {
  color: var(--rt-white);
}
.rts-theme-btn.v2:hover::before {
  opacity: 1;
  left: 0;
}
.rts-theme-btn.btn-white {
  background: var(--rt-white);
  color: var(--rt-secondary);
}
.rts-theme-btn.btn-white:hover {
  color: var(--rt-white);
}
.rts-theme-btn.border-btn {
  background: transparent;
  border: 1px solid var(--rt-primary);
  color: var(--rt-primary);
  line-height: 100%;
}
.rts-theme-btn.border-btn:hover {
  color: var(--rt-white);
}
.rts-theme-btn span {
  margin-left: 10px;
}

.rts-nbg-btn {
  font-weight: 500;
  position: relative;
  color: var(--rt-primary-1);
  text-transform: capitalize;
}
.rts-nbg-btn::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 1px;
  background: var(--rt-primary-1);
  bottom: -2px;
  border-radius: inherit;
}
.rts-nbg-btn.btn-arrow span {
  transform: rotate(-35deg);
  margin-left: 5px;
  display: inline-block;
  transition: var(--transition);
}
.rts-nbg-btn.btn-arrow:hover span {
  transform: rotate(0);
}

.rts-arrow {
  color: var(--rt-primary);
  font-weight: 600;
  display: inline-block;
}
.rts-arrow span {
  margin-left: 5px;
}

.rts__round--btn {
  height: 50px;
  width: 50px;
  border: 1px solid var(--rt-heading);
  color: var(--rt-heading);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: var(--transition);
}
.rts__round--btn i {
  transform: rotate(-30deg);
  transition: var(--transition);
}
.rts__round--btn:hover {
  background: var(--rt-primary-1);
  border-color: var(--rt-primary-1);
}
.rts__round--btn:hover i {
  color: var(--rt-white);
  transform: rotate(0);
}

.rt-slider-btn {
  position: absolute;
  top: 50%;
  background: transparent;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  color: var(--rt-body);
  left: 100px;
  z-index: 9;
  transform: translateY(-50%);
  font-size: 24px;
  transition: var(--transition);
  border: 1px solid var(--rt-body);
  display: grid;
  place-items: center;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .rt-slider-btn {
    left: 50px;
  }
}
.rt-slider-btn:hover {
  background: var(--rt-primary-2);
  border-color: var(--rt-primary-2) !important;
}
.rt-slider-btn:hover i {
  color: var(--rt-white);
}
.rt-slider-btn i {
  color: var(--rt-body);
}
.rt-slider-btn.rt-prev {
  left: auto;
  right: 100px;
}
@media screen and (max-width: 1200px) {
  .rt-slider-btn.rt-prev {
    right: 50px;
  }
}

.rts-swiper-dots {
  display: flex;
  gap: 15px;
  max-width: max-content;
}
.rts-swiper-dots .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #616161;
  opacity: 1;
}
.rts-swiper-dots .swiper-pagination-bullet-active {
  background: #D9D9D9;
}

.rts-breadcrumb.breadcrumb-height {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rts-breadcrumb.breadcrumb-height::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 992px) {
  .rts-breadcrumb.breadcrumb-height {
    height: auto;
    padding: 60px 0;
  }
}
.rts-breadcrumb.breadcrumb-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rts-breadcrumb > * {
  position: relative;
  z-index: 1;
}
.rts-breadcrumb .breadcrumb-content {
  text-align: center;
}
.rts-breadcrumb .breadcrumb-content .breadcrumb {
  color: var(--rt-white);
  margin-bottom: 15px;
  justify-content: center;
}
.rts-breadcrumb .breadcrumb-content .breadcrumb ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.rts-breadcrumb .breadcrumb-content .breadcrumb li {
  margin: 0;
  padding: 0;
}
.rts-breadcrumb .breadcrumb-content .breadcrumb li a {
  color: var(--rt-white);
}
.rts-breadcrumb .breadcrumb-content .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 10px;
  padding-left: 10px;
  color: #fff;
  content: "\f054";
  font-family: var(--fontawesome);
  font-weight: 100;
  font-size: 14px;
}
.rts-breadcrumb .breadcrumb-content .breadcrumb-item.active {
  color: var(--rt-white);
  text-transform: capitalize;
}
.rts-breadcrumb .breadcrumb-content .section-title {
  color: var(--rt-white);
}

/* elements */
.rts-slider-height {
  height: 860px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rts-slider-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.rts-hero-slider-active {
  transition: var(--transition);
}
.rts-hero-slider-active:hover .rts-slider-arrow {
  opacity: 1;
}
.rts-hero-slider-active .swiper-slide .rts-slider-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  transform: scale(1);
  -webkit-transform: scale(1);
  -webkit-transition: opacity 3500ms ease-in, -webkit-transform 10000ms ease;
}
.rts-hero-slider-active .swiper-slide .rts-slider {
  text-align: center;
}
.rts-hero-slider-active .swiper-slide .rts-slider-content .rts-university-icon {
  margin-bottom: 30px;
}
.rts-hero-slider-active .swiper-slide .rts-slider-content .rts-university-estd {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 100%;
}
.rts-hero-slider-active .swiper-slide .rts-slider-content .rts-university-estd::after {
  position: absolute;
  content: "";
  left: -95%;
  top: 50%;
  height: 1px;
  width: 80px;
  background: var(--rt-white);
}
.rts-hero-slider-active .swiper-slide .rts-slider-content .rts-university-estd::before {
  position: absolute;
  content: "";
  right: -95%;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 80px;
  background: var(--rt-white);
}
.rts-hero-slider-active .swiper-slide .rts-slider-content .rts-university-estd span {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--rt-theme);
}
.rts-hero-slider-active .swiper-slide .rts-slider-content .rts-slider-title {
  font-size: 80px;
  color: var(--rt-white);
  margin-bottom: 40px;
}
.rts-hero-slider-active .swiper-slide .rts-slider-content .rts-slider-title span {
  font-weight: 400;
  color: var(--rt-theme);
}
@media screen and (max-width: 1200px) {
  .rts-hero-slider-active .swiper-slide .rts-slider-content .rts-slider-title {
    font-size: 65px;
  }
}
@media screen and (max-width: 992px) {
  .rts-hero-slider-active .swiper-slide .rts-slider-content .rts-slider-title {
    line-height: 1.2;
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .rts-hero-slider-active .swiper-slide .rts-slider-content .rts-slider-title {
    font-size: 40px;
  }
}
.rts-hero-slider-active .swiper-slide .rts-slider-content .rts-slider-desc {
  font-size: 18px;
  color: var(--rt-white);
  margin: 0 auto;
}
.rts-hero-slider-active .rts-swiper-dots {
  max-width: max-content;
  position: absolute;
  right: 20%;
  bottom: 85px;
  left: auto;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .rts-hero-slider-active .rts-swiper-dots {
    right: unset;
    left: 60%;
    transform: translateX(60%);
  }
}
@media screen and (max-width: 576px) {
  .rts-hero-slider-active .rts-swiper-dots {
    bottom: 50px;
  }
}
.rts-hero-slider-active .rts-slider-arrow {
  opacity: 0;
  transition: var(--transition);
}
@media screen and (max-width: 768px) {
  .rts-hero-slider-active .rts-slider-arrow {
    display: none;
  }
}
.rts-hero-slider-active .swiper-slide-active .rts-slider-bg {
  transform: scale(1.1);
}
.rts-hero-slider-active .swiper-slide-active .rts-slider-content .rts-university-estd span {
  color: var(--rt-white);
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--rt-theme);
}
.rts-hero-slider-active .swiper-slide-active .rts-slider .rts-swiper-dots {
  opacity: 1;
}
.rts-hero-slider.v_2 .rts-slider-height {
  height: 980px;
}
@media screen and (max-width: 992px) {
  .rts-hero-slider.v_2 .rts-slider-height {
    height: 650px;
  }
}
.rts-hero-slider.v_2 .rts-slider-overlay {
  background: rgba(0, 0, 0, 0.3);
}
.rts-hero-slider.v_2 .rts-slider-overlay-element {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  transition: all 2500ms ease;
}
@media screen and (max-width: 992px) {
  .rts-hero-slider.v_2 .rts-slider-overlay-element {
    left: -20%;
  }
}
@media screen and (max-width: 576px) {
  .rts-hero-slider.v_2 .rts-slider-overlay-element {
    display: none;
  }
}
.rts-hero-slider.v_2 .rt-rounded-shape {
  position: absolute;
  right: 80px;
  bottom: 80px;
  border: 1px solid var(--rt-white);
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .rts-hero-slider.v_2 .rt-rounded-shape {
    display: none;
  }
}
.rts-hero-slider.v_2 .rt-rounded-shape .rt-svg {
  fill: currentColor;
  height: auto;
  max-width: 132px;
  right: 10%;
  transform-origin: center;
  text-transform: uppercase;
  animation: rotate 10s linear infinite;
}
.rts-hero-slider.v_2 .rt-rounded-shape text textPath {
  color: #fff;
}
.rts-hero-slider.v_2 .rt-rounded-shape .rt-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--rt-white);
}
.rts-hero-slider.v_2 .rt-rounded-shape .rt-icon i {
  transform: rotate(-35deg);
}
.rts-hero-slider.v_2 .rt-slider-btn {
  left: 60px;
  border-color: var(--rt-white);
}
@media screen and (max-width: 992px) {
  .rts-hero-slider.v_2 .rt-slider-btn {
    display: none;
  }
}
.rts-hero-slider.v_2 .rt-slider-btn i {
  color: var(--rt-white);
}
.rts-hero-slider.v_2 .rt-slider-btn.rt-prev {
  left: auto;
  right: 60px;
}
.rts-hero-slider.v_2 .rts-slider-content {
  opacity: 0;
}
.rts-hero-slider.v_2 .rts-slider-content .rts-subtitle {
  margin-bottom: 25px;
  font-weight: 500;
  color: var(--rt-white);
}
.rts-hero-slider.v_2 .rts-slider-content .rts-subtitle img {
  margin-right: 15px;
}
.rts-hero-slider.v_2 .rts-slider-content .rts-slider-btn {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .rts-hero-slider.v_2 .rts-slider-content .rts-slider-btn {
    flex-wrap: wrap;
  }
}
.rts-hero-slider.v_2 .rts-swiper-dots {
  right: unset;
  left: 17.5%;
  bottom: 60px;
}

.rts-hero-slider .rts-slider-content {
  opacity: 0;
}
.rts-hero-slider .rts-slider-content .rts-subtitle {
  animation: none;
  transition-delay: 0.8s;
  display: block;
  opacity: 0;
}
.rts-hero-slider .rts-slider-content .rts-university-icon {
  animation: none;
  transition-delay: 0.8s;
  opacity: 0;
  display: block;
}
.rts-hero-slider .rts-slider-content .rts-university-estd {
  animation: none;
  transition-delay: 1s;
  opacity: 0;
  display: block;
}
.rts-hero-slider .rts-slider-content .rts-slider-title {
  animation: none;
  transition-delay: 1.2s;
  opacity: 0;
  display: block;
}
.rts-hero-slider .rts-slider-content .rts-slider-desc {
  animation: none;
  transition-delay: 1.8s;
  opacity: 0;
  display: block;
}
.rts-hero-slider .rts-slider-content .rts-slider-btn {
  animation: none;
  transition-delay: 2.2s;
  opacity: 0;
  display: block;
}
.rts-hero-slider .swiper-slide-active .rts-slider-content {
  opacity: 1;
}
.rts-hero-slider .swiper-slide-active .rts-slider-content .rts-subtitle {
  animation: slideInUp3 1s;
  animation-delay: 0.8s;
  display: block;
  opacity: 1;
  text-transform: capitalize;
  font-family: var(--font-primary);
}
.rts-hero-slider .swiper-slide-active .rts-slider-content .rts-university-icon {
  animation: slideInUp3 1s;
  animation-delay: 0.8s;
  display: block;
  opacity: 1;
}
.rts-hero-slider .swiper-slide-active .rts-slider-content .rts-university-estd {
  animation: fadeInUp 1s;
  animation-delay: 1s;
  opacity: 1;
}
.rts-hero-slider .swiper-slide-active .rts-slider-content .rts-slider-title {
  animation: fadeInUp 1.2s;
  animation-delay: 1.2s;
  opacity: 1;
}
.rts-hero-slider .swiper-slide-active .rts-slider-content .rts-slider-desc {
  animation: fadeInUp 0.8s;
  animation-delay: 1.8s;
  opacity: 1;
}
.rts-hero-slider .swiper-slide-active .rts-slider-content .rts-slider-btn {
  animation: fadeInUp 0.8s;
  animation-delay: 2.2s;
  opacity: 1;
}

/*=========== Banner CSS ========= */
.banner.v__1 {
  background: var(--rt-primary-2);
  height: 960px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 992px) {
  .banner.v__1 {
    height: auto;
  }
}
.banner.v__1::before {
  position: absolute;
  content: "";
  background-image: url(../images/banner/shape__h1.svg);
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner__wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  min-width: 120%;
  margin: 0 auto;
  margin-left: auto;
  margin-left: -10%;
  z-index: 99;
  padding-top: 170px;
}
@media screen and (max-width: 992px) {
  .banner__wrapper {
    min-width: 100%;
    flex-direction: column;
    margin-left: 0;
    padding-bottom: 100px;
    text-align: center;
  }
}
.banner__wrapper--left {
  margin-top: -65px;
  margin-left: -40px;
}
@media screen and (max-width: 992px) {
  .banner__wrapper--left {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 30px;
  }
}
.banner__wrapper--right {
  position: relative;
  display: inline-block;
  top: -130px;
  right: 110px;
}
@media screen and (max-width: 992px) {
  .banner__wrapper--right {
    display: none;
  }
}
.banner__wrapper--shape {
  position: absolute;
  left: 30%;
  top: 50%;
}
@media screen and (max-width: 1200px) {
  .banner__wrapper--shape {
    display: none;
  }
}
.banner .banner__content--sub {
  color: var(--rt-white);
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  font-family: var(--font-primary);
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .banner .banner__content--sub {
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .banner .banner__content--sub {
    flex-direction: column;
    flex: 1;
  }
}
.banner .banner__content--sub img {
  max-width: max-content;
}
@media screen and (max-width: 576px) {
  .banner .banner__content--sub img {
    margin: 0 auto;
  }
}
.banner .banner__content--title {
  font-size: 120px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--rt-white);
  line-height: 120px;
}
@media screen and (max-width: 1200px) {
  .banner .banner__content--title {
    font-size: 75px;
    line-height: 110px;
  }
}
@media screen and (max-width: 576px) {
  .banner .banner__content--title {
    font-size: 50px;
    line-height: 120%;
  }
}
.banner .banner__content--title span {
  display: block;
  margin-left: 250px;
}
@media screen and (max-width: 992px) {
  .banner .banner__content--title span {
    margin-left: 0;
  }
}
.banner .banner__content--circle {
  position: absolute;
  display: inline-block;
  top: 57%;
  left: 29%;
}
@media screen and (max-width: 992px) {
  .banner .banner__content--circle {
    position: relative;
    left: 0;
  }
}
.banner .banner__content--description {
  max-width: 560px;
  position: relative;
  left: 40%;
}
@media screen and (max-width: 992px) {
  .banner .banner__content--description {
    left: 0;
    margin: 0 auto;
  }
}
.banner .banner__content--description p {
  color: var(--rt-white);
  font-size: 18px;
  margin-bottom: 60px;
  margin-top: 55px;
}
@media screen and (max-width: 576px) {
  .banner .banner__content--description p {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.banner .banner__content--description .rts-theme-btn {
  background: var(--rt-white);
  color: var(--rt-primary-1);
}
.banner .banner__content--description .rts-theme-btn::before {
  background: var(--rt-secondary);
}
.banner .banner__content--description .rts-theme-btn:hover {
  color: var(--rt-white);
}
.banner.v__2 {
  position: relative;
  
}
.banner.v__2 .banner__wrapper {
  max-width: 100%;
  min-width: 100%;
  margin-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  min-height: 650px;
  height: 650px;
}
@media screen and (max-width: 1200px) {
  .banner.v__2 .banner__wrapper {
    flex-direction: row;
  }
}

@media screen and (max-width: 992px) {
  .banner.v__2 .banner__wrapper {
    flex-direction: row;
    min-height: auto;
  height: auto;
  }
}

.banner.v__2 .banner__wrapper .banner__wrapper--bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner.v__2 .banner__wrapper .banner__wrapper--bg::before {
  position: absolute;
  content: "";
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  inset: 0;
  background-image: url(../images/banner/arrow__line.svg);
  z-index: 99;
}
.banner.v__2 .banner__wrapper .banner__wrapper--bg > * {
  position: relative;
  z-index: 999;
}
.banner.v__2 .banner__wrapper .banner__wrapper--bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 33.79%, rgba(0, 0, 0, 0.7) 86.31%);
}
.banner.v__2 .banner__wrapper .banner__slides--container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
}
.banner.v__2 .banner__wrapper .banner__slides--container.banner__height {
  /* height: 895px; */
  height: 675px;

  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 992px) {
  .banner.v__2 .banner__wrapper .banner__slides--container.banner__height {
    align-items: center;
    justify-content: center;
    /* height: 750px; */
  height: 895px;

  }
}
.banner.v__2 .banner__wrapper .banner__slides--content {
  max-width: 550px;
}
@media screen and (max-width: 992px) {
  .banner.v__2 .banner__wrapper .banner__slides--content {
    padding-bottom: 150px;
  }
}
.banner.v__2 .banner__wrapper .banner__slides--content--sub {
  color: var(--rt-white);
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  font-family: var(--font-primary);
  font-weight: 400;
  text-transform: capitalize;
}
.banner.v__2 .banner__wrapper .banner__slides--content--title {
  color: var(--rt-white);
  margin-bottom: 40px;
  line-height: 74px;
}
@media screen and (max-width: 992px) {
  .banner.v__2 .banner__wrapper .banner__slides--content--title {
    text-align: left;
    line-height: 50px;
  }
}
.banner.v__2 .banner__wrapper .banner__slides--content .rts-theme-btn::before {
  background: var(--rt-secondary);
}
.banner.v__2 .banner__wrapper .banner__slides--content .rts-theme-btn:hover {
  color: var(--rt-primary-1) !important;
}
.banner.v__2 .banner__wrapper .banner__slides--navigation {
  position: absolute;
  z-index: 9;
  bottom: 100px;
  right: 200px;
}
@media screen and (max-width: 992px) {
  .banner.v__2 .banner__wrapper .banner__slides--navigation {
    left: 200px;
    right: unset;
  }
}
@media screen and (max-width: 576px) {
  .banner.v__2 .banner__wrapper .banner__slides--navigation {
    left: 30px;
  }
}
.banner.v__2 .banner__wrapper .banner__slides--navigation--single {
  overflow: hidden;
  padding-bottom: 25px;
  position: relative;
}
.banner.v__2 .banner__wrapper .banner__slides--navigation--single:not(:last-child) {
  margin-bottom: 50px;
}
.banner.v__2 .banner__wrapper .banner__slides--navigation--single::before {
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  content: "";
  background: #4a4a4a;
}
@media screen and (max-width: 992px) {
  .banner.v__2 .banner__wrapper .banner__slides--navigation--single::before {
    left: 0;
  }
}
.banner.v__2 .banner__wrapper .banner__slides--navigation--single:after {
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  content: "";
  background: var(--rt-primary-1);
  left: -90%;
  opacity: 0;
  transition: var(--transition);
}
.banner.v__2 .banner__wrapper .banner__slides--navigation--single:hover::after {
  opacity: 1;
  left: 0;
}
.banner.v__2 .banner__wrapper .banner__slides--navigation--single .nav__title {
  margin-bottom: 10px;
  color: var(--rt-white);
}
.banner.v__2 .banner__wrapper .banner__slides--navigation--single .nav__description {
  color: var(--rt-white);
}
.banner.v__2 .banner__slides--content {
  opacity: 0;
}
.banner.v__2 .banner__slides--content--sub {
  animation: none;
  transition-delay: 0.8s;
  opacity: 0;
  display: block;
}
.banner.v__2 .banner__slides--content--title {
  animation: none;
  transition-delay: 1.2s;
  opacity: 0;
  display: block;
}
.banner.v__2 .banner__slides--content .rts-theme-btn {
  animation: none;
  transition-delay: 2.2s;
  opacity: 0;
  display: block;
  text-align: center;
}
.banner.v__2 .swiper-slide-active .banner__slides--content {
  opacity: 1;
}
.banner.v__2 .swiper-slide-active .banner__slides--content--sub {
  animation: slideInUp3 1s;
  animation-delay: 0.8s;
  opacity: 1;
}
.banner.v__2 .swiper-slide-active .banner__slides--content--title {
  animation: fadeInUp 1.2s;
  animation-delay: 1.2s;
  opacity: 1;
}
.banner.v__2 .swiper-slide-active .banner__slides--content .rts-theme-btn {
  animation: fadeInUp 0.8s;
  animation-delay: 2.2s;
  opacity: 1;
}
.banner.v__3 .banner__wrapper {
  min-width: 100%;
  padding: 0 100px;
  margin-left: 0;
  border-radius: 20px;
  flex-direction: row;
}
@media screen and (max-width: 992px) {
  .banner.v__3 .banner__wrapper {
    padding: 0;
    border-radius: 0;
  }
}
.banner.v__3 .banner__wrapper--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 860px;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  border-radius: 20px;
}
@media screen and (max-width: 992px) {
  .banner.v__3 .banner__wrapper--bg {
    border-radius: 0;
    height: 700px;
  }
}
.banner.v__3 .banner__wrapper--bg::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  border-radius: inherit;
}
.banner.v__3 .banner__slides--container {
  position: relative;
  z-index: 2;
}
.banner.v__3 .banner__slides--content {
  opacity: 0;
}
.banner.v__3 .banner__slides--content--icon {
  margin-bottom: 60px;
}
.banner.v__3 .banner__slides--content--title {
  font-size: 80px;
  color: var(--rt-white);
  margin-bottom: 30px;
  line-height: 90px;
}
@media screen and (max-width: 768px) {
  .banner.v__3 .banner__slides--content--title {
    font-size: 50px;
    line-height: 60px;
  }
}
.banner.v__3 .banner__slides--content--description {
  font-size: 18px;
  font-family: var(--font-primary);
  color: var(--rt-white);
  margin-bottom: 50px;
}
.banner.v__3 .banner__slides--content--btn {
  text-align: center;
  display: inline-block;
  margin: 0 auto;
}
.banner.v__3 .banner__slides--content .rts-theme-btn {
  border-radius: 30px;
}
.banner.v__3 .banner__slides--content {
  opacity: 0;
}
.banner.v__3 .banner__slides--content--icon {
  animation: none;
  transition-delay: 0.8s;
  opacity: 0;
  display: block;
}
.banner.v__3 .banner__slides--content--title {
  animation: none;
  transition-delay: 1.2s;
  opacity: 0;
  display: block;
}
.banner.v__3 .banner__slides--content--description {
  font-size: 18px;
  animation: none;
  transition-delay: 1.8s;
  opacity: 0;
  display: block;
}
.banner.v__3 .banner__slides--content .rts-theme-btn {
  animation: none;
  transition-delay: 2.2s;
  opacity: 0;
  display: block;
  text-align: center;
}
.banner.v__3 .swiper-slide-active .banner__slides--content {
  opacity: 1;
}
.banner.v__3 .swiper-slide-active .banner__slides--content--icon {
  animation: slideInUp3 1s;
  animation-delay: 0.8s;
  display: block;
  opacity: 1;
}
.banner.v__3 .swiper-slide-active .banner__slides--content--title {
  animation: fadeInUp 1.2s;
  animation-delay: 1.2s;
  opacity: 1;
}
.banner.v__3 .swiper-slide-active .banner__slides--content--description {
  animation: fadeInUp 0.8s;
  animation-delay: 1.8s;
  opacity: 1;
}
.banner.v__3 .swiper-slide-active .banner__slides--content .rts-theme-btn {
  animation: fadeInUp 0.8s;
  animation-delay: 2.2s;
  opacity: 1;
}
.banner.v__5 {
  position: relative;
}
.banner.v__5 .banner__left__side__content {
  display: flex;
  justify-content: space-between;
  writing-mode: tb-rl;
  transform: rotate(-180deg);
  padding-right: 80px;
  position: absolute;
  height: 100%;
  padding-top: 120px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1400px) {
  .banner.v__5 .banner__left__side__content {
    display: none;
  }
}
.banner.v__5 .banner__left__side__content__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.banner.v__5 .banner__left__side__content__social a {
  writing-mode: sideways-rl;
}
.banner.v__5 .banner__left__side__content__social span {
  color: var(--rt-heading);
}
.banner.v__5 .banner__left__side__content__hour {
  text-transform: uppercase;
  position: relative;
  top: -45px;
}
.banner.v__5 .banner__content {
  padding-top: 120px;
  padding-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .banner.v__5 .banner__content {
    padding-top: 80px;
  }
}
.banner.v__5 .banner__content__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 1200px) {
  .banner.v__5 .banner__content__top {
    flex-direction: column;
    gap: 30px;
  }
}
.banner.v__5 .banner__content__top .banner__content__left {
  max-width: 750px;
}
.banner.v__5 .banner__content__top .banner__content__left .banner__sub__heading {
  display: flex;
  gap: 15px;
  color: var(--rt-primary-2);
  text-transform: capitalize;
  margin-bottom: 10px;
  font-family: var(--font-primary);
  font-weight: 500;
}
.banner.v__5 .banner__content__top .banner__content__left .banner__heading__title {
  font-size: 76px;
  line-height: 85px;
}
@media screen and (max-width: 768px) {
  .banner.v__5 .banner__content__top .banner__content__left .banner__heading__title {
    font-size: 65px;
    line-height: 70px;
  }
}
@media screen and (max-width: 576px) {
  .banner.v__5 .banner__content__top .banner__content__left .banner__heading__title {
    font-size: 45px;
    line-height: 55px;
  }
}
.banner.v__5 .banner__content__top .banner__content__right {
  max-width: 490px;
  position: relative;
  left: 60px;
}
@media screen and (max-width: 1400px) {
  .banner.v__5 .banner__content__top .banner__content__right {
    left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .banner.v__5 .banner__content__top .banner__content__right {
    max-width: 750px;
  }
}
.banner.v__5 .banner__content__bottom {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 1200px) {
  .banner.v__5 .banner__content__bottom {
    flex-direction: column;
    max-width: 750px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .banner.v__5 .banner__content__bottom {
    gap: 40px;
  }
}
.banner.v__5 .banner__content__bottom__right {
  margin-right: 15px;
}
.banner.v__5 .banner__content__bottom__right img {
  border-radius: 10px;
  max-height: 400px;
  min-height: 400px;
  width: 100%;
  object-fit: cover;
}

.grid-line {
  width: 70%;
  position: absolute;
  margin: auto;
  z-index: -1;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 10;
  pointer-events: none;
  max-width: 968px;
}
.grid-line .grid-lines {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.grid-line .grid-lines .line {
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.grid-line.v__2 {
  z-index: 100;
}
.grid-line.v__2 .grid-lines .line {
  position: relative;
}
.grid-line.v__2 .grid-lines .line::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: red;
}

.rts-brand.v_1 .swiper {
  text-align: center;
}

.single-brand-logo a img {
  filter: saturate(0.5) contrast(0.1);
  transition: var(--transition);
}
.single-brand-logo:hover a img {
  filter: saturate(1) contrast(1);
}

.rts-about .rt-shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .rts-about .rt-shape {
    display: none;
  }
}
.rts-about .rt-shape__1 {
  position: absolute;
  top: 10%;
  left: 29%;
}
@media screen and (max-width: 1200px) {
  .rts-about .rt-shape__1 {
    left: 15%;
  }
}
@media screen and (max-width: 992px) {
  .rts-about .rt-shape__1 {
    left: unset;
    right: 0;
  }
}
.rts-about .rt-shape__2 {
  position: absolute;
  top: 5%;
  left: 10%;
}
@media screen and (max-width: 1200px) {
  .rts-about .rt-shape__2 {
    top: 0;
    left: -5%;
  }
}
.rts-about .rt-shape__3 {
  position: absolute;
  top: 35%;
}
@media screen and (max-width: 992px) {
  .rts-about .rt-shape__3 {
    display: none;
  }
}
.rts-about .rt-shape__4 {
  position: absolute;
  bottom: 12%;
  left: 12%;
}
@media screen and (max-width: 992px) {
  .rts-about .rt-shape__4 {
    left: 0;
  }
}

.rts-about-image {
  width: 100%;
  height: 100%;
  position: relative;
}
.rts-about-image img {
  min-height: 360px;
}
@media screen and (max-width: 992px) {
  .rts-about-image img {
    width: 100%;
    object-fit: cover;
  }
}

.rts-about-content {
  margin-left: 70px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .rts-about-content {
    margin-left: 30px;
  }
}
@media screen and (max-width: 992px) {
  .rts-about-content {
    margin-top: 60px;
  }
}
.rts-about-content .rts-about-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .rts-about-content .rts-about-flex {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .rts-about-content .rts-about-flex .section-title {
    max-width: 270px;
    line-height: 1.2;
  }
}
.rts-about-content .rts-about-flex .section-title .rts-line {
  width: 150px;
  height: 1px;
  background: var(--rt-body);
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 576px) {
  .rts-about-content .rts-about-flex .section-title .rts-line {
    display: none;
  }
}
.rts-about-content .rts-about-flex .about-rounded-text {
  animation: rotate 10s linear infinite;
  position: relative;
  top: -10px;
  right: 70px;
}
@media screen and (max-width: 576px) {
  .rts-about-content .rts-about-flex .about-rounded-text {
    right: 0;
  }
}
.rts-about-content .rts-about-flex .rt-rounded-shape {
  border: 1px solid #EEEEEE;
  border-radius: 50%;
  padding: 5px;
  position: relative;
}
.rts-about-content .rts-about-flex .rt-round-dot-center {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--rt-theme);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rts-about-content .about-btn {
  color: var(--rt-primary);
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.rts-about-content .about-btn::before {
  position: absolute;
  content: "";
  height: 1px;
  bottom: 0;
  width: 90%;
  background: var(--rt-primary);
}
.rts-about-content .about-positioned-text {
  position: absolute;
  display: inline-block;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 576px) {
  .rts-about-content .about-positioned-text {
    width: 100%;
    bottom: -80px;
  }
}
.rts-about-content .about-positioned-text h2 {
  font-size: 96px;
  margin-bottom: 0;
  line-height: 0.1;
  color: #DEDEDE;
}
@media screen and (max-width: 1200px) {
  .rts-about-content .about-positioned-text h2 {
    font-size: 80px;
  }
}
@media screen and (max-width: 576px) {
  .rts-about-content .about-positioned-text h2 {
    font-size: 60px;
  }
}

.about-btn {
  color: var(--rt-primary);
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.about-btn::before {
  position: absolute;
  content: "";
  height: 1px;
  bottom: 0;
  width: 88%;
  background: var(--rt-primary);
}

.rts-video-section span {
  display: none;
}

.rts-video-section {
  position: relative;
  z-index: 1;
}
.rts-video-section.height-500 {
  height: 500px;
}
@media screen and (max-width: 768px) {
  .rts-video-section.height-500 {
    height: 250px;
  }
}
.rts-video-section::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
.rts-video-section img {
  height: 100%;
  width: 100%;
  position: absolute;
  object-fit: cover;
  z-index: -1;
}
.rts-video-section video {
  position: absolute;
  height: 100%;
  width: 100%;
}
.rts-video-section-player {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  border: 1px solid var(--rt-white);
  display: grid;
  place-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 9;
  transition: var(--transition);
}
.rts-video-section-player * {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .rts-video-section-player {
    height: 70px;
    width: 70px;
  }
}
.rts-video-section-player::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: var(--rt-primary-2);
  z-index: 1;
  border-radius: inherit;
  border-color: var(--rt-primary-2);
  opacity: 0;
  transition: var(--transition);
}
.rts-video-section-player i {
  color: var(--rt-white);
  font-size: 18px;
}
.rts-video-section-player:hover {
  border-color: var(--rt-primary-2);
}
.rts-video-section-player:hover::before {
  opacity: 1;
}
.rts-video {
  position: relative;
  width: 100%;
  height: 650px;
  width: 100%;
  margin-bottom: 50px;
}
.rts-video video {
  object-fit: fill;
  height: 650px;
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  .rts-video video {
    height: 100%;
  }
}

.rts-about-university .rts-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  align-items: center;
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .rts-about-university .rts-section {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.rts-about-university .rts-section-description {
  border-left: 1px solid #C0C0C0;
  padding-left: 45px;
}
@media screen and (max-width: 768px) {
  .rts-about-university .rts-section-description {
    padding-left: 0;
    border: none;
  }
}

.rts-about-section {
  height: 535px;
}
@media screen and (max-width: 992px) {
  .rts-about-section {
    height: 100%;
  }
}
.rts-about-section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.rts-about-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.rts-about-details .single-about-info {
  background: var(--rt-primary);
  padding: 30px 30px 35px 40px;
}
.rts-about-details .single-about-info .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.rts-about-details .single-about-info .content h3 {
  margin-bottom: 0;
  color: var(--rt-white);
}
.rts-about-details .single-about-info .desc p {
  color: var(--rt-white);
}

.rts-history-image {
  height: 400px;
}
.rts-history-image img {
  height: 100%;
  width: 100%;
}

.rts-history-section {
  padding-left: 30px;
}

.rts-mission .rts-timeline-section .rts-timeline-content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .rts-mission .rts-timeline-section .rts-timeline-content {
    gap: 30px;
  }
}
@media screen and (max-width: 576px) {
  .rts-mission .rts-timeline-section .rts-timeline-content {
    flex-wrap: wrap;
  }
}
.rts-mission .rts-timeline-section .rts-timeline-content .left-side {
  margin-top: 90px;
  position: relative;
  left: -20px;
}
@media screen and (max-width: 1200px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .left-side {
    left: 0;
  }
}
@media screen and (max-width: 576px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .left-side {
    margin-top: 0;
  }
}
.rts-mission .rts-timeline-section .rts-timeline-content .left-side .single-timeline-item {
  position: relative;
  text-align: right;
}
@media screen and (max-width: 576px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .left-side .single-timeline-item {
    text-align: center;
  }
}
.rts-mission .rts-timeline-section .rts-timeline-content .left-side .single-timeline-item p {
  max-width: 330px;
  margin-right: 0;
}
@media screen and (max-width: 576px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .left-side .single-timeline-item p {
    max-width: 100%;
  }
}
.rts-mission .rts-timeline-section .rts-timeline-content .single-timeline-item {
  position: relative;
  text-align: right;
}
.rts-mission .rts-timeline-section .rts-timeline-content .single-timeline-item:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 576px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .single-timeline-item:not(:last-child) {
    margin-bottom: 50px;
  }
}
.rts-mission .rts-timeline-section .rts-timeline-content .single-timeline-item h5 {
  margin-bottom: 10px;
  position: relative;
}
.rts-mission .rts-timeline-section .rts-timeline-content .single-timeline-item h5::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100px;
  background: #D9D9D9;
  top: 15px;
  right: -25%;
}
@media screen and (max-width: 1200px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .single-timeline-item h5::after {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .single-timeline-item h5::after {
    right: -7%;
    display: block;
    width: 30px;
    top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .single-timeline-item h5::after {
    display: none;
  }
}
.rts-mission .rts-timeline-section .rts-timeline-content .single-timeline-item p {
  max-width: 330px;
  margin-right: 0;
  margin-bottom: 30px;
}
.rts-mission .rts-timeline-section .rts-timeline-content .right-side {
  margin-top: 40px;
  position: relative;
  right: -20px;
}
@media screen and (max-width: 1200px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .right-side {
    right: 0;
  }
}
@media screen and (max-width: 576px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .right-side {
    margin-top: 20px;
  }
}
.rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item {
  position: relative;
  text-align: left;
}
@media screen and (max-width: 576px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item {
    text-align: center;
  }
}
.rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 576px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item:not(:last-child) {
    margin-bottom: 50px;
  }
}
.rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item h5 {
  margin-bottom: 10px;
  position: relative;
}
.rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item h5::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100px;
  background: #D9D9D9;
  top: 15px;
  left: -25%;
}
@media screen and (max-width: 1200px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item h5::after {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item h5::after {
    left: -7%;
    display: block;
    width: 30px;
    top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item h5::after {
    display: none;
  }
}
.rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item p {
  max-width: 330px;
  margin-left: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item p {
    max-width: 100%;
  }
}
.rts-mission .rts-timeline-section .rts-timeline-content .separator {
  position: relative;
}
.rts-mission .rts-timeline-section .rts-timeline-content .separator::before {
  position: absolute;
  left: 0;
  top: 0;
  height: 90%;
  width: 1px;
  background: #D9D9D9;
  content: "";
}

/* ======== About CSS ======= */
.about__images--wrapper {
  position: relative;
  display: flex;
  margin-bottom: 75px;
}
@media screen and (max-width: 1200px) {
  .about__images--wrapper {
    margin-bottom: 0;
  }
}
.about__images--wrapper--left {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .about__images--wrapper--left img {
    width: 100%;
    height: 550px;
    object-fit: cover;
  }
}
@media screen and (max-width: 992px) {
  .about__images--wrapper--left img {
    margin-bottom: 30px;
  }
}
.about__images--wrapper--center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.about__images--wrapper--right {
  position: absolute;
  bottom: -75px;
  border-left: 20px solid var(--rt-white);
  border-top: 20px solid var(--rt-white);
  right: 45px;
}
@media screen and (max-width: 1200px) {
  .about__images--wrapper--right {
    display: none;
  }
}
.about__content {
  margin-left: 20px;
}
@media screen and (max-width: 992px) {
  .about__content {
    margin-left: 0;
  }
}
.about__content .rts__title {
  max-width: 465px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .about__content .rts__title {
    max-width: 100%;
  }
}
.about__content .stroke__text {
  margin: 80px 0;
}
@media screen and (max-width: 1200px) {
  .about__content .stroke__text {
    margin: 40px 0;
  }
}
.about.v__2 .about__left--content {
  padding-right: 40px;
  position: relative;
  display: flex;
  gap: 30px;
}
.about.v__2 .about__left--content--left {
  margin-top: 40px;
}
.about.v__2 .about__left--content--center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about.v__2 .about__right--content--sub {
  color: var(--rt-primary-2);
  display: flex;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 15px;
  font-family: var(--font-primary);
  font-weight: 500;
}
.about.v__2 .about__right--content--title {
  margin-bottom: 30px;
}
.about.v__2 .about__right--content--vision {
  margin-bottom: 50px;
  margin-top: 30px;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .about.v__2 .about__right--content--vision {
    flex-wrap: wrap;
  }
}
.about.v__2 .about__right--content--vision .mision, .about.v__2 .about__right--content--vision .vision {
  display: flex;
  gap: 25px;
  align-items: center;
  border: 1px solid var(--rt-primary-2);
  padding: 13px 26px;
  background: var(--light-white);
}
.about.v__2 .about__right--content--vision .mision__icon, .about.v__2 .about__right--content--vision .vision__icon {
  min-width: 50px;
  height: 50px;
}
.about.v__2 .about__right--content--vision .mision__title, .about.v__2 .about__right--content--vision .vision__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--rt-primary-2);
  font-family: var(--font-primary);
}

/* ======= Program Area CSS ======= */
.program__single--item {
  padding: 60px;
  position: relative;
  z-index: 1;
  min-height: 200px;
}
@media screen and (max-width: 1200px) {
  .program__single--item {
    padding: 38px;
  }
}
.program__single--item * {
  position: relative;
}
.program__single--item::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #f6f6f6;
  transition: var(--transition);
}
.program__single--item:hover::before {
  opacity: 0;
}
.program__single--item:hover .program__single--item--title {
  color: var(--rt-white);
}
.program__single--item:hover .program__single--item--list--item .link__list {
  color: var(--rt-white);
  border-color: var(--rt-white);
}
.program__single--item:hover .program__single--item--list--item .link__list:hover {
  border-color: var(--rt-primary-1);
}
.program__single--item--bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}
.program__single--item--bg::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.program__single--item--bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}
.program__single--item.v__2::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--rt-primary-2);
  transition: var(--transition);
}
.program__single--item.v__2 .program__single--item--title {
  color: var(--rt-white);
}
.program__single--item.v__2 .program__single--item--list--item .link__list {
  color: var(--rt-white);
  border-color: var(--rt-white);
}
.program__single--item--title {
  font-size: 32px;
  margin-bottom: 25px;
  text-transform: capitalize;
}
.program__single--item--list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program__single--item--list--item {
  margin: 0 0;
}
.program__single--item--list--item .link__list {
  padding: 11px 20px;
  border: 1px solid var(--rt-heading);
  display: inline-flex;
  color: var(--rt-heading);
  gap: 10px;
  transition: var(--transition);

  width: 100%;
}
.program__single--item--list--item .link__list:hover {
  background: var(--rt-primary-1);
  color: var(--rt-white);
  border-color: var(--rt-primary-1);
}

.rts-program.v_2 .rts-program-single {
  padding: 0;
  border: unset;
}
.rts-program.v_2 .rts-program-single .rts-program-hover {
  background: var(--light-white);
  position: unset;
  opacity: 1;
  padding: 36px 70px;
}
@media screen and (max-width: 1200px) {
  .rts-program.v_2 .rts-program-single .rts-program-hover {
    padding: 40px 60px;
  }
}
@media screen and (max-width: 576px) {
  .rts-program.v_2 .rts-program-single .rts-program-hover {
    padding: 40px 30px;
  }
}
.rts-program.v_2 .rts-program-single .rts-program-hover:hover {
  background: var(--rt-primary);
}
.rts-program.v_2 .rts-program-single .rts-program-hover .icon img {
  filter: invert(100%);
  transition: var(--transition);
}
.rts-program.v_2 .rts-program-single .rts-program-hover.center-item {
  padding: 32.5px 40px;
}
@media screen and (max-width: 1200px) {
  .rts-program.v_2 .rts-program-single .rts-program-hover.center-item {
    padding: 44.2px 40px;
  }
}
.rts-program.v_2 .rts-program-single .rts-program-hover ul {
  margin: 0;
}
.rts-program.v_2 .rts-program-single .single-program {
  display: flex;
  gap: 15px;
  border: 1px solid #fff;
  padding: 10px 23px;
  align-items: center;
  margin-top: 0;
  transition: var(--transition);
}
@media screen and (max-width: 576px) {
  .rts-program.v_2 .rts-program-single .single-program {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.rts-program.v_2 .rts-program-single .single-program:hover {
  background: var(--rt-secondary);
  border-color: var(--rt-secondary);
}
.rts-program.v_2 .rts-program-single .single-program:not(:last-child) {
  margin-bottom: 20px;
}
.rts-program.v_2 .rts-program-single .single-program a {
  font-size: 20px;
  color: var(--rt-white);
}

.rts-program-single {
  padding: 20px;
  border: 1px solid var(--rt-line);
}
@media screen and (max-width: 576px) {
  .rts-program-single {
    padding: 0;
  }
}
.rts-program-single__content {
  position: relative;
}
.rts-program-single__content:hover .rts-program-hover .icon {
  border-color: var(--rt-white);
}
.rts-program-single__content:hover .rts-program-hover .icon img {
  filter: none !important;
}
.rts-program-single__content:hover .rts-program-hover .program-link {
  color: var(--rt-white);
}
.rts-program-single__content:hover .rts-program-hover p {
  color: var(--rt-white);
}
.rts-program-single__content:hover .rts-program-hover .about-btn {
  color: var(--rt-white) !important;
}
.rts-program-single__content:hover .rts-program-hover .about-btn::before {
  background: var(--rt-white) !important;
}
.rts-program-single__content .program-image {
  position: relative;
  overflow: hidden;
}
.rts-program-single__content .program-image img {
  transform: scale(1);
  transition: var(--transition);
  min-height: 400px;
  object-fit: cover;
  width: 100%;
}
.rts-program-single__content .program-image::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(12, 12, 15, 0.12) 0%, rgba(12, 12, 15, 0.6) 100%);
  z-index: 1;
  transition: var(--transition);
  opacity: 1;
}
.rts-program-single__content .program-image::after {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(12, 12, 15, 0.16) 0%, rgba(12, 12, 15, 0.8) 100%);
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}
.rts-program-single__content .content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  gap: 20px;
  z-index: 2;
  opacity: 1;
  transition: var(--transition);
}
.rts-program-single__content .content .icon {
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  border: 1px solid var(--rt-white);
  display: grid;
  place-items: center;
  padding: 10px;
  transition: var(--transition);
}
.rts-program-single__content .content a {
  font-size: 22px;
  font-weight: 600;
  color: var(--rt-white);
  font-family: var(--font-secondary);
}
.rts-program-single__content .rts-program-hover {
  padding: 40px;
  text-align: center;
  position: absolute;
  content: "";
  bottom: 0;
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}
.rts-program-single__content .rts-program-hover .icon {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 1px solid var(--rt-heading);
  display: grid;
  place-items: center;
  padding: 10px;
  margin: auto auto 30px;
}
.rts-program-single__content .rts-program-hover .program-link {
  font-size: 22px;
  color: var(--rt-heading);
  font-family: var(--font-secondary);
  margin-bottom: 10px;
  display: inline-block;
}
.rts-program-single__content .rts-program-hover p {
  color: var(--rt-heading);
}
.rts-program-single__content .rts-program-hover .about-btn {
  color: var(--rt-heading) !important;
}
.rts-program-single__content .rts-program-hover .about-btn::before {
  background: var(--rt-heading) !important;
}
.rts-program-single__content:hover .rts-program-hover {
  opacity: 1;
}
.rts-program-single__content:hover .program-image::before {
  opacity: 0;
}
.rts-program-single__content:hover .program-image::after {
  opacity: 1;
}
.rts-program-single__content:hover .program-image img {
  transform: scale(1.2);
}
.rts-program-single__content:hover .content {
  opacity: 0;
  visibility: hidden;
}

.rts-event-section-content .rts-counter {
  counter-reset: rt-counter;
  margin-top: 0;
}
.rts-event-section-content .single-event {
  margin: 0;
  padding: 45px 40px;
  background: #f6f6f6;
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .rts-event-section-content .single-event {
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    text-align: center;
  }
}
.rts-event-section-content .single-event:nth-child(2n):not(:hover)::after {
  opacity: 1;
  top: 0;
}
.rts-event-section-content .single-event:nth-child(2n):not(:hover) .single-event-counter .count-number {
  color: var(--rt-white);
}
.rts-event-section-content .single-event:nth-child(2n):not(:hover) .single-event-content-meta {
  color: var(--rt-white);
}
.rts-event-section-content .single-event:nth-child(2n):not(:hover) .single-event-content h5 {
  color: var(--rt-white);
}
.rts-event-section-content .single-event:nth-child(2n):hover .single-event-counter .count-number {
  color: var(--rt-white);
}
.rts-event-section-content .single-event:nth-child(2n):hover .single-event-content-meta {
  color: var(--rt-white);
}
.rts-event-section-content .single-event:nth-child(2n):hover .single-event-content h5 {
  color: var(--rt-white);
}
.rts-event-section-content .single-event:nth-child(2n):hover::after {
  opacity: 1;
  top: 0;
}
.rts-event-section-content .single-event > * {
  position: relative;
  z-index: 10;
}
.rts-event-section-content .single-event::before {
  position: absolute;
  content: "";
  left: 22%;
  height: 100%;
  width: 1px;
  background: var(--rt-white);
  transition: var(--transition);
}
@media screen and (max-width: 992px) {
  .rts-event-section-content .single-event::before {
    left: 140px;
  }
}
@media screen and (max-width: 768px) {
  .rts-event-section-content .single-event::before {
    left: 125px;
  }
}
@media screen and (max-width: 576px) {
  .rts-event-section-content .single-event::before {
    display: none;
  }
}
.rts-event-section-content .single-event::after {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  top: -50%;
  left: 0;
  background: var(--rt-primary);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}
.rts-event-section-content .single-event:hover .single-event-counter .count-number {
  color: var(--rt-white);
}
.rts-event-section-content .single-event:hover .single-event-content-meta {
  color: var(--rt-white);
}
.rts-event-section-content .single-event:hover .single-event-content h5 {
  color: var(--rt-white);
}
.rts-event-section-content .single-event:hover::after {
  opacity: 1;
  top: 0;
}
.rts-event-section-content .single-event-counter {
  padding-right: 20px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .rts-event-section-content .single-event-counter {
    padding-right: 0;
  }
}
@media screen and (max-width: 576px) {
  .rts-event-section-content .single-event-counter {
    width: 100%;
  }
  .rts-event-section-content .single-event-counter::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    background: var(--rt-white);
    left: 0;
    bottom: -30px;
  }
}
.rts-event-section-content .single-event-counter .count-number {
  font-size: 80px;
  position: relative;
  transition: var(--transition);
  font-family: var(--font-hind);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .rts-event-section-content .single-event-counter .count-number {
    font-size: 60px;
  }
}
@media screen and (max-width: 576px) {
  .rts-event-section-content .single-event-counter .count-number {
    font-size: 50px;
  }
}
.rts-event-section-content .single-event-counter .count-number::before {
  content: counter(rt-counter, decimal-leading-zero);
  counter-increment: rt-counter;
}
.rts-event-section-content .single-event-content {
  padding-left: 20px;
}
@media screen and (max-width: 1200px) {
  .rts-event-section-content .single-event-content {
    padding-left: 10px;
  }
}
@media screen and (max-width: 576px) {
  .rts-event-section-content .single-event-content {
    padding-left: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .rts-event-section-content .single-event-content {
    padding-left: 10px;
  }
}
.rts-event-section-content .single-event-content .single-event-content-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--rt-secondary);
  transition: var(--transition);
}
@media screen and (max-width: 1200px) {
  .rts-event-section-content .single-event-content .single-event-content-meta {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.rts-event-section-content .single-event-content .single-event-content-meta span i {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .rts-event-section-content .single-event-content .single-event-content-meta {
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 576px) {
  .rts-event-section-content .single-event-content .single-event-content-meta {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.rts-event-section-content .single-event-content .single-event-content-meta .event-date,
.rts-event-section-content .single-event-content .single-event-content-meta .event-time,
.rts-event-section-content .single-event-content .single-event-content-meta .event-place {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .rts-event-section-content .single-event-content .single-event-content-meta .event-date,
.rts-event-section-content .single-event-content .single-event-content-meta .event-time,
.rts-event-section-content .single-event-content .single-event-content-meta .event-place {
    gap: 5px;
  }
}
@media screen and (max-width: 768px) {
  .rts-event-section-content .single-event-content .single-event-content-meta .event-date,
.rts-event-section-content .single-event-content .single-event-content-meta .event-time,
.rts-event-section-content .single-event-content .single-event-content-meta .event-place {
    gap: 10px;
  }
}

@media screen and (max-width: 992px) {
  .event__background {
    display: none;
  }
}
.event__background img {
  min-height: 499px;
}
@media screen and (max-width: 1050px) {
  .event__background img {
    min-height: 620px;
  }
}

.rts-notice-section {
  padding-left: 75px;
}
@media screen and (max-width: 1200px) {
  .rts-notice-section {
    padding-left: 30px;
  }
}
@media screen and (max-width: 992px) {
  .rts-notice-section {
    padding-left: 0;
  }
}
.rts-notice-section .rts-tab .nav {
  margin: 0;
  display: flex;
  gap: 10px;
}
.rts-notice-section .rts-tab .nav-item {
  margin: 30px 0 0 0;
}
.rts-notice-section .rts-tab .nav-item .nav-link {
  padding: 7px 15px;
  border: 1px solid #eee;
  border-radius: 0;
  color: var(--rt-secondary);
  font-size: 14px;
  transition: var(--transition);
  font-weight: 500;
}
.rts-notice-section .rts-tab .nav-item .nav-link:hover {
  background: var(--rt-primary);
  color: var(--rt-white);
}
.rts-notice-section .rts-tab .nav-item .nav-link.active {
  background: var(--rt-primary);
  color: var(--rt-white);
}
.rts-notice-section .rts-tab .tab-content {
  height: 380px;
  overscroll-behavior: smooth;
  overflow-y: scroll;
}
.rts-notice-section .rts-tab .tab-content::-webkit-scrollbar {
  width: 12px;
}
.rts-notice-section .rts-tab .tab-content::-webkit-scrollbar-track {
  background: #F1F1FF;
}
.rts-notice-section .rts-tab .tab-content::-webkit-scrollbar-thumb {
  background-color: #36348E;
  border-radius: 0;
  border: 4px solid #F1F1FF;
}
.rts-notice-section .rts-tab .tab-content {
  scrollbar-color: #36348E #F1F1FF;
  scrollbar-width: medium;
}
.rts-notice-section .rts-tab .tab-content {
  -ms-overflow-style: none;
  /* Hide scrollbar in Edge */
  scrollbar-width: thin;
  scrollbar-color: #36348E #F1F1FF;
}
.rts-notice-section .rts-tab .notice-content-box {
  position: relative;
}
.rts-notice-section .rts-tab .single-notice {
  border-bottom: 1px solid #eee;
  padding: 25px 0;
  margin-right: 40px;
  margin-top: 0;
  margin-bottom: 0;
}
.rts-notice-section .rts-tab .single-notice:first-child {
  border-top: 1px solid #eee;
}
.rts-notice-section .rts-tab .single-notice:last-child {
  border-bottom: none;
}
.rts-notice-section .rts-tab .single-notice-item {
  display: flex;
  gap: 20px;
  align-items: center;
}
.rts-notice-section .rts-tab .single-notice-item .notice-date {
  font-size: 24px;
  color: var(--rt-secondary);
  font-family: var(--font-secondary);
  display: flex;
  flex-direction: column;
}
.rts-notice-section .rts-tab .single-notice-item .notice-date span {
  font-size: 16px;
  font-weight: 500;
  color: var(--rt-body);
  font-family: var(--font-primary);
}
.rts-notice-section .rts-tab .single-notice-item .notice-content p a {
  color: var(--rt-body);
  transition: var(--transition);
}
.rts-notice-section .rts-tab .single-notice-item .notice-content p a:hover {
  color: var(--rt-primary);
}

.rts-notice-details .rts-tab .tab-content {
  height: 100%;
  overflow-y: unset;
}
.rts-notice-details .rts-notice-section {
  background: #F9F8FF;
  padding: 40px;
  margin-left: 40px;
  border: 1px solid var(--rt-line);
}
@media screen and (max-width: 1200px) {
  .rts-notice-details .rts-notice-section {
    margin-left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .rts-notice-details .rts-notice-section {
    margin-left: 0;
  }
}

.rts-scholarship > * {
  position: relative;
  z-index: 1;
}
.rts-scholarship.rts-scholarship-bg {
  background-image: url(../images/feature/scholarship-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.rts-scholarship.rts-scholarship-bg::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  inset: 0;
}
.rts-scholarship.rts-section-height {
  height: 510px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .rts-scholarship.rts-section-height {
    padding: 80px 0;
    height: 100%;
  }
}

.rts-scholarship-info {
  text-align: center;
}
.rts-scholarship-info .rts-section-title {
  margin-bottom: 20px;
  text-transform: capitalize;
}
.rts-scholarship-info .rts-section-title,
.rts-scholarship-info p {
  color: var(--rt-white);
}
.rts-scholarship-info .rts-s--rt-secondary-btn {
  margin-top: 35px;
}

.rts-research {
  position: relative;
}
@media screen and (max-width: 992px) {
  .rts-research {
    padding-bottom: 100px;
  }
}
.rts-research::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f6f6f6;
  left: 17%;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  .rts-research::before {
    left: 0;
  }
}
.rts-research.rts-section-height {
  height: 660px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .rts-research.rts-section-height {
    height: 780px;
  }
}
@media screen and (max-width: 1200px) {
  .rts-research.rts-section-height {
    height: 880px;
  }
}
@media screen and (max-width: 992px) {
  .rts-research.rts-section-height {
    height: 100%;
  }
}
.rts-research .rt-shape {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .rts-research .rt-shape {
    display: none;
  }
}
.rts-research .rt-shape__1 {
  position: absolute;
  left: 30%;
  bottom: 30px;
}
.rts-research .rt-shape__2 {
  position: absolute;
  right: 10%;
  top: 15%;
}
.rts-research .rt-shape__3 {
  position: absolute;
  right: 10%;
  bottom: 30%;
}

.rts-research-image {
  position: absolute;
  left: -32%;
}
@media screen and (max-width: 1200px) {
  .rts-research-image {
    position: unset;
  }
}
.rts-research-image img {
  height: 550px;
  width: 900px;
  object-fit: cover;
}
@media screen and (max-width: 1400px) {
  .rts-research-image img {
    width: 850px;
  }
}

.research-content-area {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .research-content-area .rts-section-title {
    margin-top: 50px !important;
  }
}
@media screen and (max-width: 992px) {
  .research-content-area {
    margin-left: 0;
  }
}
.research-content-area .research-subject {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1400px) {
  .research-content-area .research-subject {
    flex-wrap: wrap;
  }
}
.research-content-area .research-subject .single-research {
  display: flex;
  gap: 25px;
  max-width: 330px;
}
.research-content-area .research-subject .single-research .icon img {
  min-width: 60px;
  height: 60px;
}
.research-content-area .research-subject .single-research .content h6 {
  margin-bottom: 10px;
}
.research-content-area .research-meta-info {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1400px) {
  .research-content-area .research-meta-info {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .research-content-area .research-meta-info {
    margin-bottom: 0 !important;
    gap: 30px;
  }
}
.research-content-area .research-meta-info .research-author {
  display: flex;
  gap: 15px;
  align-items: center;
}
.research-content-area .research-meta-info .research-author .image {
  height: 60px;
  min-width: 60px;
  border: 1px solid var(--rt-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.research-content-area .research-meta-info .research-author .info h6 {
  margin-bottom: 5px;
}

.research-big-text {
  font-size: 80px;
  font-weight: 600;
  position: absolute;
  width: 100%;
  color: #c2c2c2;
  font-family: var(--font-hind);
}
@media screen and (max-width: 1400px) {
  .research-big-text {
    left: 25%;
  }
}
@media screen and (max-width: 1200px) {
  .research-big-text {
    font-size: 70px;
    left: 20%;
  }
}
@media screen and (max-width: 992px) {
  .research-big-text {
    font-size: 60px;
    left: 5%;
  }
}
@media screen and (max-width: 768px) {
  .research-big-text {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .research-big-text {
    left: 56%;
    transform: translateX(-50%);
    bottom: 20px;
    font-size: 35px;
  }
}

.rts-multi-row-section .row:not(:last-child) {
  margin-bottom: 100px;
}
.rts-multi-row-section .rts-multi-row-image img {
  width: 100%;
}
.rts-multi-row-section .rts-multi-row-content {
  padding-left: 45px;
}
@media screen and (max-width: 1200px) {
  .rts-multi-row-section .rts-multi-row-content {
    padding-left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .rts-multi-row-section .rts-multi-row-content {
    padding-left: 0;
  }
}
.rts-multi-row-section .rts-multi-row-content.left-side {
  padding-left: 0;
  padding-right: 45px;
}
.rts-multi-row-section .rts-multi-row-content .row-title {
  font-size: 32px;
  line-height: 1;
}
.rts-multi-row-section .rts-multi-row-content .program-list .program-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ECECEC;
  padding-bottom: 20px;
  font-weight: 500;
}
.rts-multi-row-section .rts-multi-row-content .program-list .program-item:not(:last-child) {
  margin-bottom: 20px;
}
.rts-multi-row-section .rts-multi-row-content .program-list .program-item span {
  color: var(--rt-primary);
}
.rts-multi-row-section .rts-multi-row-content .program-list .program-item span:nth-child(2n) {
  color: var(--rt-body);
}
.rts-multi-row-section .rts-multi-row-content .program-list .single-list:not(:last-child) {
  margin-bottom: 40px;
}

.rts-academic-area .rts-section {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.single-staff {
  border: 1px solid var(--rt-line);
  padding: 20px;
  transition: var(--transition);
}
.single-staff__content {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .single-staff__content {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 992px) {
  .single-staff__content {
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 576px) {
  .single-staff__content {
    flex-wrap: wrap;
  }
}
.single-staff__content .staf-image {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .single-staff__content .staf-image {
    width: auto;
  }
}
@media screen and (max-width: 576px) {
  .single-staff__content .staf-image {
    width: 100%;
  }
}
.single-staff__content .staf-image img {
  min-width: 300px;
  height: 360px;
}
@media screen and (max-width: 1200px) {
  .single-staff__content .staf-image img {
    width: 100%;
    object-fit: cover;
    object-position: top;
  }
}
@media screen and (max-width: 576px) {
  .single-staff__content .staf-image img {
    min-width: 100%;
  }
}
.single-staff__content .staf-info .name {
  margin-bottom: 5px;
}
.single-staff__content .staf-info .designation {
  display: block;
  margin-bottom: 15px;
}
.single-staff__content .staf-info__social {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}
.single-staff__content .staf-info__social i {
  font-size: 16px;
  color: var(--rt-body);
  transition: var(--transition);
}
.single-staff__content .staf-info__social i:hover {
  color: var(--rt-primary-2);
}
.single-staff__content .staf-info .email-contact, .single-staff__content .staf-info .phone-contact {
  display: block;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.single-staff__content .staf-info .email-contact span, .single-staff__content .staf-info .phone-contact span {
  color: var(--rt-primary);
}
.single-staff__content .staf-info .phone-contact {
  margin-bottom: 0;
}
.single-staff__content .staf-info__speciality {
  margin-top: 25px;
  border-left: 2px solid var(--rt-primary-2);
  margin-bottom: 30px;
}
.single-staff__content .staf-info__speciality p {
  margin-left: 15px;
}
.single-staff:hover {
  border-color: var(--rt-primary-2);
}

.faculty-member__image {
  margin-bottom: 30px;
}
.faculty-member__image img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .faculty-member__image img {
    width: 100%;
  }
}
.faculty-member__info {
  display: block;
}
.faculty-member__info--social {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.faculty-member__info--social i {
  font-size: 16px;
}
.faculty-member__info .email-contact, .faculty-member__info .phone-contact {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.faculty-member__info .email-contact span, .faculty-member__info .phone-contact span {
  color: var(--rt-primary-2);
}
.faculty-member__info .email-contact {
  margin-bottom: 10px;
}

.member-info {
  margin-left: 40px;
}
@media screen and (max-width: 992px) {
  .member-info {
    margin-left: 0;
  }
}
.member-info__details .short-info:not(:last-child) {
  padding-bottom: 50px;
  border-bottom: 1px solid var(--rt-border);
}
.member-info__details .short-info:not(:first-child) {
  padding-top: 50px;
}
.member-info__details .short-info .designation {
  margin-bottom: 25px;
  display: block;
  font-size: 20px;
}
.member-info__details .short-info h5.rts-section-title {
  margin-bottom: 15px;
}
.member-info__details .short-info .description:not(:last-child) {
  margin-bottom: 35px;
}
.member-info__details .short-info .course__single ul {
  padding: 0;
  margin: 0;
}
.member-info__details .short-info .course__single ul li {
  margin-top: 10px;
  margin-bottom: 0;
  transition: var(--transition);
}
.member-info__details .short-info .course__single ul li:hover a {
  text-decoration: underline;
}
.member-info__details .short-info .course__single ul li a {
  color: var(--rt-primary-2);
}

.campus-life__content {
  text-align: center;
}
.campus-life__content .rts-section-title {
  margin-bottom: 20px;
}
.campus-life__content .description {
  font-size: 20px;
}
.campus-life__content .campus-video {
  position: relative;
  margin-top: 50px;
}
.campus-life__content .campus-video span {
  display: none;
}
.campus-life__content .campus-video::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
.campus-life__content .campus-video .video-play {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
}
.campus-life__content .campus-video .video-play img.round {
  height: 126px;
  width: 126px;
  animation: rotate 10s linear infinite;
  position: relative;
}
@media screen and (max-width: 992px) {
  .campus-life__content .campus-video .video-play img.round {
    height: 80px;
    width: 80px;
  }
}
.campus-life__content .campus-video .video-play img.play-icon {
  height: 50px;
  width: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 992px) {
  .campus-life__content .campus-video .video-play img.play-icon {
    height: 30px;
    width: 30px;
  }
}

.rts-campus-section.v_2 {
  background: #F9F8FF;
}
.rts-campus-section.v_3 .single-item__meta {
  padding: 35px 0 0 0;
}
.rts-campus-section.v_3 .single-item__content {
  border: none;
}

.single-item__meta {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 40px;
}
.single-item__image img {
  min-height: 305px;
  max-width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .single-item__image img {
    width: 100%;
  }
}
.single-item__content {
  border: 1px solid #eee;
  transition: var(--transition);
}
.single-item__content:hover {
  border-color: var(--rt-primary-2);
}
.single-item__content .single-item__image {
  overflow: hidden;
}
.single-item__content .single-item__image img {
  transform: scale(1);
  transition: var(--transition);
}
.single-item__content .single-item__image:hover img {
  transform: scale(1.1);
}
.single-item__content .item-title {
  margin-bottom: 10px;
}
.single-item__content .item-title a {
  color: var(--rt-secondary);
  transition: var(--transition);
}
.single-item__content .item-title a:hover {
  color: var(--rt-primary-2);
}

.rts-athletics__content .athletics-image img {
  width: 100%;
}
.rts-athletics__content .right-content {
  margin-left: 40px;
}
@media screen and (max-width: 992px) {
  .rts-athletics__content .right-content {
    margin-left: 0;
  }
}

.rts-gallery.section-bg {
  background: #f6f6f6;
}
.rts-gallery .single-gallery {
  position: relative;
}
.rts-gallery .single-gallery::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}
.rts-gallery .single-gallery__item {
  position: relative;
  height: 100%;
  width: 100%;
}
.rts-gallery .single-gallery__item img {
  width: 100%;
  object-fit: cover;
}
.rts-gallery .single-gallery__icon {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: var(--translate);
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
}
.rts-gallery .single-gallery__icon i {
  font-size: 50px;
  color: var(--rt-white);
}
.rts-gallery .single-gallery:hover::before {
  opacity: 1;
}
.rts-gallery .single-gallery:hover .single-gallery__icon {
  opacity: 1;
  left: 50%;
}

.rts-research-section__content {
  margin-bottom: 50px;
}
.rts-research-section__content .research-image {
  margin-bottom: 40px;
}
.rts-research-section__content .rts-section-title {
  max-width: 750px;
  margin-bottom: 20px;
}
.rts-research-section .research__items {
  margin-bottom: 45px;
}
.rts-research-section .research__items .research-procedure {
  padding: 40px 30px 40px 40px;
  position: relative;
  background: var(--light-white);
  transition: var(--transition);
}
.rts-research-section .research__items .research-procedure.primary-style {
  background: var(--rt-heading);
}
.rts-research-section .research__items .research-procedure.primary-style .rt-serial {
  background: var(--rt-heading);
}
.rts-research-section .research__items .research-procedure.primary-style .icon {
  margin-bottom: 28px;
}
.rts-research-section .research__items .research-procedure.primary-style a, .rts-research-section .research__items .research-procedure.primary-style p {
  color: var(--rt-white);
}
.rts-research-section .research__items .research-procedure.primary-style .icon img {
  filter: none;
}
.rts-research-section .research__items .research-procedure.primary-style .rt-serial {
  background: var(--rt-heading);
  color: var(--rt-white);
  transition: var(--transition);
}
.rts-research-section .research__items .research-procedure > * {
  position: relative;
  z-index: 1;
}
.rts-research-section .research__items .research-procedure:hover .research-image {
  opacity: 0.4;
}
.rts-research-section .research__items .research-procedure .research-image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: var(--transition);
}
.rts-research-section .research__items .research-procedure .research-image img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.rts-research-section .research__items .research-procedure .rt-serial {
  font-size: 26px;
  font-weight: 600;
  position: absolute;
  right: 0;
  top: -30px;
  color: var(--rt-heading);
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 5px solid var(--rt-white);
  display: grid;
  place-items: center;
  background: var(--light-white);
  transition: var(--transition);
}
.rts-research-section .research__items .research-procedure a {
  font-size: 24px;
  color: var(--rt-heading);
  display: block;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}
.rts-research-section .research__items .research-procedure .icon {
  margin-bottom: 30px;
}
.rts-research-section .research__items .research-procedure .icon img {
  filter: invert(100);
}
.rts-research-section .research__items .research-procedure p {
  color: var(--rt-heading);
}
.rts-research-section .research__items .research-procedure:hover {
  background: rgba(137, 12, 37, 0.8);
}
.rts-research-section .research__items .research-procedure:hover a, .rts-research-section .research__items .research-procedure:hover p {
  color: var(--rt-white);
}
.rts-research-section .research__items .research-procedure:hover .icon img {
  filter: none;
}
.rts-research-section .research__items .research-procedure:hover .rt-serial {
  background: var(--rt-primary-2);
  color: var(--rt-white);
}
.rts-research-section .research__text--single:not(:last-child) {
  margin-bottom: 40px;
}
.rts-research-section .research__text--single .rts-section-title {
  margin-bottom: 15px;
}

.rts-campus * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .rts-campus.mobile-padding {
    padding-bottom: 100px;
  }
}
.rts-campus .rt-shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .rts-campus .rt-shape {
    display: none;
  }
}
.rts-campus .rt-shape__1 {
  position: absolute;
  top: 15%;
  left: -25%;
}
.rts-campus .rt-shape__2 {
  position: absolute;
  top: 0;
  left: -8.5%;
}
.rts-campus .rt-shape__3 {
  position: absolute;
  top: 50%;
  left: 35%;
}
.rts-campus .rt-shape__4 {
  position: absolute;
  bottom: 40%;
  right: -11%;
}
.rts-campus.rts-campus-bg {
  position: relative;
}
.rts-campus.rts-campus-bg::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  background: var(--rt-primary);
  z-index: -1;
  top: 0;
}
.rts-campus .about-btn::before {
  position: absolute;
  content: "";
  height: 1px;
  bottom: 0;
  width: 90%;
  background: var(--rt-white);
}
.rts-campus .rts-left-section {
  margin-right: 30px;
}
.rts-campus .rts-left-section h2 {
  line-height: 58px;
}
@media screen and (max-width: 1200px) {
  .rts-campus .rts-left-section h2 {
    line-height: 1.2;
  }
}
@media screen and (max-width: 992px) {
  .rts-campus .rts-left-section h2.mb--55 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 992px) {
  .rts-campus .rts-right-section {
    margin-top: 40px;
  }
}
.rts-campus .rts-right-section img.round {
  border-radius: 10px;
}
.rts-campus .rts-right-section .rts-round-shape {
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 75px;
  right: -40px;
  z-index: -1;
  animation: topbottom 5s infinite alternate;
}
@media screen and (max-width: 768px) {
  .rts-campus .rts-right-section .rts-round-shape {
    display: none;
  }
}
.rts-campus .bottom-text {
  position: absolute;
  bottom: 7%;
  font-size: 96px;
  left: -22.5%;
  font-weight: 700;
  color: #DADADA;
  font-family: var(--font-hind);
}
@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .rts-campus .bottom-text {
    font-size: 80px;
    left: -70px;
  }
}
@media screen and (max-width: 1400px) {
  .rts-campus .bottom-text {
    font-size: 60px;
    left: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .rts-campus .bottom-text {
    font-size: 65px;
    left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .rts-campus .bottom-text {
    font-size: 60px;
  }
}
@media screen and (max-width: 576px) {
  .rts-campus .bottom-text {
    font-size: 45px;
  }
}
@media screen and (max-width: 992px) {
  .rts-campus .bottom-text {
    bottom: -75px;
    left: 100%;
    transform: translateX(-80%);
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .rts-campus .bottom-text {
    left: 90%;
  }
}
.rts-campus.v_2 {
  padding-top: 140px;
}
@media screen and (max-width: 768px) {
  .rts-campus.v_2 {
    padding-top: 80px;
  }
}
.rts-campus.v_2.rts-campus-bg {
  background: linear-gradient(180deg, #F6F6F6 0%, rgba(246, 246, 246, 0) 100%);
  position: relative;
}
.rts-campus.v_2.rts-campus-bg::before {
  background: transparent;
  background-repeat: no-repeat;
  top: 32%;
  background-image: url(../images/campus/bg-line.svg);
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .rts-campus.v_2.rts-campus-bg::before {
    display: none;
  }
}
.rts-campus.v_2 .rts-left-section {
  position: relative;
}
.rts-campus.v_2 .rts-left-section::before {
  position: absolute;
  content: "";
  left: 0;
  height: 70%;
  width: 1px;
  background: var(--rt-heading);
  bottom: -5%;
}
@media screen and (max-width: 576px) {
  .rts-campus.v_2 .rts-left-section::before {
    display: none;
  }
}
.rts-campus.v_2 .rts-left-section .section-title {
  font-size: 100px;
  line-height: 110%;
  margin-bottom: 45px;
}
@media screen and (max-width: 576px) {
  .rts-campus.v_2 .rts-left-section .section-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .rts-campus.v_2 .rts-left-section .section-title {
    font-size: 70px;
  }
}
.rts-campus.v_2 .rts-left-section .section-title span {
  display: block;
  margin-left: 100px;
}
@media screen and (max-width: 768px) {
  .rts-campus.v_2 .rts-left-section .section-title span {
    display: inline-block;
    margin-left: 0;
  }
}
.rts-campus.v_2 .rts-left-section .rts-theme-btn {
  margin-top: 35px;
}
.rts-campus.v_2 .rts-left-section .left-section-content {
  margin-left: 25px;
}
@media screen and (max-width: 576px) {
  .rts-campus.v_2 .rts-left-section .left-section-content {
    margin-left: 0;
  }
}
.rts-campus.v_2 .rt-rounded-shape {
  border: 1px solid #C3B8FF;
  display: inline-block;
  position: absolute;
  z-index: 9;
  border-radius: 50%;
  top: -50px;
  left: -50px;
  background: linear-gradient(180deg, #CAC0FF 0%, #E1FFFB 100%);
}
@media screen and (max-width: 992px) {
  .rts-campus.v_2 .rt-rounded-shape {
    left: unset;
    right: -10px;
  }
}
.rts-campus.v_2 .rt-rounded-shape svg {
  animation: rotate 10s linear infinite;
}
.rts-campus.v_2 .rt-rounded-shape span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
  color: var(--rt-secondary);
}
.rts-campus.v_2 .rts-right-section {
  margin-top: 50px;
  position: relative;
}
.rts-campus.v_2 .rts-right-section .campus-video {
  position: relative;
  margin-top: 50px;
}
.rts-campus.v_2 .rts-right-section .campus-video span {
  display: none;
}
.rts-campus.v_2 .rts-right-section .campus-video > img {
  min-height: 440px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}
.rts-campus.v_2 .rts-right-section .campus-video .video-play {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
}
.rts-campus.v_2 .rts-right-section .campus-video .video-play img.round {
  height: 82px;
  width: 82px;
  animation: rotate 10s linear infinite;
  position: relative;
}
@media screen and (max-width: 992px) {
  .rts-campus.v_2 .rts-right-section .campus-video .video-play img.round {
    height: 80px;
    width: 80px;
  }
}
.rts-campus.v_2 .rts-right-section .campus-video .video-play img.play-icon {
  height: 30px;
  width: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 992px) {
  .rts-campus.v_2 .rts-right-section .campus-video .video-play img.play-icon {
    height: 30px;
    width: 30px;
  }
}

/* ===== campus CSS ========*/
.campus {
  position: relative;
}
.campus > * {
  position: relative;
  z-index: 2;
}
.campus .rts__shape {
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .campus .rts__shape {
    display: none;
  }
}
.campus .rts__shape--1 {
  position: absolute;
  top: 15%;
  left: 25%;
}
.campus .rts__shape--2 {
  position: absolute;
  top: 50%;
  left: 3%;
}
.campus .rts__shape--3 {
  position: absolute;
  right: 20%;
  top: 25%;
}
.campus.v__2 {
  background: var(--rt-heading);
}
.campus.v__3 {
  background: var(--rt-primary-2);
}
.campus.v__3 .campus__right--text--description {
  color: var(--rt-white);
}

.campus__single--item:hover .campus__single--item--title a::before {
  opacity: 1;
  width: 90%;
}
.campus__single--item:hover .campus__single--item--thumb img {
  transform: scale(1.1);
}
.campus__single--item--thumb {
  overflow: hidden;
  width: 100%;
}
.campus__single--item--thumb img {
  width: 100%;
  transform: scale(1);
  transition: var(--transition);
}
.campus__single--item--title {
  font-size: 26px;
  font-weight: 400;
  margin-top: 35px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .campus__single--item--title {
    font-size: 22px;
  }
}
.campus__single--item--title a {
  display: inline-flex;
  gap: 10px;
  color: var(--rt-white);
  position: relative;
  align-items: center;
}
.campus__single--item--title a::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 10%;
  height: 1px;
  background: var(--rt-white);
  transition: var(--transition);
  opacity: 0;
  left: 0;
}
.campus__single--item--title a span {
  transform: rotate(-30deg);
  transition: var(--transition);
}
.campus__single--item--title:hover span {
  transform: rotate(0);
}

@media screen and (max-width: 992px) {
  .campus__wrapper .campus__link {
    margin-bottom: 50px;
  }
}

.campus__link--btn {
  border: 1px solid var(--rt-white);
  padding: 10px 30px;
  border-radius: 30px;
  color: var(--rt-white);
  display: inline-block;
  font-size: 24px;
  transition: var(--transition);
}
.campus__link--btn:hover {
  background: var(--rt-white);
}

.campus__right--text--title {
  color: var(--rt-white);
  margin-bottom: 30px;
  margin-top: -15px;
}
.campus__right--text--description {
  max-width: 500px;
  margin-left: 0;
}

.campus__paralax--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
  background-attachment: fixed;
}
@media screen and (max-width: 1200px) {
  .campus__paralax--image {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .campus__paralax--image {
    height: 250px;
  }
}

.rts-application-area > * {
  position: relative;
  z-index: 1;
}
.rts-application-area.rts-application-area-bg {
  position: relative;
  background: var(--rt-white);
}
.rts-application-area.rts-application-area-bg::before {
  position: absolute;
  content: "";
  height: 95%;
  width: 100%;
  background: var(--rt-secondary);
  top: 0;
  left: 0;
}
.rts-application-area .rt-shape {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .rts-application-area .rt-shape {
    display: none;
  }
}
.rts-application-area .rt-shape__1 {
  position: absolute;
  left: -22%;
  top: -15%;
}
.rts-application-area .rt-shape__2 {
  position: absolute;
  left: -20%;
  top: 15%;
}
.rts-application-area .rt-shape__3 {
  position: absolute;
  left: -15%;
  bottom: 40%;
}
.rts-application-area .rt-shape__4 {
  position: absolute;
  right: -10%;
}
.rts-application-area .rt-shape__5 {
  position: absolute;
  right: -15%;
  bottom: 30%;
}
.rts-application-area.v_1 .rts-admission-form-image img {
  max-height: 440px;
  max-width: max-content;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .rts-application-area.v_1 .rts-admission-form-image img {
    max-width: 100%;
  }
}
.rts-application-area.v_2 .rts-section-title {
  font-size: 100px;
  line-height: 100%;
  text-transform: capitalize;
}
@media screen and (max-width: 992px) {
  .rts-application-area.v_2 .rts-section-title {
    font-size: 60px;
  }
}
.rts-application-area.v_2 .rts-admission-form-image {
  position: relative;
  min-height: 570px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .rts-application-area.v_2 .rts-admission-form-image {
    min-height: 350px;
  }
}
.rts-application-area.v_2 .rts-admission-form-image img {
  position: absolute;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 0;
}
.rts-application-area.v_2 .rts-application-form-content {
  padding: 50px 85px;
  background: var(--rt-white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top: -20%;
}
@media screen and (max-width: 992px) {
  .rts-application-area.v_2 .rts-application-form-content {
    padding: 50px 40px;
  }
}
.rts-application-area.v_2 .rts-input .single-input {
  width: 50%;
}
.rts-application-area.v_2 .rts-input .single-input input {
  border-radius: 0 !important;
}
.rts-application-area.v_2 .rts-input.w-full .single-input {
  width: 100%;
}
.rts-application-area.v_2 .rts-input.w-full .single-input input, .rts-application-area.v_2 .rts-input.w-full .single-input textarea {
  border-radius: 0 !important;
}
.rts-application-area.v_2 .rt-shape {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.rts-application-area.v_2 .rt-shape__1 {
  position: absolute;
  left: -4%;
  top: 18%;
}
.rts-application-area.v_2 .rt-shape__2 {
  position: absolute;
  left: -10%;
  top: 80%;
}
.rts-application-area.v_2 .rt-shape__3 {
  position: absolute;
  right: -25%;
  left: unset;
  top: 5%;
}
.rts-application-area.v_2 .rt-shape__4 {
  position: absolute;
  right: -10%;
  bottom: 8px;
  transform: rotate(114deg);
}
.rts-application-area.v__3 .rts-admission-form-image img {
  border-radius: 10px;
}
.rts-application-area.v__3 .rts-theme-btn {
  border-radius: 4px !important;
}
.rts-application-area.v__3 .heading-title {
  font-family: var(--font-secondary);
}
.rts-application-area.v__3 .single-input input, .rts-application-area.v__3 .single-input textarea {
  border-radius: 4px;
}
.rts-application-area .rts__section--description {
  max-width: 445px;
  text-align: center;
}
.rts-application-area .rts-section-big-text {
  font-size: 96px;
  font-weight: 700;
  color: #DADADA;
  -webkit-text-stroke: 1px;
  -webkit-text-stroke-color: currentcolor;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #DADADA;
  position: relative;
  top: 70px;
  font-family: var(--font-hind);
}
@media screen and (max-width: 1200px) {
  .rts-application-area .rts-section-big-text {
    font-size: 65px;
  }
}
@media screen and (max-width: 992px) {
  .rts-application-area .rts-section-big-text {
    display: none;
  }
}

.rts-admission-form-image img {
  min-height: 440px;
  object-fit: cover;
  max-width: max-content;
  margin-left: -15px;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  .rts-admission-form-image img {
    max-width: 100%;
    margin-left: 0;
  }
}

.rts-application-form-content {
  padding: 50px 40px 40px 40px;
  background: var(--rt-white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.rts-application-form-content .heading-title {
  font-family: var(--font-hind);
}
.rts-application-form-content.v__2 {
  border-radius: 0;
}
.rts-application-form-content.v__2 .heading-title {
  font-size: var(--font-secondary);
}
.rts-application-form-content.v__2 .rts-theme-btn {
  border-radius: 0px !important;
}
.rts-application-form-content .rts-form .rts-input {
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .rts-application-form-content .rts-form .rts-input {
    flex-wrap: wrap;
  }
}
.rts-application-form-content .rts-form .rts-input .single-input {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .rts-application-form-content .rts-form .rts-input .single-input {
    width: 100%;
  }
}
.rts-application-form-content .rts-form .rts-input.w-full .single-input {
  width: 100%;
}
.rts-application-form-content .rts-form .rts-input .single-input input,
.rts-application-form-content .rts-form .rts-input .single-input textarea {
  padding: 5px 15px;
  border: 1px solid #DDDDDD;
  font-size: 14px;
  border-radius: 4px;
}
.rts-application-form-content .rts-form .rts-input .single-input textarea {
  height: 100px;
  resize: none;
  border-radius: 4px;
}
.rts-application-form-content .rts-form .apply-btn {
  padding: 15px 0;
  background: var(--rt-primary);
  color: var(--rt-white);
  position: relative;
  border-radius: 30px;
}
.rts-application-form-content .rts-form .rts-theme-btn {
  border-radius: 30px;
  background: var(--rt-primary-2);
  color: var(--rt-white);
}

@media screen and (max-width: 992px) {
  .rts-application-procedure .rts-section {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.rts-application-procedure .rts-section p {
  margin: 0;
}

.single-procedure {
  padding: 40px 40px 50px 40px;
  position: relative;
  background: var(--rt-primary);
  overflow: hidden;
}
.single-procedure > * {
  position: relative;
  z-index: 1;
}
.single-procedure:hover .procedure-image {
  opacity: 1;
}
.single-procedure .procedure-image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: var(--transition);
}
.single-procedure .procedure-image::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, #000 100%);
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  inset: 0;
  transition: var(--transition);
}
.single-procedure .procedure-image img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.single-procedure .rt-clip-serial {
  font-size: 64px;
  font-weight: 700;
  position: absolute;
  right: 35px;
  top: 50px;
  color: var(--rt-white);
}
.single-procedure a {
  font-size: 22px;
  font-family: var(--font-secondary);
  color: var(--rt-white);
  display: block;
  margin-bottom: 20px;
  transition: var(--transition);
}
@media screen and (max-width: 1200px) {
  .single-procedure a {
    font-size: 21px;
  }
}
.single-procedure a:hover {
  color: var(--rt-white);
}
.single-procedure .icon {
  margin-bottom: 30px;
}
.single-procedure p {
  color: var(--rt-white);
}

.single-service-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
}
@media screen and (max-width: 992px) {
  .single-service-content {
    grid-template-columns: repeat(2, minmax(25%, 1fr));
  }
}
@media screen and (max-width: 576px) {
  .single-service-content {
    grid-template-columns: repeat(1, minmax(25%, 1fr));
  }
}
.single-service-content .single-service {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--rt-primary);
  padding: 20px 60px;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .single-service-content .single-service {
    padding: 20px;
  }
}
@media screen and (max-width: 992px) {
  .single-service-content .single-service {
    padding: 20px 50px;
  }
}
@media screen and (max-width: 768px) {
  .single-service-content .single-service {
    padding: 20px;
  }
}
.single-service-content .single-service::before {
  position: absolute;
  content: "";
  inset: 0;
  height: 100%;
  width: 100%;
  background: var(--rt-secondary);
  z-index: -1;
  left: -50%;
  opacity: 0;
  transition: var(--transition);
}
.single-service-content .single-service:hover::before {
  opacity: 1;
  left: 0;
}
.single-service-content .single-service:nth-child(2n) {
  background: var(--rt-theme);
}
.single-service-content .single-service:nth-child(2n)::before {
  background: var(--rt-secondary);
}
.single-service-content .single-service .icon {
  min-width: 50px;
  max-width: max-content;
  height: 50px;
}
.single-service-content .single-service .content {
  color: var(--rt-white);
}
.single-service-content .single-service .content .service-title {
  margin-bottom: 5px;
  color: var(--rt-white);
  font-weight: 600;
}
.single-service-content .single-service .content p {
  color: var(--rt-white);
}

.search-filter .category-search .cat-search-form {
  position: relative;
}
.search-filter .category-search .cat-search-form input {
  border: 1px solid #DBDBDB;
  position: relative;
  padding: 7px 20px;
}
.search-filter .category-search .cat-search-form .cat-search {
  position: absolute;
  right: 15px;
  display: inline-block;
  border: 0;
  max-width: max-content;
  top: 50%;
  transform: translateY(-50%);
}
.search-filter .category-filter #cat-filter {
  padding: 11px 20px;
}

.all-program-category .single-cat-item .cat-thumb {
  position: relative;
  overflow: hidden;
}
.all-program-category .single-cat-item .cat-thumb img {
  transform: scale(1);
  transition: var(--transition);
  width: 100%;
}
.all-program-category .single-cat-item .cat-thumb .cat-link-btn {
  display: inline-block;
  font-size: 14px;
  background: var(--rt-primary-2);
  color: var(--rt-white);
  padding: 7px 12px;
  border-radius: 3px;
  line-height: 100%;
  position: absolute;
  top: 20px;
  left: 20px;
  text-transform: capitalize;
}
.all-program-category .single-cat-item .cat-thumb:hover img {
  transform: scale(1.1);
}
.all-program-category .single-cat-item .cat-meta {
  border: 1px solid #E3E3E3;
  padding: 19px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.all-program-category .single-cat-item .cat-meta .cat-title a {
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
  color: var(--rt-secondary);
  position: relative;
  text-transform: capitalize;
}
.all-program-category .single-cat-item .cat-meta .cat-title a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--rt-primary);
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: var(--transition);
}
.all-program-category .single-cat-item .cat-meta .cat-title:hover a {
  color: var(--rt-primary);
}
.all-program-category .single-cat-item .cat-meta .cat-title:hover a::after {
  opacity: 1;
}
.all-program-category .single-cat-item .cat-meta .cat-link .cat-link-arrow {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  border: 1px solid var(--rt-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.all-program-category .single-cat-item .cat-meta .cat-link .cat-link-arrow i {
  color: var(--rt-secondary);
}
.all-program-category .single-cat-item .cat-meta .cat-link .cat-link-arrow:hover {
  background: var(--rt-primary);
  border-color: var(--rt-primary);
}
.all-program-category .single-cat-item .cat-meta .cat-link .cat-link-arrow:hover i {
  color: var(--rt-white);
}
.all-program-category .rts-load-more-btn {
  text-align: center;
  margin-top: 60px;
}
.all-program-category .rts-load-more-btn .link-text-btn {
  background: var(--rt-primary);
  color: var(--rt-white);
  text-align: center;
  width: 160px;
  display: inline-block;
  padding: 10px 0;
}

.single-cat-item .cat-thumb {
  position: relative;
  overflow: hidden;
}
.single-cat-item .cat-thumb img {
  transform: scale(1);
  transition: var(--transition);
  width: 100%;
}
.single-cat-item .cat-thumb .cat-link-btn {
  display: inline-block;
  font-size: 14px;
  background: var(--rt-primary-2);
  color: var(--rt-white);
  padding: 7px 12px;
  border-radius: 3px;
  line-height: 100%;
  position: absolute;
  top: 20px;
  left: 20px;
  text-transform: capitalize;
}
.single-cat-item .cat-thumb:hover img {
  transform: scale(1.1);
}
.single-cat-item .cat-meta {
  border: 1px solid #E3E3E3;
  padding: 19px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-cat-item .cat-meta .cat-title a {
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
  color: var(--rt-secondary);
  position: relative;
  text-transform: capitalize;
}
.single-cat-item .cat-meta .cat-title a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--rt-primary);
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: var(--transition);
}
.single-cat-item .cat-meta .cat-title:hover a {
  color: var(--rt-primary);
}
.single-cat-item .cat-meta .cat-title:hover a::after {
  opacity: 1;
}
.single-cat-item .cat-meta .cat-link .cat-link-arrow {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  border: 1px solid var(--rt-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.single-cat-item .cat-meta .cat-link .cat-link-arrow i {
  color: var(--rt-secondary);
}
.single-cat-item .cat-meta .cat-link .cat-link-arrow:hover {
  background: var(--rt-primary);
  border-color: var(--rt-primary);
}
.single-cat-item .cat-meta .cat-link .cat-link-arrow:hover i {
  color: var(--rt-white);
}

.rts-load-more-btn {
  text-align: center;
  margin-top: 60px;
}
.rts-load-more-btn .link-text-btn {
  background: var(--rt-primary);
  color: var(--rt-white);
  text-align: center;
  width: 160px;
  display: inline-block;
  padding: 10px 0;
}

.faculty__search__bar {
  position: relative;
}

.search-filter .cat-search-form {
  position: relative;
}
.search-filter .cat-search-form input {
  border: 1px solid #DBDBDB;
  position: relative;
  padding: 7px 20px;
}
.search-filter .cat-search-form .cat-search {
  position: absolute;
  right: 15px;
  display: inline-block;
  border: 0;
  max-width: max-content;
  top: 50%;
  transform: translateY(-50%);
}
.search-filter .category-filter #cat-filter {
  padding: 11px 20px;
}

.rts-program .rts-program-single-header {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 50px;
  margin-bottom: 60px;
}
.rts-program .program-about {
  margin-top: 50px;
}
.rts-program .program-credit-area {
  margin-top: 50px;
}
.rts-program .program-credit-area .title {
  font-size: 26px;
  margin-bottom: 10px;
}
.rts-program .program-accordion {
  margin-bottom: 60px;
}
.rts-program .program-accordion .accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rts-program .program-accordion .accordion .accordion-item {
  border: none;
}
.rts-program .program-accordion .accordion .accordion-button {
  font-size: 20px;
  font-family: var(--font-secondary);
  color: var(--rt-secondary);
  padding: 17px 20px;
  line-height: 100%;
  border: 1px solid var(--rt-line);
}
.rts-program .program-accordion .accordion .accordion-button:focus {
  box-shadow: none;
}
.rts-program .program-accordion .accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  background: transparent;
}
.rts-program .program-accordion .accordion .accordion-button::after {
  content: "+";
  background-image: none;
  font-family: var(--fontawesome);
  height: 24px;
  width: 24px;
  border: 1px solid var(--rt-secondary);
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.rts-program .program-accordion .accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
  font-family: var(--fontawesome);
  background-image: none;
}
.rts-program .program-accordion .accordion .accordion-body-content .table {
  margin-top: 20px;
}
.rts-program .program-accordion .accordion .accordion-body-content .table-theme {
  background: var(--rt-primary);
  color: var(--rt-white);
}
.rts-program .program-accordion .accordion .accordion-body-content .table-theme td {
  padding: 12px;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-secondary);
}
.rts-program .program-accordion .accordion .accordion-body-content .table tbody {
  border: 1px solid var(--rt-line);
}
.rts-program .program-accordion .accordion .accordion-body-content .table tbody tr {
  border-bottom: 1px solid var(--rt-line);
}
.rts-program .program-accordion .accordion .accordion-body-content .table tbody tr td {
  padding: 12px;
  color: var(--rt-body);
}
.rts-program .program-student-testimonial {
  padding-bottom: 40px;
}
.rts-program .program-student-testimonial .title {
  font-size: 26px;
  margin-bottom: 30px;
}
.rts-program .program-student-testimonial .single-testimonial-active {
  overflow: hidden;
}
.rts-program .program-student-testimonial .single-testimonial-active .swiper-pagination {
  bottom: -10px;
  max-width: max-content;
  left: 50%;
  transform: translateX(-50%);
}
.rts-program .program-student-testimonial .single-testimonial-active .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #DDD8F9;
  opacity: 1;
}
.rts-program .program-student-testimonial .single-testimonial-active .swiper-pagination-bullet-active {
  background: var(--rt-primary);
}
.rts-program .program-student-testimonial .single-testimonial-item {
  background: #f6f6f6;
  padding: 40px 25px 40px 40px;
}
.rts-program .program-student-testimonial .single-testimonial-item .rating-star i {
  color: var(--rt-primary-2);
  font-size: 14px;
}
.rts-program .program-student-testimonial .single-testimonial-item .rt-testimonial-author .rt-author-img img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.rts-program .program-student-testimonial .single-testimonial-item .rt-testimonial-author .rt-author-info h5 {
  font-size: 20px;
}
.rts-program .program-student-testimonial .single-testimonial-item .rt-testimonial-author .rt-author-info p {
  font-size: 15px;
}
.rts-program .program-student-testimonial .single-testimonial-item .quote-icon {
  display: inline-block;
  position: absolute;
  bottom: 45px;
  right: 40px;
  opacity: 0.5;
}
.rts-program .program-student-testimonial .single-testimonial-item .quote-icon img {
  width: 70px;
  height: 55px;
}

.program-accordion {
  margin-bottom: 60px;
}
.program-accordion .accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.program-accordion .accordion .accordion-item {
  border: none;
}
.program-accordion .accordion .accordion-button {
  font-size: 20px;
  font-family: var(--font-secondary);
  color: var(--rt-secondary);
  padding: 17px 20px;
  line-height: 100%;
  border: 1px solid var(--rt-primary-2);
}
.program-accordion .accordion .accordion-button:focus {
  box-shadow: none;
}
.program-accordion .accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  background: transparent;
}
.program-accordion .accordion .accordion-button::after {
  content: "+";
  background-image: none;
  font-family: var(--fontawesome);
  height: 24px;
  width: 24px;
  border: 1px solid var(--rt-secondary);
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.program-accordion .accordion .accordion-button:not(.collapsed)::after {
  content: "\f068";
  font-family: var(--fontawesome);
  background-image: none;
}
.program-accordion .accordion .accordion-body-content .table {
  margin-top: 20px;
}
.program-accordion .accordion .accordion-body-content .table-theme {
  background: var(--rt-primary);
  color: var(--rt-white);
}
.program-accordion .accordion .accordion-body-content .table-theme tr th {
  padding: 12px;
  font-family: var(--font-secondary);
  font-weight: 400;
}
.program-accordion .accordion .accordion-body-content .table-theme td {
  padding: 12px;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-secondary);
}
.program-accordion .accordion .accordion-body-content .table tbody {
  border: 1px solid var(--rt-line);
}
.program-accordion .accordion .accordion-body-content .table tbody tr {
  border-bottom: 1px solid var(--rt-line);
}
.program-accordion .accordion .accordion-body-content .table tbody tr td {
  padding: 12px;
  color: var(--rt-body);
}

.rts-scholarship-description .program-about {
  margin-top: 40px;
  margin-bottom: 50px;
}
.rts-scholarship-description .program-about .title {
  margin-bottom: 10px;
}
.rts-scholarship-description .repeating-content .title {
  font-size: 28px;
  margin-bottom: 30px;
}
.rts-scholarship-description .repeating-content .single-information-box {
  padding: 40px;
  color: var(--rt-white);
}
@media screen and (max-width: 1200px) {
  .rts-scholarship-description .repeating-content .single-information-box {
    padding: 30px;
  }
}
.rts-scholarship-description .repeating-content .single-information-box.rt-theme-bg .single-info .title {
  color: var(--rt-heading);
}
.rts-scholarship-description .repeating-content .single-information-box.rt-theme-bg .single-info .amount {
  color: var(--rt-heading);
}
.rts-scholarship-description .repeating-content .single-information-box.rt-theme-bg .single-info p {
  color: var(--rt-heading);
}
.rts-scholarship-description .repeating-content .single-information-box.rt-theme-bg .single-info p u {
  color: var(--rt-heading);
}
.rts-scholarship-description .repeating-content .single-information-box.rt-theme-bg .single-info u {
  color: var(--rt-heading);
}
.rts-scholarship-description .repeating-content .single-information-box .single-info .title {
  font-size: 22px;
  color: var(--rt-white);
}
.rts-scholarship-description .repeating-content .single-information-box .single-info .amount {
  display: inline-block;
  margin-bottom: 10px;
}
.rts-scholarship-description .repeating-content .single-information-box .single-info p {
  color: var(--rt-white);
}
.rts-scholarship-description .repeating-content .single-information-box .single-info p u {
  font-weight: 600;
  display: inline-block;
  margin-right: 5px;
}
.rts-scholarship-description .repeating-content .single-information-box .single-info u {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.rts-scholarship-description .repeating-content .single-information-box.big-box {
  padding: 40px 100px;
}
@media screen and (max-width: 1200px) {
  .rts-scholarship-description .repeating-content .single-information-box.big-box {
    padding: 40px;
  }
}
.rts-scholarship-description .repeating-content .single-information-box.big-box .title {
  text-align: center;
}
.rts-scholarship-description .repeating-content .single-information-box.big-box .single-info-content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 576px) {
  .rts-scholarship-description .repeating-content .single-information-box.big-box .single-info-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.rts-scholarship-description .repeating-content .single-information-box.big-box .single-info-content .right-item {
  max-width: 280px;
}
.rts-scholarship-description .si {
  margin-top: 40px;
}
.rts-scholarship-description .si .title {
  max-width: 460px;
}
@media screen and (max-width: 992px) {
  .rts-scholarship-description .si .title {
    max-width: 100%;
  }
}
.rts-scholarship-description .si__list ul {
  margin: 0;
  padding: 0;
  column-count: 2;
  column-gap: 30px;
}
@media screen and (max-width: 992px) {
  .rts-scholarship-description .si__list ul {
    column-count: 1;
  }
}
.rts-scholarship-description .si__list ul li {
  margin: 0;
  position: relative;
  margin-left: 30px;
  font-size: 17px;
  color: var(--rt-heading);
  font-family: var(--font-secondary);
  margin-bottom: 10px;
}
.rts-scholarship-description .si__list ul li::before {
  position: absolute;
  content: "";
  background-image: url(../images/icon/arrow-rotate.svg);
  height: 18px;
  width: 14px;
  left: -30px;
  top: 5px;
}
.rts-scholarship-description .faq .title {
  margin-bottom: 35px;
}
.rts-scholarship-description .faq .program-accordion .accordion-button[aria-expanded=true] {
  background: var(--rt-primary);
  color: var(--rt-white);
  border-color: var(--rt-primary);
}
.rts-scholarship-description .faq .program-accordion .accordion-button[aria-expanded=true]::after {
  border-color: var(--rt-white);
}
.rts-scholarship-description .scholarship-form .title {
  margin-bottom: 20px;
}
.rts-scholarship-description .scholarship-form form.apply-form .single-input {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .rts-scholarship-description .scholarship-form form.apply-form .single-input {
    flex-wrap: wrap;
  }
}
.rts-scholarship-description .scholarship-form form.apply-form .single-input input,
.rts-scholarship-description .scholarship-form form.apply-form .single-input select {
  border: 1px solid var(--rt-line);
  padding: 13px 20px;
  height: auto;
}
.rts-scholarship-description .scholarship-form form.apply-form .rts-theme-btn {
  max-width: 100%;
}

.program-sidebar {
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}
@media screen and (max-width: 992px) {
  .program-sidebar {
    margin-left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .program-sidebar {
    margin-left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .program-sidebar {
    margin-left: 0;
    margin-top: 50px;
  }
}
.program-sidebar .program-curriculum h6 {
  color: var(--rt-white);
  background: var(--rt-heading);
  padding: 13px 0;
  text-align: center;
  margin-bottom: 0;
}
.program-sidebar .program-curriculum .program-menu {
  border: 1px solid var(--rt-line);
}
.program-sidebar .program-curriculum .program-menu ul {
  padding: 0;
  margin: 0;
}
.program-sidebar .program-curriculum .program-menu ul li {
  padding: 11px 20px;
  margin: 0;
}
.program-sidebar .program-curriculum .program-menu ul li:not(:last-child) {
  border-bottom: 1px solid var(--rt-line);
}
.program-sidebar .program-curriculum .program-menu ul li a {
  color: var(--rt-secondary);
  transition: var(--transition);
}
.program-sidebar .program-curriculum .program-menu ul li a span {
  margin-right: 10px;
}
.program-sidebar .program-curriculum .program-menu ul li a:hover {
  color: var(--rt-primary-2);
}
.program-sidebar .program-info {
  padding: 40px 35px 50px 40px;
  background: var(--rt-primary);
}
.program-sidebar .program-info h5 {
  font-size: 24px;
  color: var(--rt-white);
  margin-bottom: 10px;
}
.program-sidebar .program-info p {
  font-size: 20px;
  font-family: var(--font-secondary);
  color: var(--rt-white);
}
.program-sidebar .program-info .contact-info {
  margin-bottom: 50px;
  margin-top: 80px;
}
.program-sidebar .program-info .contact-info h5 {
  font-size: 20px;
  margin-bottom: 10px;
}
.program-sidebar .program-info .contact-info a {
  display: block;
  color: var(--rt-white);
}
.program-sidebar .program-info .social-info h5 {
  font-size: 20px;
  color: var(--rt-white);
  margin-bottom: 10px;
}
.program-sidebar .program-info .social-info-link {
  display: flex;
  gap: 20px;
  max-width: max-content;
}
.program-sidebar .program-info .social-info-link a {
  font-size: 20px;
  color: var(--rt-white);
  transition: var(--transition);
}
.program-sidebar .program-info .social-info-link a:hover {
  color: var(--rt-white);
}
.program-sidebar .program-event {
  padding: 50px 44px 60px;
  text-align: center;
  background-image: url(../images/course/event-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.program-sidebar .program-event > * {
  position: relative;
  z-index: 1;
}
.program-sidebar .program-event::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.program-sidebar .program-event::after {
  position: absolute;
  content: "";
  height: 92%;
  width: 89%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  left: 20px;
  top: 20px;
}
@media screen and (max-width: 992px) {
  .program-sidebar .program-event::after {
    width: 94%;
    height: 90%;
  }
}
@media screen and (max-width: 576px) {
  .program-sidebar .program-event::after {
    width: 90%;
    height: 92%;
  }
}
.program-sidebar .program-event-content p {
  font-size: 20px;
  font-weight: 500;
  color: var(--rt-white);
  margin-bottom: 40px;
  font-family: var(--font-hind);
}
.program-sidebar .program-event-content h4 {
  font-size: 32px;
  color: var(--rt-white);
  margin-bottom: 40px;
}
.program-sidebar .program-event-content .single-event-content-meta {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  color: var(--rt-white);
}
.program-sidebar .program-event-content .single-event-content-meta .event-time,
.program-sidebar .program-event-content .single-event-content-meta .event-date,
.program-sidebar .program-event-content .single-event-content-meta .event-place {
  display: flex;
  gap: 8px;
}

.admission-content-top .rts-section-title {
  margin-bottom: 35px;
}
.admission-content-top .requirement-deadline,
.admission-content-top .application-deadline {
  margin-top: 50px;
}
.admission-content-top .requirement-deadline__content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  column-count: 2;
}
@media screen and (max-width: 576px) {
  .admission-content-top .requirement-deadline__content ul {
    column-count: 1;
  }
}
.admission-content-top .requirement-deadline__content ul li {
  margin: 0;
  position: relative;
  margin-left: 30px;
  color: #000;
}
.admission-content-top .requirement-deadline__content ul li:not(:last-child) {
  margin-bottom: 20px;
}
.admission-content-top .requirement-deadline__content ul li::before {
  position: absolute;
  content: "";
  background-image: url(../images/icon/check.svg);
  left: -30px;
  height: 12px;
  width: 18px;
  background-repeat: no-repeat;
  top: 5px;
}
@media screen and (max-width: 768px) {
  .admission-content-top .application-deadline__content--table {
    overflow-y: scroll;
  }
}
.admission-content-top .application-deadline__content table {
  margin-bottom: 30px;
}
.admission-content-top .application-deadline__content table .table-theme {
  background: var(--rt-primary);
}
.admission-content-top .application-deadline__content table .table-theme td {
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--rt-white);
  vertical-align: middle;
}
.admission-content-top .application-deadline__content table tbody {
  border: 1px solid var(--rt-line);
}
.admission-content-top .application-deadline__content table tbody tr {
  border-bottom: 1px solid var(--rt-line);
}
.admission-content-top .application-deadline__content table tbody tr:first-child td {
  font-weight: 600;
  color: var(--rt-secondary);
  vertical-align: middle;
}
.admission-content-top .application-deadline__content table tbody tr td {
  padding: 15px 20px;
  color: var(--rt-body);
  vertical-align: middle;
}

.rts-ap-section .rts-application-form .single-form-part:not(:last-child) {
  margin-bottom: 40px;
}
.rts-ap-section .rts-application-form .single-form-part .form-title {
  margin-bottom: 25px;
}
.rts-ap-section .rts-application-form .single-form-part .single-input {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 576px) {
  .rts-ap-section .rts-application-form .single-form-part .single-input {
    flex-wrap: wrap;
  }
}
.rts-ap-section .rts-application-form .single-form-part .single-input:not(:last-child) {
  margin-bottom: 30px;
}
.rts-ap-section .rts-application-form .single-form-part .single-input-item {
  width: 100%;
}
.rts-ap-section .rts-application-form .single-form-part .single-input-item label {
  color: #000;
  margin-bottom: 15px;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 16px;
}
.rts-ap-section .rts-application-form .single-form-part .single-input-item label::before {
  border: 1px solid var(--rt-primary);
  background-color: transparent;
}
.rts-ap-section .rts-application-form .single-form-part .single-input-item label::after {
  border-bottom: 2px solid var(--rt-secondary);
  border-left: 2px solid var(--rt-secondary);
  top: 35%;
}
.rts-ap-section .rts-application-form .single-form-part .single-input-item input,
.rts-ap-section .rts-application-form .single-form-part .single-input-item select {
  border: 1px solid var(--rt-line);
  padding: 17px 20px;
  height: auto;
  line-height: 100%;
  position: relative;
}
.rts-ap-section .rts-application-form .single-form-part .single-input-item input::file-selector-button {
  height: 34px;
  min-width: 120px;
  max-width: max-content;
  background: var(--rt-primary);
  color: var(--rt-white);
  border: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: var(--transition);
}
.rts-ap-section .rts-application-form .single-form-part .single-input-item input::file-selector-button:hover {
  background: var(--rt-theme);
}
.rts-ap-section .rts-application-form .single-form-part .single-checkbox label {
  font-size: 16px;
  display: flex;
  align-items: center;
}
.rts-ap-section .rts-application-form .single-form-part .single-checkbox label::before {
  border: 1px solid var(--rt-primary);
  background-color: transparent;
}
.rts-ap-section .rts-application-form .single-form-part .single-checkbox label::after {
  border-bottom: 2px solid var(--rt-secondary);
  border-left: 2px solid var(--rt-secondary);
}
@media screen and (max-width: 1400px) {
  .rts-ap-section .rts-application-form .single-form-part .single-checkbox label::after {
    top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .rts-ap-section .rts-application-form .single-form-part .single-checkbox label::after {
    top: 10px;
  }
}

.page-content-top h3,
.page-content-top h5 {
  margin-bottom: 10px;
}
.page-content-top .desc {
  margin-bottom: 30px;
}

.semister-fee {
  margin-top: 50px;
}
.semister-fee__content h5 {
  margin-bottom: 10px;
}
.semister-fee__content.v_2 .rts-fee-chart {
  margin-top: 20px;
}
.semister-fee__content.v_2 .rts-fee-chart__tab {
  margin-bottom: 30px;
}
.semister-fee__content.v_2 .rts-fee-chart__tab .nav-tabs {
  display: flex;
  border: none;
  gap: 10px;
}
.semister-fee__content.v_2 .rts-fee-chart__tab .nav-tabs .nav-link {
  display: inline-block;
  max-width: max-content;
  padding: 5px 25px;
  font-size: 15px;
  border: 1px solid var(--rt-primary-2);
  color: var(--rt-primary-2);
  border-radius: 0;
}
.semister-fee__content.v_2 .rts-fee-chart__tab .nav-tabs .nav-link.active {
  background: var(--rt-primary-2);
  color: var(--rt-white);
}
.semister-fee__content.v_2 .rts-fee-chart__tab .nav-tabs .nav-link:focus {
  border-color: var(--rt-primary-2) !important;
}
.semister-fee__content.v_2 .rts-fee-chart__content .table .table-theme {
  background: var(--rt-primary-2);
}
.semister-fee__content.v_2 .rts-fee-chart__content .table .table-theme td {
  color: var(--rt-white);
  font-weight: 600;
  text-align: center;
  padding: 15px 20px;
  border: 1px solid var(--rt-line);
}
.semister-fee__content.v_2 .rts-fee-chart__content .table tbody tr th {
  vertical-align: middle;
  text-align: center;
  background: #F5F3FF;
}
.semister-fee__content.v_2 .rts-fee-chart__content .table tbody td {
  padding: 15px 20px;
  font-weight: 400;
  text-align: center;
  color: var(--rt-secondary);
  vertical-align: middle;
  border: 1px solid var(--rt-line);
}
.semister-fee__content.v_2 .rts-fee-chart__content .table tbody td span {
  display: block;
  color: var(--rt-body);
}
.semister-fee__content.v_2 .rts-fee-chart__content .table .table-theme-theme {
  background: var(--rt-heading);
}
.semister-fee__content.v_2 .rts-fee-chart__content .table .table-theme-theme td {
  color: var(--rt-white);
  text-align: center;
  padding: 15px 20px;
  font-weight: 400;
  vertical-align: middle;
  border: 1px solid var(--rt-line);
  min-width: 200px;
}
.semister-fee__content.v_2 .rts-fee-chart__content .table .table-theme-theme.border-none td {
  border: none;
}
.semister-fee .rts-fee-chart {
  margin-top: 20px;
}
.semister-fee .rts-fee-chart__tab {
  margin-bottom: 30px;
}
.semister-fee .rts-fee-chart__tab .nav-tabs {
  display: flex;
  border: none;
  gap: 10px;
}
.semister-fee .rts-fee-chart__tab .nav-tabs .nav-link {
  display: inline-block;
  max-width: max-content;
  padding: 12px 25px;
  border: 1px solid var(--rt-primary-2);
  color: var(--rt-primary-2);
  border-radius: 0;
}
.semister-fee .rts-fee-chart__tab .nav-tabs .nav-link.active {
  background: var(--rt-primary-2);
  color: var(--rt-white);
}
.semister-fee .rts-fee-chart__tab .nav-tabs .nav-link:focus {
  border-color: var(--rt-theme) !important;
}
.semister-fee .rts-fee-chart__content .table {
  overflow-y: scroll;
}
.semister-fee .rts-fee-chart__content .table .table-theme {
  background: var(--rt-primary);
}
.semister-fee .rts-fee-chart__content .table .table-theme td, .semister-fee .rts-fee-chart__content .table .table-theme th {
  color: var(--rt-white);
  font-weight: 600;
  text-align: center;
  padding: 15px 20px;
  border: 1px solid var(--rt-line);
  min-width: 200px;
}

.semister-fee .rts-fee-chart__content .table .table-theme td, .semister-fee .rts-fee-chart__content .table-2{
  margin: 0px;
}

.semister-fee .rts-fee-chart__content .table .table-theme td, .semister-fee .rts-fee-chart__content .table-2 .table-theme th {
    background: var(--rt-primary-2);
    color: var(--rt-white);
    font-weight: 600;
    text-align: center;
    padding: 15px 20px;
    border: 1px solid var(--rt-line);
    min-width: 220px;
}

.semister-fee .rts-fee-chart__content .table tbody tr td {
  padding: 15px 20px;
  font-weight: 400;
  text-align: center;
  color: var(--rt-secondary);
  vertical-align: middle;
  border: 1px solid var(--rt-line);
}
.semister-fee .rts-fee-chart__content .table tbody tr td span {
  display: block;
  color: var(--rt-body);
}
.semister-fee .rts-fee-chart__content .table tbody tr td[rowspan="3"] {
  background: #F5F3FF;
}
.semister-fee .rts-fee-chart__content .table .table-theme-theme {
  background: var(--rt-heading);
}
.semister-fee .rts-fee-chart__content .table .table-theme-theme td {
  color: var(--rt-white);
  text-align: center;
  padding: 15px 20px;
  font-weight: 400;
  vertical-align: middle;
  border: 1px solid var(--rt-line);
}
.semister-fee .rts-fee-chart__content .table .table-theme-theme.border-none td {
  border: none;
}
.semister-fee .rts-fee-chart__content .tab-pane {
  display: none;
  visibility: hidden;
}
.semister-fee .rts-fee-chart__content .tab-pane.active {
  display: block;
  visibility: visible;
}
@media screen and (max-width: 992px) {
  .semister-fee .rts-fee-chart__content .tab-pane.active {
    overflow-y: scroll;
  }
}
.mw-100 {
  width: 100%;
}

.my-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.faculty-sub-details .single-cat-item .cat-meta {
  padding: 18px 15px;
}
.faculty-sub-details .single-cat-item .cat-meta a {
  font-family: var(--font-hind);
}

.breadcrumb-height-full {
  height: 800px !important;
}
@media screen and (max-width: 992px) {
  .breadcrumb-height-full {
    height: 500px !important;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumb-height-full {
    height: 300px !important;
  }
}
.breadcrumb-height-full .breadcrumb-content {
  text-align: left;
  padding-top: 450px;
}
@media screen and (max-width: 992px) {
  .breadcrumb-height-full .breadcrumb-content {
    padding-top: 0px;
  }
}
.breadcrumb-height-full .breadcrumb-content .breadcrumb {
  justify-content: left;
}

.rts-event .single-event {
  padding: 30px 30px 50px 30px;
  border: 1px solid var(--rt-line);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
@media screen and (max-width: 1200px) {
  .rts-event .single-event {
    padding: 30px;
  }
}
.rts-event .single-event:hover {
  border-color: var(--rt-white);
}
.rts-event .single-event__content .event__thumb {
  overflow: hidden;
  margin-bottom: 30px;
}
.rts-event .single-event__content .event__thumb img {
  width: 100%;
  transition: var(--transition);
  transform: scale(1);
}
.rts-event .single-event__content .event__thumb:hover img {
  transform: scale(1.1);
}
.rts-event .single-event__content .event__meta {
  margin-bottom: 20px;
}
.rts-event .single-event__content .event__meta--da {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .rts-event .single-event__content .event__meta--da {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.rts-event .single-event__content .event__meta--da .event-date,
.rts-event .single-event__content .event__meta--da .event-time {
  display: flex;
  gap: 8px;
}
.rts-event .single-event__content .event__meta--da .event-date span i,
.rts-event .single-event__content .event__meta--da .event-time span i {
  color: var(--rt-primary-2);
}
.rts-event .single-event__content .event__meta .event__title a {
  color: var(--rt-secondary);
  transition: var(--transition);
}
.rts-event .single-event__content .event__meta .event__title a:hover {
  color: var(--rt-primary-2);
}
.rts-event .single-event__content .event-place {
  display: flex;
  gap: 8px;
}
.rts-event .single-event__content .event-place span i {
  color: var(--rt-primary-2);
}
.rts-event-details .event-details__content--thumb {
  margin-bottom: 50px;
}
.rts-event-details .event-details__content--thumb img {
  width: 100%;
}
.rts-event-details .event-details__content--text {
  margin-bottom: 30px;
}
.rts-event-details .event-details__content--text .rts-section-title {
  font-size: 32px;
  margin-bottom: 20px;
}
.rts-event-details .event-details__content--feature .single-feature {
  position: relative;
  margin-left: 30px;
}
.rts-event-details .event-details__content--feature .single-feature:not(:last-child) {
  margin-bottom: 25px;
}
.rts-event-details .event-details__content--feature .single-feature::before {
  position: absolute;
  content: "";
  left: -30px;
  top: 5px;
  background-image: url(../images/icon/arrow-rotate.svg);
  height: 18px;
  width: 14px;
}
.rts-event-details .event-details__content--feature .single-feature .feature-heading {
  font-family: var(--font-primary);
  color: var(--rt-secondary);
  margin-bottom: 10px;
}
.rts-event-details .event-sidebar {
  margin-left: 50px;
}
@media screen and (max-width: 1200px) {
  .rts-event-details .event-sidebar {
    margin-left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .rts-event-details .event-sidebar {
    margin-top: 50px;
    margin-left: 0;
  }
}
.rts-event-details .event-sidebar .event-information, .rts-event-details .event-sidebar .event-venue {
  background: #f6f6f6;
  border: 1px solid var(--rt-primary-2);
  padding: 40px;
}
.rts-event-details .event-sidebar .event-information .rts-section-title, .rts-event-details .event-sidebar .event-venue .rts-section-title {
  margin-bottom: 30px;
}
.rts-event-details .event-sidebar .event-information .single-info .info-repeat, .rts-event-details .event-sidebar .event-venue .single-info .info-repeat {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rts-event-details .event-sidebar .event-information .single-info .info-repeat:not(:last-child), .rts-event-details .event-sidebar .event-venue .single-info .info-repeat:not(:last-child) {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.rts-event-details .event-sidebar .event-information .single-info .info-repeat .left-side, .rts-event-details .event-sidebar .event-venue .single-info .info-repeat .left-side {
  display: flex;
  gap: 15px;
  align-items: center;
}
.rts-event-details .event-sidebar .event-information .single-info .info-repeat .left-side.bold, .rts-event-details .event-sidebar .event-venue .single-info .info-repeat .left-side.bold {
  font-weight: 500;
  color: var(--rt-secondary);
}
.rts-event-details .event-sidebar .event-information .single-info .info-repeat .left-side span, .rts-event-details .event-sidebar .event-venue .single-info .info-repeat .left-side span {
  height: 50px;
  width: 50px;
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--rt-primary-2);
}
.rts-event-details .event-sidebar .event-information .single-info .info-repeat .left-side span i, .rts-event-details .event-sidebar .event-venue .single-info .info-repeat .left-side span i {
  font-size: 24px;
  color: var(--rt-primary-1);
}
.rts-event-details .event-sidebar .event-information .single-info .info-repeat .right-side .desc.price, .rts-event-details .event-sidebar .event-venue .single-info .info-repeat .right-side .desc.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--rt-secondary);
}
.rts-event-details .event-sidebar .event-information .single-info .info-repeat .right-side .desc.location, .rts-event-details .event-sidebar .event-venue .single-info .info-repeat .right-side .desc.location {
  max-width: 220px;
  display: inline-block;
  text-align: right;
}
.rts-event-details .event-sidebar .event-information .single-info .info-repeat .right-side .desc .social-links, .rts-event-details .event-sidebar .event-venue .single-info .info-repeat .right-side .desc .social-links {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}
.rts-event-details .event-sidebar .event-information .book-button .rts-theme-btn, .rts-event-details .event-sidebar .event-venue .book-button .rts-theme-btn {
  width: 100%;
  max-width: 100%;
  margin-top: 50px;
}
.rts-event-details .event-sidebar .event-information .event-count-down, .rts-event-details .event-sidebar .event-venue .event-count-down {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.rts-event-details .event-sidebar .event-information .event-count-down .count-item, .rts-event-details .event-sidebar .event-venue .event-count-down .count-item {
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  border: 1px solid var(--rt-primary-2);
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.rts-event-details .event-sidebar .event-information .event-count-down .count-item:hover, .rts-event-details .event-sidebar .event-venue .event-count-down .count-item:hover {
  border-color: var(--rt-primary-1);
}
.rts-event-details .event-sidebar .event-information .event-count-down .count-item p, .rts-event-details .event-sidebar .event-venue .event-count-down .count-item p {
  text-align: center;
  font-size: 13px;
  color: var(--rt-primary);
  text-transform: capitalize;
}
.rts-event-details .event-sidebar .event-information .event-count-down .count-item p span, .rts-event-details .event-sidebar .event-venue .event-count-down .count-item p span {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: var(--rt-primary);
  font-family: var(--font-primary);
  margin-bottom: -5px;
}
.rts-event-details .event-location .rts-section-title {
  font-size: 32px;
  margin-bottom: 35px;
}
.rts-event-details .event-location-map {
  margin-bottom: 30px;
}
.rts-event-details .event-location-map-iframe {
  min-height: 400px;
  width: 100%;
  filter: grayscale(1);
  border-radius: 6px;
}
.rts-event-speaker .rts-section-title {
  margin-bottom: 40px;
}
.rts-event-speaker .event-speaker__details {
  text-align: center;
}
.rts-event-speaker .event-speaker__details:hover .speaker-social-link {
  opacity: 1;
  bottom: 50px;
}
.rts-event-speaker .event-speaker__details .speaker-thumb {
  position: relative;
  margin-bottom: 30px;
}
.rts-event-speaker .event-speaker__details .speaker-thumb img {
  min-height: 300px;
  min-height: max-content;
  min-width: 300px;
  min-width: 100%;
  border-radius: 50%;
}
.rts-event-speaker .event-speaker__details .speaker-social-link {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}
.rts-event-speaker .event-speaker__details .speaker-social-link a {
  height: 34px;
  width: 34px;
  background: var(--rt-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rts-event-speaker .event-speaker__details .speaker-social-link a i {
  font-size: 20px;
  color: var(--rt-primary-1);
}
.rts-event-speaker .speaker-meta .speaker__name {
  margin-bottom: 5px;
}
.rts-event-speaker .speaker-meta .speaker__name a {
  color: var(--rt-secondary);
  transition: var(--transition);
}
.rts-event-speaker .speaker-meta .speaker__name a:hover {
  color: var(--rt-primary-1);
}
.rts-funfact-wrapper {
  background: var(--rt-primary-2);
  padding: 30px 100px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .rts-funfact-wrapper {
    padding: 30px 60px;
  }
}
@media screen and (max-width: 768px) {
  .rts-funfact-wrapper {
    padding: 40px;
  }
}
@media screen and (min-width: 575px) and (max-width: 685px) {
  .rts-funfact-wrapper {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
  }
}
@media screen and (max-width: 576px) {
  .rts-funfact-wrapper {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
  }
}
.rts-funfact-wrapper .single-cta-item {
  max-width: 160px;
  position: relative;
}
.rts-funfact-wrapper .single-cta-item:not(:last-child):after {
  position: absolute;
  height: 100%;
  width: 1px;
  /* background: #AF2944; */
  background:#024949;
  content: "";
  top: 0;
  right: -70px;
}
@media screen and (max-width: 1200px) {
  .rts-funfact-wrapper .single-cta-item:not(:last-child):after {
    right: -40px;
  }
}
@media screen and (max-width: 992px) {
  .rts-funfact-wrapper .single-cta-item:not(:last-child):after {
    right: -15px;
  }
}
@media screen and (min-width: 850px) and (max-width: 991px) {
  .rts-funfact-wrapper .single-cta-item:not(:last-child):after {
    right: -40px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1075px) {
  .rts-funfact-wrapper .single-cta-item:not(:last-child):after {
    right: -30px;
  }
}
@media screen and (max-width: 768px) {
  .rts-funfact-wrapper .single-cta-item:not(:last-child):after {
    right: -20px;
  }
}
@media screen and (min-width: 575px) and (max-width: 685px) {
  .rts-funfact-wrapper .single-cta-item:not(:last-child):after {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .rts-funfact-wrapper .single-cta-item:not(:last-child):after {
    display: none;
  }
}
.rts-funfact-wrapper .single-cta-item h2 {
  color: var(--rt-white);
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}
.rts-funfact-wrapper .single-cta-item p {
  color: var(--rt-white);
  text-transform: capitalize;
}
.rts-funfact.v_2 .single-cta-item {
  max-width: 230px;
  text-align: center;
}
.rts-funfact.v_3 .rts-funfact-wrapper {
  padding: 40px;
}
@media screen and (max-width: 992px) {
  .rts-funfact.v_3 .rts-funfact-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
  }
}
.rts-funfact.v_3 .single-cta-item {
  max-width: 265px;
  text-align: center;
}
.rts-funfact.v_3 .single-cta-item:not(:last-child)::after {
  right: -50px;
}
@media screen and (max-width: 992px) {
  .rts-funfact.v_3 .single-cta-item:not(:last-child)::after {
    display: none;
  }
}
.rts-funfact.v_3 .single-cta-item h2 {
  -webkit-text-fill-color: var(--rt-white);
  -webkit-text-stroke: 0px;
}
.rts-funfact.v__1 .rts-funfact-wrapper {
  padding: 0;
  background: var(--rt-white);
}
.rts-funfact.v__1 .rts-funfact-wrapper .single-cta-item {
  max-width: 220px;
  padding: 38px 0;
}
.rts-funfact.v__1 .rts-funfact-wrapper .single-cta-item__title {
  margin-bottom: 25px;
  line-height: 100%;
  color: var(--rt-primary);
  font-weight: 400;
  font-family: var(--font-secondary);
  text-transform: uppercase;
}
.rts-funfact.v__1 .rts-funfact-wrapper .single-cta-item p {
  color: var(--rt-heading);
}
.rts-funfact.v__1 .rts-funfact-wrapper .single-cta-item:not(:last-child)::after {
  background: var(--rt-border);
  right: -20%;
}
@media screen and (max-width: 992px) {
  .rts-funfact.v__1 .rts-funfact-wrapper .single-cta-item:not(:last-child)::after {
    display: none;
  }
}
.rts-funfact.v__2 .single-cta-item__title {
  font-family: var(--font-secondary);
  font-weight: 400;
}
.rts-funfact.stroke .single-cta-item h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #DEDEDE;
  -webkit-text-stroke: 1px;
  font-size: 40px;
}

.rts-testimonial.v_2 {
  background: var(--light-white);
}
.rts-testimonial.v_2 .rts-testimonial-box {
  padding: 0;
  border: none;
  background: var(--rt-white);
}
.rts-testimonial.v_2 .single-testimonial {
  padding-top: 100px;
  padding-bottom: 80px;
  padding-right: 80px;
}
@media screen and (max-width: 1200px) {
  .rts-testimonial.v_2 .single-testimonial {
    padding-right: 60px;
    padding-bottom: 40px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 992px) {
  .rts-testimonial.v_2 .single-testimonial {
    padding: 40px 60px;
  }
}
.rts-testimonial.v_2 .testmonial-v2 {
  overflow: hidden;
}
.rts-testimonial.v_2 .rts-testimonial-box .testimonial-item-image > img {
  min-width: 460px;
  height: 560px;
}
@media screen and (max-width: 1200px) {
  .rts-testimonial.v_2 .rts-testimonial-box .testimonial-item-image > img {
    min-width: 100%;
  }
}
.rts-testimonial.v_2 .testimonial-item-image {
  position: relative;
}
.rts-testimonial.v_2 .testimonial-item-image::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
}
.rts-testimonial.v_2 .testimonial-item-image .video-play {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
}
.rts-testimonial.v_2 .testimonial-item-image .video-play img {
  height: 82px;
  width: 82px;
}
.rts-testimonial.v_2 .rt-review p {
  color: var(--rt-primary);
}
.rts-testimonial.v_2 .rt-author-meta .rt-author-img {
  border-color: var(--rt-primary-1) !important;
}
.rts-testimonial.v_2 .rts-swiper-dots {
  gap: 10px;
}
.rts-testimonial.v_2 .testimonial-item .swiper-pagination {
  bottom: 60px;
  max-width: max-content;
  display: flex;
  gap: 5px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 992px) {
  .rts-testimonial.v_2 .testimonial-item .swiper-pagination {
    bottom: 60px;
  }
}
.rts-testimonial.v_2 .testimonial-item .swiper-pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #FFA6B7;
  opacity: 1;
}
.rts-testimonial.v_2 .testimonial-item .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--rt-primary);
}
.rts-testimonial-box {
  padding: 50px 80px 50px 50px;
  border: 1px solid #FFE4EA;
}
@media screen and (max-width: 1200px) {
  .rts-testimonial-box {
    padding: 30px;
  }
}
@media screen and (max-width: 992px) {
  .rts-testimonial-box {
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .rts-testimonial-box {
    padding: 30px;
  }
}
@media screen and (max-width: 576px) {
  .rts-testimonial-box {
    padding: 0;
    border: 0;
  }
}
.rts-testimonial-box .testimonial-item {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1200px) {
  .rts-testimonial-box .testimonial-item {
    gap: 40px;
  }
}
@media screen and (max-width: 992px) {
  .rts-testimonial-box .testimonial-item {
    flex-wrap: wrap;
  }
}
.rts-testimonial-box .testimonial-item-image {
  min-width: 460px;
  max-width: max-content;
  height: max-content;
}
@media screen and (max-width: 1200px) {
  .rts-testimonial-box .testimonial-item-image {
    min-width: 360px;
    max-width: max-content;
  }
}
@media screen and (max-width: 992px) {
  .rts-testimonial-box .testimonial-item-image {
    min-width: 100%;
  }
}
.rts-testimonial-box .testimonial-item-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width: 576px) {
  .rts-testimonial-box .testimonial-item-image img {
    max-height: 350px;
  }
}
@media screen and (max-width: 1200px) {
  .rts-testimonial-box .testimonial-item-content {
    max-width: 500px;
  }
}
@media screen and (max-width: 992px) {
  .rts-testimonial-box .testimonial-item-content {
    max-width: 100%;
  }
}
.rts-testimonial-box .testimonial-item-content .single-testimonial .rt-review .rating-star i {
  color: #FFA41C;
}
.rts-testimonial-box .testimonial-item-content .single-testimonial .rt-review p {
  color: var(--rt-primary-2);
}
.rts-testimonial-box .testimonial-item-content .single-testimonial .testimonial-text {
  font-size: 22px;
  line-height: 38px;
}
@media screen and (max-width: 576px) {
  .rts-testimonial-box .testimonial-item-content .single-testimonial .testimonial-text {
    font-size: 18px;
    line-height: 32px;
  }
}
@media screen and (max-width: 992px) {
  .rts-testimonial-box .testimonial-item-content .single-testimonial .rt-testimonial-author {
    margin-top: 50px !important;
  }
}
@media screen and (max-width: 576px) {
  .rts-testimonial-box .testimonial-item-content .single-testimonial .rt-testimonial-author .rt-author-meta {
    flex-wrap: wrap;
  }
}
.rts-testimonial-box .testimonial-item-content .single-testimonial .rt-testimonial-author .rt-author-meta .rt-author-img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 1px solid var(--rt-primary-2);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.rts-testimonial-box .testimonial-item-content .single-testimonial .rt-testimonial-author .rt-author-meta .rt-author-img img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
}
.rts-testimonial-box .testimonial-item-content .testimonial-arrow {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 576px) {
  .rts-testimonial-box .testimonial-item-content .testimonial-arrow {
    display: none;
  }
}
.rts-testimonial-box .testimonial-item-content .testimonial-arrow .rt-slider-btn {
  border-color: var(--rt-primary-1);
  height: 40px;
  width: 40px;
  border-radius: 0;
  bottom: 0;
  top: 20px;
  right: 0;
  left: unset;
  position: relative;
}
.rts-testimonial-box .testimonial-item-content .testimonial-arrow .rt-slider-btn:hover {
  background: var(--rt-primary-2);
  border-color: var(--rt-primary-2);
}
.rts-testimonial-box .testimonial-item-content .testimonial-arrow .rt-slider-btn:hover i {
  color: var(--rt-white);
}
.rts-testimonial-box .testimonial-item-content .testimonial-arrow .rt-slider-btn i {
  color: var(--rt-primary);
  font-size: 16px;
}
.rts-testimonial-box.v__3 {
  padding: 0;
  border: none;
}
.rts-testimonial-box.v__3 .testimonial-item-image img {
  border-radius: 10px;
}
.rts-testimonial-box.v__3 .testimonial-text {
  font-size: 40px !important;
  color: var(--rt-heading);
  line-height: 50px !important;
  font-weight: 400;
}
@media screen and (max-width: 576px) {
  .rts-testimonial-box.v__3 .testimonial-text {
    font-size: 30px !important;
    line-height: 40px !important;
  }
}

.rts-blog.v_1 .rts-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .rts-blog.v_1 .rts-section {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.rts-blog.v_1 .rts-section-description {
  max-width: 410px;
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .rts-blog.v_1 .rts-section-description {
    margin: 0;
  }
}
.rts-blog.v_1 .rts-blog-post .single-blog-post {
  border: none;
}
.rts-blog.v_1 .rts-blog-post .blog-content .title {
  font-family: var(--rt-secondary);
}
.rts-blog .rts-blog-post .single-blog-post {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  width: 100%;
  border: 1px solid var(--rt-line);
}
.rts-blog .rts-blog-post .single-blog-post:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .rts-blog .rts-blog-post .single-blog-post {
    flex-wrap: wrap;
  }
}
.rts-blog .rts-blog-post .single-blog-post .blog-thumb {
  overflow: hidden;
  min-width: 190px;
  max-width: 100%;
  height: 120px;
}
@media screen and (max-width: 1200px) {
  .rts-blog .rts-blog-post .single-blog-post .blog-thumb {
    height: 150px;
  }
}
.rts-blog .rts-blog-post .single-blog-post .blog-thumb:hover img {
  transform: scale(1.1);
  height: 100%;
}
@media screen and (max-width: 576px) {
  .rts-blog .rts-blog-post .single-blog-post .blog-thumb {
    width: 100%;
    height: 100%;
  }
}
.rts-blog .rts-blog-post .single-blog-post .blog-thumb img {
  height: 100%;
  max-width: 100%;
  min-width: 190px;
  transition: var(--transition);
  transform: scale(1);
  object-fit: cover;
}
@media screen and (max-width: 576px) {
  .rts-blog .rts-blog-post .single-blog-post .blog-thumb img {
    width: 100%;
    height: max-content;
  }
}
.rts-blog .rts-blog-post .single-blog-post .blog-content {
  padding-right: 30px;
}
.rts-blog .rts-blog-post .single-blog-post .blog-content .post-meta {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .rts-blog .rts-blog-post .single-blog-post .blog-content .post-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media screen and (max-width: 576px) {
  .rts-blog .rts-blog-post .single-blog-post .blog-content .post-meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.rts-blog .rts-blog-post .single-blog-post .blog-content .post-meta .rt-author,
.rts-blog .rts-blog-post .single-blog-post .blog-content .post-meta .rt-date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rts-blog .rts-blog-post .single-blog-post .blog-content .post-meta .rt-author a,
.rts-blog .rts-blog-post .single-blog-post .blog-content .post-meta .rt-date a {
  color: inherit;
  transition: var(--transition);
}
.rts-blog .rts-blog-post .single-blog-post .blog-content .post-meta .rt-author a:hover,
.rts-blog .rts-blog-post .single-blog-post .blog-content .post-meta .rt-date a:hover {
  color: var(--rt-primary-1);
}
.rts-blog .rts-blog-post .single-blog-post .blog-content .post-title {
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--rt-heading);
  position: relative;
  transition: var(--transition);
  line-height: 1.2;
  font-family: var(--font-secondary);
}
.rts-blog .rts-blog-post .single-blog-post .blog-content .post-title:hover {
  color: var(--rt-primary-1);
}
.rts-blog .rts-blog-post.blog-v-full {
  position: relative;
  z-index: 1;
}
.rts-blog .rts-blog-post.blog-v-full .blog-thumb {
  position: relative;
  min-height: 420px;
  width: 100%;
  overflow: hidden;
}
.rts-blog .rts-blog-post.blog-v-full .blog-thumb:hover img {
  transform: scale(1.1);
}
.rts-blog .rts-blog-post.blog-v-full .blog-thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scale(1);
  transition: var(--transition);
}
.rts-blog .rts-blog-post.blog-v-full .blog-thumb::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(12, 12, 15, 0) 0%, rgba(12, 12, 15, 0.8) 75.83%);
}
.rts-blog .rts-blog-post.blog-v-full .blog-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: var(--rt-white);
  z-index: 1;
  max-width: 90%;
}
@media screen and (max-width: 576px) {
  .rts-blog .rts-blog-post.blog-v-full .blog-content {
    bottom: 40px;
    left: 30px;
  }
}
.rts-blog .rts-blog-post.blog-v-full .blog-content .post-title {
  font-size: 36px;
  color: var(--rt-white);
  font-weight: 400;
  font-family: var(--font-secondary);
  line-height: 1.2;
  text-decoration: none;
  position: relative;
  background-image: linear-gradient(0deg, var(--rt-white) 0%, var(--rt-white) 100%);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.2s linear 0s, 0.15s;
  transform: translateZ(0);
  text-transform: capitalize;
}
@media screen and (max-width: 576px) {
  .rts-blog .rts-blog-post.blog-v-full .blog-content .post-title {
    font-size: 25px;
  }
}
.rts-blog .rts-blog-post.blog-v-full .blog-content .post-title:hover {
  color: var(--rt-white);
  background-size: 100% 1px;
}
.rts-blog.v_2 .rts-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .rts-blog.v_2 .rts-section {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.rts-blog.v_2 .rts-section-description {
  max-width: 410px;
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .rts-blog.v_2 .rts-section-description {
    margin: 0;
  }
}
.rts-blog.v_2.no-bg {
  background: transparent;
}
.rts-blog.v_2 .rts-border-bottom-1 {
  border-color: #D9D9D9;
}
.rts-blog.v_2 .rts-blog-post .single-blog-post {
  border: 1px solid var(--rt-line);
}
@media screen and (max-width: 576px) {
  .rts-blog.v_2 .rts-blog-post .single-blog-post {
    border: none;
  }
}
.rts-blog.v_2 .rts-blog-post .single-blog-post .blog-content {
  padding-right: 30px;
}
@media screen and (max-width: 1200px) {
  .rts-blog.v_2 .rts-blog-post .single-blog-post .blog-content {
    padding-right: 20px;
  }
}
.rts-blog.v_2 .rts-blog-post .single-blog-post .blog-thumb img {
  min-width: 160px;
}
.rts-blog.v_3 .single-blog {
  border: 1px solid var(--rt-line);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  overflow: hidden;
}
.rts-blog.v_3 .single-blog:hover {
  border-color: var(--rt-white);
}
.rts-blog.v_3 .single-blog__content .blog__thumb {
  overflow: hidden;
}
.rts-blog.v_3 .single-blog__content .blog__thumb img {
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
  transform: scale(1);
}
.rts-blog.v_3 .single-blog__content .blog__thumb:hover img {
  transform: scale(1.1);
}
.rts-blog.v_3 .single-blog__content .blog__meta {
  padding: 25px;
}
.rts-blog.v_3 .single-blog__content .blog__meta--da {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.rts-blog.v_3 .single-blog__content .blog__meta--da .blog-date,
.rts-blog.v_3 .single-blog__content .blog__meta--da .blog-author {
  display: flex;
  gap: 8px;
}
.rts-blog.v_3 .single-blog__content .blog__meta--da .blog-date span i,
.rts-blog.v_3 .single-blog__content .blog__meta--da .blog-author span i {
  color: var(--rt-primary-1);
}
.rts-blog.v_3 .single-blog__content .blog__meta .blog__title {
  margin-bottom: 30px;
}
.rts-blog.v_3 .single-blog__content .blog__meta .blog__title a {
  color: var(--rt-secondary);
  transition: var(--transition);
}
.rts-blog.v_3 .single-blog__content .blog__meta .blog__title a:hover {
  color: var(--rt-primary-2);
}
.rts-blog.v_3 .single-blog__content .blog-place {
  display: flex;
  gap: 8px;
}
.rts-blog.v_3 .single-blog__content .blog-place span i {
  color: var(--rt-primary-1);
}
.rts-blog.v_4 .single-blog {
  border: 1px solid var(--rt-line);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  overflow: hidden;
  padding: 20px;
}
.rts-blog.v_4 .single-blog:hover {
  border-color: var(--rt-white);
}
.rts-blog.v_4 .single-blog__content {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .rts-blog.v_4 .single-blog__content {
    flex-wrap: wrap;
  }
}
.rts-blog.v_4 .single-blog__content .blog__thumb {
  height: max-content;
  width: max-content;
}
@media screen and (max-width: 576px) {
  .rts-blog.v_4 .single-blog__content .blog__thumb {
    width: 100%;
  }
}
.rts-blog.v_4 .single-blog__content .blog__thumb img {
  min-height: 250px;
  min-width: 250px;
  object-fit: cover;
}
@media screen and (max-width: 576px) {
  .rts-blog.v_4 .single-blog__content .blog__thumb img {
    width: 100%;
  }
}
.rts-blog.v_4 .single-blog__content .blog__meta--da {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.rts-blog.v_4 .single-blog__content .blog__meta--da .blog-date,
.rts-blog.v_4 .single-blog__content .blog__meta--da .blog-author {
  display: flex;
  gap: 8px;
}
.rts-blog.v_4 .single-blog__content .blog__meta--da .blog-date span i,
.rts-blog.v_4 .single-blog__content .blog__meta--da .blog-author span i {
  color: var(--rt-primary-2);
}
.rts-blog.v_4 .single-blog__content .blog__meta .blog__title {
  margin-bottom: 20px;
}
.rts-blog.v_4 .single-blog__content .blog__meta .blog__title a {
  color: var(--rt-secondary);
  transition: var(--transition);
}
.rts-blog.v_4 .single-blog__content .blog__meta .blog__title a:hover {
  color: var(--rt-primary-2);
}
.rts-blog.v_4 .single-blog__content .blog-place {
  display: flex;
  gap: 8px;
}
.rts-blog.v_4 .single-blog__content .blog-place span i {
  color: var(--rt-primary-1);
}
.rts-blog.v_5 .single-blog {
  border: 1px solid var(--rt-line);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  overflow: hidden;
  padding: 30px;
}
.rts-blog.v_5 .single-blog:not(:last-child) {
  margin-bottom: 50px;
}
.rts-blog.v_5 .single-blog:hover {
  border-color: var(--rt-white);
}
.rts-blog.v_5 .single-blog__content {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: center;
}
.rts-blog.v_5 .single-blog__content .blog__thumb {
  height: max-content;
  position: relative;
  width: 100%;
}
.rts-blog.v_5 .single-blog__content .blog__thumb img {
  object-fit: cover;
  max-height: 450px;
  min-height: 450px;
  width: 100%;
}
.rts-blog.v_5 .single-blog__content .blog__meta {
  padding: 30px 0 20px 0;
}
.rts-blog.v_5 .single-blog__content .blog__meta--da {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .rts-blog.v_5 .single-blog__content .blog__meta--da {
    gap: 10px;
  }
}
.rts-blog.v_5 .single-blog__content .blog__meta--da .blog-date,
.rts-blog.v_5 .single-blog__content .blog__meta--da .blog-author,
.rts-blog.v_5 .single-blog__content .blog__meta--da .blog-cat {
  display: flex;
  gap: 8px;
}
.rts-blog.v_5 .single-blog__content .blog__meta--da .blog-date span i,
.rts-blog.v_5 .single-blog__content .blog__meta--da .blog-author span i,
.rts-blog.v_5 .single-blog__content .blog__meta--da .blog-cat span i {
  color: var(--rt-primary-1);
}
.rts-blog.v_5 .single-blog__content .blog__meta .blog__title {
  margin-bottom: 20px;
}
.rts-blog.v_5 .single-blog__content .blog__meta .blog__title a {
  color: var(--rt-secondary);
  line-height: 34px;
  transition: var(--transition);
}
.rts-blog.v_5 .single-blog__content .blog__meta .blog__title a:hover {
  color: var(--rt-primary-2);
}
.rts-blog.v_5 .single-blog__content .blog__meta .excerpt {
  margin-bottom: 45px;
}
.rts-blog.v_5 .single-blog__content .blog-place {
  display: flex;
  gap: 8px;
}
.rts-blog.v_5 .single-blog__content .blog-place span i {
  color: var(--rt-primary-1);
}

.rts-blog-list .single-post {
  overflow: hidden;
  background: var(--rt-white);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

.rts-blog-list .single-post a {
  display: inline-block;
}

.rts-blog-list .single-post a img {
  width: 100%;
  object-fit: cover;
}

.rts-blog-list .single-post__meta {
  padding: 40px 50px 50px 50px;
}

.rts-blog-list .single-post__meta .author__date__cat {
  margin-bottom: 30px;
  display: flex;
  gap: 30px;
  color: #74787C;
  line-height: 100%;
  flex-wrap: wrap;
}

.rts-blog-list .single-post__meta .author__date__cat a {
  color: #74787C;
  transition: var(--transition);
  text-transform: capitalize;
}

.rts-blog-list .single-post__meta .author__date__cat a:hover {
  color: var(--rt-primary);
}

.rts-blog-list .single-post__meta .author__date__cat i {
  color: var(--rt-secondary);
  margin-right: 10px;
}

.rts-blog-list .single-post__meta .title {
  font-size: 34px;
  color: var(--rt-secondary);
  line-height: var(--lh-h3);
  transition: var(--transition);
  width: 95%;
  position: relative;
  margin-bottom: 25px;
}

@media screen and (max-width: 576px) {
  .rts-blog-list .single-post__meta .title {
    width: 100%;
  }
}
.rts-blog-list .single-post__meta .title:hover {
  color: var(--rt-primary);
}

.rts-blog-list .single-post__meta .excerpt {
  font-family: var(--font-secondary);
  margin-bottom: 40px;
  line-height: 26px;
}

.rts-blog-list .single-post__meta .readmore__btn {
  max-width: 180px;
  text-align: center;
}

.rts-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 120px;
}

.rts-sidebar .rts-single-widget {
  padding: 35px 30px;
  border-radius: 6px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.1);
}

.rts-sidebar .rts-single-widget .widget-title {
  color: var(--rt-secondary);
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.rts-sidebar .rts-single-widget.search-widget form {
  position: relative;
}

.rts-sidebar .rts-single-widget.search-widget form input {
  padding: 15px 20px;
  border-radius: 4px;
  background: #F6F6F6;
  position: relative;
  transition: var(--transition);
  line-height: 100%;
}

.rts-sidebar .rts-single-widget.search-widget form input:focus {
  border-color: var(--color-third);
}

.rts-sidebar .rts-single-widget.search-widget form button {
  position: absolute;
  width: auto;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.rts-sidebar .rts-single-widget.category-widget .cat__counter {
  counter-reset: cat-counter;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rts-sidebar .rts-single-widget.category-widget .single-cat {
  padding: 16px 20px;
  border-radius: 4px;
  border: 1px solid var(--rt-line);
  counter-increment: cat-counter;
  display: flex;
  gap: 10px;
  background: var(--rt-white);
  transition: var(--transition);
  line-height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.rts-sidebar .rts-single-widget.category-widget .single-cat:hover {
  background: var(--rt-primary);
}

.rts-sidebar .rts-single-widget.category-widget .single-cat:hover a,
.rts-sidebar .rts-single-widget.category-widget .single-cat:hover .button-tab {
  color: var(--rt-white);
}

.rts-sidebar .rts-single-widget.category-widget .single-cat:hover::before {
  color: var(--rt-white);
}

.rts-sidebar .rts-single-widget.category-widget .single-cat:before {
  content: counter(cat-counter) ".";
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  margin: 0;
}

.rts-sidebar .rts-single-widget.category-widget .single-cat a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-secondary);
  transition: var(--transition);
}

.rts-sidebar .rts-single-widget.category-widget .single-cat .button-tab {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-secondary);
  transition: var(--transition);
  line-height: 1;
}

.rts-sidebar .rts-single-widget.recentpost-widget .recent-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rts-sidebar .rts-single-widget.recentpost-widget .recent-posts .single-post {
  display: flex;
  gap: 20px;
  align-items: start;
}

.rts-sidebar .rts-single-widget.recentpost-widget .recent-posts .thumb img {
  min-height: 85px;
  min-width: 85px;
  max-width: max-content;
  border-radius: 4px;
  object-fit: cover;
}

.rts-sidebar .rts-single-widget.recentpost-widget .recent-posts .meta .published {
  color: #74787C;
  font-size: 14px;
  margin-bottom: 16px;
  display: inline-block;
  line-height: 1;
}

.rts-sidebar .rts-single-widget.recentpost-widget .recent-posts .meta .published i {
  margin-right: 5px;
}

.rts-sidebar .rts-single-widget.recentpost-widget .recent-posts .meta .title {
  margin-bottom: 0;
}

.rts-sidebar .rts-single-widget.recentpost-widget .recent-posts .meta .title a {
  color: var(--rt-secondary);
  font-weight: 600;
  transition: var(--transition);
}

.rts-sidebar .rts-single-widget.recentpost-widget .recent-posts .meta .title a:hover {
  color: var(--rt-primary);
}

.rts-sidebar .rts-single-widget.gallery-widget .gallery-posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}

.rts-sidebar .rts-single-widget.gallery-widget .gallery-posts .thumb img {
  min-width: 95px;
  max-width: 95px;
  min-height: 95px;
  border-radius: 4px;
}

@media screen and (max-width: 1200px) {
  .rts-sidebar .rts-single-widget.gallery-widget .gallery-posts .thumb img {
    min-width: 130px;
  }
}
.rts-sidebar .rts-single-widget.tags-widget .popular-tags .tags-style {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.rts-sidebar .rts-single-widget.tags-widget .popular-tags .tags {
  transition: var(--transition);
  margin: 0;
}

.rts-sidebar .rts-single-widget.tags-widget .popular-tags .tags a {
  border: 1px solid var(--rt-line);
  padding: 10px 20px;
  border-radius: 3px;
  display: inline-block;
  background: var(--rt-white);
  transition: var(--transition);
  text-transform: capitalize;
  line-height: 100%;
  font-size: 14px;
}

.rts-sidebar .rts-single-widget.tags-widget .popular-tags .tags a:hover {
  background: var(--rt-primary);
  color: var(--rt-white);
}

.blog-details {
  margin-bottom: 50px;
}

.blog-details__article-meta {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-details__article-meta a span i {
  margin-right: 10px;
}

.blog-details__article-meta span i {
  margin-right: 10px;
}

.blog-details .rts-blockquote {
  border-radius: 3px;
  background: #F6F6F6;
  padding: 30px;
  text-align: center;
}

.blog-details .rts-blockquote h4 {
  margin-bottom: 10px;
}

.blog-details .rts-blockquote span {
  text-decoration: underline;
}

.blog-details .post-image {
  height: max-content;
  object-fit: cover;
  overflow: hidden;
  border-radius: 4px;
  margin-top: 30px;
}

.blog-details .check-area-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-details .check-area-details .single-check i {
  margin-right: 5px;
}

.blog-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.blog-info .blog-tags {
  display: flex;
  gap: 10px;
  align-items: center;
}

.blog-info .blog-tags .tags-title {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
}

.blog-info .blog-tags__list {
  display: flex;
  gap: 10px;
}

.blog-info .blog-tags__list a {
  border: 1px solid var(--rt-border);
  padding: 10px 15px;
  display: inline-block;
  background: var(--rt-white);
  transition: var(--transition);
  text-transform: capitalize;
  line-height: 100%;
  font-size: 14px;
}

.blog-info .blog-tags__list a:hover {
  background: var(--rt-primary);
  color: var(--rt-white);
}

.blog-info .blog-share {
  display: flex;
  gap: 10px;
  align-items: center;
}

.blog-info .blog-share .share {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
}

.blog-author__info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 60px 0;
}

.blog-author__info .author-image {
  height: 170px;
  width: 170px;
  overflow: hidden;
  border-radius: 4px;
}

.blog-author__info .author-content a {
  font-size: 20px;
  font-weight: 600;
  color: var(--rt-heading);
  font-family: var(--font-secondary);
  margin-bottom: 10px;
  display: block;
}

.blog-author__info .author-content p {
  max-width: 350px;
}

.blog-comment {
  margin-top: 40px;
}

.blog-comment__template h4 {
  color: var(--rt-secondary);
  margin-bottom: 30px;
}

.blog-comment__template .comment-template input,
.blog-comment__template .comment-template textarea {
  border: 1px solid var(--rt-border);
  border-radius: 3px;
  padding: 10px 15px;
}

.blog-comment__template .comment-template .input-area {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

@media screen and (max-width: 576px) {
  .blog-comment__template .comment-template .input-area {
    flex-wrap: wrap;
  }
}
.blog-comment__template .comment-template .input-area-full {
  margin-bottom: 20px;
}

.blog-comment__template .comment-template textarea {
  min-height: 200px;
  resize: none;
}

.social__media--list {
  display: flex;
  gap: 10px;
}

.social__media--list .media {
  height: 34px;
  width: 34px;
  border: 1px solid var(--rt-line);
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  background: transparent;
  transition: all 0.3s ease-in;
  font-size: 14px !important;
  color: var(--rt-heading);
}

.social__media--list .media:hover {
  background: var(--rt-primary);
  border-color: var(--rt-primary);
  color: var(--rt-white);
}

/*======= BLOG =======*/
.blog__single--item {
  display: flex;
  gap: 30px;
  align-items: center;
  border: 1px solid var(--rt-line);
  padding: 20px 35px 20px 20px;
}
@media screen and (max-width: 1200px) {
  .blog__single--item {
    flex-direction: column;
    padding: 40px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .blog__single--item {
    padding: 25px;
  }
}
.blog__single--item--link {
  overflow: hidden;
  min-height: 280px;
  min-width: 280px;
}
@media screen and (max-width: 1200px) {
  .blog__single--item--link {
    width: 100%;
    width: 100%;
    min-height: 100%;
  }
}
.blog__single--item--link:hover img {
  transform: scale(1.1);
}
.blog__single--item--link img {
  width: 100%;
  transform: scale(1);
  transition: var(--transition);
}
@media screen and (max-width: 1200px) {
  .blog__single--item--link img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
  }
}
.blog__single--item--meta .blog__cat {
  padding: 6px 15px;
  background: #FFEAEE;
  border-radius: 2px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
  line-height: 100%;
  color: var(--rt-primary-2);
}
.blog__single--item--title {
  margin-bottom: 15px;
}
.blog__single--item--title a {
  color: var(--rt-secondary);
  transition: var(--transition);
  line-height: 34px;
}
.blog__single--item--title a:hover {
  color: var(--rt-primary-2);
}
.blog__single--item--info {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1400px) {
  .blog__single--item--info {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.blog__single--item--info .author, .blog__single--item--info .date {
  display: flex;
  gap: 8px;
  align-items: center;
}
.blog__single--item--info .author span i, .blog__single--item--info .date span i {
  color: var(--rt-primary-2);
  font-weight: 300;
}
.blog__single--item.v__2 {
  background: var(--rt-white);
  border-radius: 10px;
  border-color: transparent;
}
.blog__single--item.v__2 .blog__single--item--link {
  width: max-content;
  border-radius: 10px;
}
@media screen and (max-width: 1200px) {
  .blog__single--item.v__2 .blog__single--item--link {
    width: 100%;
  }
}

.rts-newsletter.v_1 .rts-newsletter-box {
  height: 200px;
  display: flex;
  align-items: center;
  padding: 0 80px;
}
@media screen and (max-width: 992px) {
  .rts-newsletter.v_1 .rts-newsletter-box {
    padding: 0 50px;
  }
}
@media screen and (max-width: 576px) {
  .rts-newsletter.v_1 .rts-newsletter-box {
    padding: 30px;
    height: 100%;
  }
}
.rts-newsletter.v_1.rts-cta-background {
  background: var(--light-white);
  position: relative;
}
.rts-newsletter.v_1.rts-cta-background::before {
  position: absolute;
  content: "";
  inset: 0;
  height: 50%;
  bottom: 0;
  background: var(--footer-bg);
  top: unset;
}
.rts-newsletter.rts__white {
  background: var(--rt-white) !important;
}

.newsletter-bg {
  background-image: url(../images/newsletter/bg-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  border-radius: 10px;
}

.rts-newsletter-box {
  position: relative;
  border-radius: 10px;
}
.rts-newsletter-box > * {
  position: relative;
  z-index: 1;
}
.rts-newsletter-box::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: var(--rt-primary-2);
  opacity: 0.9;
  border-radius: 10px;
}
.rts-newsletter-box-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .rts-newsletter-box-content {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.rts-newsletter-box-content .newsletter-title {
  color: var(--rt-white);
  font-weight: 400;
  margin-bottom: 0;
  max-width: 380px;
}
@media screen and (max-width: 768px) {
  .rts-newsletter-box-content .newsletter-title {
    max-width: 100%;
  }
}
.rts-newsletter-box-content .newsletter-form form {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .rts-newsletter-box-content .newsletter-form form {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.rts-newsletter-box-content .newsletter-form form input[type=email] {
  border: 1px solid var(--rt-white);
  padding: 13px 20px;
  min-width: 340px;
  max-width: 100%;
  border-radius: 30px;
  color: var(--rt-white);
}
@media screen and (max-width: 576px) {
  .rts-newsletter-box-content .newsletter-form form input[type=email] {
    min-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .rts-newsletter-box-content .newsletter-form form input[type=email] {
    min-width: 260px;
  }
}
.rts-newsletter-box-content .newsletter-form form input[type=email]::placeholder {
  color: var(--rt-white);
}
.rts-newsletter-box-content .newsletter-form form input[type=email]:focus-visible {
  border-color: var(--rt-white) !important;
}
.rts-newsletter-box-content .newsletter-form form input[type=email]:focus {
  border-color: var(--rt-white) !important;
}
.rts-newsletter-box-content .newsletter-form form button.rts-nbg-btn {
  background: var(--rt-white);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 15px 20px;
  border-radius: 30px;
  min-width: 180px;
}
@media screen and (max-width: 992px) {
  .rts-newsletter-box-content .newsletter-form form button.rts-nbg-btn {
    min-width: 145px;
    max-width: max-content;
  }
}
@media screen and (max-width: 576px) {
  .rts-newsletter-box-content .newsletter-form form button.rts-nbg-btn {
    padding: 15px 30px;
    min-width: 100%;
  }
}
.rts-newsletter-box-content .newsletter-form form button.rts-nbg-btn::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  left: -70%;
  background: var(--rt-secondary);
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}
.rts-newsletter-box-content .newsletter-form form button.rts-nbg-btn:hover {
  color: var(--rt-white);
  border-color: var(--rt-secondary);
}
.rts-newsletter-box-content .newsletter-form form button.rts-nbg-btn:hover::before {
  opacity: 1;
  left: 0;
}

.rts-footer.v_1 {
  background: var(--footer-bg);
  padding-bottom: 80px;
}
.rts-footer.v_2 {
  background: var(--footer-bg);
}
.rts-footer.v_2 .rts-footer-newsletter {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #242424;
  padding-bottom: 50px;
  margin-bottom: 60px;
}
.rts-footer.v_2.rts-footer-padding {
  padding-top: 50px;
  padding-bottom: 60px;
}
.rts-footer.v_2 .rts-newsletter-box-content {
  display: flex;
  align-items: center;
}
.rts-footer.v_2 .rts-newsletter-box-content h4 {
  color: var(--rt-white);
  margin-bottom: 0;
}
.rts-footer.v_2 .rts-newsletter-box-content .newsletter-form form input[type=email] {
  border-color: var(--rt-primary-2);
  border-radius: 0;
}
.rts-footer.v_2 .rts-newsletter-box-content .newsletter-form form button {
  color: var(--rt-secondary);
  border-radius: 0;
}
.rts-footer.v_2 .rts-newsletter-box-content .newsletter-form form button:hover {
  color: var(--rt-white);
}
.rts-footer.v_2 .rts-newsletter-box-content .newsletter-form form button.rts-nbg-btn::before {
  background: var(--rt-primary-2);
}
.rts-footer.rts-footer-padding {
  padding: 100px 0;
}

@media screen and (max-width: 992px) {
  .rts-footer-widget.ml--30 {
    margin-left: 0 !important;
  }
}
.rts-footer-widget h6 {
  text-decoration: underline;
  color: var(--rt-white);
  margin-bottom: 25px;
  font-family: var(--font-primary);
}
.rts-footer-widget .rts-contact-link a {
  display: block;
  transition: var(--transition);
}
.rts-footer-widget .rts-contact-link a:not(:last-child) {
  margin-bottom: 15px;
}
.rts-footer-widget .rts-contact-link a:hover {
  color: var(--rt-primary-2);
}
.rts-footer-widget .rts-footer-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.rts-footer-widget .rts-footer-menu ul li a {
  transition: var(--transition);
}
.rts-footer-widget .rts-footer-menu ul li a:hover {
  color: var(--rt-primary-2);
}
.rts-footer-widget .rts-post-widget ul {
  margin: 0;
}
.rts-footer-widget .rts-post-widget ul .single-post {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}
.rts-footer-widget .rts-post-widget ul .single-post:not(:last-child) {
  padding-bottom: 25px;
}
.rts-footer-widget .rts-post-widget ul .single-post .blog-thumb img {
  height: 80px;
  max-width: 80px;
  transform: scale(1);
  object-fit: cover;
}
.rts-footer-widget .rts-post-widget ul .single-post .post-content span.rt-date {
  display: block;
  margin-bottom: 5px;
}
.rts-footer-widget .rts-post-widget ul .single-post .post-content a {
  color: var(--rt-white);
  font-size: 18px;
  transition: var(--transition);
  font-family: var(--font-secondary);
}
.rts-footer-widget .rts-post-widget ul .single-post .post-content a:hover {
  color: var(--rt-primary-2);
}

.rts-footer-copy-right.v_1 {
  padding: 16px 0;
  background: var(--footer-bg);
  border-top: 1px solid #242424;
}
.rts-footer-copy-right.v_1 a {
  color: var(--rt-primary-2);
}
/*===== Footer CSS ======*/
.footer {
  background: var(--footer-bg);
  padding: 100px 0;
}
.footer__widget--logo {
  margin-bottom: 50px;
}
.footer__widget--description {
  max-width: 320px;
  margin-left: 0;
}
.footer__widget--social .social {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 10px;
}
.footer__widget--social .social li a {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--rt-white);
  background: transparent;
  transition: var(--transition);
}
.footer__widget--social .social li a i {
  color: var(--rt-white);
}
.footer__widget--social .social li a:hover {
  background: var(--rt-primary-1);
  border-color: var(--rt-primary-1);
}
.footer__widget--title {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-primary);
  color: var(--rt-white);
  margin-bottom: 40px;
}
.footer__widget--menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__widget--menu ul li {
  margin-top: 0;
  margin-bottom: 0;
}
.footer__widget--menu ul li:not(:last-child) {
  margin-bottom: 15px;
}
.footer__widget--menu ul li a {
  transition: var(--transition);
}
.footer__widget--menu ul li a:hover {
  color: var(--rt-hover);
}
.footer__widget--button {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__widget--button .cta__button {
  padding: 14px 30px;
  text-align: center;
  border: 1px solid var(--rt-white);
  color: var(--rt-white);
  border-radius: 30px;
  transition: var(--transition);
  text-transform: capitalize;
}
.footer__widget--button .cta__button:hover, .footer__widget--button .cta__button.active {
  background: var(--rt-primary-1);
  border-color: var(--rt-primary-1);
}

/*======== Footer Copyright =========*/
.copyright {
  border-top: 1px solid var(--copyright-border);
  background: var(--footer-bg);
}
.copyright__wrapper {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.copyright__wrapper p a {
  color: var(--rt-primary-1);
}

.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);
  box-shadow: 0px 1px 5px 10px rgba(0, 0, 0, 0.041);
}

.progress-wrap::after {
  position: absolute;
  font-family: var(--fontawesome);
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--rt-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: 0px solid var(--rt-primary);
  box-shadow: none;
  border-radius: 50% !important;
  border-radius: 5px;
}

.progress-wrap:hover::after {
  opacity: 1;
  content: "\f077";
  border: 0px solid var(--rt-primary);
}

.progress-wrap::before {
  position: absolute;
  font-family: "unicons";
  content: "\f077";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background: var(--rt-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(--rt-primary);
  border-radius: 50%;
  background: #fff;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--rt-primary);
  stroke-width: 0px;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.home-blue .progress-wrap svg.progress-circle path {
  stroke: var(--rt-primary-2);
}
.home-blue .progress-wrap::after {
  border-color: var(--rt-primary-2);
  box-shadow: 0px 3px 20px 6px #0742e952;
  color: var(--rt-primary-2);
}

.rts-contact-info .contact-information .single-contact {
  background: #f6f6f6;
  text-align: center;
  padding: 50px;
}
@media screen and (max-width: 1200px) {
  .rts-contact-info .contact-information .single-contact {
    padding: 25px;
  }
}
.rts-contact-info .contact-information .single-contact__single .icon {
  margin-bottom: 30px;
}
.rts-contact-info .contact-information .single-contact__single .icon i {
  font-size: 64px;
  color: var(--rt-primary-1);
}
.rts-contact-info .contact-information .single-contact__single p {
  color: var(--rt-secondary);
  font-weight: 500;
  line-height: 30px;
}
.rts-contact-info .contact-information .single-contact__single p.rt-regular {
  font-weight: 400 !important;
}
.rts-contact-info .contact-information .single-contact__single .method {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rts-contact-info .contact-information .single-contact__single .method a {
  font-size: 20px;
  font-weight: 500;
  color: var(--rt-secondary);
}

.contact-method__single {
  position: relative;
}
.contact-method__single::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
}
.contact-method__single .contact-img-bg img {
  min-height: 370px;
  max-height: 370px;
  width: 100%;
  object-fit: cover;
}
.contact-method__single .contact-text {
  padding: 60px 50px;
  position: absolute;
  top: 0;
  min-height: 100%;
  width: 100%;
  color: var(--rt-white);
}
.contact-method__single .contact-text h3.contact-title {
  color: var(--rt-white);
  margin-bottom: 20px;
}
.contact-method__single .contact-text .description {
  color: var(--rt-white);
  font-size: 20px;
  font-weight: 500;
}
.contact-method__single .contact-text .contact-link {
  position: absolute;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-method__single .contact-text .contact-link a {
  color: var(--rt-white);
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.contact-map {
  height: 470px;
  filter: grayscale(1);
}

.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  width: 380px;
  padding: 40px 35px;
  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: 315px;
  }
}
.side-bar .inner-main-wrapper-desk .thumbnail {
  display: flex;
  justify-content: center;
}
.side-bar .inner-main-wrapper-desk .thumbnail img {
  width: 60%;
  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: 100%;
  text-align: center;
  margin: auto;
  font-size: 14px;
}
.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: 40px;
  border-top: 1px solid #e8e8e8;
}
.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 .inner-main-wrapper-desk .inner-content .contact-information--sidebar {
  margin-top: 50px;
}
.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .title {
  margin-bottom: 20px;
  font-size: 24px;
}
.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .single-info {
  margin: 15px 0;
}
.side-bar .inner-main-wrapper-desk .inner-content .contact-information--sidebar .single-info a:hover {
  color: var(--color-primary);
}

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

.side-bar button {
  max-width: max-content;
  margin-right: auto;
  margin-left: -55px;
  margin-top: 0;
  position: absolute;
  border: 0;
}
.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(--rt-primary-2);
}

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

.metismenu .mm-collapse:not(.mm-show) {
  display: none;
}

.index-three .side-bar .inner-main-wrapper-desk {
  display: none !important;
}
.index-three .side-bar .mobile-menu-main {
  display: block !important;
}

.offcanvase__banner--content {
  position: relative;
}
.offcanvase__banner--content img {
  width: 100%;
}
.offcanvase__banner--content .rts-theme-btn {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%);
  font-size: 14px;
  padding: 8px 30px;
  border-radius: 4px;
}

.offcanvase__info {
  margin-top: 50px;
}
.offcanvase__info--content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.offcanvase__info--content a {
  display: flex;
  gap: 10px;
  transition: var(--transition);
}
.offcanvase__info--content a:hover {
  color: var(--rt-secondary);
}
.offcanvase__info--content a span {
  color: var(--rt-secondary);
}
.offcanvase__info--content--social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.offcanvase__info--content--social > p {
  text-align: left;
  margin: 0 !important;
}
.offcanvase__info--content--social .social__links {
  display: flex;
  gap: 10px;
}

.search-input-area {
  transition: all 500ms ease;
  visibility: hidden;
  transform: translateY(-100%);
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 57px 0;
  background: white;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.46);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-input-area.show {
  visibility: visible;
  transform: inherit;
  opacity: 1;
}

.search-input-area .search-input-inner {
  display: flex;
  align-items: center;
  position: relative;
}

.search-input-area .search-input-inner .input-div {
  width: 80%;
  display: flex;
  align-items: center;
  margin: auto;
}

.search-input-area .search-input-inner .input-div input {
  background: #F7F7F7;
  border-radius: 5px;
  height: 55px;
  border: 1px solid transparent;
}
.search-input-area .search-input-inner .input-div input:focus {
  border: 1px solid var(--rt-primary);
}

.search-input-area .search-input-inner .input-div button {
  max-width: max-content;
  padding: 18px 21px;
  background: var(--rt-primary);
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: block;
  margin-left: -9px;
  border-radius: 0 5px 5px 0;
  font-size: var(--p-s);
}

.search-input-area .search-close-icon {
  cursor: pointer;
  position: absolute;
  right: 38px;
  top: 22px;
}

.search-input-area .search-close-icon i {
  position: relative;
  z-index: 1;
  color: var(--rt-primary);
  transition: 0.3s;
  font-size: 18px;
}
.search-input-area .search-close-icon i:hover {
  color: #F7F7F7;
}
.search-input-area .search-close-icon i:hover::after {
  background: var(--rt-primary);
}

.search-input-area .search-close-icon i::after {
  position: absolute;
  height: 45px;
  width: 45px;
  content: "";
  border-radius: 5px;
  background: #553cdf14;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: 0.3s;
}

#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;
}
/*# sourceMappingURL=../maps/style.css.map */












/* ################################################### */
/* --- Additional Added CSS from Synergistiques ---- */

.top-banner{
  min-height: 40px;
  background-color: var(--rt-primary);
  color: var(--rt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

}

.top-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rt-white);
  flex-wrap: wrap;
}

.top-banner .container p{
  color: var(--rt-white);
  margin: 0 auto;

}




/* ------------------ */



/* ------- Home page About Section -------- */
.hidsar-about-2 .rts-section-padding {
  padding: 0px 0;
}

.hidsar-about-2 .rts-about-university .about__right--content--vision {
  margin-bottom: 50px;
  margin-top: 30px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap ;
}
@media screen and (max-width: 1200px) {
  .hidsar-about-2 .rts-about-university .about__right--content--vision {
    flex-wrap: wrap;
  }
}
.hidsar-about-2 .rts-about-university .about__right--content--vision .mision, .hidsar-about-2 .rts-about-university .about__right--content--vision .vision {
  display: flex;
  gap: 25px;
  align-items: center;
  border: 1px solid var(--rt-primary-2);
  padding: 13px 26px;
  background: var(--light-white);
}
.hidsar-about-2 .rts-about-university .about__right--content--vision .mision__icon, .hidsar-about-2 .rts-about-university .about__right--content--vision .vision__icon {
  min-width: 50px;
  height: 50px;
}
.hidsar-about-2 .rts-about-university .about__right--content--vision .mision__title, .hidsar-about-2 .rts-about-university .about__right--content--vision .vision__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--rt-primary-2);
  font-family: var(--font-primary);
}

/* -------------------- */


/* ------- About Us Menu All pages --- */

.gap-Vsmall{
  margin: 30px;
}

.gap-small{
  margin: 50px;
}

.gap-mid{
  margin: 80px;
}

.gap-large{
  margin: 110px;
}

.gap-Vlarge{
  margin: 140px;
}

/* ----------------------------------- */