:root {
  --primaryColor: #ff9900;
  --primaryFont: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
}

.hero {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

main ::-moz-selection {
  background-color: var(--primaryColor);
  color: #fff;
}

main ::selection {
  background-color: var(--primaryColor);
  color: #fff;
}

main ::-moz-selection {
  background-color: var(--primaryColor);
  color: #fff;
}

main p {
  margin-top: 20px;
  margin-bottom: 20px;
}

main p:first-child {
  margin-top: 0 !important;
}

main p:last-child {
  margin-bottom: 0 !important;
}

a {
  background-color: transparent;
  color: var(--primaryColor);
  text-decoration: underline;
  outline: 0;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

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

.section-heading {
  color: #888;
  line-height: 1.8;
  font-size: 13px;
  font-weight: 400;
}

.section-heading .__title:first-child {
  margin-top: -0.2em;
}

.section-heading .__subtitle {
  color: var(--primaryColor);
  font-weight: 500;
  text-transform: capitalize;
}

.section-heading--left {
  text-align: left;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 660px;
  text-align: center;
}

.section-heading--right {
  text-align: right;
}

.section-heading--white {
  color: #fff;
}

.section-heading--white .__subtitle,
.section-heading--white .__title {
  color: inherit;
}

.top-bar--light {
  color: #fff;
}
.top-bar--light.is-expanded {
  color: #333;
}
.top-bar--light.is-expanded .logo_white {
  display: none;
}
.top-bar--light.is-expanded .logo_colored {
  display: block;
}
.top-bar--light.is-expanded .top-bar__collapse,
.top-bar--light.is-sticky {
  background-color: #fff;
}

.top-bar--light.is-expanded .top-bar__navigation {
  border-bottom: 1px solid rgba(242, 242, 242, 0.25);
}

.top-bar--light.is-expanded .top-bar__navigation li {
  border-top: 1px solid rgba(242, 242, 242, 0.25);
}

.top-bar--light .top-bar__navigation a:after {
  background-color: currentColor;
}

.top-bar--light .top-bar__auth-btns a:after {
  background-color: currentColor;
}

.top-bar--dark {
  color: #333;
}

.top-bar--dark.is-sticky,
.top-bar--light.is-sticky {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(36, 36, 36, 0.12);
  box-shadow: 0 1px 5px 0 rgba(36, 36, 36, 0.12);
}

.top-bar--light.is-sticky a:not(.custom-btn) {
  color: rgb(51, 51, 51);
}

.top-bar--dark.is-expanded .top-bar__collapse {
  background-color: #fff;
}

.top-bar--dark.is-expanded .top-bar__navigation {
  border-bottom: 1px solid #f2f2f2;
}

.top-bar--light.is-expanded .top-bar__navigation {
  border-bottom: 1px solid #f2f2f2;
}

.top-bar--dark.is-expanded .top-bar__navigation li {
  border-top: 1px solid #f2f2f2;
}
.top-bar--light.is-expanded .top-bar__navigation li {
  border-top: 1px solid #f2f2f2;
}

.top-bar--dark .top-bar__navigation a:after {
  background-color: #2158a6;
}

.top-bar--dark .top-bar__auth-btns a:after {
  background-color: #2158a6;
}

.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10px 0;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s;
  z-index: 5;
}
.top-bar .custom-btn {
  padding: 10px 15px;
  min-height: 1px;
}

.top-bar a {
  font-size: 13px;
}

.top-bar.in {
  -webkit-animation-name: TopBarSlideInDown;
  animation-name: TopBarSlideInDown;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

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

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

.top-bar.out {
  -webkit-animation-name: TopBarSlideOutUp;
  animation-name: TopBarSlideOutUp;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

@-webkit-keyframes TopBarSlideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes TopBarSlideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.top-bar.is-sticky {
  position: fixed;
  top: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.top-bar.is-expanded .top-bar__collapse {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100vh;
  border-top: 80px solid transparent;
  overflow-y: auto;
}
.top-bar.is-expanded .top-bar__collapse .top-bar__action {
  margin-bottom: 20px;
}

.top-bar.is-expanded .top-bar__navigation {
  margin-bottom: 30px;
}

.top-bar.is-expanded .top-bar__navigation:last-child {
  margin-bottom: 0;
}

.top-bar.is-expanded .top-bar__navigation li {
  padding-left: 15px;
  padding-right: 15px;
}

.top-bar.is-expanded .top-bar__navigation li.has-submenu:before {
  margin-top: 20px;
}

.top-bar.is-expanded .top-bar__navigation a:not(.custom-btn) {
  display: block;
  padding-top: 17px;
  padding-bottom: 17px;
}

.top-bar.is-expanded .top-bar__action {
  padding: 0 15px;
}

.top-bar a:not(.custom-btn) {
  color: inherit;
  text-decoration: none;
}

.top-bar__inner {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1510px;
}

.top-bar a.top-bar__logo:not(.custom-btn) {
  position: relative;
  z-index: 6;
  padding: 0;
}
.top-bar a.top-bar__logo:not(.custom-btn):hover {
  background-color: transparent;
}

.top-bar__navigation-toggler {
  position: absolute;
  top: 5px;
  right: 10px;
  padding: 22px 10px;
  z-index: 6;
}

.top-bar__navigation-toggler span {
  position: relative;
  display: block;
  height: 2px;
  width: 27px;
}

.top-bar__navigation-toggler span:after,
.top-bar__navigation-toggler span:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-bar__navigation-toggler span:before {
  top: -8px;
}

.top-bar__navigation-toggler span:after {
  top: 8px;
}

.top-bar__navigation-toggler span,
.top-bar__navigation-toggler span:after,
.top-bar__navigation-toggler span:before {
  background-color: currentColor;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.top-bar__navigation-toggler.is-active span {
  background-color: transparent !important;
}

.top-bar__navigation-toggler.is-active span:after,
.top-bar__navigation-toggler.is-active span:before {
  top: 0;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.top-bar__navigation-toggler.is-active span:before {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

.top-bar__navigation-toggler.is-active span:after {
  -webkit-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.top-bar__collapse {
  height: 0;
  overflow-y: hidden;
}

.top-bar__navigation {
  position: relative;
  text-align: left;
}

.top-bar__navigation ul {
  line-height: 0;
  font-size: 0;
  letter-spacing: -1px;
}

.top-bar__navigation ul:after,
.top-bar__navigation ul:before {
  content: "";
  display: table;
  clear: both;
}

.top-bar__navigation li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
  white-space: normal;
}

.top-bar__navigation li:first-child {
  margin-top: 0 !important;
  margin-left: 0 !important;
}

.top-bar__navigation li.has-submenu > a:before {
  content: "";
  float: right;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-color: currentColor;
  margin-left: 10px;
  margin-top: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: border-color 0.3s ease-in-out;
  -o-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}

.top-bar__navigation a:not(.custom-btn) {
  position: relative;
  display: inline-block;
  padding: 0;
  line-height: inherit;
  -webkit-transition: background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out,
    color 0.3s ease-in-out;
}

.top-bar__navigation a:not(.custom-btn):after,
.top-bar__navigation a:not(.custom-btn):before {
  pointer-events: none;
}

.top-bar__navigation a.active {
  color: var(--primaryColor);
}

.top-bar__navigation .submenu {
  display: none;
}

.top-bar__action {
  margin-left: auto;
}

.top-bar__choose-lang {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.top-bar__choose-lang .current-lang {
  display: table;
  min-width: 70px;
  line-height: 1;
  cursor: pointer;
}

.top-bar__choose-lang .current-lang > * {
  display: table-cell;
  vertical-align: middle;
}

.top-bar__choose-lang .current-lang span {
  padding-left: 10px;
}

.top-bar__choose-lang .current-lang span:after {
  content: "";
  float: right;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-color: currentColor;
  margin-left: 8px;
  margin-top: 4px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: border-color 0.3s ease-in-out;
  -o-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}

.top-bar__choose-lang .list-wrap {
  display: none;
}

.top-bar__choose-lang .list-wrap ul {
  margin-top: 15px;
  padding-top: 40px;
  padding-bottom: 40px;
  line-height: 1;
  background-color: #2f3c46;
}

.top-bar__choose-lang .list-wrap li {
  position: relative;
  margin-top: 15px;
  margin-left: 15px;
  margin-right: 15px;
  line-height: 1.2;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
}

.top-bar__choose-lang .list-wrap li:first-child {
  margin-top: 0;
}

.top-bar__choose-lang .list-wrap li span {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.top-bar__choose-lang .list-wrap li span:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 2px;
  margin-top: 3px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: left 0.3s ease-in-out, width 0.3s ease-in-out,
    opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out, width 0.3s ease-in-out,
    opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: left 0.3s ease-in-out, width 0.3s ease-in-out,
    opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.top-bar__choose-lang .list-wrap li.is-active {
  color: #8d9296;
  cursor: default;
}

.top-bar__choose-lang .list-wrap li.is-active span:after {
  left: 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
  background-color: #2158a6;
}

.top-bar__choose-lang img {
  display: inline-block;
  width: 25px;
  height: 25px;
}

.top-bar__auth-btns {
  margin-top: 20px;
  display: flex;
  align-items: center;
  line-height: 1;
}

.top-bar__auth-btns:first-child {
  margin-top: 0;
}

.top-bar__auth-btns a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}

.top-bar__auth-btns a:first-child {
  margin-left: 0;
}

.top-bar__auth-btns a:not(.custom-btn):hover:after {
  left: 0;
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.top-bar__side-menu-button {
  display: none;
  vertical-align: middle;
  margin-left: 20px;
  padding: 5px 0;
  cursor: pointer;
}

.top-bar__side-menu-button .line {
  display: block;
  width: 27px;
  border-top: 2px solid currentColor;
  margin-top: 5px;
  margin-left: auto;
  -webkit-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.top-bar__side-menu-button .line:first-child {
  margin-top: 0;
}

.top-bar__side-menu-button .line:last-child {
  width: 18px;
}

.top-bar__side-menu-button:focus .line:last-child,
.top-bar__side-menu-button:hover .line:last-child {
  width: 27px;
}

.start-screen {
  position: relative;
  z-index: 1;
}
.start-screen h1 {
  font-size: 34px;
  line-height: 50px;
}
/* .start-screen p {
  font-size: 15px;
} */

.start-screen--full-height .start-screen__content__item {
  min-height: 100vh;
}

.start-screen__bg-container {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.start-screen__bg-container .slick-list,
.start-screen__bg-container .slick-slide,
.start-screen__bg-container .slick-track {
  height: 100% !important;
}

.start-screen__bg {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.start-screen__shapes .img-shape {
  position: absolute;
  z-index: 0;
}

.start-screen__content-container {
  position: relative;
  z-index: 2;
}

.start-screen__content__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 50px;
}

.start-screen__content-form {
  background: #fff;
  padding: 40px 30px;
  font-size: 1.6rem;
}

.start-screen .__site-name {
  line-height: 1.2;
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  letter-spacing: -0.05em;
}

.start-screen .play-btn {
  display: inline-block;
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  text-decoration: none;
}

.start-screen .play-btn span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  margin-right: 20px;
  color: var(--primaryColor);
  border: 2px solid #eee;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: all 0.3s ease-in-out, color 0.3s ease-in-out;
}

.start-screen .play-btn span:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent currentColor;
}

.start-screen .play-btn:hover span {
  background-color: #fbf5e8;
  border-color: #fbf5e8;
  color: #ec5a1d;
}

.start-screen--style-1 .img-shape:nth-of-type(1) {
  top: 15%;
  left: 0;
}

.start-screen--style-1 .img-shape:nth-of-type(2) {
  min-width: 520px;
  max-width: 50%;
  max-height: 95%;
  top: 0;
  right: 0;
}

.start-screen--style-2 .img-shape:nth-of-type(1) {
  max-height: 80%;
  top: 10%;
  left: 0;
}

.start-screen--style-2 .img-shape:nth-of-type(2) {
  max-width: 50%;
  min-width: 550px;
  max-height: 90%;
  top: 50%;
  left: 45vw;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.start-screen--style-3 .img-shape:nth-of-type(1) {
  max-height: 90%;
  bottom: 0;
  left: 0;
}

.start-screen--style-3 .img-shape:nth-of-type(2) {
  max-width: 60%;
  max-height: 90%;
  top: 17%;
  right: 0;
}

.start-screen--style-4 .start-screen__content__item {
  min-height: 600px;
  height: 85vh;
}

.start-screen--style-4 .img-shape:nth-of-type(1) {
  max-width: 90%;
  bottom: -10%;
  left: 0;
  right: -5%;
  margin: 0 auto;
}

.start-screen--style-6 .img-shape:nth-of-type(1) {
  max-width: 50%;
  min-width: 550px;
  max-height: 90%;
  top: 55%;
  left: 50vw;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.start-screen--style-6 .play-btn span {
  color: #fff;
}

.start-screen--style-6 .play-btn:hover span {
  background-color: #fff;
  color: var(--primaryColor);
}

.start-screen--style-7 .img-shape:nth-of-type(1) {
  max-width: 50%;
  min-width: 550px;
  max-height: 90%;
  top: 55%;
  left: 50vw;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.start-screen--style-8 .img-shape:nth-of-type(1) {
  max-width: 40%;
  max-height: 90%;
  top: 55%;
  left: 8vw;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.start-screen--style-9 .start-screen__content__item {
  min-height: 450px;
}

.start-screen--style-10 .start-screen__content__item {
  min-height: 600px;
  height: 85vh;
}

.start-screen--style-10 .play-btn span {
  width: 95px;
  height: 95px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.start-screen--style-10 .play-btn:hover span {
  background-color: #fff;
  color: var(--primaryColor);
}

.start-screen--style-12 .start-screen__content__item {
  min-height: 600px;
  height: 85vh;
}

.start-screen--style-12 .img-shape:nth-of-type(1) {
  min-width: 520px;
  max-width: 40%;
  max-height: 90%;
  top: 55%;
  left: 50vw;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.start-screen--style-13 .img-shape:nth-of-type(1) {
  min-width: 520px;
  max-width: 50%;
  max-height: 95%;
  top: 0;
  right: 0;
}

.hero {
  min-height: 400px;
  padding-top: 180px;
  padding-bottom: 30px;
  background-color: var(--primaryColor);
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.hero__title {
  line-height: 1.1;
  color: inherit;
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
}

.site-logo {
  display: inline-block;
}

.site-logo img {
  vertical-align: middle;
  max-width: 100%;
}

.custom-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-left: 28px;
  padding-right: 28px;
  line-height: 1;
  font-size: 1.6rem;
  font-size: 13px;
  font-weight: 400;
  text-align: center !important;
  text-decoration: none !important;
  text-shadow: none !important;
  letter-spacing: 0;
  border: 2px solid;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  z-index: 0;
  -webkit-transition: background-color 0.25s ease-in-out,
    border-color 0.25s ease-in-out, color 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out,
    border-color 0.25s ease-in-out, color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out,
    color 0.25s ease-in-out;
}

.custom-btn:before {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  -webkit-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  z-index: -1;
}

.custom-btn--medium {
  min-width: 155px;
  /* min-height: 50px; */
  padding-top: 15px;
  padding-bottom: 15px;
}

.custom-btn--big {
  min-width: 180px;
  min-height: 65px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.custom-btn.custom-btn--style-1 {
  color: #fff;
}

.custom-btn.custom-btn--style-1:before {
  content: "";
  opacity: 1;
  background: -o-linear-gradient(
    0deg,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #6b5392),
    color-stop(18%, #6b5392),
    color-stop(60%, #1165b2),
    to(#00a4d4)
  );
  background: -o-linear-gradient(
    left,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  background: linear-gradient(
    90deg,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
}

.custom-btn.custom-btn--style-1:focus,
.custom-btn.custom-btn--style-1:hover {
  background-color: #2d3a49;
  border-color: #2d3a49;
}

.custom-btn.custom-btn--style-1:focus:before,
.custom-btn.custom-btn--style-1:hover:before {
  opacity: 0;
}

.custom-btn.custom-btn--style-2 {
  background-color: #e7eff7;
  border-color: #e7eff7;
  color: #145595;
}

.custom-btn.custom-btn--style-2:before {
  content: "";
  opacity: 0;
  background: -o-linear-gradient(
    0deg,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #6b5392),
    color-stop(18%, #6b5392),
    color-stop(60%, #1165b2),
    to(#00a4d4)
  );
  background: -o-linear-gradient(
    left,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  background: linear-gradient(
    90deg,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
}

.custom-btn.custom-btn--style-2:focus,
.custom-btn.custom-btn--style-2:hover {
  color: #fff;
}

.custom-btn.custom-btn--style-2:focus:before,
.custom-btn.custom-btn--style-2:hover:before {
  opacity: 1;
}

.custom-btn.custom-btn--style-3 {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: #fff;
}

.custom-btn.custom-btn--style-3:hover {
  background-color: #fbf5e8;
  border-color: #fbf5e8;
  color: #ec5a1d;
}

.custom-btn.custom-btn--style-3:focus:before,
.custom-btn.custom-btn--style-3:hover:before {
  opacity: 1;
}

.custom-btn.custom-btn--style-4 {
  background-color: #fff;
  border-color: #fff;
  color: #333;
}

.custom-btn.custom-btn--style-4:focus,
.custom-btn.custom-btn--style-4:hover {
  background-color: #2d3a49;
  border-color: #2d3a49;
  color: #fff;
}

.custom-btn.custom-btn--style-5 {
  background-color: #30e3ca;
  border-color: #30e3ca;
  color: #fff;
}

.custom-btn.custom-btn--style-5:focus,
.custom-btn.custom-btn--style-5:hover {
  background-color: #47f2da;
  border-color: #47f2da;
}

.custom-btn.wide {
  width: 100%;
}

form {
  position: relative;
}

form .input-wrp {
  position: relative;
  display: block;
  width: 100%;
  line-height: 1;
  margin-bottom: 20px;
}

form .textfield {
  display: block;
  width: 100%;
  background-clip: padding-box;
  border: 2px solid;
  line-height: 1.2;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  padding: 15px 30px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  -webkit-transition: background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out,
    border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out,
    color 0.3s ease-in-out;
  font-weight: 400;
  color: #4c4c4c;
}

form .textfield::-webkit-input-placeholder {
  color: #aaa;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

form .textfield::-moz-placeholder {
  color: #aaa;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

form .textfield:-moz-placeholder {
  color: #aaa;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

form .textfield:-ms-input-placeholder {
  color: #aaa;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

form .textfield--light {
  background-color: #fff;
  border-color: #fff;
  color: #b1b1b1;
}

form .textfield--grey {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  color: #4c4c4c;
}

form .textfield--grey.focus,
form .textfield--grey:focus {
  background-color: #fff;
}

form .textfield--dark {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.5);
}

form .textfield--dark.focus,
form .textfield--dark:focus {
  background-color: #fff;
  border-color: #fff;
  color: #b1b1b1;
}

form .textfield.error {
  border-color: var(--primaryColor) !important;
}

form input.textfield {
  height: 54px;
}

form textarea {
  resize: none;
  min-height: 150px;
  height: 100%;
}

form button[type="submit"] {
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  margin-top: 10px;
}

.form--horizontal button[type="submit"] {
  margin-top: 0;
}

label {
  cursor: pointer;
}

.checkbox {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  line-height: 1.5;
  padding-left: 35px;
}

.checkbox input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  clip: rect(2px, 2px, 2px, 2px);
}

.checkbox input[type="checkbox"]:checked ~ i:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.checkbox input[type="checkbox"]:checked ~ span a {
  color: var(--primaryColor);
}

.checkbox i {
  position: relative;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: -35px;
  background-color: #fff;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  overflow: hidden;
  -webkit-transition: background-color 0.25s ease-in-out;
  -o-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}

.checkbox i:before {
  content: "\2713";
  display: block;
  line-height: 17px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  color: var(--primaryColor);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.checkbox i:last-child {
  margin-right: 0;
}

@media (min-width: 576px) {
  .start-screen--style-9 .start-screen__content__item {
    height: 85vh;
  }
  .form--horizontal .input-wrp {
    width: auto;
    margin: 0 -50px 0 0;
  }
}

@media (min-width: 992px) {
  .start-screen--style-4 {
    margin-bottom: 90px;
  }
  .hero {
    min-height: 350px;
    padding-top: 180px;
  }
}

@media (min-width: 1200px) {
  .top-bar--light .top-bar__navigation a.active {
    color: inherit;
  }
  .top-bar a:not(.custom-btn) {
    padding: 10px 15px;
    border-radius: 30px;
  }
  .top-bar a:not(.custom-btn):hover {
    background-color: #fbf5e8;
    /* border-color: #fbf5e8; */
    color: #ec5a1d;
  }
  .top-bar .top-bar__navigation a.active {
    color: #fff;
    background-color: var(--primaryColor);
  }
  .top-bar {
    top: 15px;
    padding: 18px 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .top-bar__navigation-toggler {
    display: none;
  }
  .top-bar__navigation {
    margin-left: 40px;
  }
  .top-bar__navigation a.active:after,
  .top-bar__navigation li:hover > a:after {
    left: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  .top-bar__navigation li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
  }
  .top-bar__navigation li.has-submenu:hover > .submenu {
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
  }
  .top-bar__navigation li.has-submenu:hover > a {
    background-color: #fbf5e8;
    color: #ec5a1d;
  }
  .top-bar__navigation .submenu {
    display: block;
    border-top-width: 0;
    position: absolute;
    top: 100%;
    right: -30px;
    min-width: 230px;
    margin-top: 40px;
    margin-right: 0;
    padding: 10px 0;
    background-color: #fff;
    color: #333;
    visibility: hidden;
    opacity: 0;
    z-index: 3;
    -webkit-transition: opacity 0.2s ease-in-out, margin-top 0.3s ease-in-out,
      visibility 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out, margin-top 0.3s ease-in-out,
      visibility 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, margin-top 0.3s ease-in-out,
      visibility 0.2s ease-in-out;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
  }
  .top-bar__navigation .submenu:after {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 0;
    top: -7px;
    box-shadow: rgba(0, 0, 0, 0.08) -1px -1px 1px;
    right: calc(30px + 10px);
    transform: rotate(45deg);
  }
  .top-bar__navigation .submenu::before {
    content: "";
    display: block;
    margin-top: -20px;
    height: 20px;
  }
  .top-bar__navigation .submenu li {
    display: list-item;
    margin-top: 5px;
    margin-left: 0;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
  }
  .top-bar__navigation .submenu li a {
    display: block;
    border-radius: 0;
  }
  .top-bar__navigation .submenu li.active > a,
  .top-bar__navigation .submenu li:hover > a {
    color: #ec5a1d;
  }
  .top-bar__navigation .submenu li.has-submenu:hover:before {
    border-color: #8d9296;
  }
  .top-bar__navigation .submenu li.has-submenu:hover .submenu {
    margin-top: 0;
  }
  .top-bar__navigation .submenu a:after {
    margin-top: 0;
    background-color: #0383c3 !important;
  }
  .top-bar__navigation .submenu a:focus,
  .top-bar__navigation .submenu a:hover {
    color: #8d9296;
  }
  .top-bar__navigation .submenu .submenu {
    top: 0;
    right: 100%;
    margin-right: 0;
    background-color: #27343d;
  }
  .top-bar__navigation .submenu .submenu:before {
    content: none;
  }
  .top-bar__collapse {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    height: auto;
    overflow: visible;
  }
  .top-bar__choose-lang .list-wrap {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 160px;
    margin-left: -80px;
  }
  .top-bar__choose-lang .list-wrap li {
    margin-left: 45px;
    margin-right: 45px;
  }
  .top-bar__auth-btns {
    margin-top: 0;
    margin-left: 25px;
  }
  .top-bar__side-menu-button {
    display: inline-block;
  }
}

@media screen and (min-width: 1200px) and (prefers-reduced-motion: reduce) {
  .top-bar__navigation .submenu,
  .top-bar__navigation a:after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

@media only screen and (min-width: 1400px) {
  .top-bar__auth-btns a {
    margin-left: 10px;
  }
  .top-bar__side-menu-button {
    margin-left: 35px;
  }
}

@media screen and (prefers-reduced-motion: reduce) {
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .top-bar,
  .top-bar__navigation li.has-submenu:before,
  .top-bar__navigation-toggler span,
  .top-bar__navigation-toggler span:after,
  .top-bar__navigation-toggler span:before,
  a {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .top-bar__choose-lang .current-lang span:after,
  .top-bar__choose-lang .list-wrap li span:after,
  .top-bar__navigation a:not(.custom-btn) {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .top-bar__auth-btns a:not(.custom-btn):after,
  .top-bar__side-menu-button .line {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .custom-btn,
  .custom-btn:before,
  .start-screen .play-btn span,
  form .textfield {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  form .textfield::-webkit-input-placeholder {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  form .textfield::-moz-placeholder {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  form .textfield:-moz-placeholder {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  form .textfield:-ms-input-placeholder {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .checkbox i {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
  .checkbox i:before {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

@media (max-width: 767.98px) {
  .start-screen--style-11 .start-screen__content__item {
    height: auto;
  }
}

.video-section {
  background-position: center bottom;
  background: #f9fbfc url(../img/video_bg.png);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: no-repeat;
  background-size: cover;
}
.pricing-table .__inner {
  margin-bottom: -50px;
}
.pricing-table .__label {
  top: 0;
  right: 0;
  padding: 12px 25px;
  background-color: #fbf5e8;
  color: #ec5a1d;
  position: absolute;
  line-height: 1.3;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.pricing-table .__item {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 60px 15px;
  text-align: center;
  overflow: hidden;
}
.pricing-table .__item--rounded {
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.pricing-table .__item--bordered {
  padding: 56px 11px;
  border: 4px solid;
}
.pricing-table .__label {
  position: absolute;
  line-height: 1.3;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.pricing-table .__label + .__title {
  margin-top: 0;
}
.pricing-table .__price {
  margin-top: 25px;
  margin-bottom: 25px;
  line-height: 1;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: -3px;
  color: #333;
}
.pricing-table .__price span {
  font-family: Tahoma;
}
.pricing-table .__price:first-child {
  margin-top: 0;
}
.pricing-table .__price:last-child {
  margin-bottom: 0;
}
.pricing-table .__price sup {
  font-size: 3.5rem;
}
.pricing-table .__price sub {
  bottom: auto;
  font-size: 3rem;
  letter-spacing: -1px;
}
.pricing-table .__desc-list {
  font-size: 1.6rem;
}
.pricing-table--s1 .__item--shadow {
  -webkit-box-shadow: 0 0 29px 0 rgba(174, 175, 175, 0.11);
  box-shadow: 0 0 29px 0 rgba(174, 175, 175, 0.11);
}
.pricing-table--s1 .__item--active {
  background: -o-linear-gradient(
    90deg,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #6b5392),
    color-stop(18%, #6b5392),
    color-stop(60%, #1165b2),
    to(#00a4d4)
  );
  background: -o-linear-gradient(
    bottom,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  background: linear-gradient(
    0deg,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  color: #fff;
}
.pricing-table--s1 .__item--active .__price,
.pricing-table--s1 .__item--active .__title,
.pricing-table--s1 .__item--active .__value {
  color: inherit;
}
.pricing-table--s1 .__item--active .__label {
  top: 4px;
  right: 4px;
  background-color: #fff;
  padding: 7px 20px;
  color: #01a1d2;
}
.pricing-table--s1 .disabled {
  color: #c5c5c5;
}
.pricing-table--s2 .__item--shadow {
  -webkit-box-shadow: 0 0 29px 0 rgba(174, 175, 175, 0.11);
  box-shadow: 0 0 29px 0 rgba(174, 175, 175, 0.11);
}
.pricing-table--s2 .__item--active .__label {
  top: 0;
  right: 0;
  background-color: #e3306f;
  padding: 12px 25px;
  color: #fff;
}
.pricing-table--s3 .__item--color-1 {
  border-color: #ff5252;
}
.pricing-table--s3 .__item--color-1 .__price {
  color: #ff5252;
}
.pricing-table--s3 .__item--color-1 .custom-btn:before {
  background: -o-linear-gradient(0deg, #f63068 0, #fa6e3d 100%);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #f63068),
    to(#fa6e3d)
  );
  background: -o-linear-gradient(left, #f63068 0, #fa6e3d 100%);
  background: linear-gradient(90deg, #f63068 0, #fa6e3d 100%);
}
.pricing-table--s3 .__item--color-2 {
  border-color: #26b251;
}
.pricing-table--s3 .__item--color-2 .__price {
  color: #26b251;
}
.pricing-table--s3 .__item--color-2 .custom-btn:before {
  background: -o-linear-gradient(0deg, #2fb76b 0, #8ac84b 100%);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #2fb76b),
    to(#8ac84b)
  );
  background: -o-linear-gradient(left, #2fb76b 0, #8ac84b 100%);
  background: linear-gradient(90deg, #2fb76b 0, #8ac84b 100%);
}
.pricing-table--s3 .__item--color-3 {
  border-color: #255da9;
}
.pricing-table--s3 .__item--color-3 .__price {
  color: #255da9;
}
.pricing-table--s3 .__item--color-3 .custom-btn:before {
  background: -o-linear-gradient(0deg, #255da9 0, #00a4d4 100%);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #255da9),
    to(#00a4d4)
  );
  background: -o-linear-gradient(left, #255da9 0, #00a4d4 100%);
  background: linear-gradient(90deg, #255da9 0, #00a4d4 100%);
}
.pricing-table--s3 .__item--color-4 {
  border-color: #ffb042;
}
.pricing-table--s3 .__item--color-4 .__price {
  color: #ffb042;
}
.pricing-table--s3 .__item--color-4 .custom-btn:before {
  background: -o-linear-gradient(0deg, #fbbe00 0, #fdd968 100%);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #fbbe00),
    to(#fdd968)
  );
  background: -o-linear-gradient(left, #fbbe00 0, #fdd968 100%);
  background: linear-gradient(90deg, #fbbe00 0, #fdd968 100%);
}
.pricing-table--s3 .__item--active {
  background: -o-linear-gradient(
    90deg,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #6b5392),
    color-stop(18%, #6b5392),
    color-stop(60%, #1165b2),
    to(#00a4d4)
  );
  background: -o-linear-gradient(
    bottom,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  background: linear-gradient(
    0deg,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  color: #fff;
}
.pricing-table--s3 .__item--active .__price,
.pricing-table--s3 .__item--active .__title,
.pricing-table--s3 .__item--active .__value {
  color: inherit;
}
.pricing-table--s3 .__item--active .__label {
  top: 4px;
  right: 4px;
  background-color: #fff;
  padding: 7px 20px;
  color: #01a1d2;
}
.pricing-table--s3 .__item--active .custom-btn {
  color: #333;
}
.pricing-table--s3 .__item--active .custom-btn:focus,
.pricing-table--s3 .__item--active .custom-btn:hover {
  background-color: #2d3a49;
  border-color: #2d3a49;
  color: #fff;
}
.pricing-table--s3 .__item:not(.__item--active) .custom-btn {
  background-color: #2d3a49;
  border-color: #2d3a49;
}
.pricing-table--s3 .__item:not(.__item--active) .custom-btn:focus:before,
.pricing-table--s3 .__item:not(.__item--active) .custom-btn:hover:before {
  opacity: 0;
}
.pricing-table--s3 .__value {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  color: #333;
}
.pricing-table--s3 .custom-btn {
  background-color: #fff;
  border-color: #fff;
  color: #fff;
}
.pricing-table--s3 .custom-btn:before {
  content: "";
}
.pricing-table--s4 table {
  background-color: #fff;
  font-size: 1.6rem;
}
.pricing-table--s4 table.rounded {
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.pricing-table--s4 table.shadow {
  -webkit-box-shadow: 0 0 29px 0 rgba(174, 175, 175, 0.11);
  box-shadow: 0 0 29px 0 rgba(174, 175, 175, 0.11);
}
.pricing-table--s4 table .__price {
  font-size: 2rem;
  letter-spacing: -2px;
}
.pricing-table--s4 table .__price sub,
.pricing-table--s4 table .__price sup {
  font-size: inherit;
}
.pricing-table--s4 table .__price sup {
  top: auto;
}
.pricing-table--s4 tbody tr:nth-of-type(2n) {
  background-color: #f7f7f7;
}
.pricing-table--s4 tbody tr:nth-of-type(2n) td.active {
  background-color: rgba(5, 110, 185, 0.8);
}
.pricing-table--s4 tbody td {
  height: 62px;
}
.pricing-table--s4 tbody th {
  height: 90px;
}
.pricing-table--s4 tfoot td {
  padding-top: 35px;
  padding-bottom: 45px;
}
.pricing-table--s4 td:first-child,
.pricing-table--s4 th:first-child {
  width: 25%;
  min-width: 250px;
  padding-left: 4%;
  text-align: left;
}
.pricing-table--s4 td.active,
.pricing-table--s4 th.active {
  background-color: #056eb9;
  color: #fff;
}
.pricing-table--s4 td.active .__price,
.pricing-table--s4 td.active .__title,
.pricing-table--s4 th.active .__price,
.pricing-table--s4 th.active .__title {
  color: inherit;
}
.pricing-table--s4 td {
  padding-left: 10px;
  padding-right: 10px;
}
.pricing-table--s4 .__item--shadow {
  -webkit-box-shadow: 0 0 29px 0 rgba(174, 175, 175, 0.11);
  box-shadow: 0 0 29px 0 rgba(174, 175, 175, 0.11);
}
.pricing-table--s4 .__item--active {
  background: -o-linear-gradient(
    90deg,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #6b5392),
    color-stop(18%, #6b5392),
    color-stop(60%, #1165b2),
    to(#00a4d4)
  );
  background: -o-linear-gradient(
    bottom,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  background: linear-gradient(
    0deg,
    #6b5392 0,
    #6b5392 18%,
    #1165b2 60%,
    #00a4d4 100%
  );
  color: #fff;
}
.pricing-table--s4 .__item--active .__name,
.pricing-table--s4 .__item--active .__price,
.pricing-table--s4 .__item--active .__title,
.pricing-table--s4 .__item--active .__value {
  color: inherit;
}
.pricing-table--s4 .__item--active .__label {
  top: 4px;
  right: 4px;
  background-color: #fff;
  padding: 7px 20px;
  color: #01a1d2;
}
.pricing-table--s4 .__item--active .__desc-list li:nth-of-type(2n + 1) {
  background: rgba(255, 255, 255, 0.15);
}
.pricing-table--s4 .__body {
  width: 100%;
}
.pricing-table--s4 .__name {
  margin-bottom: 10px;
}
.pricing-table--s4 .__desc-list {
  margin-left: -15px;
  margin-right: -15px;
}
.pricing-table--s4 .__desc-list li {
  margin: 0;
  padding: 10px 15px;
}
.pricing-table--s4 .__desc-list li:nth-of-type(2n + 1) {
  background-color: #f7f7f7;
}
.pricing-table--s4 .__desc-list li span:first-child {
  float: right;
}
.pricing-table--s5 .__item {
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent;
}
.pricing-table--s5 .__body {
  text-align: center;
}
.pricing-table--s5 .__desc-list,
.pricing-table--s5 .__price,
.pricing-table--s5 .__title {
  color: #fff;
}
.pricing-table--s5 .__desc-list {
  display: inline-block;
  vertical-align: top;
}
.pricing-table--s5 .custom-btn {
  color: #fff;
  border-color: #fff;
}
.pricing-table--s5 .custom-btn:focus,
.pricing-table--s5 .custom-btn:hover {
  background-color: #fff;
  color: #333;
}

.plan-highlight {
  transform: scale(1.3);
}
.cookiewarning {
  padding: 10px 20px;
  display: block;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
  bottom: 10px;
  z-index: 999;
  background-color: rgba(251, 245, 232, 0.7);
  color: white;
  text-align: center;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.cookiewarning p {
  align-items: center;
  display: flex;
  font-size: 13px;
  color: #333;
}
.cookiewarning a {
  margin: 0 5px;
}
.cookiewarning span {
  background-color: var(--primaryColor);
  color: #fff;
  line-height: 1;
  font-size: 12px;
  padding: 5px 8px;
  cursor: pointer;
  border-radius: 4px;
}
.customer-feedback {
  position: fixed;
  bottom: 0;
  z-index: 4;
  cursor: pointer;
  left: 2%;
}
.customer-feedback svg {
  display: block;
}

.form-group {
  margin-bottom: 1em;
}
.form-group label {
  display: block;
  font-weight: normal;
  color: #333;
  font-size: 13px;
  cursor: default;
  line-height: normal;
  margin: 0 0 5px;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 0.375em 0.75em;
  resize: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25em;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

textarea.form-control {
  height: auto;
  min-height: 1px;
}

.custom-btn--small {
  min-height: 40px;
}
#contact a {
  text-decoration: none;
  color: #888888;
}
#contact a:hover {
  color: #333;
}
#contact h4 {
  margin-bottom: 10px;
}

/*---------------------------------------------*/
.login-btn {
  background-color: #fbf5e8;
  border-color: #fbf5e8;
  color: var(--primaryColor);
}
.login-btn:hover {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: #fff;
}
.logo_colored {
  display: none;
}
header.is-sticky .logo_white {
  display: none;
}
header.is-sticky .logo_colored {
  display: block;
}
.contact_info.footer__address--s2 li {
  font-size: 13px;
  padding-left: 30px;
}
.contact_info.footer__address--s2 .__ico {
  margin-left: -30px;
  font-size: 1.5rem;
  padding-top: 3px;
}
.hero__title span {
  font-weight: 700;
}
/* .start-screen p {
  font-size: 13px;
} */
.posts .__item h3.weight-normal {
  font-size: 20px;
  line-height: 30px;
}
.share-btns__list li a {
  padding: 12px 13px;
  text-align: center;
}
.share-btns__list li a i {
  margin: 0 !important;
}
.posts.case_study h3.weight-normal {
  font-size: 16px;
}
.affiliate_features .check-list li {
  font-size: 14px;
  line-height: normal;
}
.affiliate_features .section-heading--center {
  max-width: 800px;
}
.text-justify {
  text-align: justify;
}
.case-study .projects--s1 .__inner .slick-arrow {
  border-radius: 50px;
}
.pricing-table .__desc-list li {
  font-size: 13px;
  position: relative;
  padding-left: 25px;
  text-align: left;
  line-height: normal;
  padding-top: 10px;
  margin-top: 10px;
}

.pricing-table .__desc-list li + li {
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
}

.pricing-table .__desc-list li i {
  position: absolute;
  left: 0;
}

a:focus,
a:hover {
  text-decoration: underline;
}
a {
  text-decoration: none;
}

@media screen and (max-width: 992px) {
  .hero {
    padding: 54px 0 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero__title {
    font-size: 3.5rem;
  }

  .start-screen--full-height .start-screen__content__item {
    min-height: 1px;
  }
}

@media screen and (max-width: 767px) {
  .counter--s2 .__item {
    margin-bottom: 40px;
    justify-content: center;
  }
  .customer-feedback {
    display: none;
  }
  .hero {
    min-height: 200px;
  }
  .hero__title {
    font-size: 2.5rem;
  }
  .custom-btn--medium {
    min-width: 1px;
    min-height: 1px;
    padding: 10px 15px;
    font-size: 1.4rem;
  }
  .custom-btn--big {
    min-width: 1px;
    min-height: 1px;
    padding: 15px 20px;
    font-size: 1.4rem;
  }
  .start-screen .play-btn span {
    height: 48px;
    width: 48px;
    margin-right: 10px;
  }
  .start-screen .play-btn span::before {
    border-width: 6px 0 6px 10px;
  }
  .counter.counter--s2 .__item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .counter.counter--s2 .__ico + .__content {
    margin-top: 0;
  }
}

.shadow {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/*custom css*/

@media (min-width: 1200px) {
  .top-bar__navigation .submenu.menu_withIcon {
    min-width: 370px;
  }
  .top-bar__navigation .submenu.menu_withIcon.resources {
    min-width: 225px;
  }
}

.top-bar__navigation .submenu.menu_withIcon li a {
  display: flex;
  align-items: center;
}

.top-bar__navigation .submenu.menu_withIcon li a i {
  margin-right: 20px;
  margin-left: 7px;
  font-size: 18px;
  color: var(--primaryColor);
  width: 22px;
  text-align: center;
}

.top-bar__navigation .submenu.menu_withIcon li a span {
  line-height: 22px;
}

.top-bar__navigation .submenu.menu_withIcon li a strong {
  font-weight: 600;
}

/*footer*/
.sub-footer {
  border-top: rgba(0, 0, 0, 0.2) 1px solid !important;
}
.sub-footer p {
  font-size: 12px !important;
  color: #4c4c4c !important;
}
.sub-footer p a {
  font-weight: 500;
}

/*custom*/
.h4,
h4 {
  font-size: 1.5rem;
}

.msgMain {
  display: flex;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center;
}
.msgIcon {
  font-size: 40px;
  display: flex;
  margin-right: 14px;
}
.msgContent {
  flex-grow: 1;
}
.required-msg {
  font-size: 12px;
  color: red;
}

.email_msg {
  position: absolute !important;
  width: 96.5%;
}

.errorMsgRow {
  display: flex;
  width: calc(100% - 58px);
}

.errorMsgRow .errorCol {
  flex-grow: 1;
  text-align: left;
  min-width: 226px;
}

/*footer*/
.footer--s5 {
  padding: 70px 0 50px !important;
}

.footer_signup {
  margin-bottom: 70px;
}

.footer_signup .custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 0;
  min-height: 40px;
  margin-top: 20px;
}

.footer_signup h2 {
  margin-bottom: 5px;
}

.footer_signup p {
  font-size: 20px !important;
}

.footer_bottom {
  padding: 20px 0;
  background: #0b0b0b;
  color: #fff;
}

.footer_bottom .sub-footer {
  margin: 0;
  padding: 0;
  border: 0 !important;
  color: #fff;
}

.footer_bottom .sub-footer p {
  color: #ffffff99 !important;
}

.footer_bottom .sub-footer p a {
  font-weight: 400;
  color: #ffffff !important;
  text-decoration: none !important;
}

.footer_bottom .sub-footer p a:hover {
  color: var(--primaryColor) !important;
}

.msgContent ul {
  width: auto;
  display: flex;
  flex-wrap: wrap;
}

.msgContent ul li {
  width: max-content;
  background: #00000015;
  border-radius: 50px;
  padding: 5px 15px;
  margin-top: 5px;
  align-items: center;
  display: flex;
}

.msgContent ul li + li {
  margin-left: 5px;
}

.animation_outer {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 96%;
  /* top: 100px; */
  padding-top: 25px;
}

.footer .social-media a {
  width: 35px;
  height: 34px;
  font-size: 1.5rem;
  line-height: 0;
}

.footer li.social-media {
  margin-top: 10px;
  margin-left: 5px;
}

.footer li.social-media a.insta {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  /* radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); */
}

.footer li.social-media a.fb {
  background-color: #4267b2;
}

.footer li.social-media a.twitter {
  background-color: #00acee;
}

.footer li.social-media a.youtube {
  background-color: #ff0000;
}

.footer li.social-media a:hover {
  background: var(--primaryColor);
  color: #fff;
}

form .textfield.error {
  border-color: red !important;
}

.pricing-tabs .tab-nav__item.active a {
  align-items: center;
  display: flex;
  justify-content: center;
}

.email_capsule {
  width: max-content;
  background: #00000015;
  border-radius: 50px;
  padding: 5px 15px;
  margin-top: 5px;
  align-items: center;
  /* display: flex; */
  font-weight: 400;
}

@media (max-width: 990px) {
  .email_msg {
    width: 92.5%;
  }
  .errorMsgRow {
    width: 100%;
  }
  .animation_outer {
    position: relative;
    width: 100%;
  }
  .start-screen__content__item {
    padding-bottom: 0px;
  }
}
