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

body {
  background-color: #282828;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 18px;
  overflow-x: hidden;
}
/*** 

====================================================================
  Loading Transition
====================================================================

 ***/
 .ctn-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
}
.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
.ctn-preloader .animation-preloader .icon {
  margin-bottom: 60px;
}
.ctn-preloader .animation-preloader .icon img {
  margin: 0 auto;
}
.ctn-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: var(--p-rose);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top: 0;
  line-height: 70px;
  position: absolute;
}
.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  font-weight: 700;
  letter-spacing: 15px;
  display: inline-block;
  color: rgba(255, 82, 132, 0.15);
  position: relative;
  font-size: 70px;
  line-height: 70px;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.ctn-preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.ctn-preloader .loader-section {
  background-color: #ffffff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@media screen and (max-width: 500px) {
  .ctn-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 65px;
    letter-spacing: 10px;
  }
}

section {
  padding: 30px 0;
  overflow-x: hidden;
}

.hero {
  margin-top: 100px;
}

@media (min-width: 992px) {
  section {
    padding: 70px 0;
  }
}

h1, h2, h3 {
  font-weight: 700;
  font-size: 35px;
}

h1 em, h2 em, h3 em {
  font-style: normal;
  color: #f4b859;
}

h4 {
  font-weight: 700;
  font-size: 25px;
}

h4 em {
  font-style: normal;
  color: #f4b859;
}

h5 {
  font-size: 20px;
  font-weight: 700;
  color: #f4b859;
}

h6 {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 767.97px) {
  body {
    font-size: 15px;
  }
  h1, h2, h3 {
    font-size: 30px;
  }
  h4, h5 {
    font-size: 22px;
  }
  h6 {
    font-size: 15px;
  }
}

.main-color {
  color: #f4b859;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  color: #ffffff;
}

.btn {
  padding: 14px;
  min-height: 48px;
  border-radius: 10px;
  background-color: #f4b859;
  border: 1px solid #f4b859;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #282828;
  cursor: pointer;
}

.btn_transp {
  background-color: transparent;
  color: #ffffff;
}

.btn_transp:hover, .btn_transp:focus {
  color: #ffffff;
}

.btn-lg {
  font-size: 20px;
  line-height: 24px;
  min-height: 77px;
  padding: 26px;
  width: 100%;
  max-width: 380px;
}

input[type=text],
input[type=email] {
  padding: 25px;
  width: 100%;
  max-width: 380px;
  height: 76px;
  border-radius: 10px;
  background-color: #acacac;
  text-align: center;
  color: #e4e4e4;
  font-size: 20px;
  line-height: 24px;
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder {
  color: #e4e4e4;
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder {
  color: #e4e4e4;
}

input[type=text]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder {
  color: #e4e4e4;
}

input[type=text]::placeholder,
input[type=email]::placeholder {
  color: #e4e4e4;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  font-weight: 400;
  font-size: 15px;
  color: #d0d0d0;
}

input[type=checkbox] + label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: transparent;
  border: solid 1px #f5b858;
}

input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  top: 5px;
  width: 21px;
  height: 15px;
  background-image: url(../img/check.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

input[type=checkbox]:checked + label::before {
  display: block;
}

.popup-youtube {
  cursor: pointer;
}

.privacy-link {
  text-decoration: underline;
}

.navbar {
  background-color: #282828;
}

.navbar .nav-link {
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
}

.navbar .nav-link:hover {
  color: #f4b859;
}

.navbar .special .nav-link {
  color: #f4b859;
}

.navbar .navbar-toggler {
  padding: 5px;
  font-size: 30px;
  border: none;
  color: #ffffff;
  background-color: transparent;
}

.navbar .dropdown-menu {
  background-color: #282828;
}

.navbar .dropdown-item {
  color: #ffffff;
  background: transparent;
}

.navbar .dropdown-item:hover {
  color: #f4b859;
}

.hero {
  padding: 180px 0;
  height: 720px;
  background-image: url(../img/bg/hero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero h1 {
  font-size: 80px;
}

@media (max-width: 767.97px) {
  .hero {
    padding: 80px 0;
    height: 360px;
  }
  .hero h1 {
    font-size: 40px;
  }
}

.text p {
  max-width: 960px;
}

.info {
  background-image: url(../img/bg/info.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: visible;
}

@media (min-width: 992px) {
  .info img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.team a {
  display: block;
  position: relative;
}

.team .img-wrapper {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.team .play-btn {
  -webkit-transform: none;
          transform: none;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  width: 54px;
  height: 54px;
}

.team .play-btn::before {
  width: 54px;
  height: 54px;
}

.team .play-btn::after {
  width: 54px;
  height: 54px;
}

.team .play-btn span {
  top: 17px;
  left: 17px;
  border-left-width: 16px;
  border-top-width: 10px;
  border-bottom-width: 10px;
}

@media (min-width: 576px) {
  .team .img-wrapper {
    width: auto;
  }
}

.footer {
  padding: 40px 0 0;
  background-color: #101010;
  margin-top: 30px;
}

.footer .link {
  font-size: 15px;
}

.footer img {
  width: 30px;
}

.footer .mini {
  font-size: 15px;
  font-weight: 400;
  color: #d0d0d0;
}

@media (min-width: 992px) {
  .footer {
    padding: 70px 0 0;
  }
}
/*^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Our Core Feature ^^^^^^^^^^^^^^^^^^^^^^^^^^^*/
.our-core-feature.style-one .shape-one {
  top: 17%;
  left: 25%;
  animation: animationFramesOne 30s infinite linear;
}
.our-core-feature.style-one .shape-two {
  top: 45%;
  left: 4%;
  animation: animationFramesOne 35s alternate infinite linear;
}
.our-core-feature.style-one .shape-three {
  bottom: 13%;
  left: 24%;
  animation: animationFramesTwo 35s infinite linear;
}
.our-core-feature.style-one .shape-four {
  bottom: -8%;
  left: 41%;
  animation: animationFramesOne 25s infinite linear;
}
.our-core-feature.style-one .shape-five {
  right: 0;
  top: 21%;
}
.our-core-feature.style-one .shape-six {
  right: 14%;
  bottom: 33%;
}
.our-core-feature .feature-block-wrapper {
  padding-right: 60px;
}
.feature-block-one {
  background: #222222;
  border-radius: 5px;
  overflow: hidden;
  padding: 60px 30px 55px 40px;
  position: relative;
  z-index: 5;
  box-shadow: 0px 30px 70px 0px rgba(255, 177, 33, 0.1);
  height: 100%;
}
.feature-block-one .icon {
  font-size: 60px;
}
.feature-block-one .read-more {
  font-size: 30px;
  color: var(--text-light);
  margin-top: 15px;
}
.feature-block-one:hover .read-more {
  color: var(--p-green);
}
.feature-block-one .icon-one {
  color: var(--cyan);
}
.feature-block-one .icon-two {
  color: var(--p-green);
}
.feature-block-one .icon-three {
  color: var(--redOne);
}
.feature-block-one.hover-state:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    130deg,
    rgb(131, 239, 146) 0%,
    rgb(0, 211, 139) 100%
  );
  opacity: 0;
}
.feature-block-one.hover-state:hover:before {
  opacity: 1;
}
.feature-block-one.hover-state:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgb(255, 255, 255, 0.13);
  z-index: -1;
  top: -80px;
  right: -80px;
  opacity: 0;
  transform: scale(0.2);
}
.feature-block-one.hover-state:hover:after {
  opacity: 1;
  transform: scale(1);
  transition-duration: 1s;
}
.feature-block-one.hover-state:hover .icon,
.feature-block-one.hover-state:hover .title,
.feature-block-one.hover-state:hover p {
  color: #fff;
}
.feature-block-one.hover-state.main-p-color:before {
  background: var(--rose-gr-bg);
}
.feature-block-one.main-p-color:hover .read-more {
  color: #fff;
}
.our-core-feature.style-two .shape-one {
  width: 1067px;
  height: 1067px;
  top: 75px;
  right: -355px;
  z-index: -1;
}
.our-core-feature.style-two .shape-two {
  width: 1067px;
  height: 1067px;
  top: 0;
  right: -377px;
}
.our-core-feature.style-two .shape-three {
  width: 20px;
  height: 20px;
  top: 60px;
  left: 32%;
  animation: animationFramesFive 25s infinite linear;
}
.our-core-feature.style-two .shape-four {
  width: 10px;
  height: 10px;
  left: 6%;
  top: 42%;
  animation: animationFramesOne 30s infinite linear;
}
.our-core-feature.style-two .shape-five {
  width: 10px;
  height: 10px;
  left: 6%;
  bottom: 100px;
  animation: animationFramesTwo 30s infinite linear;
}
.our-core-feature.style-two .shape-six {
  width: 20px;
  height: 20px;
  left: 35%;
  bottom: 29%;
  animation: animationFramesOne 25s infinite linear;
}
.our-core-feature.style-two .shape-seven {
  width: 10px;
  height: 10px;
  right: 40%;
  bottom: 13%;
  animation: animationFramesTwo 25s infinite linear;
}
.our-core-feature.style-three .shape-one {
  top: 46%;
  left: 12%;
}
.our-core-feature.style-three .shape-two {
  width: 20px;
  height: 20px;
  top: 50px;
  right: 12%;
  animation: animationFramesOne 25s infinite linear;
}
.our-core-feature.style-three .shape-three {
  width: 8px;
  height: 8px;
  top: 50%;
  right: 5%;
}
.our-core-feature.style-three .shape-four {
  width: 12px;
  height: 12px;
  bottom: 13%;
  left: 30%;
  animation: animationFramesOne 25s infinite linear;
}
.our-core-feature.style-three .shape-five {
  width: 20px;
  height: 20px;
  top: 45%;
  left: 11%;
  animation: animationFramesOne 25s infinite linear;
}
/* Video Play Button */
.play-btn {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  display: block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 2rem;
  height: 2.75rem;
  padding: 1.125rem 1.25rem 1.125rem 1.75rem;
  border-radius: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.play-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  display: block;
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  background: #eccd7b;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.play-btn:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  background: #eccd7b;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.play-btn span {
  position: relative;
  display: block;
  z-index: 3;
  top: 0.375rem;
  left: 0.25rem;
  width: 0;
  height: 0;
  border-left: 1.625rem solid #282828;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/* end of video play button */
.modal-content {
  border: 1px solid #f4b859;
  background-color: #282828;
  color: #ffffff;
}

.modal-header {
  border-bottom: none;
}

.modal form {
  max-width: 380px;
}

.modal-close {
  color: #f4b859;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 30px;
}

.logo {
  color: #f4b859;
  font-family: 'MuseoCyrl';
  font-size: 30px;
  font-weight: 900;
}