/*
  Cleaned style.css
  - Based on the current uploaded index.html
  - Kept global/base styles, animations, responsive rules and selectors that match the current markup
  - Removed selectors tied to sections/classes that are not present in the current page
*/

@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&amp;display=swap");@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&amp;display=swap");:root{
  --color-primary: #FF014F;
  --color-primary-alt: #ff014dd9;
  --color-primary-2nd: #FF494A;
  --color-primary-3rd: #FDC448;
  --color-primary-4th: #0071ff;
  --color-secondary: #060606;
  --color-gray: #9F9F9F;
  --color-gray-2: #141414;
  --color-subtitle: #f9004d;
  --background-color-1: #24243557;
  --background-color-2: #13131d;
  --background-color-3: #151521;
  --background-color-4: #242435;
  --background-color-5: #EDF5FF;
  --color-card: #1b1b1c;
  --gradient-box: linear-gradient(to right, #5237f9, #FF014F);
  --gradient-one: linear-gradient(to right bottom, #E42032, #1273EB);
  --gradient-two: linear-gradient(to right, #ED145B, #4A11EB);
  --gradient-three: linear-gradient(to right, #03041c, #0612b3);
  --text-gradient-one:linear-gradient(to right, #E42032, #4A11EB);
  --color-heading:#ffffff;
  --color-body: #9f9f9f;
  --color-dark:#1d1d1d;
  --color-text-1:#DEDEDE;
  --color-light-heading: #181c32;
  --color-light-body: #65676b;
  --color-border-white: #00000024;
  --color-midgray: #878787;
  --color-light: #E4E6EA;
  --color-lighter: #CED0D4;
  --color-lightest: #F0F2F5;
  --color-border: #ffffff14;
  --color-white: #ffffff;
  --color-white-75: rgba(255, 255, 255, 0.75);
  --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;
  --font-primary: "Rajdhani", sans-serif;
  --font-secondary: "Rubik", sans-serif;
  --font-three: "fontawesome";
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --border-width: 2px;
  --radius: 4px;
  --transition: all 0.4s ease-in-out;
  --font-size-b1: 16px;
  --font-size-b2: 18px;
  --font-size-b3: 22px;
  --line-height-b1: 1.75;
  --line-height-b2: 1.6;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 36px;
  --h3: 27px;
  --h4: 24px;
  --h5: 20px;
  --h6: 18px;
}html{
  margin: 0;
  padding: 0;
  font-size: 10px;
  scroll-behavior: auto !important;
}body{
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-primary);
  color: var(--color-body);
  font-weight: var(--p-regular);
  position: relative;
  overflow-x: hidden;
  background: var(--color-secondary);
}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, address, p, pre, blockquote, menu, ol, ul, table, hr{
  margin: 0;
  margin-bottom: 20px;
}h1, h2, h3, h4, h5, h6{
  word-break: break-word;
  font-family: var(--font-secondary);
  line-height: 1.4074;
  color: var(--color-heading);
}h1{
  font-size: var(--h1);
  line-height: 1.19;
  font-weight: 700;
}h2{
  font-size: var(--h2);
  line-height: 1.23;
}h3{
  font-size: var(--h3);
  line-height: 1.14;
}h4{
  font-size: var(--h4);
  line-height: 1.25;
}h5{
  font-size: var(--h5);
  line-height: 1.24;
}h6{
  font-size: var(--h6);
  line-height: 1.25;
}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{
    font-size: 38px;
  }h2{
    font-size: 32px;
  }h3{
    font-size: 28px;
  }h4{
    font-size: 24px;
  }h5{
    font-size: 18px;
  }}@media only screen and (max-width: 767px) {h1{
    font-size: 34px;
  }h2{
    font-size: 28px;
  }h3{
    font-size: 24px;
  }h4{
    font-size: 20px;
  }h5{
    font-size: 16px;
  }}h1, h2, h3{
  font-weight: var(--s-bold);
}h4, h5{
  font-weight: var(--s-bold);
}h6{
  font-weight: var(--s-bold);
}p{
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: var(--p-regular);
  color: var(--color-body);
  margin: 0 0 40px;
}@media only screen and (max-width: 767px) {p{
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 28px;
  }}p: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(--color-heading);
}var{
  font-family: "Poppins", sans-serif;
}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(--color-body);
}ul li a{
  text-decoration: none;
  color: var(--color-gray);
}ul li a:hover{
  color: var(--color-primary);
}ul ul{
  margin-bottom: 0;
}ol{
  margin-bottom: 30px;
}ol li{
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  color: var(--color-body);
  margin-top: 10px;
  margin-bottom: 10px;
}ol li a{
  color: var(--color-heading);
  text-decoration: none;
}ol li a:hover{
  color: var(--color-primary);
}ol ul{
  padding-left: 30px;
}.row{
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}*{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}article, aside, details, figcaption, figure, footer, header, nav, section, summary{
  display: block;
}audio, canvas, video{
  display: inline-block;
}audio:not([controls]){
  display: none;
  height: 0;
}[hidden]{
  display: none;
}a{
  color: var(--color-heading);
  text-decoration: none;
  outline: none;
}a:hover, a:focus, a:active{
  text-decoration: none;
  outline: none;
}a:focus{
  outline: none;
}address{
  margin: 0 0 24px;
}abbr[title]{
  border-bottom: 1px dotted;
}b, strong{
  font-weight: bold;
}mark{
  background: var(--color-primary);
  color: #ffffff;
}code, kbd, pre, samp{
  font-size: var(--font-size-b3);
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  color: var(--color-primary);
}kbd, ins{
  color: #ffffff;
}pre{
  font-family: "Raleway", sans-serif;
  font-size: var(--font-size-b3);
  margin: 10px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--color-body);
  background: var(--color-lighter);
}small{
  font-size: smaller;
}sub, sup{
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}sup{
  top: -0.5em;
}sub{
  bottom: -0.25em;
}dl{
  margin-top: 0;
  margin-bottom: 10px;
}dd{
  margin: 0 15px 15px;
}dt{
  font-weight: bold;
  color: var(--color-heading);
}menu, ol, ul{
  margin: 16px 0;
  padding: 0 0 0 40px;
}nav ul, nav ol{
  list-style: none;
  list-style-image: none;
}li > ul, li > ol{
  margin: 0;
}ol ul{
  margin-bottom: 0;
}img{
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}svg:not(:root){
  overflow: hidden;
}figure{
  margin: 0;
}form{
  margin: 0;
}fieldset{
  border: 1px solid var(--color-border);
  margin: 0 2px;
  min-width: inherit;
  padding: 0.35em 0.625em 0.75em;
}legend{
  border: 0;
  padding: 0;
  white-space: normal;
}button, input, select, textarea{
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}button, input{
  line-height: normal;
}button, html input[type=button], input[type=reset], input[type=submit]{
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}button[disabled], input[disabled]{
  cursor: default;
}input[type=checkbox], input[type=radio]{
  padding: 0;
}input[type=search]{
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  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;
}del{
  color: #333;
}ins{
  background: rgba(255, 47, 47, 0.4);
  text-decoration: none;
}hr{
  background-size: 4px 4px;
  border: 0;
  height: 1px;
  margin: 0 0 24px;
}table a, table a:link, table a:visited{
  text-decoration: underline;
}dt{
  font-weight: bold;
  margin-bottom: 10px;
}caption{
  caption-side: top;
}kbd{
  background: var(--heading-color);
}dfn, cite, em{
  font-style: italic;
}blockquote, q{
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none;
}blockquote:before, blockquote:after, q:before, q:after{
  content: none;
}blockquote{
  font-size: var(--font-size-b1);
  font-style: italic;
  font-weight: var(--p-light);
  margin: 24px 40px;
}blockquote blockquote{
  margin-right: 0;
}blockquote cite, blockquote small{
  font-size: var(--font-size-b3);
  font-weight: normal;
}blockquote strong, blockquote b{
  font-weight: 700;
}.tmp-section-gap{
  padding: 120px 0;
}@media only screen and (min-width: 768px) and (max-width: 991px) {.tmp-section-gap{
    padding: 80px 0;
  }}@media only screen and (max-width: 767px) {.tmp-section-gap{
    padding: 60px 0;
  }}.about-us-area {
  padding-top: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-area {
    padding-top: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-area {
    padding-top: 24px;
  }
}
  .tmp-section-gapTop{
  padding-top: 120px;
}@media only screen and (min-width: 768px) and (max-width: 991px) {.tmp-section-gapTop{
    padding-top: 80px;
  }}@media only screen and (max-width: 767px) {.tmp-section-gapTop{
    padding-top: 60px;
  }}.mb--0{
  margin-bottom: 0 !important;
}.mr--15{
  margin-right: 15px !important;
}.mt--20{
  margin-top: 20px !important;
}.mt--30{
  margin-top: 30px !important;
}.mb--30{
  margin-bottom: 30px !important;
}.mt--40{
  margin-top: 40px !important;
}.mb--50{
  margin-bottom: 50px !important;
}.mb--60{
  margin-bottom: 60px !important;
}.mt--100{
  margin-top: 100px !important;
}input, button, select, textarea{
  background: transparent;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease-out 0s;
  color: var(--color-body);
  width: 100%;
}input:focus, input:active, button:focus, button:active, select:focus, select:active, textarea:focus, textarea:active{
  outline: none;
  border-color: var(--color-primary);
}button, [type=button], [type=reset], [type=submit]{
  -webkit-appearance: button;
}input{
  height: 40px;
  padding: 0 15px;
}input[type=text], input[type=password], input[type=email], input[type=number], input[type=tel], textarea{
  font-size: var(--font-size-b2);
  font-weight: 400;
  height: auto;
  line-height: 28px;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 15px;
  outline: none;
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius);
  /* -- Placeholder -- */
}input[type=text]::placeholder, input[type=password]::placeholder, input[type=email]::placeholder, input[type=number]::placeholder, input[type=tel]::placeholder, textarea::placeholder{
  color: var(--body-color);
  /* Firefox */
  opacity: 1;
}input[type=text]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, textarea:-ms-input-placeholder{
  /* Internet Explorer 10-11 */
  color: var(--body-color);
}input[type=text]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, textarea::-ms-input-placeholder{
  /* Microsoft Edge */
  color: var(--body-color);
}input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=number]:focus, input[type=tel]:focus, textarea:focus{
  border-color: var(--color-primary);
}input[type=checkbox], input[type=radio]{
  opacity: 0;
  position: absolute;
}input[type=checkbox] ~ label, input[type=radio] ~ label{
  position: relative;
  font-size: 12px;
  line-height: 17px;
  color: var(--color-body);
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
}input[type=checkbox] ~ label::before, input[type=radio] ~ label::before{
  content: " ";
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid var(--color-body);
  border-radius: 2px;
  transition: all 0.3s;
}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 var(--color-body);
  border-left: 2px solid var(--color-body);
  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;
  background: var(--color-primary);
  color: var(--color-heading);
  font-weight: var(--p-medium);
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b3);
  height: 50px;
  border: 2px solid var(--color-primary);
  transition: var(--transition);
}input[type=submit]:hover{
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-5px);
}iframe{
  width: 100%;
}@media only screen and (max-width: 767px) {.container{
    padding-right: 15px;
    padding-left: 15px;
  }}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)";
}[data-overlay], [data-black-overlay], [data-white-overlay]{
  position: relative;
  z-index: 2;
}[data-overlay] > div, [data-overlay] > *, [data-black-overlay] > div, [data-black-overlay] > *, [data-white-overlay] > div, [data-white-overlay] > *{
  position: relative;
  z-index: 2;
}[data-overlay]:before, [data-black-overlay]:before, [data-white-overlay]:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}[data-overlay]:before{
  background: var(--color-primary);
}[data-black-overlay]:before{
  background-color: #000000;
}[data-white-overlay]:before{
  background-color: #ffffff;
}[data-overlay="1"]:before, [data-black-overlay="1"]:before, [data-white-overlay="1"]:before{
  opacity: 0.1;
}[data-overlay="2"]:before, [data-black-overlay="2"]:before, [data-white-overlay="2"]:before{
  opacity: 0.2;
}[data-overlay="3"]:before, [data-black-overlay="3"]:before, [data-white-overlay="3"]:before{
  opacity: 0.3;
}[data-overlay="4"]:before, [data-black-overlay="4"]:before, [data-white-overlay="4"]:before{
  opacity: 0.4;
}[data-overlay="5"]:before, [data-black-overlay="5"]:before, [data-white-overlay="5"]:before{
  opacity: 0.5;
}[data-overlay="6"]:before, [data-black-overlay="6"]:before, [data-white-overlay="6"]:before{
  opacity: 0.6;
}[data-overlay="7"]:before, [data-black-overlay="7"]:before, [data-white-overlay="7"]:before{
  opacity: 0.7;
}[data-overlay="8"]:before, [data-black-overlay="8"]:before, [data-white-overlay="8"]:before{
  opacity: 0.8;
}[data-overlay="9"]:before, [data-black-overlay="9"]:before, [data-white-overlay="9"]:before{
  opacity: 0.9;
}[data-overlay="10"]:before, [data-black-overlay="10"]:before, [data-white-overlay="10"]:before{
  opacity: 1;
}@media (prefers-reduced-motion: no-preference) {:root{
    scroll-behavior: auto;
  }}textarea:focus{
  border-radius: 5px;
  box-shadow: none !important;
}p{
  color: var(--color-body);
}a{
  transition: var(--transition);
}a:hover{
  color: var(--color-primary);
}ul{
  padding: 0;
  margin: 0;
}ul li{
  list-style: none;
}p.description{
  font-size: 16px;
  line-height: 28px;
  font-weight: var(--p-regular);
}.tmp-link-animation a{
  position: relative;
  display: inline-block;
}.tmp-link-animation a::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}.tmp-link-animation a:hover::after{
  transform-origin: bottom left;
  transform: scaleX(1);
}.image-box-hover img{
  transition: var(--transition);
}.image-box-hover:hover img{
  transform: scale(1.03);
}.tmp-round-action-btn{
  width: 40px;
  height: 40px;
  line-height: 41px;
  text-align: center;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 0;
  border: 0 none;
  display: block;
  color: #ffffff;
  font-size: 18px;
}.tmp-round-action-btn::after{
  background: var(--color-primary);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.4s;
  opacity: 0;
  transform: scale(0.8);
  border-radius: 100%;
  z-index: -1;
}.tmp-round-action-btn:hover::after{
  opacity: 1;
  transform: scale(1);
}@-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);
  }
}@-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);
  }
}@-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);
  }
}@-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);
  }
}@-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);
  }
}@-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;
  }
}@-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;
  }
}@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}.fadeInLeft{
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 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, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 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;
  }
}@-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;
  }
}@-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;
  }
}@keyframes rotateIn-2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}@-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;
  }
}@-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;
  }
}@-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);
  }
}@-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);
  }
}@-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);
  }
}@-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 fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}@keyframes moveright {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}@keyframes moveLeft {
  0% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  to {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}[data-sal]{
  transition-duration: 0.2s;
  transition-delay: 0s;
  transition-duration: var(--sal-duration, 0.2s);
  transition-delay: var(--sal-delay, 0s);
  transition-timing-function: var(--sal-easing, ease);
}[data-sal][data-sal-duration="200"]{
  transition-duration: 0.2s;
}[data-sal][data-sal-duration="250"]{
  transition-duration: 0.25s;
}[data-sal][data-sal-duration="300"]{
  transition-duration: 0.3s;
}[data-sal][data-sal-duration="350"]{
  transition-duration: 0.35s;
}[data-sal][data-sal-duration="400"]{
  transition-duration: 0.4s;
}[data-sal][data-sal-duration="450"]{
  transition-duration: 0.45s;
}[data-sal][data-sal-duration="500"]{
  transition-duration: 0.5s;
}[data-sal][data-sal-duration="550"]{
  transition-duration: 0.55s;
}[data-sal][data-sal-duration="600"]{
  transition-duration: 0.6s;
}[data-sal][data-sal-duration="650"]{
  transition-duration: 0.65s;
}[data-sal][data-sal-duration="700"]{
  transition-duration: 0.7s;
}[data-sal][data-sal-duration="750"]{
  transition-duration: 0.75s;
}[data-sal][data-sal-duration="800"]{
  transition-duration: 0.8s;
}[data-sal][data-sal-duration="850"]{
  transition-duration: 0.85s;
}[data-sal][data-sal-duration="900"]{
  transition-duration: 0.9s;
}[data-sal][data-sal-duration="950"]{
  transition-duration: 0.95s;
}[data-sal][data-sal-duration="1000"]{
  transition-duration: 1s;
}[data-sal][data-sal-duration="1050"]{
  transition-duration: 1.05s;
}[data-sal][data-sal-duration="1100"]{
  transition-duration: 1.1s;
}[data-sal][data-sal-duration="1150"]{
  transition-duration: 1.15s;
}[data-sal][data-sal-duration="1200"]{
  transition-duration: 1.2s;
}[data-sal][data-sal-duration="1250"]{
  transition-duration: 1.25s;
}[data-sal][data-sal-duration="1300"]{
  transition-duration: 1.3s;
}[data-sal][data-sal-duration="1350"]{
  transition-duration: 1.35s;
}[data-sal][data-sal-duration="1400"]{
  transition-duration: 1.4s;
}[data-sal][data-sal-duration="1450"]{
  transition-duration: 1.45s;
}[data-sal][data-sal-duration="1500"]{
  transition-duration: 1.5s;
}[data-sal][data-sal-duration="1550"]{
  transition-duration: 1.55s;
}[data-sal][data-sal-duration="1600"]{
  transition-duration: 1.6s;
}[data-sal][data-sal-duration="1650"]{
  transition-duration: 1.65s;
}[data-sal][data-sal-duration="1700"]{
  transition-duration: 1.7s;
}[data-sal][data-sal-duration="1750"]{
  transition-duration: 1.75s;
}[data-sal][data-sal-duration="1800"]{
  transition-duration: 1.8s;
}[data-sal][data-sal-duration="1850"]{
  transition-duration: 1.85s;
}[data-sal][data-sal-duration="1900"]{
  transition-duration: 1.9s;
}[data-sal][data-sal-duration="1950"]{
  transition-duration: 1.95s;
}[data-sal][data-sal-duration="2000"]{
  transition-duration: 2s;
}[data-sal][data-sal-delay="50"]{
  transition-delay: 0.05s;
}[data-sal][data-sal-delay="100"]{
  transition-delay: 0.1s;
}[data-sal][data-sal-delay="150"]{
  transition-delay: 0.15s;
}[data-sal][data-sal-delay="200"]{
  transition-delay: 0.2s;
}[data-sal][data-sal-delay="250"]{
  transition-delay: 0.25s;
}[data-sal][data-sal-delay="300"]{
  transition-delay: 0.3s;
}[data-sal][data-sal-delay="350"]{
  transition-delay: 0.35s;
}[data-sal][data-sal-delay="400"]{
  transition-delay: 0.4s;
}[data-sal][data-sal-delay="450"]{
  transition-delay: 0.45s;
}[data-sal][data-sal-delay="500"]{
  transition-delay: 0.5s;
}[data-sal][data-sal-delay="550"]{
  transition-delay: 0.55s;
}[data-sal][data-sal-delay="600"]{
  transition-delay: 0.6s;
}[data-sal][data-sal-delay="650"]{
  transition-delay: 0.65s;
}[data-sal][data-sal-delay="700"]{
  transition-delay: 0.7s;
}[data-sal][data-sal-delay="750"]{
  transition-delay: 0.75s;
}[data-sal][data-sal-delay="800"]{
  transition-delay: 0.8s;
}[data-sal][data-sal-delay="850"]{
  transition-delay: 0.85s;
}[data-sal][data-sal-delay="900"]{
  transition-delay: 0.9s;
}[data-sal][data-sal-delay="950"]{
  transition-delay: 0.95s;
}[data-sal][data-sal-delay="1000"]{
  transition-delay: 1s;
}[data-sal][data-sal-easing=linear]{
  transition-timing-function: linear;
}[data-sal][data-sal-easing=ease]{
  transition-timing-function: ease;
}[data-sal][data-sal-easing=ease-in]{
  transition-timing-function: ease-in;
}[data-sal][data-sal-easing=ease-out]{
  transition-timing-function: ease-out;
}[data-sal][data-sal-easing=ease-in-out]{
  transition-timing-function: ease-in-out;
}[data-sal][data-sal-easing=ease-in-cubic]{
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}[data-sal][data-sal-easing=ease-out-cubic]{
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}[data-sal][data-sal-easing=ease-in-out-cubic]{
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}[data-sal][data-sal-easing=ease-in-circ]{
  transition-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.335);
}[data-sal][data-sal-easing=ease-out-circ]{
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}[data-sal][data-sal-easing=ease-in-out-circ]{
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}[data-sal][data-sal-easing=ease-in-expo]{
  transition-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
}[data-sal][data-sal-easing=ease-out-expo]{
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}[data-sal][data-sal-easing=ease-in-out-expo]{
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}[data-sal][data-sal-easing=ease-in-quad]{
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}[data-sal][data-sal-easing=ease-out-quad]{
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}[data-sal][data-sal-easing=ease-in-out-quad]{
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}[data-sal][data-sal-easing=ease-in-quart]{
  transition-timing-function: cubic-bezier(0.895, 0.03, 0.685, 0.22);
}[data-sal][data-sal-easing=ease-out-quart]{
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}[data-sal][data-sal-easing=ease-in-out-quart]{
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}[data-sal][data-sal-easing=ease-in-quint]{
  transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}[data-sal][data-sal-easing=ease-out-quint]{
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}[data-sal][data-sal-easing=ease-in-out-quint]{
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}[data-sal][data-sal-easing=ease-in-sine]{
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}[data-sal][data-sal-easing=ease-out-sine]{
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}[data-sal][data-sal-easing=ease-in-out-sine]{
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}[data-sal][data-sal-easing=ease-in-back]{
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}[data-sal][data-sal-easing=ease-out-back]{
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}[data-sal][data-sal-easing=ease-in-out-back]{
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}[data-sal|=fade]{
  opacity: 0;
  transition-property: opacity;
}[data-sal|=slide]{
  opacity: 0;
  transition-property: opacity, transform;
}[data-sal=slide-up]{
  transform: translateY(20%);
}[data-sal=slide-down]{
  transform: translateY(-20%);
}[data-sal=slide-left]{
  transform: translateX(20%);
}[data-sal=slide-right]{
  transform: translateX(-20%);
}[data-sal|=zoom]{
  opacity: 0;
  transition-property: opacity, transform;
}[data-sal=zoom-in]{
  transform: scale(0.5);
}[data-sal=zoom-out]{
  transform: scale(1.1);
}[data-sal|=flip]{
  backface-visibility: hidden;
  transition-property: transform;
}[data-sal=flip-left]{
  transform: perspective(2000px) rotateY(-91deg);
}[data-sal=flip-right]{
  transform: perspective(2000px) rotateY(91deg);
}[data-sal=flip-up]{
  transform: perspective(2000px) rotateX(-91deg);
}[data-sal=flip-down]{
  transform: perspective(2000px) rotateX(91deg);
}.logo img{
  max-width: 120px;
}.logo img.logo-white{
  display: none;
}.header-one{
  padding: 10px 0;
}@media only screen and (min-width: 992px) and (max-width: 1199px) {.header-one{
    padding: 15px 0;
  }}@media only screen and (min-width: 768px) and (max-width: 991px) {.header-one{
    padding: 15px 0;
  }}@media only screen and (max-width: 767px) {.header-one{
    padding: 15px 0;
  }}.header-one .header-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}.header-one .header-content .logo{
  display: block;
}.header-one .header-content .logo img{
  max-width: max-content;
}@media only screen and (max-width: 767px) {.header-one .header-content .logo img{
    max-width: 135px;
  }}.header-one .tmp-header-right{
  display: flex;
  align-items: center;
  gap: 25px;
}.header-one.header--transparent{
  position: absolute;
  width: 100%;
  z-index: 100;
}.header--sticky.sticky{
  position: fixed !important;
  top: 0;
  display: block;
  backdrop-filter: blur(9px);
  width: 100%;
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.0509803922);
  background: var(--color-gray-2);
  z-index: 999;
  margin: auto;
  display: flex;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
}@media only screen and (min-width: 992px) and (max-width: 1199px) {.header--sticky.sticky{
    padding: 15px 30px;
  }}@media only screen and (min-width: 768px) and (max-width: 991px) {.header--sticky.sticky{
    padding: 10px 30px;
  }}@media only screen and (max-width: 767px) {.header--sticky.sticky{
    padding: 10px 0;
  }}.tmp-mainmenu-nav .tmp-mainmenu{
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}.tmp-mainmenu-nav .tmp-mainmenu > li > a{
  color: var(--color-heading);
  font-weight: 700;
}.tmp-mainmenu-nav .tmp-mainmenu > li > a:hover{
  color: var(--color-primary) !important;
}.tmp-mainmenu-nav .tmp-mainmenu > li a:hover{
  color: var(--color-primary);
}.tmp-mainmenu-nav .tmp-mainmenu > li{
  position: relative;
  margin: 10px 4px;
}.tmp-mainmenu-nav .tmp-mainmenu > li > a{
  padding: 4px 12px !important;
  color: var(--color-heading) !important;
  position: relative;
  display: inline-block;
}.tmp-mainmenu-nav .tmp-mainmenu > li > a::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.7);
  left: 0;
  background: var(--color-primary);
  width: 100%;
  height: 100%;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: -1;
}.tmp-mainmenu-nav .tmp-mainmenu > li > a i{
  transition: var(--transition);
  font-size: 10px;
  margin-left: 3px;
}.tmp-mainmenu-nav .tmp-mainmenu > li > a.active{
  color: var(--color-primary) !important;
}.tmp-mainmenu-nav .tmp-mainmenu > li > a.active::after{
  opacity: 0.1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}.tmp-mainmenu-nav .tmp-mainmenu > li:hover > a, .tmp-mainmenu-nav .tmp-mainmenu > li.current > a{
  color: var(--color-primary) !important;
}.tmp-mainmenu-nav .tmp-mainmenu > li:hover > a::after, .tmp-mainmenu-nav .tmp-mainmenu > li.current > a::after{
  opacity: 0.1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}.tmp-mainmenu-nav .tmp-mainmenu > li:hover > a i, .tmp-mainmenu-nav .tmp-mainmenu > li.current > a i{
  transform: rotate(180deg);
}.social-wrapper .subtitle{
  color: var(--color-heading);
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  display: block;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}.tmp-popup-mobile-menu{
  z-index: 9999;
  position: fixed;
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}.tmp-popup-mobile-menu .inner{
  width: 320px;
  z-index: 999;
  position: absolute;
  background-color: var(--color-gray-2);
  height: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  opacity: 0;
  left: -150px;
  transition: all 0.5s ease-out;
  padding: 15px 20px;
}@media only screen and (max-width: 479px) {.tmp-popup-mobile-menu .inner{
    width: 310px;
    padding: 10px;
  }}.tmp-popup-mobile-menu .header-top{
  display: flex;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}.tmp-popup-mobile-menu .header-top .logo a img{
  max-height: 45px;
}.tmp-popup-mobile-menu .header-top .close-menu .close-button{
  background: var(--color-secondary);
  border: 0 none;
  color: var(--color-white);
  width: 40px;
  height: 40px;
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}.tmp-popup-mobile-menu .tmp-mainmenu{
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 0;
}.tmp-popup-mobile-menu .tmp-mainmenu li{
  display: block;
  margin: 0;
  padding: 8px 0;
}.tmp-popup-mobile-menu .tmp-mainmenu li a{
  color: var(--color-body);
  position: relative;
  transition: var(--transition);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--font-secondary);
  margin: 0;
  display: block;
  font-weight: 500;
  background: transparent;
}.tmp-popup-mobile-menu .tmp-mainmenu li a i{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 15px;
}.tmp-popup-mobile-menu .tmp-mainmenu li a.open i::before{
  content: "";
  font-weight: 400;
}.tmp-popup-mobile-menu .tmp-mainmenu li + li{
  border-top: 1px solid var(--color-border);
}.tmp-popup-mobile-menu.active{
  visibility: visible;
  opacity: 1;
}.tmp-popup-mobile-menu.active .inner{
  opacity: 1;
  left: 0;
  overflow-y: auto;
}.tmp-sidebar-area{
  width: 400px;
  position: fixed;
  right: 0;
  top: 0;
  background: var(--color-gray-2);
  z-index: 99999;
  height: 100%;
  transform: translate3d(100%, 0, 0);
  overflow: hidden;
  overscroll-behavior: contain;
  transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s step-end;
}.tmp-sidebar-area .inner{
  position: relative;
  overflow: hidden;
  height: 100%;
  overflow-y: auto;
}.tmp-sidebar-area .inner .top-area{
  padding: 16px 20px;
  background: #151515;
  display: flex;
  align-items: center;
  justify-content: space-between;
}.tmp-sidebar-area .inner .image-area-feature img{
  border-radius: 0;
}.tmp-sidebar-area .inner .content-wrapper{
  padding: 30px;
}.tmp-sidebar-area .inner .content-wrapper .title{
  color: var(--color-heading);
  line-height: 1.4;
}.tmp-sidebar-area .inner .content-wrapper .disc{
  font-family: var(--font-secondary);
  color: var(--color-gray);
  font-size: 16px;
  font-weight: 400;
}.tmp-sidebar-area.tmp_side_bar_open{
  transform: translate3d(0, 0, 0);
  transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s step-start;
}.tmp-sidebar-area .short-contact-area .single-contact{
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}.tmp-sidebar-area .short-contact-area .single-contact i{
  height: 45px;
  width: 45px;
  background: transparent;
  display: flex;
  align-items: center;
  color: var(--color-heading);
  justify-content: center;
  font-size: 18px;
  border-radius: 5px;
  border: 1px solid var(--color-border);
}.tmp-sidebar-area .short-contact-area .single-contact .information span{
  display: block;
  color: var(--color-primary);
  font-family: var(--font-primary) !important;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 600;
}.tmp-sidebar-area .short-contact-area .single-contact .information .number{
  color: var(--color-heading);
  font-family: var(--font-secondary);
}.overlay_close_side_menu{
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1091;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: url(../images/icons/cursor-x.webp), pointer;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
}.sidemenu-active .overlay_close_side_menu{
  opacity: 1;
  visibility: visible;
}:root{
  --duration-announcement-bar: 250ms;
  --duration-medium: 300ms;
  --duration-long: 500ms;
  --duration-extra-long: 600ms;
  --duration-extra-longer: 750ms;
  --duration-extended: 3s;
  --animation-slide-in: slideIn var(--duration-extra-long) ease forwards;
  --animation-fade-in: fadeInUp var(--duration-extra-long) ease forwards;
  --animation-zoom-in: zoomIn var(--duration-extra-longer) ease forwards;
  --animation-zoom-out: zoomOut var(--duration-extra-longer) ease forwards;
}@media (prefers-reduced-motion: no-preference) {@keyframes animateAmbient {
    0% {
      transform: rotate(0deg) translateX(1em) rotate(0deg) scale(1.2);
    }
    100% {
      transform: rotate(360deg) translateX(1em) rotate(-360deg) scale(1.2);
    }
  }.tmp-scroll-trigger[animation-end]{
    opacity: 1;
    animation: none !important;
    transition: none;
  }@keyframes slideIn {
    from {
      transform: translateY(1rem);
      opacity: 0.01;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }@keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale(1.05);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }@keyframes zoomOut {
    from {
      opacity: 0;
      transform: scale(1);
    }
    to {
      opacity: 1;
      transform: scale(1.05);
    }
  }}@keyframes slideIn {
  from {
    transform: translateY(2rem);
    opacity: 0.01;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}@keyframes fadeIn {
  from {
    opacity: 0.01;
  }
  to {
    opacity: 1;
  }
}.animation-order-1{
  --animation-order: 1;
}.animation-order-2{
  --animation-order: 2;
}.animation-order-3{
  --animation-order: 3;
}.animation-order-4{
  --animation-order: 4;
}.animation-order-5{
  --animation-order: 5;
}.animation-order-6{
  --animation-order: 6;
}@keyframes ripple {
  0% {
    transform: scale(1);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 10px 0px;
  }
  50% {
    transform: scale(1.3);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 30px 20px 0px;
  }
  100% {
    transform: scale(1);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 10px 0px;
  }
}@keyframes color-change {
  0% {
    fill: var(--logo-color);
  }
  50% {
    fill: white;
  }
  100% {
    fill: var(--logo-color);
  }
}.rpp-banner-two-area{
  padding-top: 106px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}.rpp-banner-two-area::after, .rpp-banner-two-area::before{
  content: " ";
  opacity: 0.3;
  background: #FF014F;
  position: absolute;
  width: 611px;
  height: 611px;
  border-radius: 100px;
  filter: blur(300px);
  z-index: -1;
}.rpp-banner-two-area::before{
  top: -73px;
  left: -292px;
}.rpp-banner-two-area::after{
  top: -73px;
  right: -292px;
}.rpp-banner-two-area .banner-shape-two{
  position: absolute;
  top: 0;
  opacity: 0.5;
  left: 0;
  z-index: -1;
}.banner-two-main-wrapper{
  padding-bottom: 94px;
}@media only screen and (min-width: 768px) and (max-width: 991px) {.banner-two-main-wrapper{
    padding-bottom: 0;
  }}@media only screen and (max-width: 767px) {.banner-two-main-wrapper{
    padding-bottom: 0;
  }}.banner-two-main-wrapper .inner .title{
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 54px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
}@media only screen and (min-width: 768px) and (max-width: 991px) {.banner-two-main-wrapper .inner .title{
    font-size: 44px;
  }}@media only screen and (max-width: 767px) {.banner-two-main-wrapper .inner .title{
    font-size: 32px;
  }}@media only screen and (max-width: 575px) {.banner-two-main-wrapper .inner .title{
    font-size: 28px;
  }}.banner-two-main-wrapper .inner .title span{
  color: var(--color-primary);
}.banner-two-main-wrapper .inner .disc{
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 0;
  margin-top: 16px;
}@media only screen and (max-width: 767px) {.banner-two-main-wrapper .inner .disc{
    font-size: 18px;
    line-height: 30px;
  }}.banner-two-main-wrapper .inner .disc span{
  color: var(--color-primary);
}.banner-two-main-wrapper .inner .button-area-banner-two{
  margin-top: 39px;
}.banner-two-main-wrapper .banner-right-content .main-img{
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
}.banner-two-main-wrapper .banner-right-content .main-img::after{
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0) 46.14%, #060606 100%);
  width: 100%;
  height: 580.327px;
  z-index: 0;
}.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1{
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  position: absolute;
  top: 285px;
  z-index: -1;
}@media (min-width: 768px) {.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1{
    font-size: 100px;
    line-height: 110px;
  }}@media (min-width: 992px) {.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1{
    font-size: 90px;
    line-height: 105px;
  }}@media (min-width: 1200px) {.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1{
    font-size: 110px;
    line-height: 120px;
  }}.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2{
  -webkit-text-stroke: 1px var(--color-heading);
  color: transparent;
  font-family: var(--font-primary);
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  position: absolute;
  bottom: 130px;
  z-index: 1;
  margin-bottom: 0;
}@media (min-width: 768px) {.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2{
    font-size: 75px;
    line-height: 85px;
  }}@media (min-width: 768px) {.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2{
    font-size: 100px;
    line-height: 110px;
  }}@media (min-width: 992px) {.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2{
    font-size: 66px;
    line-height: 105px;
  }}@media (min-width: 1200px) {.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2{
    font-size: 110px;
    line-height: 120px;
  }}.banner-two-main-wrapper .banner-right-content .main-img .logo-under-img-wrap{
  position: absolute;
  width: 100px;
  left: 0;
  bottom: 0;
  z-index: 2;
}@media (min-width: 992px) {.banner-two-main-wrapper .banner-right-content .main-img .logo-under-img-wrap{
    width: 170px;
    left: -80px;
    bottom: -74px;
  }}.banner-two-main-wrapper .banner-right-content .main-img .logo-under-img-wrap .logo-under-img{
  position: relative;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  animation: rotateIn-2 20s linear infinite;
  transform-origin: center center;
}.banner-two-main-wrapper .banner-right-content .main-img .logo-under-img-wrap .logo-under-img-2{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}.banner-two-main-wrapper .banner-right-content .main-img .benner-two-bg-red-img{
  position: absolute;
  bottom: 0px;
  z-index: -1;
}@keyframes banner-cycle-animation {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}.text-para-doc-wrap{
  position: relative;
}.text-para-doc-wrap .text-para-documents{
  color: var(--color-heading);
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 700;
}@media (min-width: 576px) {.text-para-doc-wrap .text-para-documents{
    font-size: 48px;
    line-height: 1.25;
  }}@media only screen and (min-width: 768px) and (max-width: 991px) {.text-para-doc-wrap .text-para-documents{
    font-size: 40px;
  }}@media only screen and (max-width: 767px) {.text-para-doc-wrap .text-para-documents{
    font-size: 25px;
    line-height: 1.5;
  }}.text-para-doc-wrap .text-para-documents span{
  color: var(--color-primary);
}.text-para-doc-wrap .right-bg-text-para{
  position: absolute;
  right: -150px;
  top: 0;
  display: none;
  pointer-events: none;
}@media (min-width: 1200px) {.text-para-doc-wrap .right-bg-text-para{
    display: none;
  }}@media only screen and (min-width: 1200px) and (max-width: 1599px) {.text-para-doc-wrap .right-bg-text-para{
    right: 0;
  }}.text-para-doc-wrap .left-bg-text-para{
  position: absolute;
  left: -150px;
  top: 0;
  display: none;
  pointer-events: none;
}@media (min-width: 1200px) {.text-para-doc-wrap .left-bg-text-para{
    display: none;
  }}@media only screen and (min-width: 1200px) and (max-width: 1599px) {.text-para-doc-wrap .left-bg-text-para{
    left: 0;
  }}.up-down{
  -webkit-animation: up-down 2s infinite alternate;
  animation: up-down 2s infinite alternate;
}@-webkit-keyframes up-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}.up-down-2{
  -webkit-animation: up-down-2 2s infinite alternate;
  animation: up-down-2 2s infinite alternate;
}@-webkit-keyframes up-down-2 {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}@keyframes up-dow-2 {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg) scaleY(1.1);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg) scaleY(1.1);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    transform: rotateX(-40deg) scaleY(1.1);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}@keyframes ripple-2 {
  0% {
    transform: scale(1);
    box-shadow: rgba(124, 124, 124, 0.3) 0px 10px 10px 0px;
  }
  50% {
    transform: scale(1.3);
    box-shadow: rgba(124, 124, 124, 0.3) 0px 30px 20px 0px;
  }
  100% {
    transform: scale(1);
    box-shadow: rgba(128, 128, 128, 0.3) 0px 10px 10px 0px;
  }
}@keyframes ripple-2 {
  0% {
    transform: scale(1);
    box-shadow: rgba(185, 185, 185, 0.3) 0px 10px 10px 0px;
  }
  50% {
    transform: scale(1.3);
    box-shadow: rgba(185, 185, 185, 0.3) 0px 30px 20px 0px;
  }
  100% {
    transform: scale(1);
    box-shadow: rgba(185, 185, 185, 0.3) 0px 10px 10px 0px;
  }
}.section-head{
  text-align: center;
}.section-head .section-sm{
  display: inline-flex;
  max-width: 80%;
}@media only screen and (max-width: 575px) {.section-head .section-sm{
    max-width: 100%;
  }}@media (min-width: 1200px) {.section-head .section-sm{
    max-width: 50%;
  }}@media only screen and (min-width: 992px) and (max-width: 1199px) {.section-head .section-sm{
    max-width: 70%;
  }}@media only screen and (min-width: 768px) and (max-width: 991px) {.section-head .section-sm{
    max-width: 90%;
  }}@media only screen and (max-width: 767px) {.section-head .section-sm{
    max-width: 80%;
  }}.section-head.text-align-left{
  text-align: left;
}.section-head .section-sub-title{
  font-size: 20px;
  font-weight: var(--s-bold);
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: var(--font-secondary);
  display: flex;
  align-items: center;
  gap: 7px;
}.section-head .section-sub-title img{
  margin-right: 8px;
}.section-head .section-sub-title span.subtitle{
  font-family: var(--font-secondary);
}.section-head .title{
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0;
}@media only screen and (min-width: 768px) and (max-width: 991px) {.section-head .title{
    font-size: 42px;
  }}@media only screen and (max-width: 767px) {.section-head .title{
    font-size: 32px;
  }.section-head .title br{
    display: none;
  }}@media only screen and (max-width: 575px) {.section-head .title{
    font-size: 28px;
    line-height: 1.4;
  }.section-head .title br{
    display: none;
  }}@media only screen and (max-width: 479px) {.section-head .title{
    font-size: 22px;
  }}.section-head .description{
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-secondary);
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
}@media only screen and (max-width: 767px) {.section-head .description br{
    display: none;
  }}.section-head .subtitle{
  font-weight: var(--s-bold);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}.section-head .section-sub-title.center-title{
  justify-content: center;
}.custom-title{
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  text-transform: capitalize;
  position: relative;
}.custom-title span{
  margin-left: 20px;
}.custom-title span img{
  opacity: 0.3;
}.social-link{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}.social-link a{
  width: 40px;
  height: 40px;
  color: var(--color-heading);
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  z-index: 1;
  background: rgba(255, 255, 255, 0.062745098);
  border-radius: 100%;
  font-size: 14px;
}.social-link a::after{
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: var(--color-primary);
  opacity: 0.06;
  transform: scale(0);
  transition: all 0.4s ease;
  z-index: -1;
}.social-link a:hover{
  color: #ffffff;
}.social-link a:hover::after{
  opacity: 1;
  transform: scale(1);
}.tmp-btn{
  padding: 0 30px;
  background: var(--color-primary);
  height: 60px;
  line-height: 60px;
  color: var(--color-white);
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
  border: 0 none;
  outline: none;
  text-decoration: none;
  font-family: var(--font-secondary);
  text-transform: capitalize;
}.tmp-btn.btn-border{
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-body);
  line-height: 57px;
}.tmp-btn.btn-border:hover{
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}.tmp-btn.hover-icon-reverse .icon-reverse-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
}.tmp-btn.hover-icon-reverse .btn-text{
  display: inline-block;
  transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
  margin-inline-start: -23px;
}.tmp-btn.hover-icon-reverse .btn-icon{
  display: inline-block;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
  transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
}.tmp-btn.hover-icon-reverse .btn-icon + .btn-icon{
  margin-inline-end: 0;
  margin-inline-start: 8px;
  display: inline-block;
  margin-inline-start: 0;
  margin-inline-end: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition-delay: 0s;
  order: -2;
}.tmp-btn.hover-icon-reverse .btn-icon + .btn-icon i{
  padding-left: 0;
  padding-right: 6px;
}.tmp-btn:hover{
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translate3d(0, -2px, 0);
}.tmp-btn:hover.hover-icon-reverse .btn-text{
  transition-delay: 0.1s;
  transform: translateX(23px);
}.tmp-btn:hover.hover-icon-reverse .btn-icon{
  opacity: 0;
  transition-delay: 0s;
  transform: translateX(10px);
}.tmp-btn:hover.hover-icon-reverse .btn-icon + .btn-icon{
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.225s;
}.tmp-btn.btn-md{
  padding: 0 25px;
  height: 50px;
  line-height: 48px;
  font-size: 14px;
}@media only screen and (max-width: 767px) {.tmp-btn.btn-md{
    padding: 0 15px;
    line-height: 51px;
  }}.tmp-btn.btn-md.btn-border{
  line-height: 47px;
}.tmp-btn i{
  padding-left: 6px;
  display: inline-block;
  top: 2px;
  position: relative;
  font-size: 17px;
}.radius-round{
  border-radius: 500px !important;
}.img-box{
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}@media (min-width: 568px) {.img-box.v2{
    height: auto;
  }}@media (min-width: 1200px) {.img-box.v2{
    height: 400px;
  }}@media (min-width: 1400px) {.img-box.v2{
    height: 447px;
  }}.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1{
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  position: absolute;
  top: 285px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: -1;
}.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2{
  -webkit-text-stroke: 1px var(--color-heading);
  color: transparent;
  font-family: var(--font-primary);
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  position: absolute;
  bottom: 130px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
  margin-bottom: 0;
}.banner-two-main-wrapper .banner-right-content .main-img .logo-under-img-wrap .logo-under-img{
  position: relative;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  animation: rotateIn-2 20s linear infinite;
  transform-origin: center center;
}@keyframes wave-front {
  100% {
    transform: translateX(-50%);
  }
}@keyframes wave-back {
  100% {
    transform: translateX(50%);
  }
}@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}.custom-column-grid .row{
  --bs-gutter-x: 5rem;
  --bs-gutter-y: 4rem;
}@media only screen and (min-width: 992px) and (max-width: 1199px) {.custom-column-grid .row{
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
  }}@media only screen and (min-width: 768px) and (max-width: 991px) {.custom-column-grid .row{
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
  }}@media only screen and (max-width: 767px) {.custom-column-grid .row{
    --bs-gutter-x: 15px;
    --bs-gutter-y: 30px;
  }}.latest-portfolio-card-style-two{
  border-radius: 20px;
  background: var(--color-gray-2);
  padding: 20px;
  height: 100%;
}@media (min-width: 576px) {.latest-portfolio-card-style-two{
    padding: 20px;
  }}@media only screen and (max-width: 575px) {.latest-portfolio-card-style-two{
    padding: 10px;
  }}.latest-portfolio-card-style-two .portfoli-card-img img{
  border-radius: 10px;
}.latest-portfolio-card-style-two .portfolio-card-title{
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 13px;
}@media only screen and (max-width: 767px) {.latest-portfolio-card-style-two .portfolio-card-title{
    font-size: 26px;
    line-height: 34px;
  }}.latest-portfolio-card-style-two .portfolio-card-content-wrap{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}.tag-items ul{
  display: flex;
  align-items: center;
  gap: 10px;
}@media only screen and (max-width: 767px) {.tag-items ul{
    gap: 6px;
    flex-wrap: wrap;
  }}.tag-items ul li{
  margin: 0;
  margin-bottom: 6px;
}.tag-items ul li a{
  border-radius: 500px;
  border: 2px solid var(--color-border);
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding: 5px 15px;
  transition: var(--transition);
}.tag-items ul li a:hover{
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}.latest-portfolio-tabs-area .nav-tabs{
  border-bottom: 1px solid none;
  border: none;
}.latest-portfolio-tabs-area .nav{
  display: flex;
  justify-content: center;
  gap: 10px;
}@media (min-width: 776px) {.latest-portfolio-tabs-area .nav{
    gap: 15px;
  }}.latest-portfolio-tabs-area .nav li{
  margin: 0;
}.latest-portfolio-tabs-area .nav .nav-link{
  padding: 6px 25px;
  border-radius: 999px;
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  background: var(--color-gray-2);
  border: none;
}.latest-portfolio-tabs-area .nav .nav-link.active{
  background: var(--color-primary) !important;
  color: #ffffff !important;
  border: none;
}.latest-portfolio-tabs-area .tab-content{
  margin-top: 60px;
  position: relative;
  z-index: 1;
}.latest-portfolio-tabs-area .tab-content.bg-blur-style-one::after, .latest-portfolio-tabs-area .tab-content.bg-blur-style-one::before{
  content: " ";
  position: absolute;
  width: 304px;
  height: 304px;
  opacity: 0.6;
  filter: blur(280px);
  z-index: -1;
}.latest-portfolio-tabs-area .tab-content.bg-blur-style-one::after{
  left: 0;
  bottom: 172px;
}.latest-portfolio-tabs-area .tab-content.bg-blur-style-one::before{
  right: 0;
  bottom: 65%;
}.latest-portfolio-tabs-area .tab-content.bg-blur-style-one::after, .latest-portfolio-tabs-area .tab-content.bg-blur-style-one::before{
  background: var(--color-primary);
}.latest-portfolio-tabs-area .tab-content img{
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}.about-us-section-card .about-us-card{
  border-radius: 20px;
  background: var(--color-gray-2);
  padding: 40px 30px;
  height: 100%;
}.about-us-section-card .about-us-card .card-head{
  display: flex;
  align-items: center;
  gap: 14px;
}.about-us-section-card .about-us-card .card-head .logo-img{
  width: 45px;
  height: 45px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  min-width: 45px;
}.about-us-section-card .about-us-card .card-head .logo-img i{
  font-size: 18px;
  color: var(--color-white);
}.about-us-section-card .about-us-card .card-head .card-title{
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0;
}.about-us-section-card .about-us-card .card-para{
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 11px;
}.about-us-left-content-wrap{
  position: relative;
  z-index: 1;
}@media (min-width: 576px) {.about-us-left-content-wrap{
    padding-left: 110px;
    padding-right: 72px;
  }}@media (min-width: 992px) and (max-width: 1200px) {.about-us-left-content-wrap{
    padding-left: 10px;
    padding-right: 10px;
  }}@media only screen and (max-width: 767px) {.about-us-left-content-wrap{
    padding: 0;
  }}.about-us-left-content-wrap.bg-vactor-one::after{
  content: " ";
  position: absolute;
  left: 0;
  top: 197px;
  background: linear-gradient(0deg, rgba(255, 1, 79, 0) 15.49%, var(--color-primary) 100%);
  filter: blur(2px);
  border-radius: 100%;
  width: 410px;
  height: 410px;
  z-index: -1;
}@media only screen and (min-width: 768px) and (max-width: 991px) {.about-us-left-content-wrap.bg-vactor-one::after{
    width: 250px;
    height: 250px;
  }}@media only screen and (max-width: 767px) {.about-us-left-content-wrap.bg-vactor-one::after{
    width: 200px;
    height: 200px;
  }}.about-us-left-content-wrap .years-of-experience-card{
  border-radius: 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  background: rgba(22, 22, 22, 0.3);
  box-shadow: 15px 26.023px 50px 0px rgba(253, 196, 72, 0.025);
  backdrop-filter: blur(35px);
  padding: 64px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}@media only screen and (min-width: 768px) and (max-width: 991px) {.about-us-left-content-wrap .years-of-experience-card{
    padding: 40px 30px;
  }}@media only screen and (max-width: 767px) {.about-us-left-content-wrap .years-of-experience-card{
    padding: 40px 30px;
  }}.about-us-left-content-wrap .years-of-experience-card .card-title{
  margin-bottom: 0.5rem;
  font-size: 80px;
}@media only screen and (min-width: 768px) and (max-width: 991px) {.about-us-left-content-wrap .years-of-experience-card .card-title{
    font-size: 60px;
  }}@media only screen and (max-width: 767px) {.about-us-left-content-wrap .years-of-experience-card .card-title{
    font-size: 60px;
  }}.about-us-left-content-wrap .years-of-experience-card .card-para{
  color: var(--color-heading);
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  text-transform: capitalize;
  text-align: center;
  margin-top: 20px;
}@media only screen and (max-width: 767px) {.about-us-left-content-wrap .years-of-experience-card .card-para{
    font-size: 32px;
    line-height: 42px;
    margin-top: 10px;
  }}.about-us-left-content-wrap .design-card{
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  background: rgba(22, 22, 22, 0.3);
  box-shadow: 15px 26.023px 50px 0px rgba(253, 196, 72, 0.025);
  backdrop-filter: blur(35px);
  padding: 30px;
  margin-top: 30px;
}@media only screen and (max-width: 767px) {.about-us-left-content-wrap .design-card{
    gap: 15px;
    padding: 30px 15px;
  }}.about-us-left-content-wrap .design-card .design-card-img{
  width: auto;
  height: auto;
  min-width: auto;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
}@media only screen and (max-width: 767px) {
  .about-us-left-content-wrap .design-card .design-card-img{
    width: auto;
    height: auto;
    min-width: auto;
    border-radius: 0;
  }
}
  }}.about-us-left-content-wrap .design-card .design-card-img i{
  color: var(--color-primary);
  font-size: 48px;
  filter: drop-shadow(0 0 10px rgba(255, 1, 79, 0.22));
}
}@media only screen and (max-width: 767px) {
  .about-us-left-content-wrap .design-card .design-card-img i{
    font-size: 34px;
  }
}
  }}@media only screen and (max-width: 767px) {.about-us-left-content-wrap .design-card .design-card-img img{
    max-height: 30px;
  }}.about-us-left-content-wrap .design-card .card-info p{
  color: var(--color-heading);
}.resume-widget .resume-single{
  position: relative;
  padding: 20px 30px;
  margin-bottom: 30px;
  border-radius: 20px;
  background: var(--color-gray-2);
  z-index: 10;
  overflow: hidden;
}.resume-widget .resume-single::after{
  transition: all 0.8s ease;
  content: " ";
  position: absolute;
  bottom: -313px;
  right: -407px;
  width: 474px;
  height: 474px;
  border-radius: 100%;
  filter: blur(227px);
  opacity: 0;
  pointer-events: none;
}.resume-widget .resume-single:hover::after{
  background: var(--color-primary);
  opacity: 1;
}.resume-section .section-title i{
  color: var(--color-primary);
  margin-right: 15px;
}.resume-widget .resume-single:hover:before{
  opacity: 1;
}.resume-widget .resume-single .time{
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  gap: 12px;
  display: flex;
  align-items: center;
}.resume-widget .resume-single .time i{
  opacity: 1;
}.resume-widget .resume-single .time i::after{
  display: none;
}.resume-widget .resume-single .time i::before{
  top: -10px;
}.resume-widget .resume-single .institute{
  color: var(--color-gray);
}.resume-widget .resume-single:hover .time{
  color: var(--color-primary);
}.resume-widget .resume-single .resume-title{
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 8px;
}@media only screen and (min-width: 768px) and (max-width: 991px) {.resume-widget .resume-single .resume-title{
    font-size: 20px;
  }}@media only screen and (max-width: 767px) {.resume-widget .resume-single .resume-title{
    font-size: 20px;
  }}.resume-section .section-title i{
  font-family: "fontawesome";
}.progress-charts{
  overflow: hidden;
}.progress-charts + .progress-charts{
  margin-top: 30px;
}.progress-charts h6.heading{
  margin-bottom: 15px;
  color: var(--color-heading);
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-secondary);
  letter-spacing: 1px;
}.progress-charts h6.heading span.percent-label{
  color: var(--color-heading);
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 400;
  font-family: var(--font-secondary);
}.progress-charts .progress{
  height: 13px;
  overflow: visible;
  font-size: 14px;
  border-radius: 10px;
  padding: 3px;
  background: var(--color-gray-2);
}.progress-charts .progress .progress-bar{
  overflow: visible;
  position: relative;
  border-radius: 14px;
  background: var(--color-primary);
}.progress-charts .progress .progress-bar span.percent-label{
  position: absolute;
  right: 0;
  top: -37px;
  font-weight: 400;
  color: var(--color-heading);
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.9;
  font-family: var(--font-secondary);
}.progress{
  height: 30px;
  overflow: hidden;
  background-color: var(--color-card);
  border-radius: 500px;
}.progress .progress-bar{
  border-radius: 500px;
  width: 0;
  height: 100%;
  background-color: var(--color-primary);
  transition: width 0.5s ease;
  overflow: visible;
}.cd-words-wrapper{
  display: inline-block;
  position: relative;
  text-align: left;
}.cd-words-wrapper b{
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}.cd-words-wrapper b.is-visible{
  position: relative;
}@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}@-moz-keyframes cd-pulse {
  0% {
    -moz-transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -moz-transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}@keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    -moz-transform: translateY(-50%) scale(0.9);
    -ms-transform: translateY(-50%) scale(0.9);
    -o-transform: translateY(-50%) scale(0.9);
    transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}@-webkit-keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
  }
}@-moz-keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -moz-transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -moz-transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(-20px) rotateX(0deg);
  }
}@keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    -moz-transform: translateZ(-20px) rotateX(90deg);
    -ms-transform: translateZ(-20px) rotateX(90deg);
    -o-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
    -moz-transform: translateZ(-20px) rotateX(-10deg);
    -ms-transform: translateZ(-20px) rotateX(-10deg);
    -o-transform: translateZ(-20px) rotateX(-10deg);
    transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0deg);
    -moz-transform: translateZ(-20px) rotateX(0deg);
    -ms-transform: translateZ(-20px) rotateX(0deg);
    -o-transform: translateZ(-20px) rotateX(0deg);
    transform: translateZ(-20px) rotateX(0deg);
  }
}@-webkit-keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
  }
}@-moz-keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -moz-transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -moz-transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -moz-transform: translateZ(-20px) rotateX(-90deg);
  }
}@keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
    -moz-transform: translateZ(-20px) rotateX(0);
    -ms-transform: translateZ(-20px) rotateX(0);
    -o-transform: translateZ(-20px) rotateX(0);
    transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
    -moz-transform: translateZ(-20px) rotateX(-100deg);
    -ms-transform: translateZ(-20px) rotateX(-100deg);
    -o-transform: translateZ(-20px) rotateX(-100deg);
    transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
    -moz-transform: translateZ(-20px) rotateX(-90deg);
    -ms-transform: translateZ(-20px) rotateX(-90deg);
    -o-transform: translateZ(-20px) rotateX(-90deg);
    transform: translateZ(-20px) rotateX(-90deg);
  }
}@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}@-webkit-keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
}@-moz-keyframes slide-out {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  60% {
    opacity: 0;
    -moz-transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
}@keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    -moz-transform: translateY(120%);
    -ms-transform: translateY(120%);
    -o-transform: translateY(120%);
    transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}.cd-headline.clip span{
  display: inline-block;
}.cd-headline.clip .cd-words-wrapper{
  overflow: hidden;
  vertical-align: top;
}.cd-headline.clip .cd-words-wrapper::after{
  /* line */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #aebcb9;
}.cd-headline.clip b{
  opacity: 0;
}.cd-headline.clip b.is-visible{
  opacity: 1;
}@-webkit-keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }
}@-moz-keyframes zoom-in {
  0% {
    opacity: 0;
    -moz-transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0);
  }
}@keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
    -moz-transform: translateZ(100px);
    -ms-transform: translateZ(100px);
    -o-transform: translateZ(100px);
    transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
}@-webkit-keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
  }
}@-moz-keyframes zoom-out {
  0% {
    opacity: 1;
    -moz-transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateZ(-100px);
  }
}@keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
    -moz-transform: translateZ(-100px);
    -ms-transform: translateZ(-100px);
    -o-transform: translateZ(-100px);
    transform: translateZ(-100px);
  }
}@-webkit-keyframes cd-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
  }
}@-moz-keyframes cd-rotate-3-in {
  0% {
    -moz-transform: rotateY(180deg);
  }
  100% {
    -moz-transform: rotateY(0deg);
  }
}@keyframes cd-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}@-webkit-keyframes cd-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
  }
}@-moz-keyframes cd-rotate-3-out {
  0% {
    -moz-transform: rotateY(0);
  }
  100% {
    -moz-transform: rotateY(-180deg);
  }
}@keyframes cd-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
}@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}@-moz-keyframes scale-up {
  0% {
    -moz-transform: scale(0);
    opacity: 0;
  }
  60% {
    -moz-transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}@keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}@-webkit-keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
}@-moz-keyframes scale-down {
  0% {
    -moz-transform: scale(1);
    opacity: 1;
  }
  60% {
    -moz-transform: scale(0);
    opacity: 0;
  }
}@keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
}@-webkit-keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}@-moz-keyframes push-in {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}@keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(10%);
    -moz-transform: translateX(10%);
    -ms-transform: translateX(10%);
    -o-transform: translateX(10%);
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}@-webkit-keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateX(110%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
}@-moz-keyframes push-out {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  60% {
    opacity: 0;
    -moz-transform: translateX(110%);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(100%);
  }
}@keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateX(110%);
    -moz-transform: translateX(110%);
    -ms-transform: translateX(110%);
    -o-transform: translateX(110%);
    transform: translateX(110%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}.tmponhover{
  position: relative;
  overflow: hidden;
}.tmponhover::before{
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  background: radial-gradient(var(--color-primary), transparent, transparent);
  width: 200%;
  height: 200%;
  opacity: 0;
  transition: 0.5s, top 0s, left 0s;
  border-radius: 20px;
}.tmponhover:hover::before{
  opacity: 1;
}.tmponhover::after{
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--color-gray-2);
  border-radius: 20px;
}.tmponhover > *{
  z-index: 2;
  position: relative;
}@keyframes gradient {
  0% {
    background-position: 25% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 25% 50%;
  }
}@keyframes sppeen-box {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ===== Portfolio custom updates ===== */
.portfolio-glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.portfolio-glass-header.header--transparent {
  position: fixed;
}
.portfolio-glass-header .header-content {
  min-height: 74px;
}
.portfolio-glass-header .tmp-mainmenu-nav {
  margin-left: auto;
  margin-right: 40px;
}
.portfolio-glass-header.sticky {
  background: rgba(10, 10, 10, 0.28);
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.08);
  left: 0;
  transform: none;
}

.rpp-banner-two-area {
  padding-top: 82px;
}
.banner-two-main-wrapper {
  padding-top: 10px;
}
.hero-left-col {
  margin-top: 35px !important;
}
.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1,
.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
  white-space: nowrap;
}

.button-area-banner-two {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.button-area-banner-two .hero-secondary-btn {
  background: rgba(22, 22, 22, 0.3);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: 15px 26.023px 50px 0px rgba(253, 196, 72, 0.04);
  backdrop-filter: blur(35px);
  color: var(--color-white);
}
.button-area-banner-two .hero-secondary-btn:hover {
  color: var(--color-white);
}
.hero-contact-line {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gray);
  font-family: var(--font-secondary);
  font-size: 18px;
  line-height: 1.6;
}
.hero-contact-item a,
.hero-contact-item span {
  color: inherit;
}
.hero-contact-item a:hover {
  color: var(--color-primary);
}
.hero-contact-dot {
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1;
}

#work-experience .about-us-card,
#education .resume-single {
  border-radius: 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  background: rgba(22, 22, 22, 0.3);
  box-shadow: 15px 26.023px 50px 0px rgba(253, 196, 72, 0.04);
  backdrop-filter: blur(35px);
}
#education .resume-single {
  padding: 30px;
}
#education .resume-single::after {
  transition: all 0.8s ease;
}
#education .resume-single:hover::after {
  background: var(--color-primary);
  opacity: 1;
}

.skill-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.skill-chip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%),
    linear-gradient(135deg, rgba(255, 1, 79, 0.14) 0%, rgba(18, 18, 22, 0.92) 52%, rgba(10, 10, 14, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 1, 79, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-secondary);
  font-size: 18px;
  line-height: 1.6;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease,
    background 0.28s ease;
}

.skill-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(140px circle at var(--x, 50%) var(--y, 50%),
      rgba(255, 1, 79, 0.55),
      rgba(255, 1, 79, 0.18) 28%,
      rgba(255, 255, 255, 0.06) 55%,
      transparent 72%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.skill-chip::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(16px - 1px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 22%, transparent 45%);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

.skill-chip:hover,
.skill-chip.is-active {
  transform: translateY(-3px);
  border-color: rgba(255, 1, 79, 0.22);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 16px 34px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 1, 79, 0.08),
    0 0 28px rgba(255, 1, 79, 0.10);
}

.skill-chip:hover::before,
.skill-chip.is-active::before {
  opacity: 1;
}

@media only screen and (max-width: 1199px) {
  .portfolio-glass-header .tmp-mainmenu-nav {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .rpp-banner-two-area {
    padding-top: 92px;
  }
  .hero-left-col {
    margin-top: 0 !important;
  }
  .hero-contact-line {
    gap: 14px;
  }
  .hero-contact-item {
    font-size: 16px;
  }
  .skill-chip {
    font-size: 16px;
    padding: 8px 14px;
  }
}


/* ===== Portfolio polish updates ===== */
.button-area-banner-two .hero-secondary-btn {
  box-shadow: 0 4px 10px rgba(253, 196, 72, 0.05);
}
.hero-contact-line {
  margin-top: 30px;
  row-gap: 10px;
}
.hero-contact-item {
  line-height: 1.75;
  transform: translateY(2px);
}
.hero-contact-item a {
  display: inline-block;
  color: #d9d9d9;
  transition: transform .25s ease, color .25s ease, opacity .25s ease;
}
.hero-contact-item a:hover {
  color: #f3f3f3;
  transform: scale(1.035);
}
.hero-contact-dot {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 20px;
}

.portfolio-mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(22,22,22,.38);
  color: var(--color-heading);
  backdrop-filter: blur(24px);
}

.interactive-border {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.interactive-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--x, 50%) var(--y, 50%), rgba(255, 1, 79, 0.95), rgba(255, 1, 79, 0.2) 28%, rgba(255,255,255,0.1) 45%, rgba(255,255,255,0) 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
  pointer-events: none;
}
.interactive-border:hover::before,
.interactive-border.is-active::before {
  opacity: 1;
}
.interactive-border > * {
  position: relative;
  z-index: 1;
}

#work-experience .about-us-card,
#education .resume-single,
.monitor-card,
.portfolio-bottom-summary__inner {
  border-radius: 20px;
  border: 0.5px solid rgba(255,255,255,0.06);
  background: linear-gradient(135deg, rgba(255, 1, 79, 0.06) 0%, rgba(22, 22, 22, 0.34) 34%, rgba(10, 10, 10, 0.26) 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(35px);
}

#work-experience .about-us-card {
  padding: 30px;
  min-height: 100%;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
#work-experience .about-us-card:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}
#work-experience .about-us-card .card-head {
  align-items: flex-start;
  gap: 22px;
}
#work-experience .logo-panel {
  width: 118px;
  min-width: 118px;
  height: 78px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(255, 1, 79, 0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
#work-experience .logo-panel img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}
.experience-head-copy {
  min-width: 0;
  flex: 1;
}
.experience-head-copy .card-title {
  margin-bottom: 4px;
}
.experience-level {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}
.experience-meta {
  margin: 26px 0 18px;
}
.company-name {
  color: var(--color-primary);
  font-family: var(--font-secondary);
  font-weight: 600;
  margin-bottom: 8px;
}
.experience-date {
  color: #c5c5c8;
  font-family: var(--font-secondary);
}
.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.experience-list li {
  position: relative;
  padding-left: 18px;
  color: #d3d3d6;
  margin: 0 0 10px;
}
.experience-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.custom-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.custom-title i {
  color: var(--color-primary);
  font-size: 24px;
}
.custom-title span {display:none;}
.skill-chip-list {
  gap: 16px;
  overflow: visible;
  padding: 4px;
}
.skill-chip {
  position: relative;
  overflow: visible;
  border-radius: 16px;
  border: 0.5px solid rgba(255,255,255,0.10);
  background: linear-gradient(135deg, rgba(255, 1, 79, 0.24) 0%, rgba(40, 10, 24, 0.72) 30%, rgba(18, 18, 18, 0.52) 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  color: #f0f0f0;
  backdrop-filter: blur(35px);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
  transform-origin: center;
}
.skill-chip:hover {
  transform: scale(1.07);
  background: linear-gradient(135deg, rgba(255, 1, 79, 0.34) 0%, rgba(52, 12, 30, 0.82) 32%, rgba(28, 28, 28, 0.62) 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  color: #ffffff;
}
.skill-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0));
  pointer-events: none;
}

.education-section-inner {
  position: relative;
}
.education-ambient-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  left: 50%;
  top: 32px;
  transform: translateX(-10%);
  background: radial-gradient(circle, rgba(255, 1, 79, 0.5) 0%, rgba(255,1,79,0.18) 38%, rgba(255,1,79,0) 72%);
  filter: blur(22px);
  opacity: .55;
  pointer-events: none;
}
#education .resume-widget {
  position: relative;
  z-index: 1;
}
#education .resume-single {
  cursor: pointer;
  padding: 30px;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
#education .resume-single:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}
#education .resume-single .time {
  color: var(--color-primary);
}
#education .resume-single .resume-title {
  text-transform: none;
}
#education .resume-single .institute {
  color: #b8b8bd;
}
#education .resume-single::after,
#education .resume-single:hover::after {
  display: none;
}

.monitoring-grid .col-lg-4 {
  display: flex;
}
.monitor-card {
  padding: 26px;
  width: 100%;
  min-height: 230px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.monitor-card:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 36px rgba(0,0,0,.22);
}
.monitor-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.monitor-label,
.monitor-value {
  font-family: var(--font-secondary);
  color: var(--color-heading);
  font-weight: 700;
}
.monitor-value { color: var(--color-primary); }
.monitor-chart {
  height: 110px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 10px;
  margin-bottom: 18px;
}
.monitor-chart span {
  display: block;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 1, 79, 0.92), rgba(255, 1, 79, 0.16));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.monitor-meta {
  color: #bdbdc2;
  font-size: 15px;
}

.portfolio-bottom-summary {
  padding-bottom: 100px;
}
.portfolio-bottom-summary__inner {
  padding: 34px 36px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 32px;
}

.portfolio-bottom-summary__inner {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 92, 151, 0.05) 0%,
    rgba(22, 14, 19, 0.58) 30%,
    rgba(9, 9, 12, 0.92) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.portfolio-bottom-summary__inner::before {
  background: radial-gradient(
    240px circle at var(--x, 50%) var(--y, 50%),
    rgba(255, 92, 151, 0.18),
    rgba(255, 92, 151, 0.06) 26%,
    rgba(255, 255, 255, 0.03) 42%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition: opacity .24s ease;
}

.portfolio-bottom-summary__inner:hover {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  background: linear-gradient(
    135deg,
    rgba(255, 92, 151, 0.06) 0%,
    rgba(24, 15, 20, 0.62) 30%,
    rgba(10, 10, 13, 0.94) 100%
  );
}

.portfolio-bottom-summary__inner:hover::before {
  opacity: 0.6;
}

.portfolio-bottom-summary__inner::after {
  background: rgba(8, 8, 11, 0.94);
}

.summary-brand,
.summary-nav,
.summary-contacts {
  position: relative;
}

@media only screen and (min-width: 992px) {
  .summary-nav,
  .summary-contacts {
    padding-left: 18px;
  }

  .summary-nav::before,
  .summary-contacts::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.06) 16%,
      rgba(255, 92, 151, 0.16) 50%,
      rgba(255, 255, 255, 0.06) 84%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}


.portfolio-bottom-summary__inner h4 {
  margin-bottom: 16px;
}
.summary-brand a {
  font-family: var(--font-secondary);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-heading);
  display: inline-block;
  margin-bottom: 10px;
}
.summary-brand p {
  margin-bottom: 0;
  color: rgba(214, 214, 218, 0.82);
  line-height: 1.72;
}

.summary-brand-lead {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
}

.summary-brand-subtext {
  margin-top: 10px;
  color: rgba(214, 214, 218, 0.68);
}
.summary-nav ul,
.summary-contacts ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.summary-nav li,
.summary-contacts li {
  margin: 0 0 10px;
}

.summary-contacts li {
  position: relative;
  padding-left: 14px;
}

.summary-contacts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 92, 151, 0.55);
}

.summary-nav a,
.summary-contacts a {
  color: rgba(214, 214, 218, 0.88);
  transition: color .25s ease, transform .25s ease;
  display: inline-block;
}
.summary-nav a:hover,
.summary-contacts a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

@media only screen and (max-width: 1199px) {
  .portfolio-mobile-menu-toggle { display: inline-flex; align-items:center; justify-content:center; }
  .portfolio-glass-header .tmp-header-right { display:flex; align-items:center; margin-left:auto; }
}
@media only screen and (max-width: 991px) {
  .portfolio-bottom-summary__inner {
    grid-template-columns: 1fr;
  }
  #work-experience .logo-panel {
    width: 98px;
    min-width: 98px;
    height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-contact-line {
    gap: 12px 18px;
    margin-top: 26px;
  }
  .hero-contact-item {
    font-size: 16px;
    line-height: 1.8;
  }
  .portfolio-mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }
  #work-experience .about-us-card .card-head {
    flex-direction: column;
    gap: 16px;
  }
  #work-experience .logo-panel {
    width: 100%;
    max-width: 130px;
  }
  .skill-chip-list {
    gap: 12px;
  }
  .education-ambient-orb {
    width: 280px;
    height: 280px;
    top: 70px;
    left: 52%;
  }
  .education-modal__dialog {
    padding: 28px 22px;
  }
}


/* ===== Portfolio final refinements ===== */
html,
body {
  background: #07070a;
}
body {
  min-height: 100%;
  overscroll-behavior-y: none;
}

.hero-contact-group {
  margin-top: 40px;
}
.hero-contact-label {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-contact-line {
  margin-top: 0;
  gap: 16px 28px;
}
.hero-contact-item {
  font-size: 19px;
  line-height: 1.85;
}
.hero-contact-item a {
  color: rgba(235, 235, 239, 0.9);
}
.hero-contact-item a:hover {
  color: #f0cddd;
}
.hero-contact-dot {
  color: #ff5a97;
  font-size: 22px;
  font-weight: 800;
}

.interactive-border::before {
  background: radial-gradient(280px circle at var(--x, 50%) var(--y, 50%), rgba(255, 92, 151, 0.78), rgba(255, 92, 151, 0.16) 28%, rgba(255,255,255,0.07) 46%, rgba(255,255,255,0) 62%);
  transition: opacity .28s ease;
}
#work-experience .about-us-card::before {
  background: radial-gradient(300px circle at var(--x, 50%) var(--y, 50%), rgba(255, 93, 156, 0.96), rgba(255, 93, 156, 0.30) 24%, rgba(255,255,255,0.10) 44%, rgba(255,255,255,0) 60%);
}
#work-experience .about-us-card,
.portfolio-bottom-summary__inner {
  border-color: rgba(255,255,255,0.08);
}
#work-experience .about-us-card {
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
#work-experience .about-us-card:hover {
  transform: none;
  background: linear-gradient(135deg, rgba(255, 1, 79, 0.08) 0%, rgba(26, 18, 23, 0.40) 35%, rgba(11, 11, 13, 0.32) 100%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.20);
}
#work-experience .logo-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0.16));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.38), 0 6px 20px rgba(0, 0, 0, 0.08);
}
#work-experience .logo-panel img {
  filter: contrast(1.08) brightness(1.02);
  transition: filter .25s ease;
}
#work-experience .about-us-card:hover .logo-panel img {
  filter: contrast(1.12) brightness(1.08);
}

.skill-chip {
  border-color: rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(255, 92, 151, 0.24) 0%, rgba(54, 17, 32, 0.58) 34%, rgba(20, 20, 22, 0.44) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 10px 22px rgba(0, 0, 0, 0.15);
}
.skill-chip:hover {
  background: linear-gradient(135deg, rgba(255, 112, 166, 0.30) 0%, rgba(60, 18, 35, 0.68) 34%, rgba(24, 24, 26, 0.52) 100%);
}

.education-ambient-orb {
  opacity: .22;
  transform: translateX(-10%);
  pointer-events: none;
}
.education-modal {
  transition: opacity .22s ease, visibility 0s linear .22s;
}
.education-modal.is-open {
  transition: opacity .22s ease, visibility 0s linear 0s;
}
.education-modal__backdrop {
  background: rgba(6, 6, 8, 0.36);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  transition:
    opacity .18s ease,
    background .28s ease,
    backdrop-filter .38s ease .08s,
    -webkit-backdrop-filter .38s ease .08s;
}

.education-modal.is-open .education-modal__backdrop {
  background: rgba(6, 6, 8, 0.56);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 1;
}

.education-modal__dialog {
  transform: translateY(14px) scale(0.985);
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 86, 147, 0.08), rgba(18,18,18,0.40));
  transition: transform .22s ease, opacity .22s ease, background .22s ease;
}

.education-modal.is-open .education-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.portfolio-bottom-summary__inner::before {
  background: radial-gradient(
    210px circle at var(--x, 50%) var(--y, 50%),
    rgba(112, 34, 63, 0.15),
    rgba(112, 34, 63, 0.06) 26%,
    rgba(255, 255, 255, 0.02) 44%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition: opacity .38s ease;
}

.portfolio-bottom-summary__inner:hover::before {
  opacity: 0.42;
}

/* mobile overlay menu */
.tmp-popup-mobile-menu {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 82px 18px 18px;
  background: rgba(6, 6, 8, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tmp-popup-mobile-menu .inner {
  width: min(100%, 420px);
  height: auto;
  max-height: calc(100vh - 110px);
  position: relative;
  left: auto;
  top: auto;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(255, 97, 155, 0.08), rgba(19, 19, 22, 0.92));
  box-shadow: 0 18px 50px rgba(0,0,0,.30);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  padding: 20px 22px 24px;
  transform: translateY(-16px) scale(.98);
  transition: transform .24s ease, opacity .24s ease;
}
.tmp-popup-mobile-menu .header-top {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0 0 16px;
  margin-bottom: 10px;
}
.tmp-popup-mobile-menu .header-top .close-menu .close-button {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--color-heading);
  backdrop-filter: blur(18px);
}
.tmp-popup-mobile-menu .tmp-mainmenu li {
  padding: 0;
}
.tmp-popup-mobile-menu .tmp-mainmenu li + li {
  border-top: 1px solid rgba(255,255,255,.06);
}
.tmp-popup-mobile-menu .tmp-mainmenu li a {
  color: rgba(255,255,255,.92);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  padding: 16px 2px;
}
.tmp-popup-mobile-menu .tmp-mainmenu li a:hover {
  color: #ffd8e7;
}
.tmp-popup-mobile-menu.active .inner {
  left: auto;
  transform: translateY(0) scale(1);
}
body.mobile-menu-open {
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  html,
  body {
    background: #07070a;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .row {
    --bs-gutter-x: 2rem;
  }
  .banner-two-main-wrapper,
  .about-us-content-wrap,
  .progress-wrapper,
  .resume-widget,
  .portfolio-bottom-summary__inner,
  .monitor-card,
  #work-experience .about-us-card {
    margin-left: auto;
    margin-right: auto;
  }
  .banner-two-main-wrapper .row,
  #work-experience .about-us-section-card,
  .tmp-skill-area .row,
  #education .row,
  .monitoring-grid {
    justify-content: center;
  }
  .banner-two-main-wrapper .banner-right-content,
  .banner-two-main-wrapper .banner-right-content .main-img,
  .banner-two-main-wrapper .inner {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-left-col,
  .hero-left-col .inner {
    width: 100%;
  }
  .hero-contact-group {
    margin-top: 34px;
  }
  .hero-contact-label {
    margin-bottom: 8px;
  }
  .hero-contact-line {
    gap: 10px 16px;
  }
  .hero-contact-item {
    font-size: 16px;
    line-height: 1.8;
  }
  .hero-contact-dot {
    font-size: 20px;
  }
  .tmp-popup-mobile-menu {
    padding: 76px 16px 16px;
  }
  .tmp-popup-mobile-menu .inner {
    width: min(100%, 360px);
    max-height: calc(100vh - 96px);
    padding: 18px 18px 22px;
  }
  #work-experience .logo-panel {
    max-width: 146px;
  }
  .portfolio-bottom-summary__inner {
    padding: 30px 24px;
  }
  .education-ambient-orb {
    display: none;
  }
}

/* ===== Consolidated polish patch (pass 2) ===== */
:root {
  --premium-surface: linear-gradient(135deg, rgba(255, 92, 151, 0.08) 0%, rgba(28, 16, 23, 0.44) 32%, rgba(11, 11, 13, 0.34) 100%);
  --premium-surface-strong: linear-gradient(135deg, rgba(255, 102, 160, 0.12) 0%, rgba(30, 17, 24, 0.56) 32%, rgba(14, 14, 16, 0.42) 100%);
  --premium-border: rgba(255,255,255,0.09);
  --premium-shadow: 0 18px 42px rgba(0,0,0,.22);
  --premium-shadow-soft: 0 12px 28px rgba(0,0,0,.18);
  --edge-core-final: rgba(255, 1, 79, 1);
  --edge-mid-final: rgba(255, 1, 79, 0.52);
  --edge-soft-final: rgba(255,255,255,0.16);
}

html {
  background: #07070a;
}

body {
  background: #07070a;
}

html,
body {
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6,
p, .disc, .description, .card-para, .resume-title, .institute,
.experience-list li, .monitor-meta, .summary-brand p,
.text-para-documents, .hero-contact-item, .company-name, .experience-date {
  word-break: normal !important;
  overflow-wrap: normal !important;
  word-wrap: normal !important;
  hyphens: none !important;
}

.banner-two-main-wrapper .inner {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.banner-two-main-wrapper .inner .disc {
  max-width: 100% !important;
  color: rgba(235, 235, 239, 0.70);
  line-height: 1.82;
  text-wrap: pretty;
  margin-bottom: 0;
}

.hero-copy-block {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 20px;
}

.hero-copy-block .disc:first-child {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-copy-block .disc:last-child {
  max-width: 560px;
  color: rgba(235, 235, 239, 0.72);
}

.button-area-banner-two {
  margin-top: 28px;
}

.text-para-doc-wrap .text-para-documents,
.about-us-right-content-wrap .section-head .description,
.experience-list li,
.hero-contact-line {
  text-wrap: pretty;
}

.text-para-doc-wrap .text-para-documents {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.28;
  margin-top: -85px;
  opacity: 0;
  transform: translateY(22px);
  animation: textParaFadeUp 0.9s ease forwards;
  animation-delay: 0.25s;
}

@media only screen and (max-width: 767px) {
  .text-para-doc-wrap .text-para-documents {
    margin-top: 0;
  }
}

.banner-two-main-wrapper .inner .disc span,
.text-para-doc-wrap .text-para-documents span {
  white-space: normal;
}

.hero-left-col .inner {
  position: relative;
}

.hero-contact-group {
  margin-top: 46px;
}

.hero-contact-label {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: rgba(255,255,255,.98);
}

.hero-contact-line {
  gap: 14px 26px;
}

.hero-contact-item {
  color: rgba(228,228,232,.88);
}

.hero-contact-item a {
  color: inherit;
}

.about-us-right-content-wrap .section-sub-title span.subtitle {
  font-size: 18px;
  letter-spacing: 0.09em;
  color: var(--color-primary) !important;
}

.about-us-right-content-wrap .section-head .title {
  font-size: 44px;
  line-height: 1.18;
}

.about-us-right-content-wrap .section-head .about-story-item {
  position: relative;
  padding-left: 22px;
  margin-bottom: 26px;
  color: rgba(235, 235, 239, 0.82);
}

.about-us-right-content-wrap .section-head .about-story-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 2px;
  height: calc(100% - 8px);
  border-radius: 999px;
  background: rgba(255, 1, 79, 0.52);
}

.about-us-right-content-wrap .section-head .about-story-lead {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
}

.about-us-right-content-wrap .section-head .about-story-item:last-of-type {
  margin-bottom: 0;
}

.about-us-left-content-wrap .design-card .design-card-img i,
.design-card .icon i {
  font-size: 52px !important;
  color: var(--color-primary);
}

#work-experience .about-us-card,
#education .resume-single,
.monitor-card,
.portfolio-bottom-summary__inner,
.education-modal__dialog {
  background: var(--premium-surface);
  border-color: var(--premium-border);
  box-shadow: var(--premium-shadow-soft);
}

.interactive-border {
  border-color: rgba(255,255,255,0.08);
}

.interactive-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.2px;
  border-radius: inherit;
  background: radial-gradient(
    360px circle at var(--x, 50%) var(--y, 50%),
    var(--edge-core-final) 0%,
    var(--edge-mid-final) 16%,
    rgba(255, 1, 79, 0.28) 28%,
    var(--edge-soft-final) 42%,
    rgba(255,255,255,0) 60%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .16s ease;
  z-index: 0;
  pointer-events: none;
}

.interactive-border:hover::before,
.interactive-border.is-active::before {
  opacity: 1 !important;
}

#work-experience .about-us-card::before {
  background: radial-gradient(
    380px circle at var(--x, 50%) var(--y, 50%),
    rgba(255, 1, 79, 1) 0%,
    rgba(255, 1, 79, 0.58) 15%,
    rgba(255, 1, 79, 0.24) 27%,
    rgba(255,255,255,0.18) 42%,
    rgba(255,255,255,0) 60%
  ) !important;
}

#education .resume-single::before {
  background: radial-gradient(
    370px circle at var(--x, 50%) var(--y, 50%),
    rgba(255, 1, 79, 0.98) 0%,
    rgba(255, 1, 79, 0.52) 16%,
    rgba(255, 1, 79, 0.22) 29%,
    rgba(255,255,255,0.16) 43%,
    rgba(255,255,255,0) 60%
  ) !important;
}

.monitor-card::before,
.portfolio-bottom-summary__inner::before,
.education-modal__dialog::before {
  background: radial-gradient(
    330px circle at var(--x, 50%) var(--y, 50%),
    rgba(255, 1, 79, 0.92) 0%,
    rgba(255, 1, 79, 0.40) 18%,
    rgba(255, 1, 79, 0.16) 32%,
    rgba(255,255,255,0.12) 44%,
    rgba(255,255,255,0) 60%
  ) !important;
}

#work-experience .about-us-card {
  transition: background .32s ease, box-shadow .32s ease, border-color .32s ease;
}

#work-experience .about-us-card:hover {
  transform: none;
  background: var(--premium-surface-strong);
  box-shadow: var(--premium-shadow);
}

.skill-chip-list {
  overflow: visible;
  padding: 5px;
  gap: 16px;
}

.progress-charts {
  overflow: visible;
}

.skill-chip {
  overflow: visible;
  border-radius: 16px;
  border: 1px solid rgba(255, 92, 151, 0.16);
  background:
    linear-gradient(135deg, rgba(80, 10, 30, 0.65) 0%, rgba(38, 8, 20, 0.88) 38%, rgba(14, 14, 18, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 28px rgba(255, 24, 104, 0.08),
    0 14px 32px rgba(0,0,0,.28);
  color: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  transition: transform .26s ease, box-shadow .26s ease, background .26s ease, color .26s ease, border-color .26s ease;
  transform-origin: center;
}

.skill-chip::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.015) 30%, rgba(255,255,255,0));
}

.skill-chip:hover {
  transform: scale(1.05);
  border-color: rgba(255, 92, 151, 0.25);

  background: linear-gradient(
    135deg,
    rgba(100, 12, 40, 0.75) 0%,
    rgba(46, 10, 24, 0.92) 40%,
    rgba(18, 18, 22, 0.96) 100%
  );

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 30px rgba(255, 24, 104, 0.10);

  color: #ffffff;
}

#education .resume-single {
  transition: background .28s ease, box-shadow .28s ease, border-color .28s ease, transform .28s ease;
}

#education .resume-single:hover,
.monitor-card:hover,
.portfolio-bottom-summary__inner:hover {
  box-shadow: var(--premium-shadow);
  background: var(--premium-surface-strong);
}

#education .resume-single:hover,
.monitor-card:hover {
  transform: scale(1.012);
}

.education-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1200;
  transition: opacity .18s ease, visibility 0s linear .18s;
}

.education-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.education-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 10, 0.32);
  opacity: 0;
  transition: opacity .18s ease, background .22s ease;
}

.education-modal.is-open .education-modal__backdrop {
  background:
    linear-gradient(180deg, rgba(10, 10, 14, 0.78) 0%, rgba(7, 7, 10, 0.88) 100%);
  opacity: 1;
}

.education-modal__dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg,
      rgba(46, 10, 22, 0.78) 0%,
      rgba(22, 10, 18, 0.88) 34%,
      rgba(8, 10, 16, 0.96) 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 34px rgba(255, 1, 79, 0.08);
  transform: translateY(10px) scale(0.99);
  opacity: 0;
  overflow: hidden;
  will-change: transform, opacity;
  transition: transform .18s ease, opacity .18s ease, box-shadow .22s ease, border-color .22s ease;

  display: flex;
  flex-direction: column;
}

.education-modal.is-open .education-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.education-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.00) 34%);
  opacity: 0.75;
}

.education-modal__eyebrow {
  position: relative;
  z-index: 1;
  color: rgba(255, 1, 79, 0.55);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.education-modal__title {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 12px;
}

.education-modal__text {
  position: relative;
  z-index: 1;
  color: rgba(235, 235, 239, 0.78);
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 10px;
  padding-bottom: 28px;
}

.education-modal__text .roadmap-modal-copy {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.education-modal__text .roadmap-modal-label,
.education-modal__text .roadmap-modal-label--result {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.35px;
}

.education-modal__text .roadmap-modal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.education-modal__text .roadmap-modal-list li {
  position: relative;
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(245, 235, 240, 0.74);
  font-size: 16px;
  line-height: 1.82;
}

.education-modal__text .roadmap-modal-list li:last-child {
  margin-bottom: 0;
}

.education-modal__text .roadmap-modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: rgba(255, 1, 79, 0.62);
  box-shadow: 0 0 8px rgba(255, 1, 79, 0.10);
}

.education-modal__text .roadmap-modal-result {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
}

.education-modal__text .roadmap-modal-result::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 1, 79, 0.62) 0%,
    rgba(255, 1, 79, 0.34) 100%
  );
  opacity: 0.72;
}

.education-modal__text .roadmap-modal-result p {
  margin: 0 0 20px;
  color: rgba(250, 241, 245, 0.76);
  font-size: 16px;
  line-height: 1.84;
}

.education-modal__text .roadmap-modal-result p:last-child {
  margin-bottom: 0;
}

.education-modal__text::-webkit-scrollbar {
  width: 5px;
}

.education-modal__text::-webkit-scrollbar-track {
  background: rgba(18, 14, 22, 0.32);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(6px);
}

.education-modal__text::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(255, 1, 79, 0.55) 0%,
    rgba(255, 1, 79, 0.42) 55%,
    rgba(255, 1, 79, 0.28) 100%
  );
  border-radius: 999px;
  border: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.education-modal__text::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(255, 1, 79, 0.62) 0%,
    rgba(255, 1, 79, 0.48) 55%,
    rgba(255, 1, 79, 0.32) 100%
  );
}

@media only screen and (max-width: 767px) {
  .education-modal__dialog {
    max-height: calc(100vh - 24px);
    padding: 24px 20px;
  }

.education-modal__text {
  min-height: 0;
  padding-right: 6px;
}

  .education-modal__text .roadmap-modal-copy {
    gap: 26px;
  }

.education-modal__text .roadmap-modal-label,
.education-modal__text .roadmap-modal-label--result {
  margin-bottom: 12px;
  font-size: 14px;
}

  .education-modal__text .roadmap-modal-list li,
  .education-modal__text .roadmap-modal-result p {
    font-size: 15px;
    line-height: 1.75;
  }

  .education-modal__text .roadmap-modal-list li {
    margin-bottom: 13px;
    padding-left: 16px;
  }

  .education-modal__text .roadmap-modal-result {
    padding-left: 16px;
  }
}

.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1,
.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
  letter-spacing: -0.035em;
  text-shadow: 0 0 1px rgba(255,255,255,.03);
}

.up-down {
  animation: heroFloatOne 2s infinite alternate ease-in-out;
}

.up-down-2 {
  animation: heroFloatTwo 2s infinite alternate ease-in-out;
}

@keyframes heroFloatOne {
  0% { transform: translateY(-1px); }
  100% { transform: translateY(-16px); }
}

@keyframes heroFloatTwo {
  0% { transform: translateY(-16px); }
  100% { transform: translateY(1px); }
}

@media (min-width: 992px) {
  .hero-left-col .inner {
    margin-left: 0;
    max-width: 610px;
}

  .banner-two-main-wrapper .inner .disc {
    max-width: 560px;
  }

  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1,
  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
    font-size: 94px;
  }

  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
    left: 0;
    bottom: 125px;
    width: 100%;
    text-align: center;
  }

  .banner-two-main-wrapper .banner-right-content {
    transform: translateY(-95px);
  }
}

@media (min-width: 1200px) {
  .hero-left-col .inner {
    margin-left: 0;
    max-width: 600px;
}

  .banner-two-main-wrapper .inner .disc {
    max-width: 540px;
  }

  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1,
  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
    font-size: 103px;
  }

  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
    left: 0;
    bottom: 122px;
    width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 991px) {
  .hero-left-col .inner {
    max-width: 100%;
    margin-left: 0;
  }

  .banner-two-main-wrapper .inner .disc,
  .text-para-doc-wrap .text-para-documents {
    max-width: 100% !important;
  }

  .about-us-right-content-wrap .section-head .title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-contact-label {
    font-size: 15px;
  }

  .hero-contact-item {
    font-size: 16px;
  }

  .about-us-right-content-wrap .section-head .title {
    font-size: 34px;
  }

  .about-us-right-content-wrap .section-sub-title span.subtitle {
    font-size: 16px;
  }
  
  .about-us-right-content-wrap .section-head .about-story-item {
    padding-left: 18px;
    margin-bottom: 22px;
  }

  .about-us-left-content-wrap .design-card .design-card-img i,
  .design-card .icon i {
    font-size: 36px !important;
  }

  .skill-chip {
    transform-origin: center;
  }

  #education .row {
    display: flex;
    flex-direction: column;
  }

  #education .row > .col-md-6,
  #education .row > .col-md-6 > .resume-widget {
    display: contents;
  }

  #education .row > .col-md-6:first-child .resume-single:nth-child(1) { order: 1; }
  #education .row > .col-md-6:last-child .resume-single:nth-child(1) { order: 2; }
  #education .row > .col-md-6:first-child .resume-single:nth-child(2) { order: 3; }
  #education .row > .col-md-6:last-child .resume-single:nth-child(2) { order: 4; }
  #education .row > .col-md-6:first-child .resume-single:nth-child(3) { order: 5; }
  #education .row > .col-md-6:last-child .resume-single:nth-child(3) { order: 6; }
  #education .row > .col-md-6:first-child .resume-single:nth-child(4) { order: 7; }
  #education .row > .col-md-6:last-child .resume-single:nth-child(4) { order: 8; }
  #education .row > .col-md-6:first-child .resume-single:nth-child(5) { order: 9; }
  #education .row > .col-md-6:last-child .resume-single:nth-child(5) { order: 10; }

  #education .resume-single {
    width: 100%;
  }
}

.banner-shape-two img {
  filter: brightness(0.65) contrast(0.85) opacity(0.75)
          drop-shadow(0 0 8px rgba(255, 1, 79, 0.2));
  mix-blend-mode: screen;
}

@media only screen and (max-width: 767px) {
  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1 {
  font-size: 48px;
  line-height: 1;
  width: 100%;
  left: 0;
  top: 245px;
  text-align: center;
  white-space: nowrap;
  z-index: -1;
}

.banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
  font-size: 48px;
  line-height: 1;
  width: 100%;
  left: 0;
  bottom: 92px;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
}

  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-1 {
    top: 200px;
    z-index: -1;
  }

  .banner-two-main-wrapper .banner-right-content .main-img .banner-big-text-2 {
    bottom: 100px;
  }
}

@keyframes textParaFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#about .col-lg-6:last-child {
  padding-top: 32px;
}

@media only screen and (max-width: 767px) {
  #about .col-lg-6:last-child {
    padding-top: 0;
  }
}

.education-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 3;

  width: 44px;
  height: 44px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: none;
  box-shadow: none;

  color: rgba(220, 220, 230, 0.6);
  font-size: 28px;
  line-height: 1;
  text-align: center;

  cursor: pointer;

  transition: color 0.2s ease, transform 0.2s ease;
}

.education-modal__close:hover {
  color: rgba(230, 230, 240, 0.7);
  transform: scale(1.1);
}

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

  .banner-two-main-wrapper .inner {
    max-width: 100%;
  }

  .hero-copy-block {
    max-width: 100%;
  }

}

/* УБИРАЕМ ВИЗУАЛЬНЫЙ СКРОЛЛ */
html, body {
  scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

#monitoring {
  display: none !important;
}
