/*=== 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");
@import url("https://fonts.googleapis.com/css2?family=Rufina:wght@400;700&display=swap");
:root {
  --rt-theme: #f5821f;
  --rt-primary: #0f2540;
  --rt-primary-1: #0f2540;
  --rt-primary-2: #f5821f;
  --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: #0f2540;
  --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;
  --rufina: "Rufina", 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: 23px;
  --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;
  overscroll-behavior-y: none;
}

html[lang="ar"] body,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="ar"] p,
html[lang="ar"] a,
html[lang="ar"] span,
html[lang="ar"] li,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] textarea {
    font-family: "Zain", sans-serif !important;
}

html[lang="ar"] input[type="tel"] {
    text-align: right;
    direction: ltr; 
}

html[lang="ar"] input[type="tel"]::placeholder {
    text-align: right;
    direction: rtl;
}

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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-primary-le{
  color: var(--rt-primary-2) !important;
}

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 28px;
    background-color: #0b973e;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.4);
    z-index: -1;
    animation: ripple 1.8s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.whatsapp-float:hover::before {
    animation: none; /* stop ripple on hover */
}
@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,
p,
pre,
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;
}

@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);
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 26px;
  }
}
p:last-child {
  margin-bottom: 0;
}

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

@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 
==========================*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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


details,
figcaption,
figure,
footer,
header,
nav,
section {
  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;
}

b,
strong {
  font-weight: bold;
}

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

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

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 {
  border: 1px solid var(--color-border);
  padding: 7px 10px;
}

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


cite,
em {
  font-style: italic;
}

/* BlockQuote  */

q {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none;
}


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

/* ========= 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]: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[type=radio] ~ label::before {
  border-radius: 50%;
}
input[type=radio] ~ label::after {
  width: 8px;
  height: 8px;
  left: 3px;
  background: #fff;
  border-radius: 50%;
}

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

.fix {
  overflow: hidden;
}

iframe {
  width: 100%;
}

/*===============================
    Background Color 
=================================*/

/*===========================
Background Image 
=============================*/

/* Height and width */

/*===================
Custom Row
======================*/

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

/*------------------------------
    Scroll Up 
--------------------------------*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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 marquee-ar {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(calc(100% + 40px)); /* استخدمنا + بدلاً من - */
  }
}

@keyframes marquee2-ar {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* 2. تطبيق الأنيميشن الجديد فقط عندما تكون اللغة عربية */
html[lang="ar"] .single__marque__item__list {
  animation: marquee-ar 40s linear infinite;
}

html[lang="ar"] .single__marque__item.v__2 .single__marque__item__list {
  animation: marquee2-ar 40s linear infinite;
}

/* 3. السر هنا: عكس الـ Margin ليتم حساب المسافة بشكل صحيح بين القوائم */
html[lang="ar"] .single__marque__item__list__text {
  margin-right: 0;        /* نلغي المسافة من اليمين */
  margin-left: 40px;      /* نضعها على اليسار لتطابق الأنيميشن */
}

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

/* -------------------------------- 

xclip 

-------------------------------- */

body.index-sc {
  --primary-color: #AB0101;
  --secondary-color: #223874;
  --rt-primary: #AB0101;
}
body.index-sc h1, body.index-sc h2, body.index-sc h3, body.index-sc h4, body.index-sc h5, body.index-sc h6 {
  font-family: var(--rufina);
}

.container {
  max-width: 1290px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.rt-white {
  color: var(--rt-white) !important;
}

.rt-secondary {
  color: var(--rt-secondary);
}

.rt-relative {
  position: relative;
}

.rt-center {
  text-align: center;
}

.rt-clip-text {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #DEDEDE;
  -webkit-text-stroke: 1px;
}

.rts-section-title {
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.2;
  margin-top: -15px;
}

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

.rt-medium {
  font-weight: 500;
}

.rt-regular {
  font-weight: 400;
}

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

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

/* ====== Circle =========*/

/* ======= content css =========*/
.rts__section--wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@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__5 {
  justify-content: center;
  margin-bottom: 40px;
}
.rts__section--wrapper.v__5 .rts__section--title {
  text-transform: capitalize;
}
.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__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__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;
}
@media screen and (max-width: 768px) {
  .rts__section--wrapper--left {
    margin-bottom: 20px;
  }
}
.rts__section--wrapper.sc {
  flex-direction: column;
  align-items: start;
}
.rts__section--wrapper.sc.v2 {
  align-items: center;
  max-width: 480px;
}
.rts__section--wrapper.sc .rts__section--subheading {
  color: var(--secondary-color);
}
.rts__section--wrapper.sc .rts__section--title {
  text-transform: capitalize;
  font-weight: 700;
}
.rts__section--wrapper.sc p {
  margin-top: 20px;
  max-width: 90%;
  margin-left: 0;
  margin-bottom: 30px;
}
.rts__section--wrapper.sc .rts-nbg-btn {
  color: var(--secondary-color);
}
.rts__section--wrapper.sc .rts-nbg-btn::before {
  background: var(--secondary-color);
}
.rts__section--wrapper.sc.white {
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  color: var(--rt-white);
}
.rts__section--wrapper.sc.white .rts__section--wrapper--left {
  max-width: 320px;
}
@media screen and (max-width: 768px) {
  .rts__section--wrapper.sc.white .rts__section--wrapper--left {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .rts__section--wrapper.sc.white {
    flex-direction: column;
    align-items: start;
  }
}
.rts__section--wrapper.sc.white .rts__section--subheading {
  color: var(--rt-white);
}
.rts__section--wrapper.sc.white .rts__section--title {
  color: var(--rt-white);
}
.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;
  }
}

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

.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:hover .rts__program--item--title {
  opacity: 1;
}
.rts__program--item.v__2:hover .rts-nbg-btn {
  opacity: 1;
  z-index: 99;
}

/* ====== Team Member ========*/
/* ====== Research Area =======*/
/*======= Student Feedback ======*/

.rts__single--testimonial {
  padding: 60px 20px 60px 20px;
  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-2);
  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;
}

/*===== FEEDBACK SLIDER ========*/
.feedback {
  background: var(--light-white);
}

/*======== MARQUEE SECTION ========*/
.single__marque__item {
  background: var(--rt-primary-1);
  height: 80px;
  display: flex;
  align-items: center;
  overflow: hidden !important;
  width: 100%;
  max-width: 100%;
 font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 700;
}
.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: clamp(16px, 2.5vw, 24px);
  font-weight: 700;
  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 ========*/

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

.sc__gallery__active .single-gallery {
  border-radius: 10px;
  overflow: hidden;
}

.rts__light {
  background: #f6f6f6;
}

/* 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 {
  cursor: pointer;
  line-height: 1;
}
.header.v__2 .header__right--item .lang__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 {
  cursor: pointer;
  line-height: 1;
}
.header__right--item .lang__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);
  z-index: 9;
}
.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: 0 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 {
  cursor: pointer;
  line-height: 1;
}
.header.v__3 .header__right--item .lang__trigger {
  font-size: 18px;
  color: var(--rt-heading);
}
@media screen and (max-width: 1200px) {
  .header.v__5 {
    padding: 15px 0;
  }
}
.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 {
  cursor: pointer;
  line-height: 1;
}
.header.v__5 .header__right--item .lang__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;
  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-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: 0 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__logo{

   width: 15vh;
}

.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__2.fixed .header__right--item .lang__trigger, .header.v__3.fixed .header__right--item .lang__trigger {
  color: var(--rt-heading);
}

.header.v__1.fixed .header__right--item .lang__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;
}
html[lang="ar"] .mobile-menu-main nav ul li.has-droupdown::after{

  right: auto;
  left: 0;
}
.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-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 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__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-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;
  background-position: 100% 33%;
}
.rts-breadcrumb.breadcrumb-height::before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 992px) {
  .rts-breadcrumb.breadcrumb-height {
    height: auto;
    padding: 60px 0;
  }
}
.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 .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-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-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-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.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;
}
@media screen and (max-width: 1200px) {
  .banner.v__2 .banner__wrapper {
    flex-direction: row;
  }
}
.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;
  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;
  }
}
.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--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__slides--content {
  opacity: 0;
}
.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--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;
  text-align: center;
}
.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;
  text-align: center;
}
.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;
}

@media screen and (max-width: 992px) {
  .rts-hero-slider.sc .rts-slider-height {
    height: 660px;
  }
}
@media screen and (max-width: 992px) {
  .rts-hero-slider.sc .rts-slider-height {
    height: 560px;
  }
}
.rts-hero-slider.sc .rts-slider-content .rts-slider-title {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 100px;
  margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
  .rts-hero-slider.sc .rts-slider-content .rts-slider-title {
    line-height: 80px;
  }
}
@media screen and (max-width: 992px) {
  .rts-hero-slider.sc .rts-slider-content .rts-slider-title {
    line-height: 60px;
  }
}
.rts-hero-slider.sc .rts-slider-content .rts-slider-btn {
  margin-top: 50px;
  display: inline-block;
}
.rts-hero-slider.sc .rts-slider-content .rts-slider-btn .rts-theme-btn {
  background: var(--primary-color);
  border-radius: 4px;
}

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

.brand-logos{
display: flex;
align-items: center;
}

.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-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-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-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;
}
html[lang="ar"] .rts-mission .rts-timeline-section .rts-timeline-content .left-side .single-timeline-item p {
text-align: right;
}
@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;
}
html[lang="ar"] .rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item p {

  text-align: right;
}
@media screen and (max-width: 576px) {
  .rts-mission .rts-timeline-section .rts-timeline-content .right-side .single-timeline-item p {
    max-width: 100%;
  }
}

/* Image sizing for timeline items */
.rts-mission .rts-timeline-section .rts-timeline-content .single-timeline-item img {
    width: 100%;             /* Fills the container */
    max-width: 520px;        /* Matches the max-width you set for your <p> tags */
    aspect-ratio: 520 / 322; /* Locks in your ideal proportions */
    object-fit: cover;       /* Prevents the image from stretching */
    display: inline-block;   /* Keeps it flowing nicely with your text */
    border-radius: 4px;
}

/* Make sure the image takes up full width on mobile just like the text */
@media screen and (max-width: 576px) {
    .rts-mission .rts-timeline-section .rts-timeline-content .single-timeline-item img {
        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 ======= */

.feature {
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding-left: 100px;
  padding-right: 45px;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  gap: 70px;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .feature {
    gap: 20px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 992px) {
  .feature {
    gap: 35px;
    flex-wrap: wrap;
  }
}

/* ======= Program Area CSS ======= */
.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-campus * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .rts-campus.mobile-padding {
    padding-bottom: 40px;
  }
  .padding{
    padding: 0 0 40px 0 !important;
  }
}
.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.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%;
}

html[lang="ar"] .rts-campus.v_2 .rts-left-section::before {
    left: auto; 
    right: -30px; 
}
html[lang="ar"] .rts-campus.v_2.rts-campus-bg::before {
    transform: scaleX(-1);
}
html[lang="ar"] .rts-campus.v_2 .rts-left-section .section-title span {
    margin-left: 0;      /* 1. Remove the English left margin */
    margin-right: 100px; /* 2. Apply the new Arabic right margin */
}
@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: 62px;
  }
}
.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 .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;
}

/* ===== campus CSS ========*/
.campus {
  position: relative;
}
.campus > * {
  position: relative;
  z-index: 2;
}
.campus.v__2 {
  background: var(--rt-heading);
}
.campus.v__3 {
  background: var(--rt-primary-2);
}

.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 .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.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 {
    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%;
  min-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: -30%;
}
@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 .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-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.v__2 {
  border-radius: 0;
}
.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 .rts-theme-btn {
  border-radius: 30px;
  background: var(--rt-primary-2);
  color: var(--rt-white);
}
.rts-application-form-content.sc .rts-theme-btn {
  border-radius: 4px;
  background: var(--primary-color);
}

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

html[lang="ar"] .single-procedure .rt-clip-serial {
  left: 35px;
  right: auto;
}
.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;
}

html[lang="ar"] .single-procedure .icon {
margin-top: -10px;
}
.single-procedure p {
  color: var(--rt-white);
  text-align: start;
}

.admission-content-top .rts-section-title {
  margin-bottom: 35px;
}

.admission-content-top .application-deadline {
  margin-top: 50px;
}
.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;
}

.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 .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 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 .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;
}
.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-testimonial.v_2 .rts-testimonial-box {
  padding: 0;
  border: none;
  background: var(--rt-white);
}
.rts-testimonial.v_2 .single-testimonial {

  padding-right: 80px;
  padding-left: 60px;
}

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

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

@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: 0px;
}

html[lang="ar"] .rts-testimonial-box .testimonial-item{
  gap: 0;
}

@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;
  }
}
.blog-details {
  margin-bottom: 50px;
}

/*======= BLOG =======*/

.rts-footer.v_1 {
  background: var(--footer-bg);
  padding-bottom: 80px;
}
.rts-footer.v_2 {
  background: var(--footer-bg);
}

@media screen and (max-width: 992px) {
  .rts-footer-widget.ml--30 {
    margin-left: 0 !important;
  }
}
.rts-footer-widget h6 {
  color: var(--rt-white);
  margin-bottom: 25px;
  font-family: var(--font-primary);
}
.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;
}
/*===== Footer CSS ======*/
.footer {
  background: var(--footer-bg);
  padding: 100px 0;
}
.footer__widget--description {
  max-width: 320px;
  margin-left: 0;
  margin-right: 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 Copyright =========*/
.copyright {
  border-top: 1px solid var(--copyright-border);
  background: var(--footer-bg);
  color: #fff;
}
.copyright__wrapper {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0b0e1c;
}
.copyright__wrapper p a {
  color: var(--rt-primary-1);
}

.footer.sc {
  background: var(--secondary-color);
}
.footer.sc p {
  color: var(--rt-white);
}
.footer.sc .footer__widget--social .social li a:hover {
  background: var(--primary-color);
}

.copyright.sc {
  background: var(--secondary-color);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.copyright.sc p {
  color: var(--rt-white);
}
.copyright.sc a {
  color: var(--primary-color);
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: none;
  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;
}

.rts-contact-info .contact-information .single-contact {
  background: #f6f6f6;
  text-align: center;
  padding: 100px 0;
}
@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;
  text-align: center;
}
.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: var(--p-l);
  font-weight: 500;
  color: var(--rt-secondary);
}

.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-x: hidden;
}

html[lang="ar"] .side-bar {
    right: auto;      /* Turn off the English right-side positioning */
    left: -100%;      /* Hide it off the left edge of the screen */
}

/* 2. Slide it in from the left when the menu button is clicked */
html[lang="ar"] .side-bar.show {
    left: 0;          /* Bring it perfectly to the left edge */
    right: auto;      /* Keep the right side deactivated */
}
html[lang="ar"] .side-bar .close-icon-menu {
    left: auto;
    left: 35px;
}
@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;
}
.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.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: pointer;
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 50;
}

#menu-btn {
    position: relative !important;
    z-index: 999999 !important; 
    pointer-events: auto !important;
}
#menu-btn img {
    pointer-events: none; /* نمنع الصورة من سرقة الضغطة من الزر */
}

#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__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: pointer;
  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;
}

.rts-research-image {
    position: absolute;
    left: -14%;
    background-image: url(../images/about/teacher.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 47%;
    height: 100%;
    border-radius: 10px;
}

.rts-research::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 75%;
    background: #f6f6f6;
    left: 17%;
    z-index: -1;
}

/*Animation*/
    
    .premium-award-box {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        background-color: #ffffff;
        box-shadow: 0 10px 30px rgba(218, 165, 32, 0.1); 
    }

    .premium-award-box .testimonial-item {
        position: relative;
        z-index: 1;
    }

    .premium-glow {
        position: absolute;
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%;
        background: radial-gradient(ellipse at top, rgba(218, 165, 32, 0.12) 0%, transparent 80%);
        z-index: 0; 
        pointer-events: none;
        animation: premium-pulse 4s ease-in-out infinite alternate;
    }

    @keyframes premium-pulse {
        0% { opacity: 0.5; }
        100% { opacity: 1; }
    }

    .fx-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none; 
        z-index: 0;
    }

    /* --- Particle Confetti Base --- */
    .particle {
        position: absolute;
        top: -20px;
        border-radius: 50%;
        animation: particle-fall linear infinite;
    }

    /* Using box-shadow to generate multiple trailing particles per HTML element */
    .p-gold { 
        background-color: #FFD700; 
        box-shadow: 15px 20px 0 -1px #DAA520, -15px 40px 0 -2px #FFF8DC, 30px 60px 0 -1px #FFD700;
    }
    .p-silver { 
        background-color: #E5E4E2; 
        box-shadow: -20px 25px 0 -1px #B0C4DE, 20px 45px 0 -2px #FFFFFF, -10px 70px 0 -1px #E5E4E2;
    }
    .p-bronze { 
        background-color: #CD7F32; 
        box-shadow: 10px 30px 0 -1px #8B4513, -25px 50px 0 -2px #D2B48C, 15px 80px 0 -1px #CD7F32;
    }

    /* Sizes */
    .s-small { width: 4px; height: 4px; }
    .s-medium { width: 6px; height: 6px; }
    .s-large { width: 8px; height: 8px; border-radius: 2px; } /* Shard shape */

    /* The Swaying Fall Animation */
    @keyframes particle-fall {
        0% { 
            transform: translateY(0) translateX(0) rotate(0deg); 
            opacity: 1; 
        }
        25% { transform: translateY(200px) translateX(20px) rotate(90deg); }
        50% { transform: translateY(400px) translateX(-15px) rotate(180deg); }
        75% { transform: translateY(600px) translateX(10px) rotate(270deg); }
        100% { 
            transform: translateY(800px) translateX(-20px) rotate(360deg); 
            opacity: 0; 
        }
    }

    /* Distribution and Timings */
    .particle:nth-child(1) { left: 5%; animation-duration: 4s; animation-delay: 0s; }
    .particle:nth-child(2) { left: 15%; animation-duration: 6s; animation-delay: 1s; }
    .particle:nth-child(3) { left: 25%; animation-duration: 4.5s; animation-delay: 2s; }
    .particle:nth-child(4) { left: 35%; animation-duration: 5.5s; animation-delay: 0.5s; }
    .particle:nth-child(5) { left: 45%; animation-duration: 4.2s; animation-delay: 3s; }
    .particle:nth-child(6) { left: 55%; animation-duration: 6.5s; animation-delay: 1.5s; }
    .particle:nth-child(7) { left: 65%; animation-duration: 4.8s; animation-delay: 0.2s; }
    .particle:nth-child(8) { left: 75%; animation-duration: 5.2s; animation-delay: 2.5s; }
    .particle:nth-child(9) { left: 85%; animation-duration: 4.1s; animation-delay: 1.2s; }
    .particle:nth-child(10) { left: 95%; animation-duration: 5.8s; animation-delay: 3.5s; }
    .particle:nth-child(11) { left: 10%; animation-duration: 4.9s; animation-delay: 2.8s; }
    .particle:nth-child(12) { left: 80%; animation-duration: 6.1s; animation-delay: 0.8s; }

/*Animation*/