/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/



body {
  font-family: "Gilroy", sans-serif;
  font-style: "Gilroy", sans-serif;
  color: #444444;
  


}

a {
  color: #C4F551;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

.buy-left-information {
  color: #FFF;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  word-break: break-all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}


.contacts-fields {
  width: 100%;
  display: flex;
  gap: 20px;
}

.contact-field {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 1440px) {
  .contacts-fields {
    flex-wrap: wrap;
  }

  .contact-field {
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .contact-field:nth-child(1) svg {
    right: 20px;
  }
}

.checked {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 3px solid #FFF;
  position: absolute;
  top: 45px;
  right: -125px;
  left: 0px;
  margin: auto;
}

.fc-label input:checked .checked {
  background: red;
}

.fc-label:hover  .checked {
  background: #FFF;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 55px;
  z-index: 996;
  background: #C4F551;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #000;
  line-height: 0;
}

.back-to-top:hover {
  background: #fff;
  color: #000;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  transition: all 0.5s;
  z-index: 997;
   background: #000;
  padding: 15px;
}

#header.header-fixed {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 0;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #635551;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

#main {
  z-index: 3;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
   
}

.navbar a,
.navbar a:focus {
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  text-transform:uppercase;
  letter-spacing:1px;
  
  
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #C4F551;
}

.navbar a:hover path {
  fill: #C4F551;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #C4F551;
  font-weight: 600;
}

.header-svg {
  padding: 0 !important;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #000;
}
.navbar .dropdown{
	 background: linear-gradient(0deg, rgba(0, 0, 0, 0.47) 25.63%, rgba(0, 0, 0, 0) 117.23%);
	
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
 
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.47) 25.63%, rgba(0, 0, 0, 0) 117.23%);
	backdrop-filter: blur(6px);
/* Note: backdrop-filter has minimal browser support */

border-radius: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
  background: #000;
border-radius: 5px;
margin: 2px  4px  2px  2px ;


}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #fff;
  float:center;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #C4F551;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s; 
  
}

.mobile-nav-toggle.bi-x {
  color: #0;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  .new-banner-home-text {
    width: 100% !important;
  }
  .new-banner-home-img {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
 
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #000;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
  display: block;
  text-align: center;
}

nav ul li:nth-child(6) a {
  display: flex;
}

.rew_body_c {
  margin-bottom: 30px;
  height: auto !important;
  min-height: 130px !important;
}

.rew_name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
          line-clamp: 2; 
  -webkit-box-orient: vertical;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #C4F551;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #fff;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
   background: linear-gradient(0deg, rgba(0, 0, 0, 0.47) 25.63%, rgba(0, 0, 0, 0) 117.23%);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #C4F551;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
 
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #C4F551;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #C4F551;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }


  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }

}


@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  /* background-color: #202028; */
}

.section-title {
  text-align: center;
  padding-bottom: 1px;
  
}

.section-title h2 {
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #fff;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #C4F551;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #C4F551;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #C4F551;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #C4F551;
}

.about .content .btn-learn-more:hover {
  background: #C4F551;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #fff;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #C4F551;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #C4F551;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #C4F551;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 10px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #C4F551;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #C4F551;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #C4F551;
  border: 2px solid #C4F551;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #C4F551;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #C4F551;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #C4F551;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #C4F551;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #fff;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #C4F551;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #fff;
}

.pricing h4 {
  font-size: 48px;
  color: #fff;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #C4F551;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #C4F551;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #C4F551;
}

.pricing .buy-btn:hover {
  background: #C4F551;
  color: #fff;
}

.pricing .featured {
  border-top-color: #C4F551;
}

.pricing .featured .buy-btn {
  background: #C4F551;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #C4F551;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #fff;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #C4F551;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
  .new-banner-home-img {
    position: absolute;
    right: -280px !important;
    top: -80px;
  }
  
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
	
 padding-bottom: 130px;
 
}


.contact .info {
  border-top: 3px solid #C4F551;
  border-bottom: 3px solid #C4F551;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #C4F551;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #C4F551;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #C4F551;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
 
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  background: #0D0D0D;
border-radius: 10px;
}

.fc{
  margin-top: 50px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #C4F551;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #C4F551;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #209dd8;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #202028;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #000;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #202028;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #C4F551;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #000;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #C4F551;
  font-size: 18px;
  line-height: 0.6;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 0.6;
  text-transform:uppercase;
  padding-left:2px;
  
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #C4F551;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #C4F551;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}




.s1{
background: url("../img/new/s1.png")  44px 0px ;	
width: 42px;
height: 32px;	
position:relative;
float:left;
margin-left:5px;
transition: 0s!important;
}


.s1:hover{
background: url("../img/new/s1.png")  -9px 0px ;	
transition: 0s!important;
}

.s2{
background: url("../img/new/s2.png")  44px 0px ;	
width: 42px;
height: 42px;	
position:relative;
float:left;
margin-left:10px;
margin-top:7px;
transition: 0s!important;
}

.s22{
background: url("../img/new/s2.png")  44px 0px ;	
width: 42px;
height: 42px;	
position:relative;
float:left;
margin-left:10px;
margin-top:-1px;
transition: 0s!important;
}

.s22:hover{
background: url("../img/new/s2.png")  -7px 0px ;	
transition: 0s!important;
}

.s2:hover{
background: url("../img/new/s2.png")  -7px 0px ;	
transition: 0s!important;
}


.s3{
background: url("../img/new/s3.png")  44px 0px ;	
width: 42px;
height: 32px;	
position:relative;
float:left;
margin-left:18px;
transition: 0s!important;
}


.s3:hover{
background: url("../img/new/s3.png")  -4px -1px ;	
transition: 0s!important;
color:#28A0DC!important;

}





.cht{
	
	background: url("../img/new/b2_1.png") ;
	width: 150px;
	position:relative;
	margin: 0 auto;
	height: 52px;
	
	}


.cht:hover{
	
	background: url("../img/new/b2_1.png") 155px 0px ;
	position:relative;
	width: 150px;
	height: 52px;
	cursor:pointer;
	
    /* height: 136px; */
}

.d-flex_1{
	
	
	list-style-type: disc;
	
	
}

.hed_f{

color: #DCDCDD;
font-weight: normal;
font-size: 17px;	 
}


.hed_f2{
color: #C4F551;

}

.hed_f3{
color: #C4F551;

}


.green_l{
color: #C4F551;
}



.skaf_hed{
	
	background: url("../img/new/bu_but.png") ;
	width: 270px;
	position:relative;
	float:left;
	height:72px;
	cursor:pointer;
	
	}
	
	


.skaf_hed:hover{
	
	background: url("../img/new/bu_but.png") 273px 0px ;
	position:relative;
	width: 270px;
	height: 72px;
	
    /* height: 136px; */
}


.box_back1{
	
	background:  url("../img/new/hed_b_1.png")  center no-repeat;
	min-height: 240px;
	align-items: end;
	vertical-align: bottom!important;
	display: flex;
	float:center;
	
	}




.box_back2{
	margin-top:16px;
	background: url("../img/new/hed_b_2.png")  center no-repeat;
	min-height: 240px;
	align-items: end;
	vertical-align: bottom!important;
	display: flex;
	float:center;
	}



.box_back3{
	margin-top:19px;
	background:  url("../img/new/hed_b_3.png")  center no-repeat;
	min-height: 240px;
	align-items: end;
	vertical-align: bottom!important;
	display: flex;
	float:center;
	}


.box_back4{
	margin-top:5px;
	background:  url("../img/new/hed_b_4.png")  center no-repeat;
	min-height: 240px;
	align-items: end;
	vertical-align: bottom!important;
	display: flex;
	float:center;
	}


.box_back5{
	margin-top:5px;
	background:  url("../img/new/hed_b_5.png")  center no-repeat;
	min-height: 240px;
	align-items: end;
	vertical-align: bottom!important;
	display: flex;
	float:center;
	
	}

.box_back1:hover{
background:  url("../img/new/hed_b_hover_1.png")  center no-repeat;
cursor:pointer;

}
.box_back2:hover{
background:  url("../img/new/hed_b_hover_2.png")  center no-repeat;cursor:pointer;
}
.box_back3:hover{
background:  url("../img/new/hed_b_hover_3.png")  center no-repeat;cursor:pointer;
}
.box_back4:hover{
background: url("../img/new/hed_b_hover_4.png")  center no-repeat;cursor:pointer;
}
.box_back5:hover{
background:  url("../img/new/hed_b_hover_5.png")  center no-repeat;cursor:pointer;
}


.box_price{
	width: 100%;
	color:#fff;
	margin-bottom:50px;
	font-size:26px;
	
}

.box_price:hover{

}

.icons-flex {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}



.new-banner-home {
  width: 100%;
  padding: 50px;
  background: #00000085;
  border-radius: 40px;
  position: relative;
  margin-bottom: 30px;
}

.new-banner-home-text{
  width: 55%;
  line-height: 20px !important;
}

.new-banner-home:hover {
  border: 2px solid #C4F551;
  -webkit-box-shadow: 0px 5px 10px 2px #C4F551;
  -moz-box-shadow: 0px 5px 10px 2px #C4F551;
  box-shadow: 0px 5px 10px 2px #C4F551;
}

.new-banner-home:hover #new_banner_1 {
  display: none;
}
.new-banner-home:hover #new_banner_2 {
  display: block !important;
}

.new-banner-home:hover .new-banner-home-img {
  top: -123px;
}

.new-banner-home-img {
  position: absolute;
  right: -181px;
  top: -80px;
}

.new-banner-home-img img {
  width: 929px;
  height: 627px;
}


.container-fluid {
        height: 100%;
        display: table;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .row-fluid {
        height: 100%;
        display: table-cell;
        vertical-align: middle;
        width: 100%;
    }

    .centering {
        float: none;
        margin: 0 auto;
    }



.container-table {
    display: table;
}
.vertical-center-row {
    display: table-cell;
    vertical-align: middle;
}





.banner_home{
  padding-top:1px;
  background: url("../img/new/hb1.png") no-repeat ; 
 -webkit-background-size: cover;
 -moz-background-size: cover;
 -o-background-size: cover;
 background-size: cover;

  transition: 0s;
  min-width: 100%;
  min-height: 500px;
  
}

.banner_home:hover{
	
  background: url("../img/new/bnh2.png") no-repeat ; 
 -webkit-background-size: cover;
 -moz-background-size: cover;
 -o-background-size: cover;
 background-size: cover;
 min-width: 100%;
}

.box_b_1{
	text-transform:uppercase;
	width: 100%;
	color:#fff;
	font-size:52px;
	
	
}

.box_b_1 p{
	
line-height	:60px;
font-weight: bold;	

}

.green_1{
color: #C4F551!important;
	
}
.green_13{
color: #C4F551!important;
border-bottom:1px solid #fff;
}

.box_b_2{
	
	margin-top:20px;
	color:#fff;
	font-size:22px;
	display:block;
	
}

.w250{
	max-width: 500px;
}

.section-bg2{
 background: #000; 
 	
}

.footer-bottom{
border-top:1px solid #fff;
	
}

#main{
	
 background: #202028 url("../img/new/fon3.png") no-repeat top center; 
 -webkit-background-size: cover;
 -moz-background-size: cover;
 -o-background-size: cover;
 background-size: cover;	
	
}


.top_1{
margin-top:100px;
}

.rew_1{

background: rgba(0, 0, 0, 0.24);
border-radius: 10px;
padding-top:15px;
padding-bottom:15px;
font-weight: bold;	
font-size: 16px;	
 width: 100%;
}

.last_rew{
cursor:pointer;	

}

.rew_2_left{
padding-left:30px;
text-transform:uppercase;
color: #C4F551;
}

.rew_2_right{
padding-right:30px;	
float:right;
}

.rew_2_right a:hover{
border-bottom: 3px solid #C4F551;
color: #C4F551;
}

.rew_3{
	
padding-left:25px;
padding-top:10px;
padding-right:25px;
font-weight: bold;	
font-size: 16px;	

}

.rew_body{

 background: #111115 url("../img/new/rew.png") no-repeat left center; 

 margin-bottom:10px;
 width: 100%;
 height: 130px;
font-size: 14px;
padding-top:20px;
}
.rew_body:hover{
 cursor:pointer;	
 background: #000 url("../img/new/rew.png") no-repeat left center; 

}

.rew_date{

font-weight: normal;	
color: #C4F551;
padding-right:10px;	
float:right;
}

.rew_name{
padding-left:125px;
text-transform:uppercase;
color: #fff;

}

.rew_rating{
	padding-left:125px;
}

.img-star{
position:relative;	

}

.rew_rew{
padding-left:125px;
padding-top:12px;
padding-right:12px;
font-weight: normal;
color:#fff;		
}

.new-banner-home-button svg {
  position: relative;
  bottom: 1px;
}

.new-banner-home-button:hover {
  color: #FFF;
}

.new-banner-home-button:hover path {
  stroke: #FFF;
}

.btn-learn-more2 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #C4F551;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  text-transform: uppercase;
}

.btn-learn-more2:hover {
  text-decoration: none;
  font-weight: 500;
}

.head_main{
	margin-top: 100px;
	
	
}

.rew_h1{
	
font-family: 'Gilroy';
font-style: normal;
font-weight: 500;
font-size: 30px;
line-height: 36px;	
color: #FFFFFF;	
padding: 12px 12px;

}
.rew_h2{
	
font-family: 'Gilroy';
font-style: normal;
font-weight: 500;
font-size: 22px;
line-height: 36px;	
color: #FFFFFF;	
padding: 12px 12px;


}
.rew_h3{

font-family: 'Gilroy';
font-style: normal;
font-weight: 500;
font-size: 17px;
line-height: 26px;	
color: #FFFFFF;	
padding: 4px 4px;

}
.rew_h4{

font-family: 'Gilroy';
font-style: normal;
font-weight: 500;
font-size: 22px;
line-height: 16px;	
color: #FFFFFF;	
padding: 4px 4px;
margin:0;

}

.fc{
background: #0D0D0D!important;
border-radius: 10px;

}

.feedback__input-item{
	background: rgba(0, 0, 0, 0.29)!important;
	border: 1px solid #C4F551;
border-radius: 10px;
padding: 14px 12px 12px 12px!important;
}



input {
font-family: 'Gilroy';
font-style: normal;
font-weight: 400;
font-size: 18px!important;
line-height: 26px;
color: #C8C4C4!important;
}

input::-webkit-input-placeholder {
font-family: 'Gilroy';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 26px;
color: #C8C4C4!important;
}	

input:-moz-placeholder {
	font-family: 'Gilroy';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 26px;
color: #C8C4C4!important;
}

input::-webkit-input-placeholder:hover {
	opacity:0.5;
	}

input:-moz-placeholder:hover {
opacity:0.5;
}

textarea::-webkit-input-placeholder {
font-family: 'Gilroy';
font-style: normal;
font-weight: 400;
font-size: 22px;
line-height: 26px;
color: #C8C4C4!important;
}

textarea:-moz-placeholder {
	font-family: 'Gilroy';
font-style: normal;
font-weight: 400;
font-size: 22px;
line-height: 26px;
color: #C8C4C4!important;
}




textarea {
	font-family: 'Gilroy';
font-style: normal;
font-weight: 400;
font-size: 22px!important;
line-height: 26px;
color: #C8C4C4!important;
}



.textaraa{
	background: rgba(0, 0, 0, 0.29)!important;
border: 1px solid #C4F551!important;
border-radius: 10px!important;
height: 200px;	
}

.buy-block {
  border-radius: 20px;
  background: #0D0D0D;
  min-height: 608px;
  padding: 60px;
  display: flex;
  gap: 40px;
}

.buy-right {
  min-width: 375px;
  border-radius: 10px;
  border: 1px solid #C4F551;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 45px;
  margin-left: auto;
  order: 2;
  height: max-content;
}

.buy-right-el {
  margin-bottom: 55px;
}

.buy-right-el:last-child {
  margin-bottom: 0px;
}

.buy-right-el-top {
  color: #FFF;
  font-family: Gilroy;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  opacity: 0.3;
}

.buy_active {
  opacity: 1;
}

.buy-right-el-bottom {
  color: #C4F551;
  font-family: Gilroy;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 5px;
}

.buy-left-title {
  color: #FFF;
  font-family: Gilroy;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.buy-left-title span:first-child {
  color: #C4F551;
}

.buy-left-games {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.buy-left-game {
  width: 180px;
  height: 180px;
  border-radius: 20px;
  cursor: pointer;
}

.buy-left-inputs {
  border: 1px solid #C4F551;
  border-radius: 10px;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}

.buy-left-input-title {
  position: absolute;
  left: 20px;
  bottom: 70px;
  background: #0D0D0D;
  padding: 5px;
  color: #C4F551;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.buy-left-inputs input[type=text] {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  color: #FFF;
  font-family: Gilroy;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.buy-left-inputs input[type=range] {
  width: 100%;
  background: none;
  position: relative;
  top: 10px;
}

.buy-left-deliveries {
  display: flex;
  gap: 20px;
}

.buy-left-delivery {
  width: 100%;
  padding: 40px;
  color: #FFF;
  position: relative;
  background: #366DFA;
  border-radius: 20px;
  cursor: pointer;
}

.buy-left-deliver-text {
  color: #FFF;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 19.8px */
  margin-top: 10px;
  margin-bottom: 10px;
}

.buy-left-deliver-info {
  margin-top: 45px;
  gap: 20px;
}

.buy-left-deliver-info {
  display: flex;
}

.buy-left-delivery:last-child {
  background: #7EB900;
}

.buy-left-delivery-checkbox {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50%;
  padding: 10px;
  border: 3px solid #FFF;
}

.buy-left-deliver-title {
  color: #FFF;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.buy-left-fast-golds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  cursor: pointer;
}

.header-svg:hover svg {
  fill: #C4F551; 
}

.buy-left-fast-gold:hover {
  background: #C4F551;
  color: #333;
}

.buy-left-fast-gold {
  position: relative;
  font-weight: 800;
  margin: 0 auto;
}

.buy-percent {
  position: absolute;
  right: -23px;
  bottom: 35px;
  z-index: 2;
  border-radius: 5px;
  background: #C4F551;
  color: #424242;
  font-family: Gilroy;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 5px;
  transform: rotate(-5deg);
  text-transform: uppercase;
}

.buy-left-fast-gold {
  background: #424242;
  color: #FFF;
  padding: 10px;
  border-radius: 10px;
}

input[type=range] {
  height: 10px;
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 2px 2px 1px #353535;
  background: #3e3e3e;
  border-radius: 10px;
  border: 0px solid #f3c846;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 2px 2px 1px #353535;
  border: 4px solid #c3f353;
  height: 18px;
  width: 18px;
  border-radius: 50px;
  background: #000000;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #3e3e3e;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 2px 2px 1px #353535;
  background: #3e3e3e;
  border-radius: 10px;
  border: 0px solid #f3c846;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 2px 2px 1px #353535;
  border: 4px solid #c3f353;
  height: 18px;
  width: 18px;
  border-radius: 50px;
  background: #000000;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #3e3e3e;
  border: 0px solid #f3c846;
  border-radius: 50px;
  box-shadow: 2px 2px 1px #353535;
}
input[type=range]::-ms-fill-upper {
  background: #3e3e3e;
  border: 0px solid #f3c846;
  border-radius: 50px;
  box-shadow: 2px 2px 1px #353535;
}
input[type=range]::-ms-thumb {
  margin-top: 1px;
  box-shadow: 2px 2px 1px #353535;
  border: 4px solid #c3f353;
  height: 18px;
  width: 18px;
  border-radius: 50px;
  background: #000000;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #3e3e3e;
}
input[type=range]:focus::-ms-fill-upper {
  background: #3e3e3e;
}

.buy-left-inputs:nth-child(3) input[type=range]::-moz-range-thumb {
  border: 4px solid #516BF5;
}

.buy-left-inputs:nth-child(3) input[type=range]::-webkit-slider-thumb {
  border: 4px solid #516BF5;
}

.buy-left-gold-submit {
  margin-top: 60px;
  display: flex;
  cursor: pointer;
}

.buy-left-gold-submit-left {
  width: 100%;
}

.buy-left-gold-submit input[type=text] {
  background: rgba(0, 0, 0, 0.29);
  border: 1px solid #C4F551;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  max-width: 418px;
}

.buy-left-gold-submit-right {
  display: flex;
  width: 130px;
  height: 61px;
  padding: 18px 22.676px 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 14.324px;
  flex-shrink: 0;
  color: #1E1E1E;
  text-align: center;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 10px;
  background: #C4F551;
  margin-left: auto;
  order: 2;
  cursor: pointer;
}

.buy-left-final-sum-text {
  color: #FFF;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.buy-left-final-sum-value {
  color: #C4F551;
  font-family: Gilroy;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.buy_checkbox_active {
  background: #FFF;
}

.buy-left-pays {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  color: #C4F551;
  font-family: Gilroy;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  gap: 20px;
  margin-top: 30px;
}

.buy-left-pay {
  width: max-content;
  border: 1px solid #C4F551;
  border-radius: 10px;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.buy-left-pay:hover, .buy_pay_active {
  background: #C4F551;
  color: #333;
  cursor: pointer;
}

.buy-left-pay-submit {
  display: flex;
  width: 275px;
  height: 61px;
  padding: 18px 35px 18px 36px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #1E1E1E;
  border-radius: 10px;
  background: #C4F551;
  text-align: center;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 120px;
  cursor: pointer;
}

.buy-left-order {
  color: #FFF;
  text-align: center;
  font-family: Gilroy;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.buy-left-order span:nth-child(2) {
  color: #C4F551;
}

.buy-left-order-text {
  text-align: center;
  color: #FFF;
  text-align: center;
  font-family: Gilroy;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 20px;
}

.buy-left-order-button {
  display: inline-flex;
  padding: 18px 34.909px 18px 35.091px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #C4F551;
  color: #1E1E1E;
  text-align: center;
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 auto;
  display: block;
  margin-top: 30px;
  width: max-content;
  cursor: pointer;
}

#buy_game_1 {
  background: url('../img/buy_ps.svg');
}

#buy_game_2 {
  background: url('../img/buy_xbox.svg');
}

#buy_game_3 {
  background: url('../img/buy_pc.svg');
}

#buy_game_4 {
  background: url('../img/buy_nintendo.svg');
}

#buy_game_5 {
  background: url('../img/buy_fifa_mobile.svg');
}

.fcsaf-1, .fcsaf-2, .fcsaf-3 {
  transition: 0.5s;
}

.fcsaf-1:hover, .fcsaf-2:hover, .fcsaf-3:hover {
  position: relative !important;
  bottom: 10px !important;
}

.fcsaf-1:hover {
  position: relative !important;
  bottom: 20px !important;
}


.submit{


background: ##CBFF51;
/* Салатовый */
border: 2px solid #C4F551;
border-radius: 10px!important;
color:#000!important;
font-family: 'Gilroy';
font-style: normal;
font-weight: 800;
font-size: 20px;
line-height: 25px;
/* identical to box height */

text-transform: uppercase;

color: #1E1E1E;	
}

.submit:hover{
	
background: #C4F551!important;
/* Тень Кнопка */
box-shadow: 0px 0px 11px rgba(2, 249, 47, 0.15)!important;
border-radius: 10px!important;
font-family: 'Gilroy';
font-style: normal;
font-weight: 700;
font-size: 20px;
line-height: 25px;
/* identical to box height */

text-transform: uppercase;

color: #1E1E1E!important;

	
}

@media screen and (max-width: 1020px) {
  .buy-block {
    flex-wrap: wrap;
  }
  .buy-left, .buy-right {
    width: 100%;
  }
  .buy-left-game {
    margin: 0 auto;
  }

  .buy-left-fast-gold {
    margin-bottom: 20px;
  }

  .buy-left-deliveries {
      flex-wrap: wrap;
  }
}


.submit_else{
width: 210px;
height: 60px;
left: 855px;
top: 695px;

background: none;
/* Салатовый */
color:#C4F551;
border: 2px solid #C4F551;
border-radius: 5px;

	margin-top:20px;
	margin-bottom:20px;
}
.submit_else:hover{

background: rgba(13, 13, 13, 0.4);

}


.fcc{
background: rgba(13, 13, 13, 0.4);
border-radius: 10px;	
margin-top:40px;
margin-bottom:40px;
padding-bottom: 13px;	
padding-top: 40px;	

}


.rew_body_c{

 background: #000 url("../img/new/rew.png") no-repeat left center; 
border-radius: 10px;
 margin-bottom:10px;
 width: 100%;
 height: 130px;
font-size: 14px;
padding-top:20px;
padding-right:10px;

}
.rew_body_c:hover{
 cursor:pointer;	
 background: #000 url("../img/new/rew.png") no-repeat left center; 

}


.hed_f4{
color: #fff;

}


.fcs-1{
	
 background: url("../img/new/mail.png") no-repeat ; 	
 background-position: 25% center;
 height: 70px;
 margin-bottom:7px;
 
}
.fcs-2{
	
/* background: url("../img/new/t.png") no-repeat ; */
background-position: 25% center;
height: 70px;
margin-bottom:7px;
 
}


.fcs-11{
color:rgba(255, 255, 255, 1);
padding-top:11px;
color: #FFF;
font-family: Gilroy;
font-size: 30px;
font-style: normal;
font-weight: 500;
line-height: 126.523%; /* 37.957px */
}

 
 .fcs-12{
color:rgba(196, 245, 81, 1);
color: #C4F551;
font-family: Gilroy;
font-size: 30px;
font-style: normal;
font-weight: 500;
line-height: 126.523%; /* 37.957px */

 }


.fifa23{
 height: 40px;
 position:relative;
 margin-top:-3px;
 	
}

.fifa23_h1{
 height: 50px;
 position:relative;
 margin-top:-10px;
 	
}

.fcf{
	
padding: 40px  40px  10px 50px ;
background: #0D0D0D!important;
border-radius: 10px;


}


.fcsa-1{
	
 background: url("../img/new/ic1.png") no-repeat ; 	
 background-position:  center;
 min-height: 300px;

 font-size: 14px;
 color:#fff;
 
}
.fcsa-2{
	
 background: url("../img/new/ic2.png") no-repeat ; 	
 background-position:  center;
 min-height: 300px;

  font-size: 14px;
 color:#fff;
}

.fcsa-3{
	
 background: url("../img/new/ic3.png") no-repeat ; 	
 background-position:  center;
 min-height: 300px;
 font-size: 14px;
 color:#fff;
 
}


.fcsaf-1{
	margin-top:-12px;
	
 background: url("../img/new/l/p1.png") no-repeat ; 	
 background-position:  center;
 height:300px;

 font-size: 14px;
 color:#fff;
 position: relative;
 bottom: 10px;
 
}

@media screen and (max-width: 745px) {
  .fcsaf-1 {
    bottom: 5px;
  }
}


.fcsaf-2{
	margin-top:-3px;
 background: url("../img/new/l/p2.png") no-repeat ; 	
 background-position:  center;
 height: 300px;

  font-size: 14px;
 color:#fff;
}

.fcsaf-3{
	
 background: url("../img/new/l/p3.png") no-repeat ; 	
 background-position:  center;
 height: 300px;
 font-size: 14px;
 color:#fff;
 
}

.fcsafp-1,.fcsafp-2,.fcsafp-3 {
  width: 100% !important;
}


.fcsafp-1{

  background: url("../../assets/img/ps.svg") no-repeat ; 	
  background-position:  center;
  height: 250px;
 
  font-size: 14px;
  color:#fff;
 }


.fcsafp-2{

 background: url("../../assets/img/xbox.svg") no-repeat ; 	
 background-position:  center;
 height: 250px;

 font-size: 14px;
 color:#fff;
}

.fcsafp-3{
	
 background: url("../../assets/img/pc.svg") no-repeat ; 	
 background-position:  center;
  height: 250px;
 font-size: 14px;
 color:#fff;
 
}


.fcsafp-1:hover{
	cursor:pointer;
	margin-top:-5px;
}.fcsafp-2:hover{
	cursor:pointer;
	margin-top:-5px;
}.fcsafp-3:hover{
	cursor:pointer;
	margin-top:-5px;
}


.fcsafp-1 input[type="radio"]{
opacity: 0; /* hidden but still tabable */
position: absolute;
 
}.fcsafp-2 input[type="radio"]{
opacity: 0; /* hidden but still tabable */
position: absolute;
 
}

.fcsafp-3 input[type="radio"]{
opacity: 0; /* hidden but still tabable */
position: absolute;
 
}


 .gg1 input[type="radio"]  {
   background: url("../img/new/l/s1.png") no-repeat ; 	
  background-position:  center;
  height: 250px;
  margin-top:-5px;
  font-size: 14px;
  color:#fff;
  width: 250px;
  } 
  
  .gg1 input[type="radio"]:checked  {
   background: url("../img/new/l/s111.png") no-repeat ; 	
  }
  
 
 
 
.fcsa-11{
margin-top:220px;
}

.fcsa-111{
margin-top:180px;
}



.fcsah-1{
	
 background: url("../img/new/ii1.png") no-repeat ; 	
 background-position:  center;
 height: 220px;

 font-size: 14px;
 color:#fff;
 
}

.fcsah-2{
	
 background: url("../img/new/ii2.png") no-repeat ; 	
 background-position:  center;
 height: 220px;

  font-size: 14px;
 color:#fff;
}

.fcsah-3{
	
 background: url("../img/new/ii3.png") no-repeat ; 	
 background-position:  center;
 height: 220px;
 font-size: 14px;
 color:#fff;
 
 
}

.fcsah-4{
	
 background: url("../img/new/ii4.png") no-repeat ; 	
 background-position:  center;
 height: 220px;
 font-size: 14px;
 color:#fff;
 
}

.col-sm {
  width: max-content;
  margin: 0 auto;
}



@media (max-width: 768px) {
#footer .footer-top .footer-links {
  padding-left: 120px;
 
}
.icons-flex * {
  background-size: contain !important;
}

.fcsah-3 {
  background-size: 67% !important;
}

#footer .footer-top .footer-contact {
 padding-left: 120px;
 
}

.hed_f {
 padding-left: 20px;
 line-height:19px;
 
}

.buy-left-information {
  color: #FFF;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  word-break: break-all;
}


.skaf_hed{
	
	margin-bottom:20px;
	margin-top:10px;margin-left:20px;
	
	}

.top_1{
margin-top:50px;
}

#header .logo img {
  margin-left:25px;
  
}


.w250{
	max-width: 330px;
}





.banner_home{
  
  background: url("../img/new/hb1.png") no-repeat ; 
  
 -webkit-background-size: cover;
 -moz-background-size: cover;
 -o-background-size: cover;
 background-size: cover;

 
 
  min-height: 580px!important;
  
}

.banner_home:hover{
	
  background: url("../img/new/bnh2.png") no-repeat ; 

 height: 480px!important;

 
 
}


}


@media screen and (max-width: 500px) {
  .buy-right {
    min-width: 0px !important;
  }
  .fcsa-3 {
    background-size: 80% !important;
  }

  .icons-flex {
    gap: 15px;
  }

  .fcsa-1, .fcsa-2, .fcsa-3 {
    background-position: top;
  }

  .fcsa-11 {
    margin-top: 78px;
  }

  .fcf > .rew_h3:nth-child(5), .rew_h3:nth-child(6), .rew_h3:nth-child(7) {
    line-height: 26px !important;
  }
  .fcs-11, .fcs-12 {
    font-size: 21px;
  }

}
 .top_2{
	  display:none;
	  
  }

@media (max-width: 520px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
  
  .zs1{
	  display:none;
	  
  }
  
    .top_2{
	  display:block;
	  
  }
  
  
.box_back1{
	
margin-left:7px;
	width: 100% !important;
  margin: 0 auto;
	}




.box_back2{
  width: 100% !important;
  margin: 0 auto;
	}



.box_back3{
  width: 100% !important;
  margin: 0 auto;
	}


.box_back4{
  width: 100% !important;
  margin: 0 auto;
	}


.box_back5{
  width: 100% !important;
  margin: 0 auto;
	
	}

  #main{
	
 background: #202028 url("../img/banners/mob17.png") no-repeat top left; 

}
.s2{
background: url("../img/new/s2.png")  44px 0px ;	
width: 42px;
height: 42px;	
position:relative;
float:left;
margin-left:10px;
margin-top:-2px;
transition: 0s!important;
}

.s2:hover{
background: url("../img/new/s2.png")  -7px 0px ;	
transition: 0s!important;
}
.cht{
	
	background: url("../img/new/b2_1.png") ;
	width: 150px;
	position:relative;
	margin: 0 auto;
	height: 52px;
	margin-top:-7px;
	}
  
}

.box_margin{
padding-left:1px;
padding-right:1px;

	
}

.fcsaf-1, .fcsaf-2, .fcsaf-3 {
  background-size: contain;
  width: 100%;
}





@media screen and (max-width: 590px) {
  .fcsah-3 {
    background-size: 53% !important;
  }

  .fcsah-1 {
    background-size: 100% !important;
    padding-left: 10px;
    padding-right: 10px;
  }

  .icons-games-mob {
    flex-wrap: wrap;
  }

  .fcsaf-2, .fcsaf-3 {
    height: 150px;
  }
  .fcsaf-1 {
    height: 170px;
  }
}


.review-form {
  width: 100%;
}


.review-form-top {
  display: flex;
  gap: 20px;
}

.review-form-top-input {
  width: 100%;
  text-align: center;
}

.review-form-top-input input, .review-form-text textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.29);
  border: 1px solid #C4F551;
  padding: 10px;
  resize: none;
  margin-bottom: 10px;
  border-radius: 10px;
}

.review-form-text textarea  {
  min-height: 190px;
  font-size: 22px;
}

.review-form-button input[type=submit] {
  display: block;
  background: #C4F551;
  margin: 0 auto;
  color: #000 !important;
  padding: 15px;
  font-weight: 800;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
}

.fa{
  font-size:30px !important;
  cursor: pointer;
  color: #c4f551;
}

#rating {
  position: relative;
  top: 7px;
}

.mass_comments_action {
  display: none;
}


@media screen and (max-width: 600px) {
  .review-form-top {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  #rating {
    margin-bottom: 10px;
  }
}


