/*
*
* Default colors
*
*/

/*
*
* Default functionality
*
*/

body::-webkit-scrollbar {
  width: 0.8em;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: #ffffff;
}

body::-webkit-scrollbar-thumb {
  background-color: #bd1f48;
  outline: 1px solid slategrey;
  border-radius: 25px;
}

::-moz-selection {
  background-color: #311b53;
  color: #fff;
}

::selection {
  background-color: #311b53;
  color: #fff;
}

html,
body {
  position: relative;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  transition: scroll-behavior 1s ease-in;
}

h1,
.h1 {
  font-size: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: block;
}

h2,
.h2 {
  font-size: 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: block;
}

h3,
.h3 {
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: block;
}

h4,
.h4 {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: block;
}

h5,
.h5 {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: block;
}

h6,
.h6 {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: block;
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #645b76;
}

a {
  text-decoration: none !important;
  outline: none;
  box-shadow: none;
}

section {
  padding: 50px 0px;
  width: 100%;
  position: relative;
}

.pink-color {
  color: #bf2e6a;
}

ul,
ol {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.no-boder-left {
  border-left: none !important;
}

.no-boder-right {
  border-right: none !important;
}

/*
* General buttons
*/

@-webkit-keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

.float {
  transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

/** 
push auto
**/

/** 
pseudo elements
**/

/** 
responsive ratio
**/

/** 
placeholder
**/

/** 
hardware
**/

/** 
truncate
**/

/** 
transition
**/

/* *** Spacing
This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
It will generate several classes such as:
.m-r-10 which gives margin-right 10 pixels.
.m-r-15 gives MARGIN to the RIGHT 15 pixels.
.m-t-15 gives MARGIN to the TOP 15 pixels and so on.
.p-b-5 gives PADDING to the BOTTOM of 5 pixels
.p-l-40 gives PADDING to the LEFT of 40 pixels
The first letter is "m" or "p" for MARGIN or PADDING
Second letter is "t", "b", "l", or "r" for TOP, BOTTOM, LEFT, or RIGHT
Third letter is the number of spacing in pixels. Adjust the amounts generated by editing the $spaceamounts variable below.
*/

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

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

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

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

.m-l-5 {
  margin-left: 5px !important;
}

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

.m-r-5 {
  margin-right: 5px !important;
}

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

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

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

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

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

.m-l-10 {
  margin-left: 10px !important;
}

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

.m-r-10 {
  margin-right: 10px !important;
}

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

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

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

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

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

.m-l-15 {
  margin-left: 15px !important;
}

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

.m-r-15 {
  margin-right: 15px !important;
}

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

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

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

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

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

.m-l-20 {
  margin-left: 20px !important;
}

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

.m-r-20 {
  margin-right: 20px !important;
}

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

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

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

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

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

.m-l-25 {
  margin-left: 25px !important;
}

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

.m-r-25 {
  margin-right: 25px !important;
}

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

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

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

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

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

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

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

.m-r-30 {
  margin-right: 30px !important;
}

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

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

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

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

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

.m-l-35 {
  margin-left: 35px !important;
}

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

.m-r-35 {
  margin-right: 35px !important;
}

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

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

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

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

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

.m-l-40 {
  margin-left: 40px !important;
}

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

.m-r-40 {
  margin-right: 40px !important;
}

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

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

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

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

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

.m-l-45 {
  margin-left: 45px !important;
}

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

.m-r-45 {
  margin-right: 45px !important;
}

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

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

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

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

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

.m-l-50 {
  margin-left: 50px !important;
}

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

.m-r-50 {
  margin-right: 50px !important;
}

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

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

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

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

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

.m-l-75 {
  margin-left: 75px !important;
}

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

.m-r-75 {
  margin-right: 75px !important;
}

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

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

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

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

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

.m-l-100 {
  margin-left: 100px !important;
}

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

.m-r-100 {
  margin-right: 100px !important;
}

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

.icon {
  background: url("../../frontend/images/icons/cs-icon-sprites.png");
  background-repeat: no-repeat;
  display: inline-block;
}

.icon.ico-left-circle {
  width: 40px;
  height: 40px;
  background-position: 2% 12%;
}

.icon.ico-left-circle:hover,
.icon.ico-left-circle:focus {
  background: url("../../frontend/images/icons/cs-icon-sprites.png");
  background-repeat: no-repeat;
  display: inline-block;
  background-position: 2% 12%;
}

.icon.ico-right-circle {
  width: 40px;
  height: 40px;
  background-position: 12% 12%;
}

.icon.ico-right-circle:hover,
.icon.ico-right-circle:focus {
  background: url("../../frontend/images/icons/cs-icon-sprites.png");
  background-repeat: no-repeat;
  display: inline-block;
  background-position: 12% 12%;
}

.icon.ico-left-outline {
  width: 40px;
  height: 45px;
  background-position: 46% 7%;
}

.icon.ico-right-outline {
  width: 40px;
  height: 45px;
  background-position: 70% 7%;
}

.icon.ico-scroll-down {
  width: 40px;
  height: 45px;
  background-position: 58% 7%;
  margin-left: 15px;
  margin-right: 15px;
}

.icon.ico-phone {
  width: 25px;
  height: 25px;
  position: absolute;
  background-position: 96% 15%;
  left: -6px;
  top: 10px;
}

.main-menu {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.nav-open .main-menu {
  opacity: 1;
  visibility: visible;
  background: url("../../frontend/images/bg/navigation-bg2.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.main-menu .nav li a {
  color: #fff;
  font-size: 5vh;
  font-weight: 900;
  letter-spacing: 0.5px;
  opacity: 0.5;
}

.main-menu .nav li a:hover,
.main-menu .nav li a:focus,
.main-menu .nav li a.active {
  opacity: 1;
  transition: all 0.5s ease;
}

.main-menu .nav li {
  opacity: 0;
  transform: translateY(-40px);
  -webkit-animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
  animation-timing-function: cubic-bezier(0.45, 0.005, 0, 1);
}

.nav-open .main-menu .nav li {
  opacity: 1;
  transform: translateY(0px);
  transition: transform 0.2s, opacity 0.2s;
}

.main-menu .nav li.delay-1 {
  transition-delay: 0.1s;
}

.main-menu .nav l i.delay-2 {
  transition-delay: 0.2s;
}

.main-menu .nav li.delay-3 {
  transition-delay: 0.3s;
}

.main-menu .nav li.delay-4 {
  transition-delay: 0.4s;
}

.main-menu .nav li.delay-5 {
  transition-delay: 0.5s;
}

.main-menu .nav li.delay-6 {
  transition-delay: 0.6s;
}

.main-menu .nav li.delay-7 {
  transition-delay: 0.7s;
}

.main-menu .nav li.delay-8 {
  transition-delay: 0.8s;
}

.main-menu .nav li.delay-9 {
  transition-delay: 0.9s;
}

.nav-button {
  position: relative;
  z-index: 1111;
  border: solid 1px transparent;
  height: 42px;
  display: block;
  width: 50px;
  padding: 12px;
}

.nav-button #nav-icon3 {
  width: 24px;
  height: 22px;
  display: inline-block;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.nav-button #nav-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.nav-button #nav-icon3 span:nth-child(1) {
  top: 0;
}

.nav-button #nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 7px;
}

.nav-button #nav-icon3 span:nth-child(4) {
  top: 14px;
}

.nav-open #nav-icon3 span:nth-child(1) {
  top: 9px;
  width: 0;
  left: 50%;
}

.nav-open #nav-icon3 span:nth-child(2) {
  transform: rotate(45deg);
  width: 100%;
}

.nav-open #nav-icon3 span:nth-child(3) {
  transform: rotate(-45deg);
  width: 100%;
}

.nav-open #nav-icon3 span:nth-child(4) {
  top: 9px;
  width: 0;
  left: 50%;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/*
* navigation customization
*/

.bg-dark {
  background: transparent !important;
}

#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  width: 75%;
}

.navbar.Zindex-fix {
  z-index: 1031 !important;
}

.navbar .svg-icon {
  display: inline-block;
}

.navbar .svg-icon svg {
  width: 66px;
  height: 49px;
}

.navbar .logo-text {
  margin-left: 8px;
  display: inline-block;
  transform: translateX(0);
  opacity: 1;
  transition: all 0.2s ease;
}

.navbar .logo-text svg {
  width: 164px;
  height: 49px;
}

.navbar.logo-adjust {
  transition: all 1s ease;
}

.navbar.logo-adjust .svg-icon .st0 {
  fill: #ffffff;
}

.navbar.logo-adjust .logo-text {
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.2s ease;
}

.navbar.scroll-adjust {
  background: linear-gradient(to right, #281c71, #9d2b7f) !important;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.45);
  transition: all 1s ease;
}

.navbar .btn-quote-transparent {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 100;
  color: #ffffff;
  border: 1px solid #ffffff;
  background: transparent;
  border-radius: 25px;
  padding: 10px 20px;
  text-transform: uppercase;
  position: relative;
}

.navbar .btn-quote-transparent:hover,
.navbar .btn-quote-transparent:focus,
.navbar .btn-quote-transparent.active {
  border: 1px solid #bd1f48;
  background: #bd1f48;
  transition: all 0.5s ease;
}

.navbar .btn-phone-transparent {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 100;
  color: #ffffff;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 25px;
  padding: 10px 20px;
  text-transform: uppercase;
  position: relative;
}

.navbar .btn-phone-transparent:hover,
.navbar .btn-phone-transparent:focus,
.navbar .btn-phone-transparent.active {
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.5s ease;
}

footer {
  padding: 50px 0px 0px;
  position: relative;
  z-index: 99;
}

footer::before {
  content: "perfection";
  color: #f2eff0;
  position: absolute;
  z-index: -10049;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 130px;
  left: -1%;
  text-transform: uppercase;
  top: 3%;
}

footer .h2 {
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

footer p.tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 24px;
  color: #bd1f48;
  font-weight: 400;
  margin-top: 30px;
}

footer ul {
  padding: 0px;
}

footer ul li {
  list-style: none;
  line-height: 30px;
}

footer ul li a {
  color: #645b76;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

footer ul li a:hover,
footer ul li a:focus {
  color: #bd1f48;
  transition: all 0.5s ease;
}

footer .social-links {
  padding: 0px;
}

footer .social-links li {
  display: inline;
  margin: 0px 10px;
}

footer .social-links li a {
  color: #bd1f48;
}

footer .footer-bottom {
  padding: 30px 0px 10px;
  border-top: 1px solid #ededed;
}

footer .footer-bottom .btn-get-started {
  background: transparent;
  border: 1px solid #bd1f48;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #ffffff !important;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 25px;
  text-transform: uppercase;
  outline: none;
}

footer .footer-bottom .btn-get-started:hover,
footer .footer-bottom .btn-get-started:focus,
footer .footer-bottom .btn-get-started.active {
  background: #bd1f48;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

footer .footer-bottom .btn-get-started.active:hover,
footer .footer-bottom .btn-get-started.active:focus {
  background: transparent;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

footer .footer-bottom .btn-get-started:hover,
footer .footer-bottom .btn-get-started:focus {
  color: #bd1f48;
  background: transparent;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

#fullpage .section {
  width: 100%;
  height: 100vh;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.section-controls {
  position: fixed;
  left: 0;
  top: 50%;
  margin-top: -97px;
  display: block;
}

.section-controls ul.list-sections {
  text-align: left;
  list-style: none;
  padding-left: 20px;
}

.section-controls ul.list-sections li {
  font-size: 13px;
  margin-bottom: 5px;
}

.section-controls ul.list-sections li.active a span {
  opacity: 1;
  transition: all 0.5s ease;
}

.section-controls ul.list-sections li.active:hover a span,
.section-controls ul.list-sections li.active:focus a span {
  opacity: 1;
  transition: all 0.5s ease;
}

.section-controls ul.list-sections li a {
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  font-weight: 100;
}

.section-controls ul.list-sections li a span {
  opacity: 0.4;
  transition: all 0.5s ease;
}

.section-controls ul.list-sections li a:hover,
.section-controls ul.list-sections li a:focus {
  color: #fff;
  font-weight: 300;
}

/*
**** creatifsoft-home-banner
*/

.creatifsoft-home-banner {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.creatifsoft-home-banner .creatifsoft-video-bg .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../../frontend/images/bg/CS-Main-banner2-2.png");
  background-size: cover;
  background-position: center center;
}

.creatifsoft-home-banner .creatifsoft-video-bg video {
  position: absolute;
  min-width: 1400px;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  background: #000;
  transition: 1s opacity;
}

.creatifsoft-home-banner .creatifsoft-video-bg .stopfade {
  opacity: 0.5;
}

.creatifsoft-home-banner .sunsky-travels {
  background: url("../../frontend/images/bg/bg-banner-sunsky.png");
  background-size: cover;
  background-position: center center;
}

.creatifsoft-home-banner .travelo {
  background: url("../../frontend/images/bg/bg-banner-travelo.png");
  background-size: cover;
  background-position: center center;
}

.creatifsoft-home-banner .signstech {
  background: url("../../frontend/images/bg/bg-banner-signstech.png");
  background-size: cover;
  background-position: center center;
}

.creatifsoft-home-banner .orchard {
  background: url("../../frontend/images/bg/bg-banner-orchard.png");
  background-size: cover;
  background-position: center center;
}

.creatifsoft-home-banner .kajvalz {
  background: url("../../frontend/images/bg/bg-banner-kajvalz.png");
  background-size: cover;
  background-position: center center;
}

.creatifsoft-home-banner .luttrells {
  background: url("../../frontend/images/bg/bg-banner-luttrells.png");
  background-size: cover;
  background-position: center center;
}

.creatifsoft-home-banner .creatifSoft {
  background: url("../../frontend/images/bg/bg-creatifSoft.png");
  background-size: cover;
  background-position: center center;
}

.creatifsoft-home-banner .tec {
  background: url("../../frontend/images/bg/bg-tec.png");
  background-size: cover;
  background-position: center center;
}

.creatifsoft-home-banner .slick-controls {
  position: absolute;
  display: block;
  bottom: 30px;
  left: 50%;
  margin-left: -79px;
}

.creatifsoft-home-banner .slick-controls .intro-prev {
  cursor: pointer;
}

.creatifsoft-home-banner .slick-controls .intro-scroll {
  cursor: pointer;
  transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

.creatifsoft-home-banner .slick-controls .intro-next {
  cursor: pointer;
}

.creatifsoft-home-banner .slick-controls .scroll-text {
  color: #fff;
  font-size: 10px;
  text-transform: lowercase;
  font-weight: 100;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0px auto;
}

.creatifsoft-home-banner .slick-controls-dots {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -97px;
  display: block;
}

.creatifsoft-home-banner .slick-controls-dots ul {
  text-align: right;
  list-style: none;
  padding-right: 40px;
}

.creatifsoft-home-banner .slick-controls-dots ul li {
  font-size: 13px;
  list-style: outside url("../../frontend/images/icons/bullet-disabled.png");
  margin-bottom: 5px;
}

.creatifsoft-home-banner .slick-controls-dots ul li.active {
  list-style: outside url("../../frontend/images/icons/bullet-active.png");
}

.creatifsoft-home-banner .slick-controls-dots ul li.active a span {
  opacity: 1;
  transition: all 0.5s ease;
}

.creatifsoft-home-banner .slick-controls-dots ul li.active:hover a span,
.creatifsoft-home-banner .slick-controls-dots ul li.active:focus a span {
  opacity: 1;
  transition: all 0.5s ease;
}

.creatifsoft-home-banner .slick-controls-dots ul li a {
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  font-weight: 100;
}

.creatifsoft-home-banner .slick-controls-dots ul li a span {
  opacity: 0.4;
  transition: all 0.5s ease;
}

.creatifsoft-home-banner .slick-controls-dots ul li a:hover,
.creatifsoft-home-banner .slick-controls-dots ul li a:focus {
  color: #fff;
  font-weight: 300;
}

.creatifsoft-home-banner .CSIntro {
  position: relative;
}

.creatifsoft-home-banner .CSIntro .slick-item {
  height: 100vh;
}

.creatifsoft-home-banner .CSIntro .slick-item .btn-quote-transparent {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 100;
  color: #ffffff;
  border: 1px solid #ffffff;
  background: transparent;
  border-radius: 25px;
  padding: 10px 20px;
  text-transform: uppercase;
  position: relative;
}

.creatifsoft-home-banner .CSIntro .slick-item .btn-quote-transparent:hover,
.creatifsoft-home-banner .CSIntro .slick-item .btn-quote-transparent:focus,
.creatifsoft-home-banner .CSIntro .slick-item .btn-quote-transparent.active {
  border: 1px solid #bd1f48;
  background: #bd1f48;
  transition: all 0.5s ease;
}

.creatifsoft-home-banner .CSIntro .slick-item .btn-quote-transparent.active:hover,
.creatifsoft-home-banner .CSIntro .slick-item .btn-quote-transparent.active:focus {
  border: 1px solid #ffffff;
  background: transparent;
}

.creatifsoft-home-banner .CSIntro .slick-item .floating-icon {
  position: absolute;
  left: 45%;
  top: 45%;
}

.creatifsoft-home-banner .CSIntro .slick-item .divider-gradient {
  height: 100vh;
  width: 50%;
  z-index: 1;
  background-image: linear-gradient(0deg, rgba(24, 29, 129, 0.6) 0%, rgba(100, 37, 128, 0.6) 46%, rgba(175, 45, 127, 0.6) 100%);
}

.creatifsoft-home-banner .CSIntro .slick-item .divider-gradient .h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0px;
}

.creatifsoft-home-banner .CSIntro .slick-item .divider-gradient .h1 .bold {
  color: #bf2e6a;
  font-weight: 900;
  font-size: 46px;
}

.creatifsoft-home-banner .CSIntro .slick-item .divider-gradient .h2 {
  font-weight: 300;
  font-size: 18px;
}

.creatifsoft-home-banner .CSIntro .slick-item .divider-gradient .white-line {
  padding: 1px;
  background-color: #ffffff;
  width: 80px;
  margin-bottom: 10px;
}

.creatifsoft-home-banner .CSIntro .slick-item .divider-gradient p {
  color: #ffffff;
  line-height: 25px;
  /* text-transform: lowercase; */
  font-weight: 100;
  letter-spacing: 0.8px;
  word-spacing: 2px;
}

/*
**** creatifsoft-about
*/

.creatifsoft-about {
  background-image: url(../../frontend/images/bg/digital-experience-cs.png);
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.creatifsoft-about .h1 {
  font-family: "Montserrat";
  color: #311b53;
}

.creatifsoft-about p {
  color: #2c184b;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 15px;
  word-spacing: 1px;
}

.creatifsoft-about p .bold {
  color: #bf2e6a;
}

.creatifsoft-about .btn-more-services {
  background: transparent;
  border: 1px solid #bd1f48;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Montserrat";
  border: 1px solid #ffffff !important;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 25px;
  text-transform: uppercase;
}

.creatifsoft-about .btn-more-services:hover,
.creatifsoft-about .btn-more-services:focus,
.creatifsoft-about .btn-more-services.active {
  background: #bd1f48;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.creatifsoft-about .btn-more-services.active:hover,
.creatifsoft-about .btn-more-services.active:focus {
  background: transparent;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.creatifsoft-about .btn-more-services:hover,
.creatifsoft-about .btn-more-services:focus {
  color: #bd1f48;
  background: transparent;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

.creatifsoft-about .btn-about-us {
  position: relative;
  background: transparent;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #bf2e6a;
  padding: 6px 15px;
  border-radius: 25px;
  color: #311b53;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 20px;
  border-bottom: 1px solid #bf2e6a !important;
  font-weight: 400;
  padding: 8px 30px;
  text-transform: uppercase;
  border-radius: 0px;
}

.creatifsoft-about .btn-about-us:hover,
.creatifsoft-about .btn-about-us:focus,
.creatifsoft-about .btn-about-us.active {
  background: #bf2e6a;
  border: 1px solid #bf2e6a !important;
  transition: all 0.5s ease;
}

.creatifsoft-about .btn-about-us.active:hover,
.creatifsoft-about .btn-about-us.active:focus {
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.creatifsoft-about .btn-about-us:hover,
.creatifsoft-about .btn-about-us:focus {
  color: #311b53;
  background: transparent;
  transition: all 0.5s ease;
  border: 1px solid #311b53 !important;
}

.creatifsoft-about .shapes .hanger {
  transform-origin: 0% 0%;
  position: absolute;
  list-style: none;
}

.creatifsoft-about .shapes .hanger.position-1 {
  top: 3%;
}

.creatifsoft-about .shapes .hanger.position-1 .cloud-1 {
  background-image: url(../../frontend/images/hanger/01.png);
  width: 72px;
  height: 74px;
}

.creatifsoft-about .shapes .hanger.position-2 {
  top: 14%;
  left: 96%;
}

.creatifsoft-about .shapes .hanger.position-2 .cloud-2 {
  background-image: url(../../frontend/images/hanger/02.png);
  width: 62px;
  height: 84px;
}

.creatifsoft-about .shapes .hanger.position-3 {
  top: 1%;
  left: 70%;
}

.creatifsoft-about .shapes .hanger.position-3 .cloud-3 {
  background-image: url(../../frontend/images/hanger/03.png);
  width: 120px;
  height: 120px;
}

.creatifsoft-about .shapes .hanger.position-4 {
  top: 80%;
  left: 90%;
}

.creatifsoft-about .shapes .hanger.position-4 .cloud-4 {
  background-image: url(../../frontend/images/hanger/04.png);
  width: 68px;
  height: 90px;
}

/*
**** Web design home section
*/

.services-cs-home {
  background-image: url(../../frontend/images/bg/web-design-cs-home.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 100px 0;
}

.services-cs-home .h1 {
  color: #311b53;
}

.services-cs-home .h2 {
  color: #311b53;
  font-size: 28px;
  font-family: "Gibson-Regular";
}

.services-cs-home p {
  color: #2c184b;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 14px;
  word-spacing: 1px;
}

.services-cs-home .pink-line {
  background-color: #bf2e6a;
  width: 50px;
  height: 2px;
}

.services-cs-home .btn-more-services {
  background: transparent;
  border: 1px solid #bd1f48;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  display: block;
  font-size: 12px;
  font-family: "Montserrat";
  border: 1px solid #ffffff !important;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 25px;
  text-transform: uppercase;
}

.services-cs-home .btn-more-services:hover,
.services-cs-home .btn-more-services:focus,
.services-cs-home .btn-more-services.active {
  background: #bd1f48;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.services-cs-home .btn-more-services.active:hover,
.services-cs-home .btn-more-services.active:focus {
  background: transparent;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.services-cs-home .btn-more-services:hover,
.services-cs-home .btn-more-services:focus {
  color: #bd1f48;
  background: transparent;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

/*
**** hassle free time saving - home section
*/

.hassle-free-process {
  background-image: url(../../frontend/images/bg/time-save-cs.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 30px 0px 0px !important;
  color: #ffffff;
}

.hassle-free-process .btn-contact-us {
  background: transparent;
  border: 1px solid #ffffff;
  padding: 6px 15px;
  border-radius: 25px;
  color: #bf2e6a;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Montserrat";
  border: 1px solid #ffffff !important;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 25px;
  text-transform: uppercase;
}

.hassle-free-process .btn-contact-us:hover,
.hassle-free-process .btn-contact-us:focus,
.hassle-free-process .btn-contact-us.active {
  background: #ffffff;
  border: 1px solid #ffffff;
  transition: all 0.5s ease;
}

.hassle-free-process .btn-contact-us.active:hover,
.hassle-free-process .btn-contact-us.active:focus {
  background: transparent;
  border: 1px solid #ffffff;
  transition: all 0.5s ease;
}

.hassle-free-process .btn-contact-us:hover,
.hassle-free-process .btn-contact-us:focus {
  color: #ffffff;
  background: transparent;
  transition: all 0.5s ease;
  border: 1px solid #ffffff !important;
}

.hassle-free-process p {
  color: #ffffff;
  letter-spacing: 0.5px;
  font-size: 14px;
  word-spacing: 1px;
}

/*
**** our work - portfolio -home
*/

.our-work-home {
  padding: 100px 0px 50px;
}

.our-work-home .btn-portfolio {
  position: relative;
  background: transparent;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #ffffff;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 13px;
  border: 1px solid #7d7d7d !important;
  font-weight: 300;
  background-color: #7d7d7d !important;
  padding: 6px 15px;
  display: inline-block;
  margin: 10px 15px 10px 0px;
  border-radius: 25px;
  text-transform: capitalize;
}

.our-work-home .btn-portfolio:hover,
.our-work-home .btn-portfolio:focus,
.our-work-home .btn-portfolio.active {
  background: #bf2e6a;
  border: 1px solid #bf2e6a !important;
  transition: all 0.5s ease;
}

.our-work-home .btn-portfolio.active:hover,
.our-work-home .btn-portfolio.active:focus {
  background: transparent;
  border: 1px solid #7d7d7d;
  transition: all 0.5s ease;
}

.our-work-home .btn-portfolio:hover,
.our-work-home .btn-portfolio:focus,
.our-work-home .btn-portfolio.active {
  color: #ffffff !important;
  background: #bf2e6a !important;
  transition: all 0.5s ease;
  border: 1px solid #bf2e6a;
}

/*
**** endorsements - testimonials -home
*/

.endorsements {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 50px 0px 100px;
}

.endorsements .shapes li {
  transform-origin: 0% 0%;
  position: absolute;
  list-style: none;
  list-style: none;
}

.endorsements .shapes .position-1 {
  top: 3%;
  left: 0%;
  z-index: 999999;
}

.endorsements .shapes .position-1 .cloud-1 {
  background-image: url(../../frontend/images/icons/triangle.png);
  width: 107px;
  height: 113px;
  transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

.endorsements .shapes .position-2 {
  top: 1%;
  left: 94%;
}

.endorsements .shapes .position-2 .cloud-2 {
  background-image: url(../../frontend/images/icons/circle.png);
  width: 83px;
  background-repeat: no-repeat;
  height: 133px;
  transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

.endorsements .shapes .position-3 {
  top: 88%;
  left: 80%;
}

.endorsements .shapes .position-3 .cloud-3 {
  background-image: url(../../frontend/images/icons/double-triangle.png);
  width: 110px;
  height: 80px;
  transform: translatey(0px);
  -webkit-animation: float 6s ease-in-out infinite;
          animation: float 6s ease-in-out infinite;
}

.endorsements .h1 {
  color: #311b53;
  z-index: 10;
  position: relative;
}

.endorsements .h1::after {
  content: "Meets";
  color: #f8f8f9;
  position: absolute;
  z-index: -10;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 150px;
  left: -9%;
  text-transform: uppercase;
  top: -19%;
}

.endorsements .heartred {
  color: #c3233b;
}

.endorsements .box {
  background-image: linear-gradient(to right, #281c71, #9d2b7f);
  border: 0 solid transparent;
  border-radius: 2px;
  color: #ffffff;
  margin-top: 50px;
  position: relative;
}

.endorsements .box .h2 {
  font-size: 28px;
  font-family: "Gibson-Regular", sans-serif;
  text-transform: uppercase;
  word-spacing: 2px;
  letter-spacing: 1px;
}

.endorsements .box .h4 {
  font-size: 14px;
  font-family: "Gibson-Regular", sans-serif;
  text-transform: uppercase;
  word-spacing: 2px;
  letter-spacing: 1px;
}

.endorsements .box p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  word-spacing: 2px;
  letter-spacing: 1px;
}

.endorsements .box .slick-prev {
  left: -70px !important;
  opacity: 0.6;
}

.endorsements .box .slick-prev:hover,
.endorsements .box .slick-prev:focus {
  opacity: 1;
}

.endorsements .box .slick-prev::before {
  content: unset;
}

.endorsements .box .slick-next {
  right: -70px !important;
  opacity: 0.6;
}

.endorsements .box .slick-next:hover,
.endorsements .box .slick-next:focus {
  opacity: 1;
}

.endorsements .box .slick-next::before {
  content: unset;
}

/*
**** get-started - cta -home
*/

.get-started {
  background-image: url(../../frontend/images/bg/get-start-cs.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.get-started .btn-get-started {
  background: transparent;
  border: 1px solid #bd1f48;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Montserrat";
  border: 1px solid #ffffff !important;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 25px;
  text-transform: uppercase;
}

.get-started .btn-get-started:hover,
.get-started .btn-get-started:focus,
.get-started .btn-get-started.active {
  background: #bd1f48;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.get-started .btn-get-started.active:hover,
.get-started .btn-get-started.active:focus {
  background: transparent;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.get-started .btn-get-started:hover,
.get-started .btn-get-started:focus {
  color: #bd1f48;
  background: transparent;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

.get-started .h2 .bold,
.get-started p .bold {
  color: #bf2e6a;
}

/*
*
* banners stytling for inner pages
*
*/

.banner-inner {
  width: 100%;
  height: 100vh;
}

.banner-inner .scroll-text {
  color: #fff;
  font-size: 10px;
  text-transform: lowercase;
  font-weight: 100;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0px auto;
}

.about-banner-cs {
  background-image: url(../../frontend/images/bg/about-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;
  padding: 170px 0px 100px;
  color: #ffffff;
}

.about-banner-cs .h1 {
  font-weight: 400;
}

.about-banner-cs .h1 .bold {
  font-weight: 700;
}

.about-banner-cs .h2 {
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
}

.about-banner-cs.main-services {
  background-image: url(../../frontend/images/bg/about-banner.png);
}

.about-banner-cs.approach {
  background-image: url(../../frontend/images/bg/approach-bg.png);
}

.about-banner-cs.portfolio {
  background-image: url(../../frontend/images/bg/bg-portfolio.png);
}

.about-banner-cs.contact-us {
  background-image: url(../../frontend/images/bg/bg-contact.png);
}

.about-banner-cs.career {
  background-image: url(../../frontend/images/bg/bg-career.png);
}

.services-banner {
  background-image: linear-gradient(to bottom, #d7355d 0%, #973154 100%);
}

.services-banner .h1 {
  font-weight: 400;
}

.services-banner .h1 .bold {
  font-weight: 700;
}

.services-banner .h2 {
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
}

.services-banner::before {
  color: #9b2d56;
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 143px;
  text-transform: uppercase;
}

.services-banner.branding::before {
  content: "BRANIDNG";
  top: 34%;
  left: 50%;
  margin-left: -420px;
}

.services-banner.logo-designing::before {
  content: "Logo Design";
  top: 35%;
  left: 40%;
  margin-left: -415px;
  font-size: 140px;
}

.services-banner.company-profile::before {
  content: "Company Profile";
  top: 25%;
  font-size: 122px;
  line-height: 122px;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0px auto;
}

.services-banner.smm::before {
  content: "Social Media Marketing";
  top: 25%;
  font-size: 122px;
  line-height: 122px;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0px auto;
}

.services-banner.software-development::before {
  content: "Software Development";
  top: 25%;
  font-size: 122px;
  line-height: 122px;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0px auto;
}

.services-banner.mobile-app-development::before {
  content: "Mobile App Development";
  top: 25%;
  font-size: 122px;
  line-height: 122px;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0px auto;
}

.services-banner.seo::before {
  content: "SEO";
  top: 25%;
  font-size: 200px;
  display: block;
  width: 100%;
  text-align: center;
  margin: 0px auto;
}

.services-banner.content-writing::before {
  content: "Writing";
  top: 34%;
  left: 50%;
  margin-left: -347px;
}

.services-banner.digital-marketing::before {
  content: "Marketing";
  top: 34%;
  left: 50%;
  margin-left: -466px;
}

.services-banner.ecommerce::before {
  content: "E-commerce";
  top: 34%;
  left: 50%;
  margin-left: -526px;
}

.services-banner.web-design::before {
  content: "Web Design";
  top: 34%;
  left: 50%;
  margin-left: -526px;
}

.services-banner.web-development::before {
  content: "Web Development";
  top: 34%;
  left: 50%;
  margin-left: -677px;
  font-size: 120px;
}

.services-banner.photography::before {
  content: "Photography";
  top: 34%;
  left: 50%;
  margin-left: -506px;
  font-size: 120px;
}

/*
*
*   Inner pages css
*
*/

/*
*
*   About us css
*
*/

.our-cs-vision {
  min-height: 440px;
}

.our-cs-vision .nav-tabs .nav-item .nav-link {
  padding: 0px 15px 10px 0px;
  font-weight: 700;
  font-size: 26px;
  color: #827b8f;
  border-top: 0px !important;
  border-bottom: 2px solid #bd1f48 !important;
  border-left: 0px !important;
  border-right: 0px !important;
  text-transform: uppercase;
}

.our-cs-vision .nav-tabs .nav-item .nav-link.active,
.our-cs-vision .nav-tabs .nav-item .nav-link:hover,
.our-cs-vision .nav-tabs .nav-item .nav-link:focus {
  color: #2c184b;
  border-top: 0px !important;
  border-bottom: 2px solid #2c184b !important;
  border-left: 0px !important;
  border-right: 0px !important;
}

.our-cs-vision .tab-content .tab-pane .text-b {
  font-weight: 700;
  font-size: 50px;
  color: #2c184b;
  padding: 40px 20px 20px 20px;
  display: block;
  line-height: 60px;
}

.selected-team-cs:before {
  content: "TEAM";
  color: #f2eff0;
  position: absolute;
  z-index: -9999;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 130px;
  left: -10%;
  top: 43%;
  transform: rotate(270deg) !important;
}

.selected-team-cs .btn-get-started {
  background: transparent;
  border: 1px solid #bd1f48;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #bd1f48 !important;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 25px;
  display: inline-block;
  text-transform: uppercase;
}

.selected-team-cs .btn-get-started:hover,
.selected-team-cs .btn-get-started:focus,
.selected-team-cs .btn-get-started.active {
  background: #bd1f48;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.selected-team-cs .btn-get-started.active:hover,
.selected-team-cs .btn-get-started.active:focus {
  background: transparent;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.selected-team-cs .btn-get-started:hover,
.selected-team-cs .btn-get-started:focus {
  color: #bd1f48;
  background: transparent;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

.selected-team-cs .btn-contact {
  background: transparent;
  border: 1px solid #bd1f48;
  padding: 6px 15px;
  border-radius: 25px;
  color: #bd1f48;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid #bd1f48;
  border-radius: 25px;
  text-transform: uppercase;
  margin-left: 0px;
}

.selected-team-cs .btn-contact:hover,
.selected-team-cs .btn-contact:focus,
.selected-team-cs .btn-contact.active {
  background: #bd1f48;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.selected-team-cs .btn-contact.active:hover,
.selected-team-cs .btn-contact.active:focus {
  background: transparent;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.selected-team-cs .btn-contact:hover,
.selected-team-cs .btn-contact:focus {
  color: #ffffff;
  background: #bd1f48;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

.cs-team {
  margin-bottom: 30px;
  position: relative;
}

.founder-cs {
  padding: 100px 0px 0px;
  background-image: url(../../frontend/images/bg/founder-cs.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  position: relative;
}

.founder-cs .h2 {
  font-size: 30px;
  color: #2c184b;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 80px;
}

.founder-cs .h3 {
  font-size: 18px;
  color: #2c184b;
  text-transform: uppercase;
  font-weight: 700;
}

.founder-cs .bordered {
  border-left: 1px solid #bf2e6a;
  padding-left: 25px;
}

.founder-cs p {
  font-size: 16px;
  word-spacing: 1px;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: #2c184b;
  line-height: 1.8;
}

.founder-cs p .pink-color {
  font-weight: 700;
  font-size: 120%;
}

.founder-cs p.founders-quote {
  font-family: "Tangerine", cursive;
  font-size: 36px;
  font-weight: 900;
  color: #bf2e6a;
}

.people-cs {
  padding: 100px 0px 50px;
}

.people-cs .h1::before {
  content: "creatifsoftians";
  color: #f2eff0;
  position: absolute;
  z-index: -9999;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 80px;
  left: -7%;
  text-transform: uppercase;
  top: -90%;
}

.people-cs .team-box {
  margin-bottom: 20px;
}

.people-cs .team-box .infinite-cs {
  position: relative;
  padding: 20px 20px;
}

.people-cs .team-box .infinite-cs::after {
  height: 200px;
  width: 274px;
  opacity: 0.5;
  z-index: -1;
  left: 50%;
  margin-left: -137px;
  position: absolute;
  transition: all 0.5s ease;
  content: "";
  background: url(../../frontend/images/bg/infinity.png) no-repeat;
  background-position: 56% 100%;
}

.people-cs .team-box:hover .infinite-cs::after,
.people-cs .team-box:focus .infinite-cs::after {
  opacity: 1;
  transition: all 0.5s ease;
}

.people-cs .team-box:hover .team-intro,
.people-cs .team-box:focus .team-intro {
  opacity: 100%;
  transition: all 0.5s ease;
}

.people-cs .team-box .team-intro {
  margin-top: 10px;
  opacity: 50%;
}

.people-cs .team-box .team-intro .coworker-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #2c184b;
  font-size: 18px;
  text-transform: uppercase;
  display: block;
}

.people-cs .team-box .team-intro .coworker-designation {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #2c184b;
  font-size: 12px;
  text-transform: uppercase;
  display: block;
}

.blog-about-cs {
  background: url(../../frontend/images/bg/about-blog-cs.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 50px 0px 50px;
}

.blog-about-cs .h1 {
  color: #ffffff;
}

.blog-about-cs p {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
}

.blog-about-cs .btn-read {
  background: transparent;
  border: 1px solid #ffffff;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-weight: 300;
  padding: 12px 40px;
  border: 1px solid #ffffff;
  border-radius: 25px;
  text-transform: uppercase;
  margin-left: 0px;
}

.blog-about-cs .btn-read:hover,
.blog-about-cs .btn-read:focus,
.blog-about-cs .btn-read.active {
  background: #bd1f48;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.blog-about-cs .btn-read.active:hover,
.blog-about-cs .btn-read.active:focus {
  background: transparent;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.blog-about-cs .btn-read:hover,
.blog-about-cs .btn-read:focus {
  color: #ffffff;
  background: #bd1f48;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

.blog-about-cs a {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

.blog-about-cs .box {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-about-cs .box .blog-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  padding: 15px;
  font-family: "Montserrat", sans-serif;
}

.blog-about-cs .box .blog-overlay .blog-title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 50px;
  display: block;
}

.blog-about-cs .box .blog-overlay .blog-link {
  display: block;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  opacity: 0.5;
}

.blog-about-cs .box .blog-overlay .blog-date {
  display: block;
  color: #fff;
  font-weight: 300;
  opacity: 0.5;
}

.blog-about-cs .box:hover .blog-overlay .blog-link,
.blog-about-cs .box:focus .blog-overlay .blog-link,
.blog-about-cs .box.active .blog-overlay .blog-link {
  opacity: 1;
  transition: all 0.5s ease;
}

.blog-about-cs .box:hover .blog-overlay .blog-date,
.blog-about-cs .box:focus .blog-overlay .blog-date,
.blog-about-cs .box.active .blog-overlay .blog-date {
  opacity: 1;
  transition: all 0.5s ease;
}

.roadmap-cs {
  padding: 100px 0;
  background: #dddddd;
}

.roadmap-cs p {
  color: #2c184b;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}

.roadmap-cs .cs-team-bus {
  margin-top: 10px;
  z-index: 3;
  position: relative;
  display: inline-block;
  transform: translateX(-80px);
}

.roadmap-cs .roadmap {
  position: relative;
}

.roadmap-cs .roadmap .bus-track {
  margin-top: -20px;
}

.roadmap-cs .roadmap .bus-track img {
  width: 100%;
}

.roadmap-cs .roadmap .bus-stops .stop {
  display: block;
  cursor: pointer;
}

.roadmap-cs .roadmap .bus-stops .stop .outer-circle {
  border: 2px solid #919191;
  background-color: #fff;
  padding: 3px;
  width: 52px;
  height: 53px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}

.roadmap-cs .roadmap .bus-stops .stop .outer-circle .circle {
  background: #919191;
  width: 42px;
  height: 43px;
  border-radius: 50%;
}

.roadmap-cs .roadmap .bus-stops .stop .outer-circle .circle .year {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: block;
  color: #fff;
  padding: 13px 7px;
}

.roadmap-cs .roadmap .bus-stops .stop .outer-circle::after {
  content: " ";
  width: 2px;
  height: 135px;
  position: absolute;
  background: #919191;
  top: -6px;
  z-index: -2;
}

.roadmap-cs .roadmap .bus-stops .stop:hover .outer-circle,
.roadmap-cs .roadmap .bus-stops .stop:focus .outer-circle,
.roadmap-cs .roadmap .bus-stops .stop.active .outer-circle {
  border: 2px solid #be2d6a;
  transition: all 0.5s ease;
}

.roadmap-cs .roadmap .bus-stops .stop:hover .outer-circle .circle,
.roadmap-cs .roadmap .bus-stops .stop:focus .outer-circle .circle,
.roadmap-cs .roadmap .bus-stops .stop.active .outer-circle .circle {
  background: #be2d6a;
  transition: all 0.5s ease;
}

.roadmap-cs .roadmap .bus-stops .stop:hover .outer-circle .circle .year,
.roadmap-cs .roadmap .bus-stops .stop:focus .outer-circle .circle .year,
.roadmap-cs .roadmap .bus-stops .stop.active .outer-circle .circle .year {
  color: #fff;
  transition: all 0.5s ease;
}

.roadmap-cs .content-tabs .tabs .tab {
  display: none;
}

.roadmap-cs .content-tabs .tabs .tab.active {
  display: block;
}

.roadmap-cs .content-tabs .tabs .tab .h4 {
  color: #311b53;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.roadmap-cs .content-tabs .tabs .tab .h5 {
  color: #311b53;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}

.roadmap-cs .content-tabs .tabs .tab p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 36px;
  font-weight: 500;
}

.roadmap-cs .roadmap-mb ul > li > a {
  background: none;
  border: none;
  outline: none;
  color: #bf8695;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.roadmap-cs .roadmap-mb ul > li > a:hover,
.roadmap-cs .roadmap-mb ul > li > a:focus,
.roadmap-cs .roadmap-mb ul > li > a.active {
  background-color: transparent;
  color: #bd1f48;
}

.roadmap-cs .roadmap-mb .h4 {
  color: #311b53;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.roadmap-cs .roadmap-mb .h5 {
  color: #311b53;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}

.roadmap-cs .roadmap-mb p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 36px;
  font-weight: 500;
}

/**
*
*  services pages
*
*/

.odd-bg {
  background-color: #bf2e6a;
}

.odd-bg .h1 {
  color: #ffffff;
}

.odd-bg p {
  color: #ffffff;
}

.odd-bg .h1-after {
  color: #f4f4f4;
  opacity: 0.3;
  font-size: 100px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 120px;
  min-height: 120px;
  margin-top: -150px;
  margin-bottom: 20px;
  margin-left: -70px;
  position: relative;
  display: block;
}

.even-bg {
  background-color: #ffffff;
}

.even-bg .h1 {
  color: #2c184b;
}

.even-bg p {
  color: #645b76;
}

.even-bg .img-scaleup {
  transform: scale(1.5) translate(-27px, 45px);
}

.even-bg .img-scaledown {
  transform: scale(0.9);
}

.solution.branding::before {
  content: "Solutions";
  left: -28%;
  top: 50%;
  margin-top: -109px;
}

.solution.software-development::before {
  content: "Software";
  left: -28%;
  top: 50%;
  margin-top: -109px;
}

.solution.mobile-app-development::before {
  content: "Mobile App";
  left: -32%;
  top: 50%;
  margin-top: -109px;
}

.solution.logo-designing::before {
  content: "Logo Design";
  left: -24%;
  top: 50%;
  margin-top: -75px;
  font-size: 90px;
}

.solution.company-profile::before {
  content: "Profile Design";
  left: -30%;
  top: 50%;
  margin-top: -75px;
  font-size: 90px;
}

.solution.smm::before {
  content: "Marketing";
  left: -30%;
  top: 50%;
  margin-top: -80px;
}

.solution.seo::before {
  content: "Optimization";
  left: -22%;
  top: 50%;
  margin-top: -80px;
}

.solution.content-writers::before {
  content: "Content";
  left: -22%;
  top: 50%;
  margin-top: -80px;
}

.solution.digital-marketing::before {
  content: "Digital";
  left: -18%;
  top: 50%;
  margin-top: -80px;
}

.solution.seo::before {
  content: "SEO";
  left: -8%;
  top: 50%;
  margin-top: -142px;
}

.solution.em::before {
  content: "Marketing";
  left: -19%;
  top: 50%;
  margin-top: -50px;
  font-size: 90px;
}

.solution.web-app::before {
  content: "Web App";
  left: -22%;
  top: 50%;
  margin-top: -125px;
}

.solution.ecommerce::before {
  content: "E-commerce";
  left: 0;
  top: 13%;
  margin-top: -142px;
  transform: none !important;
}

.solution.services-listing::before {
  content: "Services";
  left: 0;
  top: 0;
  margin-top: -45px;
  transform: none !important;
}

.solution.crafts-cs::before {
  content: "Quality";
  left: -20%;
  top: 50%;
  margin-top: -115px;
}

.solution::before {
  color: #f2eff0;
  position: absolute;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 130px;
  text-transform: uppercase;
  transform: rotate(270deg) !important;
}

.solution .btn-contact {
  background: transparent;
  border: 1px solid #bd1f48;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Montserrat";
  border: 1px solid #ffffff !important;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 25px;
  text-transform: uppercase;
}

.solution .btn-contact:hover,
.solution .btn-contact:focus,
.solution .btn-contact.active {
  background: #bd1f48;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.solution .btn-contact.active:hover,
.solution .btn-contact.active:focus {
  background: transparent;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.solution .btn-contact:hover,
.solution .btn-contact:focus {
  color: #bd1f48;
  background: transparent;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

.solution.services-listing .h2 {
  font-weight: 900;
  text-transform: uppercase;
  /* font-size: 34px; */
  letter-spacing: 0.5px;
  line-height: 46px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.solution.services-listing .box {
  margin-bottom: 30px;
}

.tech-stack {
  padding: 80px 0;
  background: #f9f7f7;
}

.tech-stack .slick-next:before,
.tech-stack .slick-prev:before {
  font-family: slick;
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #bf2e6a;
}

.img-flip {
  background: #f4f9f9;
  border: 1px solid #efefef;
  border-radius: 25px;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
  padding: 15px 15px;
  min-height: 349px;
  max-height: 349px;
}

.img-flip .slick-slide {
  border: 1px solid #efefef;
  background: #fff;
  border-radius: 25px;
  padding: 15px 15px;
  transition: all 0.7s ease;
  position: relative;
  perspective: 1000px;
}

.img-flip .slick-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.7s ease;
  transform: rotatey(-90deg);
  perspective: 7000px;
  opacity: 0.8;
}

.img-flip .slick-slide.slick-active img {
  transform: rotatey(0);
  opacity: 1;
}

.logo-type-box {
  position: relative;
  margin-bottom: 15px;
}

.logo-type-box .front {
  position: relative;
  transform-style: preserve-3d;
  transition: all 5s ease;
}

.logo-type-box .front img {
  opacity: 0.5;
  margin-bottom: 10px;
}

.logo-type-box .front .h4 {
  transform: translateZ(20px);
  position: absolute;
  top: 45%;
  color: #fff;
  text-transform: uppercase;
  opacity: 1;
  margin: 0px auto;
  display: block;
  width: 100%;
  transition: all 0.5s ease;
}

.logo-type-box:hover .front,
.logo-type-box:focus .front {
  transition: all 5s ease;
}

.logo-type-box:hover .front img,
.logo-type-box:focus .front img {
  opacity: 1;
}

.logo-type-box:hover .front .h4,
.logo-type-box:focus .front .h4 {
  transform: translateY(80px);
  font-size: 18px;
  transition: all 0.5s ease;
}

.explore-service {
  background: #fafafa;
  position: relative;
  overflow: hidden;
}

.explore-service::before {
  content: "Services";
  left: 0;
  top: 13%;
  margin-top: -142px;
  transform: none !important;
  color: #f2eff0;
  position: absolute;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 130px;
  text-transform: uppercase;
}

.explore-service a {
  outline: none;
  box-shadow: none;
  display: block;
  transition: all 1s ease;
}

.explore-service a.prev:hover,
.explore-service a.prev:focus {
  transform: translateX(-10px);
  transition: all 1s ease;
}

.explore-service a.next:hover,
.explore-service a.next:focus {
  transform: translateX(10px);
  transition: all 1s ease;
}

.approach-cs.approach-odd {
  background: #f8f5f5;
  position: relative;
}

.approach-cs.approach-odd .h2 {
  position: relative;
  z-index: 2;
}

.approach-cs.approach-odd .h2.one::after {
  content: "01";
}

.approach-cs.approach-odd .h2.two::after {
  content: "02";
}

.approach-cs.approach-odd .h2.three::after {
  content: "03";
}

.approach-cs.approach-odd .h2.four::after {
  content: "04";
}

.approach-cs.approach-odd .h2.five::after {
  content: "05";
}

.approach-cs.approach-odd .h2.six::after {
  content: "06";
}

.approach-cs.approach-odd .h2.seven::after {
  content: "07";
}

.approach-cs.approach-odd .h2::after {
  color: #f1edef;
  position: absolute;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 100px;
  line-height: 100px;
  left: 0%;
  text-transform: uppercase;
  top: -55px;
  z-index: -2;
}

.approach-cs.approach-even {
  background: #ffffff;
  position: relative;
}

.approach-cs.approach-even .h2 {
  position: relative;
  z-index: 2;
}

.approach-cs.approach-even .h2.one::after {
  content: "01";
}

.approach-cs.approach-even .h2.two::after {
  content: "02";
}

.approach-cs.approach-even .h2.three::after {
  content: "03";
}

.approach-cs.approach-even .h2.four::after {
  content: "04";
}

.approach-cs.approach-even .h2.five::after {
  content: "05";
}

.approach-cs.approach-even .h2.six::after {
  content: "06";
}

.approach-cs.approach-even .h2.seven::after {
  content: "07";
}

.approach-cs.approach-even .h2::after {
  color: #f1edef;
  position: absolute;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 100px;
  line-height: 100px;
  left: 0%;
  text-transform: uppercase;
  top: -55px;
  z-index: -2;
}

.approach-cs.way-of-work {
  padding: 100px 0;
}

.approach-cs.way-of-work::before {
  content: "way of";
  left: 0;
  top: 0;
  margin-top: -10px;
  transform: none !important;
}

.approach-cs.work-process::before {
  content: "Work";
  left: 40px;
  top: 0;
  margin-top: -45px;
  transform: none !important;
}

.approach-cs::before {
  color: #f2eff0;
  position: absolute;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 130px;
  text-transform: uppercase;
  transform: rotate(270deg) !important;
}

.portfolio-cs {
  background: #f7f7f7;
  overflow: hidden;
}

.portfolio-cs .action-btn {
  background: #ffffff;
  border: 1px solid #bd1f48;
  color: #bd1f48;
  padding: 8px 30px;
  font-weight: 600;
  font-size: 12px;
  margin: 0px 0px 20px 10px;
  border-radius: 27px;
  text-transform: capitalize;
}

.portfolio-cs .action-btn:hover,
.portfolio-cs .action-btn:focus,
.portfolio-cs .action-btn.active {
  background-color: #bd1f48;
  color: #ffffff;
  transition: all 0.5s ease;
  box-shadow: 0 0 5px 3px rgba(60, 60, 60, 0.3);
}

.portfolio-cs .portfolio-box-sm {
  transition: transform 1.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-cs .portfolio-box-sm img {
  width: 100%;
}

.portfolio-cs .portfolio-box-sm:hover .overlay,
.portfolio-cs .portfolio-box-sm:focus .overlay {
  opacity: 1;
  transition: all 0.5s ease;
}

.portfolio-cs .portfolio-box-sm a .overlay-text i {
  position: absolute;
  margin-top: -23px;
  margin-left: -23px;
  top: 50%;
  left: 50%;
  color: #ffffff;
  font-size: 40px;
}

.portfolio-cs .portfolio-box-sm .overlay {
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}

.portfolio-cs .box {
  transition: transform 1.5s;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 15px;
}

.portfolio-cs .box img {
  width: 100%;
}

.portfolio-cs .box:hover .overlay,
.portfolio-cs .box:focus .overlay {
  opacity: 1;
  transition: all 0.5s ease;
}

.portfolio-cs .box a .overlay-text i {
  position: absolute;
  top: 50%;
  color: #ffffff;
  font-size: 40px;
}

.portfolio-cs .box .overlay {
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}

.contact-us-cs .h1 {
  color: #2c184b;
  position: relative;
  z-index: 99;
}

.contact-us-cs .h1::before {
  content: "contact";
  color: #f2eff0;
  position: absolute;
  z-index: -10049;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 130px;
  left: -11%;
  text-transform: uppercase;
  top: -13%;
}

.contact-us-cs .h2 {
  font-weight: 700;
  font-size: 24px;
  color: #2c184b;
  margin-bottom: 0px;
}

.contact-us-cs p {
  font-weight: 500;
  font-size: 14px;
  color: #2c184b;
  position: relative;
  z-index: 99;
}

.contact-us-cs .text-b {
  font-weight: 500;
  font-size: 14px;
  color: #645b76;
  margin-bottom: 50px;
  display: block;
}

.contact-us-cs .text-l {
  font-weight: 300;
  font-size: 14px;
  color: #645b76;
}

.contact-us-cs .form-group .form-control {
  border: 1px solid #bf2e6a;
  height: 45px;
  font-size: 14px;
  font-weight: 300;
  border-radius: 10px;
  color: #645b76;
}

.contact-us-cs .form-group .form-control::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: #645b76;
}

.contact-us-cs .form-group .form-control::-moz-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: #645b76;
}

.contact-us-cs .form-group .form-control::-ms-input-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: #645b76;
}

.contact-us-cs .form-group .form-control::-moz-placeholder {
  font-size: 14px;
  font-weight: 300;
  color: #645b76;
}

.contact-us-cs .btn-get-start {
  background: transparent;
  border: 1px solid #bd1f48;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Montserrat";
  border: 1px solid #ffffff !important;
  font-weight: 600;
  padding: 12px 40px;
  display: inline-block;
  border-radius: 25px;
  text-transform: uppercase;
}

.contact-us-cs .btn-get-start:hover,
.contact-us-cs .btn-get-start:focus,
.contact-us-cs .btn-get-start.active {
  background: #bd1f48;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.contact-us-cs .btn-get-start.active:hover,
.contact-us-cs .btn-get-start.active:focus {
  background: transparent;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.contact-us-cs .btn-get-start:hover,
.contact-us-cs .btn-get-start:focus {
  color: #bd1f48;
  background: transparent;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

.contact-us-cs .btn-get-direction {
  background: transparent;
  border: 1px solid #bd1f48;
  padding: 6px 15px;
  border-radius: 25px;
  color: #bd1f48;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-top: 30px;
  padding: 12px 40px;
  border-radius: 25px;
  text-transform: uppercase;
}

.contact-us-cs .btn-get-direction:hover,
.contact-us-cs .btn-get-direction:focus,
.contact-us-cs .btn-get-direction.active {
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.contact-us-cs .btn-get-direction.active:hover,
.contact-us-cs .btn-get-direction.active:focus {
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.contact-us-cs .btn-get-direction:hover,
.contact-us-cs .btn-get-direction:focus {
  color: #ffffff;
  background: #bd1f48;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

.contact-us-cs .line {
  border: 0.5px solid #bf2e6a;
  left: -43%;
  top: 175px;
  width: 74%;
  position: absolute;
  transform: rotate(90deg) !important;
}

.capable-team-cs {
  padding: 70px 0px 50px;
}

.capable-team-cs .h1 {
  color: #2c184b;
  padding-top: 20px;
}

.capable-team-cs .h1::before {
  content: "culture";
  color: #f2eff0;
  position: absolute;
  z-index: -9999;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 130px;
  left: -11%;
  text-transform: uppercase;
  top: -14%;
}

.careers-cs {
  background-color: #f8f5f5;
  overflow: hidden;
  position: relative;
}

.careers-cs img {
  z-index: 12;
  position: relative;
}

.careers-cs .career-listing li button {
  color: #bf2e6a;
  font-weight: 500;
  font-size: 14px;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: transparent;
}

.careers-cs .h1 {
  color: #2c184b;
  position: relative;
  z-index: 2;
}

.careers-cs .h1::before {
  content: "careers";
  color: #f2eff0;
  position: absolute;
  z-index: -2;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 130px;
  left: -64%;
  text-transform: uppercase;
  top: -70%;
}

.careers-cs .h2 {
  font-size: 50px;
  color: #2c184b;
  text-transform: capitalize;
  padding: 20px 0px 30px;
}

.careers-cs .career-box {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.careers-cs .career-box .h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2c184b;
}

.careers-cs .career-box .h4 {
  color: #bf2e6a;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 20px;
}

.careers-cs .career-box .read-more {
  color: #bf2e6a;
  font-weight: 500;
  font-size: 14px;
}

.careers-cs .career-box .read-more:hover,
.careers-cs .career-box .read-more:focus {
  color: #000;
  transition: all 0.5s ease;
}

.careers-cs .career-box .btn-apply {
  background: transparent;
  border: 1px solid #bd1f48;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Montserrat";
  border: 1px solid #ffffff !important;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 25px;
  text-transform: uppercase;
  display: inline-block;
}

.careers-cs .career-box .btn-apply:hover,
.careers-cs .career-box .btn-apply:focus,
.careers-cs .career-box .btn-apply.active {
  background: #bd1f48;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.careers-cs .career-box .btn-apply.active:hover,
.careers-cs .career-box .btn-apply.active:focus {
  background: transparent;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.careers-cs .career-box .btn-apply:hover,
.careers-cs .career-box .btn-apply:focus {
  color: #bd1f48;
  background: transparent;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

.careers-cs .email-text {
  font-weight: 400;
  font-size: 12px;
  color: #2c184b;
  text-transform: uppercase;
}

.careers-cs .hr-cs {
  color: #bf2e6a;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
}

.careers-cs .grey-line {
  padding: 1px;
  background-color: #e3dee4;
  width: 100%;
  margin-top: 30px;
}

.careers-cs .hr-cs-large {
  text-transform: uppercase;
  color: #bf2e6a;
  font-weight: 500;
  font-size: 18px;
}

.real-career-cs {
  text-align: center;
}

.real-career-cs .h1 {
  color: #2c184b;
  position: relative;
  z-index: 99;
}

.real-career-cs .h1::before {
  content: "Teamwork";
  color: #f2eff0;
  position: absolute;
  /* z-index: -9999; */
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 110px;
  left: -125px;
  text-transform: uppercase;
  top: -70px;
  z-index: -22;
}

.happy-employees-cs {
  background-color: #bf2e6a;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 50px 0px 100px;
  position: relative;
  overflow: hidden;
}

.happy-employees-cs .shapes li {
  transform-origin: 0% 0%;
  position: absolute;
  list-style: none;
  list-style: none;
}

.happy-employees-cs .shapes .position-1 {
  top: 3%;
  left: 0%;
  z-index: 999999;
}

.happy-employees-cs .shapes .position-1 .cloud-1 {
  background-image: url(../../frontend/images/icons/triangle.png);
  width: 107px;
  height: 113px;
}

.happy-employees-cs .shapes .position-2 {
  top: 1%;
  left: 94%;
}

.happy-employees-cs .shapes .position-2 .cloud-2 {
  background-image: url(../../frontend/images/icons/circle.png);
  width: 83px;
  background-repeat: no-repeat;
  height: 133px;
}

.happy-employees-cs .shapes .position-3 {
  top: 88%;
  left: 80%;
}

.happy-employees-cs .shapes .position-3 .cloud-3 {
  background-image: url(../../frontend/images/icons/double-triangle.png);
  width: 110px;
  height: 80px;
}

.happy-employees-cs .h1 {
  color: #ffffff;
  margin-bottom: 50px;
  z-index: 22;
  position: relative;
}

.happy-employees-cs .h1::after {
  content: "happy";
  color: #b42c68;
  position: absolute;
  z-index: -22;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 130px;
  left: -9%;
  text-transform: uppercase;
  top: -110%;
}

.happy-employees-cs .box {
  position: relative;
  box-shadow: 0 1px 5px 0.2px rgba(0, 0, 0, 0.16);
  background-color: #bf2e6a;
  border: 0 solid transparent;
  border-radius: 2px;
  color: #ffffff;
}

.happy-employees-cs .box .h2 {
  font-size: 28px;
  font-family: "Gibson-Regular";
  text-transform: uppercase;
}

.happy-employees-cs .box .h4 {
  font-size: 14px;
  font-family: "Gibson-Regular";
  text-transform: uppercase;
}

.happy-employees-cs .box p {
  color: #ffffff;
}

.happy-employees-cs .box .slick-prev {
  left: -90px !important;
}

.happy-employees-cs .box .slick-prev::before {
  font-size: 40px !important;
}

.happy-employees-cs .box .slick-next {
  right: -70px !important;
}

.happy-employees-cs .box .slick-next::before {
  font-size: 40px !important;
}

.happy-employees-cs .box .slick-dots {
  bottom: -40px;
}

.happy-employees-cs .box .slick-dots li button::before {
  color: #fff;
  font-size: 12px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.real-career-cs .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.real-career-cs .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.real-career-cs .slick-list:focus {
  outline: none;
}

.real-career-cs .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.real-career-cs .slick-slider .slick-track,
.real-career-cs .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.real-career-cs .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.real-career-cs .slick-track:before,
.real-career-cs .slick-track:after {
  display: table;
  content: "";
}

.real-career-cs .slick-track:after {
  clear: both;
}

.real-career-cs .slick-loading .slick-track {
  visibility: hidden;
}

.real-career-cs .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.real-career-cs [dir=rtl] .slick-slide {
  float: right;
}

.real-career-cs .slick-slide img {
  display: block;
}

.real-career-cs .slick-slide.slick-loading img {
  display: none;
}

.real-career-cs .slick-slide.dragging img {
  pointer-events: none;
}

.real-career-cs .slick-initialized .slick-slide {
  display: block;
}

.real-career-cs .slick-loading .slick-slide {
  visibility: hidden;
}

.real-career-cs .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.real-career-cs .slick-arrow.slick-hidden {
  display: none;
}

.real-career-cs .slick-thumbs {
  display: block;
  width: 100%;
  opacity: 0.5;
}

.real-career-cs img {
  max-width: 100%;
  max-height: 100%;
}

.real-career-cs .slick-big-wrap img {
  width: 100%;
}

.real-career-cs .events-slider .slick-slide {
  text-align: center;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.real-career-cs .events-slider img {
  text-align: center;
  margin: 0 auto;
}

.real-career-cs .events-slider .slick-list,
.real-career-cs .events-slider .slick-track {
  overflow: visible;
}

.real-career-cs .events-slider .slick-current {
  width: 0 30px;
  top: 50%;
  position: relative;
  z-index: 1212;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  transform: scale(1.5);
  transform-origin: center center;
  transition: transform 0.3s ease;
}

.apply-cs {
  background-color: #f8f5f5;
}

.apply-cs .h1 {
  color: #2c184b;
  position: relative;
  z-index: 99;
}

.apply-cs .h1::before {
  content: "careers";
  color: #f2eff0;
  position: absolute;
  z-index: -10049;
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 130px;
  left: -7%;
  text-transform: uppercase;
  top: -34%;
}

.apply-cs p strong {
  font-weight: 700;
  font-size: 18px;
  color: #2c184b;
  margin-right: 5px;
}

.apply-cs p a {
  color: #bf2e6a;
  font-size: 17px;
}

.apply-cs .h2 {
  color: #bf2e6a;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 30px;
}

.apply-cs .h3 {
  color: #bf2e6a;
  font-weight: 500;
  font-size: 16px;
}

.apply-cs ul {
  padding: 0px;
}

.apply-cs ul li {
  list-style: none;
  font-size: 14px;
}

.apply-cs ul li i {
  font-size: 8px;
  color: #bf2e6a;
  margin-right: 5px;
}

.apply-cs .b-text li {
  font-weight: 500;
  color: #645b76;
  line-height: 30px;
}

.apply-cs .line {
  border: 0.5px solid #bf2e6a;
  left: -23%;
  top: 120px;
  width: 46%;
  position: absolute;
  transform: rotate(90deg) !important;
}

.apply-form-cs {
  background-color: #f8f5f5;
}

.apply-form-cs .h1 {
  color: #bf2e6a;
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
}

.apply-form-cs .form-group .form-control {
  background-color: transparent;
  border: 0.5px solid #959595;
  height: 45px;
  box-shadow: none;
}

.apply-form-cs .form-group .form-control:focus {
  border: 0.5px solid #bf2e6a;
  transition: all 0.8s ease-in-out;
}

.apply-form-cs .form-group .custom-file .custom-file-input:focus {
  border: 0.5px solid #bf2e6a;
  transition: all 0.8s ease-in-out;
}

.apply-form-cs .form-group .custom-file .custom-file-label {
  height: 45px;
  padding: 10px 10px;
  background-color: transparent;
}

.apply-form-cs .form-group .custom-file .custom-file-label::after {
  padding: 10px 20px;
  height: 43px;
  background-color: #bf2e6a;
  color: #ffffff;
  content: "Choose File";
}

.apply-form-cs .form-group label {
  color: #2c184b;
  font-weight: 300;
}

.apply-form-cs .form-group label span {
  color: #bf2e6a;
  font-weight: 700;
  margin-left: 5px;
}

.apply-form-cs .custom-control {
  display: inline-block !important;
  margin-right: 5px;
}

.apply-form-cs .custom-control .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #bd1f48;
  background-color: #bd1f48;
  box-shadow: none;
  outline: none;
}

.apply-form-cs .custom-control .custom-control-label {
  font-size: 15px;
  font-weight: 300;
  color: #2c184b;
  cursor: pointer;
}

.apply-form-cs .btn-submit {
  background: transparent;
  border: 1px solid #bd1f48;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Montserrat";
  border: 1px solid #ffffff !important;
  font-weight: 600;
  padding: 10px 60px;
  display: inline-block;
  border-radius: 25px;
  text-transform: uppercase;
}

.apply-form-cs .btn-submit:hover,
.apply-form-cs .btn-submit:focus,
.apply-form-cs .btn-submit.active {
  background: #bd1f48;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.apply-form-cs .btn-submit.active:hover,
.apply-form-cs .btn-submit.active:focus {
  background: transparent;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.apply-form-cs .btn-submit:hover,
.apply-form-cs .btn-submit:focus {
  color: #bd1f48;
  background: transparent;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

.bgs-grey {
  background-color: #f9f7f7;
}

.holderCircle {
  border-radius: 100%;
  height: 400px;
  margin: 0px auto;
  position: relative;
  width: 400px;
}

.holderCircle .round {
  animation: rotation 100s linear infinite;
  -webkit-animation: rotation 100s linear infinite;
  border: 2px solid #7b2f7f;
  border-radius: 100%;
  height: 310px;
  left: 40px;
  position: absolute;
  top: 45px;
  width: 310px;
}

.holderCircle .dotCircle {
  border-radius: 100%;
  bottom: 0;
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 20;
}

.holderCircle .itemDot {
  cursor: pointer;
  display: block;
  height: 60px;
  line-height: 43px;
  position: absolute;
  text-align: center;
  width: 60px;
  z-index: 3;
  border-radius: 50%;
}

.holderCircle .itemDot.itemDotTxt {
  width: unset;
  height: unset;
}

.holderCircle .itemDot.itemDotTxt:hover,
.holderCircle .itemDot.itemDotTxt:focus {
  box-shadow: none !important;
}

.holderCircle .itemDot.itemDotTxt .bg-grey-span {
  padding: 2px 10px;
  color: #fff;
  border: 1px solid #fefefe;
  border-radius: 25px;
  font-size: 14px;
}

.holderCircle .itemDot.itemDotTxt .bg-yellow {
  background: #EBB531;
}

.holderCircle .itemDot.itemDotTxt .bg-orange {
  background: #F34C3A;
}

.holderCircle .itemDot.itemDotTxt .bg-purple {
  background: #D112C4;
}

.holderCircle .itemDot.itemDotTxt .bg-green {
  background: #12D184;
}

.holderCircle .h5 {
  display: block;
  font-family: NoeDisplay-Bold, sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 14px;
  margin-bottom: 0;
}

.holderCircle .itemDot.active .text-absolute {
  opacity: 1 !important;
  transition: all 0.5s ease;
}

.holderCircle .dotCircle .itemDot.active,
.holderCircle .dotCircle .itemDot:hover {
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
  transition: 0.5s;
  border-radius: 50%;
}

.holderCircle .contentCircle {
  left: 56%;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
}

.holderCircle .seo-2 {
  transform: scale(0.7);
}

.case-study-box {
  border: 1px solid #c9c9c9;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 15px;
}

.case-study-box .list-keywords {
  padding: 10px 15px;
}

.case-study-box .list-keywords li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  /* align-content: center; */
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.case-study-box .list-keywords li .h6 {
  font-size: 18px;
  color: #2c184b;
}

.case-study-box .list-keywords li span.bullets {
  font-size: 14px;
  color: #2c184b;
  text-transform: capitalize;
}

.case-study-box .list-keywords li span.bullets .circle {
  background-color: #bf2e6a;
  padding: 5px 10px;
  border-radius: 25px;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  width: 22px;
  height: 22px;
}

.case-study-box .case-study-box-footer {
  background: #c1356f;
  padding: 5px 15px;
  border-radius: 0 0 10px 10px;
  border: 1px solid #c1356f;
}

.case-study-box .case-study-box-footer .list-box-footer {
  color: #fff;
  margin-bottom: 0;
}

.case-study-box .case-study-box-footer .list-box-footer li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}

.cta-cs {
  background-color: #bf2e6a;
  color: #ffffff;
}

.cta-cs .h1 {
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
}

.cta-cs p {
  color: #ffffff;
  text-transform: capitalize;
  padding: 0px 0px 20px;
}

.cta-cs .btn-ordernow {
  background: transparent;
  border: 1px solid #ffffff;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-weight: 300;
  padding: 12px 40px;
  border: 1px solid #ffffff;
  border-radius: 25px;
  text-transform: uppercase;
  margin-left: 0px;
}

.cta-cs .btn-ordernow:hover,
.cta-cs .btn-ordernow:focus,
.cta-cs .btn-ordernow.active {
  background: #bf2e6a;
  border: 1px solid #bf2e6a;
  transition: all 0.5s ease;
}

.cta-cs .btn-ordernow.active:hover,
.cta-cs .btn-ordernow.active:focus {
  background: transparent;
  border: 1px solid #bf2e6a;
  transition: all 0.5s ease;
}

.cta-cs .btn-ordernow:hover,
.cta-cs .btn-ordernow:focus {
  color: #bf2e6a;
  background: #ffffff;
  transition: all 0.5s ease;
  border: 1px solid #bf2e6a !important;
}

body.modal-open {
  overflow-y: hidden;
  padding-right: 0 !important;
}

.quoteModal {
  overflow: hidden;
}

.quoteModal .bg-gradient {
  background-image: linear-gradient(to bottom, #d7355d 0%, #973154 100%);
}

.quoteModal .modal-header {
  border-bottom: 0;
  padding: 8px 15px;
}

.quoteModal .modal-body {
  padding: 0;
  position: relative;
}

.quoteModal .modal-body .form-quote {
  background-color: #fff;
  padding: 30px;
}

.quoteModal .modal-body .close {
  position: absolute;
  float: left;
  font-size: 1.8rem;
  padding: 8px 12px;
  color: #fff;
  outline: none;
  box-shadow: none;
}

.quoteModal .modal-body .cancel {
  float: right;
  text-align: right;
}

.quoteModal .modal-body .form-group {
  margin-bottom: 10px;
}

.quoteModal .modal-body .form-group label {
  color: #2c184b;
  font-weight: 300;
  font-size: 12px;
  margin: 0;
}

.quoteModal .modal-body .form-group label span {
  color: #bf2e6a;
  font-weight: 700;
  margin-left: 5px;
}

.quoteModal .modal-body .form-group .form-control {
  background-color: transparent;
  border: 0.5px solid #959595;
  box-shadow: none;
}

.quoteModal .modal-body .btn-submit {
  background: transparent;
  border: 1px solid #bd1f48;
  padding: 6px 15px;
  border-radius: 25px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #ffffff !important;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 25px;
  text-transform: uppercase;
  outline: none;
}

.quoteModal .modal-body .btn-submit:hover,
.quoteModal .modal-body .btn-submit:focus,
.quoteModal .modal-body .btn-submit.active {
  background: #bd1f48;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.quoteModal .modal-body .btn-submit.active:hover,
.quoteModal .modal-body .btn-submit.active:focus {
  background: transparent;
  border: 1px solid #bd1f48;
  transition: all 0.5s ease;
}

.quoteModal .modal-body .btn-submit:hover,
.quoteModal .modal-body .btn-submit:focus {
  color: #bd1f48;
  background: transparent;
  transition: all 0.5s ease;
  border: 1px solid #bd1f48 !important;
}

/* 
*
*   Extra small devices (portrait phones, less than 576px) 
*
*/

@media (max-width: 575px) {
  .navbar-brand .svg-icon svg {
    width: 33px;
    height: 24px;
  }

  .navbar-brand .logo-text svg {
    width: 82px;
    height: 24px;
  }

  .CSIntro .slick-item .divider-gradient {
    width: 100% !important;
  }

  .CSIntro .slick-item .divider-gradient .h1 {
    font-size: 22px !important;
  }

  .CSIntro .slick-item .divider-gradient .p-l-sm-30 {
    padding-left: 50px !important;
  }

  .our-cs-vision .nav-tabs .nav-item {
    line-height: 56px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }

  .our-cs-vision .tab-content .text-b {
    font-size: 36px !important;
    line-height: 46px !important;
  }

  .blog-about-cs .box .blog-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-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);
    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);
    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);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    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);
    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);
    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);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

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

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

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

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-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;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 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;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@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;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@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;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@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;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    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;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

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

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

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

  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

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

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

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

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    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;
    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;
    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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    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;
    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;
    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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    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;
    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;
    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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    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;
    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;
    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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    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;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    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;
    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;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    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;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    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;
    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;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

