*, *:after, *:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
--light-yellow: #ffcd25;
--primaryWhite: #fff;
--lightGrey: #fafafa;
--primaryGrey: #aaaaaa;
--primaryBlack: #212121;
--secondaryBlack: #3c3c3c;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #000000;
  line-height: 1.5;
}

.site_main {
  width: 100%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1139px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 991px) {
  .container {
    padding: 0px 20px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0px 15px;
  }
}

/*Typography*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: inherit;
  color: inherit;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: 48px;
}

h2,
.h2,
.cs_title {
  font-size: 40px;
}

h3,
.h3 {
  font-size: 28px;
}

h4,
.h4 {
  font-size: 24px;
}

h5,
.h5 {
  font-size: 20px;
}

h6,
.h6 {
  font-size: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

/*Typography End*/
.ease {
  transition: 0.3s all ease-in-out;
}

.ease2 {
  transition: 0.2s all ease-in-out;
}

.fw_300 {
  font-weight: 300;
}

.fw_400 {
  font-weight: 400;
}

.fw_500 {
  font-weight: 500;
}

.fw_600 {
  font-weight: 600;
}

.fw_700 {
  font-weight: 700;
}

.fw_800 {
  font-weight: 800;
}

.fw_900 {
  font-weight: 900;
}

.form-control {
  height: auto;
  padding: 12.5px 1rem;
  font-size: 16px;
  border: 1px solid #B4B4B4;
  background: #fff;
  color: #1B1A1E;
  border-radius: 0;
}

.form-control:focus {
  background: #fff;
  color: #777;
  box-shadow: none;
}

form select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(images/dropdown.png) no-repeat scroll right 10px center;
}

.form-control.wpcf7-not-valid {
  border-color: #ff0000;
}

.form-control::-moz-placeholder {
  opacity: 1;
  color: #1B1A1E;
}

.form-control:-ms-input-placeholder {
  opacity: 1;
  color: #1B1A1E;
}

.form-control::placeholder {
  opacity: 1;
  color: #1B1A1E;
}

.form-control::-moz-placeholder {
  opacity: 1;
  color: #1B1A1E;
}

a {
  color: var(--light-blue);
  text-decoration: none;
}

a:active,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: inherit;
}

/*Theme Button*/
.themebtn,
input[type=submit],
.themebtn:active,
.themebtn:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border: none;
  transition: all 0.15s ease-in-out;
  font-size: 16px;
  padding: 12px 24px 8px;
  display: inline-flex;
  align-items: center;
  background: #fa0079;
  color: #fff;
  letter-spacing: 0;
  border-radius: 3px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s;
}

.themebtn:hover,
input[type=submit]:hover {
  color: #fff;
  background: #c90098;
}

.btn-primary {
  color: #fff;
  background-color: #F81080;
  border-color: #F81080;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #f30d7c;
  border-color: #f30d7c;
}
.btn-primary:focus {
  box-shadow: #f30d7c;
}
.btn-primary:active {
  background-color: #f30d7c;
  border-color: #f30d7c;
  color: #fff;
}

.cs_py {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.cs_pt {
  padding-top: 6rem;
}

.cs_pb {
  padding-bottom: 6rem;
}

.fz_95 {
  font-size: 95%;
}

.fz_90 {
  font-size: 90%;
}

.fz_85 {
  font-size: 85%;
}

.fz_80 {
  font-size: 80%;
}

.fz_75 {
  font-size: 75%;
}

.td_u {
  text-decoration: underline;
}

.tt_u, .ttu {
  text-transform: uppercase;
}

.tt_c {
  text-transform: capitalize;
}

.lh_1 {
  line-height: 1;
}

.lh_12 {
  line-height: 1.2;
}

.lh_11 {
  line-height: 1.1;
}

.lh_13 {
  line-height: 1.3;
}

.lh_14 {
  line-height: 1.4;
}

.lh_15 {
  line-height: 1.5;
}

.lh_16 {
  line-height: 1.6;
}

.lh_17 {
  line-height: 1.7;
}

.h-lg-100 {
  min-height: 100%;
}

.h-100 {
  height: 100% !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.flex-column {
  flex-direction: column !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.ml-auto, .mx-auto {
  margin-left: auto !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.d-flex {
  display: flex !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.d-none {
  display: none !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
}
@media (min-width: 1400px) {
  .desktop-menu__item .container {
    max-width: 1320px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.row > .col,
.row > [class*=col-] {
  padding-left: 15px;
  padding-right: 15px;
}

.row > .col {
  flex: 1 1 100%;
}

.row_20 {
  margin-left: -20px;
  margin-right: -20px;
}

.col-1 {
  flex: 0 0 8.33%;
}

.col-2 {
  flex: 0 0 16.66%;
}

.col-3 {
  flex: 0 0 25%;
}

.col-4 {
  flex: 0 0 33.33%;
}

.col-5 {
  flex: 0 0 41.66%;
}

.col-6 {
  flex: 0 0 50%;
}

.col-7 {
  flex: 0 0 58.33%;
}

.col-8 {
  flex: 0 0 66.66%;
}

.col-9 {
  flex: 0 0 75%;
}

.col-10 {
  flex: 0 0 83.33%;
}

.col-11 {
  flex: 0 0 91.66%;
}

.col-12 {
  flex: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.cs_ratio {
  position: relative;
  display: block;
  overflow: hidden;
}

.cs_ratio::before {
  content: "";
  padding-top: 45%;
  display: block;
  pointer-events: none;
}

.cs_ratio > img {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.ratio_eq:before {
  padding-top: 100%;
}

.ratio_contain > img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.ml-3 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.pr-0 {
  padding-right: 0 !important;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.h-100 {
  height: 100%;
}

.position-relative {
  position: relative;
}

.rounded {
  border-radius: 5px;
}

.bar {
  position: relative;
}
.bar:before {
  content: "";
  background: #224558;
  height: 180%;
  width: 12px;
  position: absolute;
  left: -40px;
  top: -40%;
}

/*---------Slick slider style-------------*/
.slick-next:before,
.slick-prev:before {
  content: none !important;
}

.cs-arrow .slick-arrow {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  border: 0;
  background: #fff !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: 0.25s;
}

.cs-arrow .slick-arrow:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.cs-arrow .slick-arrow:after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  border: 2px solid #F81080;
  border-width: 3px 0 0 3px;
  transform: rotate(-45deg);
  left: calc(50% - 4.5px);
  top: calc(50% - 7.5px);
}

.cs-arrow .slick-next:after {
  border-width: 0 3px 3px 0;
  left: auto;
  right: calc(50% - 7.5px);
}

/*----------------------------------------*/
.slick-next {
  right: 25px;
}

.slick-prev {
  left: 25px;
}

.ar_out .slick-next {
  right: -5rem;
}

.ar_out .slick-prev {
  left: -5rem;
}

.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.flex_set {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-5 {
  padding-top: 3rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.theme-color {
  color: #F81080;
}

.text-white {
  color: #fff;
}

.bg_light {
  background: #EDEDED;
}

.text_blue {
  color: #2C69DF;
}

@font-face {
  font-family: inter;
  src: url(../fonts/Inter-Regular.otf);
}
@font-face {
  font-family: inter600;
  src: url(../fonts/Inter-SemiBold.otf);
}
/* ========================================== */
/* Header Style  */
header {
  padding: 15px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
}
header .row {
  position: relative;
  z-index: 2;
}
header .container {
  position: relative;
  max-width: 1320px;
}
header .navbar {
  padding: 0;
  padding-top: 0;
}

.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
}

.navbar-nav {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

header .navbar-nav .nav-item {
  margin: auto 16px;
}
header .navbar-nav .nav-item:last-child {
  margin-right: 60px;
}
header .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  line-height: 19px;
  color: rgb(27, 26, 30);
  font-weight: bold;
  transition: all 0.3s;
}
header .navbar-nav .nav-item .nav-link:hover {
  color: #F81080;
}
header .navbar-nav .nav-item .hvr-line {
  color: #F81080;
  transition: all 0.3s;
}
header .navbar-nav .nav-item .hvr-line:hover {
  color: #F81080;
}
header .navbar-nav .nav-item .hvr-line::after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 25%;
  height: 1px;
  background: #F81080;
  transition: all 0.6s cubic-bezier(0, 0, 0.23, 1);
}
header .navbar-nav .nav-item a {
  transition: 0.6s ease-in-out;
}
header .navbar-nav li {
  position: relative;
}
header .navbar-nav li a {
  position: relative;
  padding: 0;
}
header .navbar-nav li a.hvr-line::after {
  background-color: rgba(24, 90, 210, 0.9);
}
header .navbar-nav a.hvr-line::after {
  display: block;
}

a.hvr-line {
  font-size: 14px;
  line-height: 26px;
}

header .navbar-nav .nav-item:hover .hvr-line::after {
  width: 100%;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.the-mega-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  padding-top: 0;
  z-index: 9999;
  cursor: pointer;
}
.the-mega-btn .l1 {
  width: 15px;
  height: 2px;
  background-color: #F81080;
  transition: all 0.3s;
}
.the-mega-btn .l2 {
  width: 15px;
  height: 2px;
  background-color: #F81080;
  margin-top: 7px;
  transition: all 0.3s;
}
.the-mega-btn.active .l1 {
  transform: rotate(45deg);
  width: 20px;
}
.the-mega-btn.active .l2 {
  transform: rotate(-45deg);
  width: 20px;
  margin-top: -2px;
}

.the-mega-btn#menu_close{
  top: 10px;
  transform:inherit !important;
  display: none;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
}
@media (max-width: 767px) {
  .navbar-brand {
    width: 129px;
    line-height: 0px;
  }
}
@media (max-width: 575px) {
  .navbar-nav {
    display: none;
  }
}
/* Desktop menu */
.desktop-menu {
  position: fixed;
  left: 0;
  width: 100%;
  height: 0;
  padding: 0;
  z-index: 1030;
  transform: translateY(-100%);
  transition: 0.6s ease-in-out;
  visibility: hidden;
  pointer-events: none;
  top: 0;
}

.desktop-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translate(0, 0);
  height: 100vh;
}

@media(max-width:1440px){
  .desktop-menu,
  .desktop-menu.active {
      overflow-y: auto;
      overflow-x: hidden;
      top: 0
  }
}

.desktop-menu__bluebg {
  width: 60%;
  padding-right: 0;
  padding-left: 0;
  float: left;
  background: #2c69df;
  height: 100%;
}

.desktop-menu__item {
  position: relative;
  width: 100%;
  height: 100%;
}

.desktop-menu__item .container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

.desktop-menu.active .desktop-menu__item.active *, .header-nav li a {
  transition: 0.6s ease-in-out;
  text-decoration: none;
}

.desktop-menu.active .desktop-menu__item.active * {
  opacity: 1;
}

.desktop-menu__item * {
  position: relative;
  opacity: 0;
  transition: 0.8s ease-in-out;
  z-index: 9;
}

.desktop-menu__bluebg .desktop-menu__item * {
  color: #fff;
}

.desktop-menu__blackbg .desktop-menu__item * {
  color: #000;
}

.main-links__item {
  font-size: 36px;
  line-height: 46px;
  margin: 0 0 8px;
  display: inline-block;
  font-weight: 700;
  position: relative;
}

.main-links a {
  margin-top: 32px;
  display: inline-block;
  text-decoration: none;
}

.main-links--sub {
  min-width: 45%;
}

.social-links {
  margin-top: 100px;
}
.social-links a {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  margin-right: 16px;
  display: inline-block;
  margin-bottom: 8px;
}

.main-links2 a {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.hvr-m a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}

.hvr-div a:hover:before, .hvr-m a:hover:before {
  width: 100%;
}

.desktop-menu__blackbg {
  width: 40%;
  background: #fff;
  float: left;
  height: 100%;
  position: relative;
}

.desktop-menu__item {
  position: relative;
  width: 100%;
  height: 100%;
}

.desktop-menu__blackbg .web-btn {
  padding: 12px 20px;
  background: #F81080;
  border-radius: 5px;
  color: #fff;
  border: 1.5px solid #F81080;
  display: inline-block;
}
.desktop-menu__blackbg .web-btn:hover {
  background-color: #fff;
  color: #F81080;
  border-color: #F81080;
}

.desktop-menu__blackbg .desktop-menu__item .bg-bl-hd {
  font-weight: 500;
  font-size: 36px;
  line-height: 50px;
  margin-top: 32px;
  margin-bottom: 32px;
}

/* .the-mega-btn.fixed {
  position: fixed;
  top: 7%;
  right: 50px;
} */

@media (max-width: 767px) {
  header .navbar-nav .nav-item .hvr-line {
    white-space: nowrap;
  }
  .desktop-menu__bluebg, .desktop-menu__blackbg {
    width: 100%;
    height: auto;
    padding-bottom: 40px;
    padding-top: 40px;
  }
  .the-mega-btn.active .l1,
.the-mega-btn.active .l2 {
    background-color: #fff;
  }


}
@media (max-width: 575px) {
  .main-links a{
    margin-top: 10px;
  }
  .main-links__item {
    font-size: 26px;
    line-height: 26px;
  }
  .main-links--sub {
    margin-top: 30px;
}
.desktop-menu__blackbg .desktop-menu__item .bg-bl-hd {
  font-size: 24px;
  line-height: 34px;
  margin-top: 10px;
}
.desktop-menu{
  background: #fff;
}
}
/* Header End */
.site_main > section {
  position: relative;
}

.banner_section {
  /* height: 100vh; */
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.banner_section h1 {
  margin-bottom: 5px;
}

.banner_text {
  font-size: calc(1rem + 4px);
  line-height: 1.5;
}

/* .banner_section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.85;
  top: 0;
} */

.logo_animation {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(47%);
}
.logo_animation svg,
.logo_animation img {
  position: relative;
  z-index: 2;
  width: 160px;
  overflow: initial;
}
@media screen and (max-width: 991px) {
  .logo_animation svg,
  .logo_animation img {
    width: 70px;
  }
}

.drop-pixels {
  width: calc(100% - 10px);
  height: 500px;
  position: absolute;
  overflow: hidden;
  top: calc(100% - 60px);
  left: 0px;
  z-index: 999;
}
.drop-pixels::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#001e5799", endColorstr="#ffffff",GradientType=0 );
}
.drop-pixels .droplet {
  position: absolute;
  top: -6%;
  width: 12px;
  height: 12px;
}

.c_theme {
  color: #F81080;
}

@media (max-width: 767px) {
  .banner_section h1 {
    font-size: 26px;
  }
  .banner_text {
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 7px;
  }
  .logo_animation {
    line-height: 0px;
  }
  .logo_animation img {
    width: 70px;
  }
}
@media (max-width: 575px) {
  .banner_text {
    margin-bottom: 30px;
  }
}
.why_choose_us {
  padding: 0 0 0;
  font-size: 20px;
}

.why_choose_us .text_wrap{
  padding-top: 30px;
}
.why_choose_us h2 {
  font-size: 50px;
  line-height: 1.0666666667;
  margin-bottom: 1.4rem;
}
.why_choose_us h2 span {
  letter-spacing: -1.5px;
  margin-left: 10px;
}

@media (max-width: 1599px) {
  .why_choose_us .text_wrap {
    padding-top: 60px;
}
.why_choose_us h2{font-size: 40px; margin-bottom: 1rem;}
.g_main_str {
  transform: translate(-50%, -50%) scale(0.7);
}
.game_animation_section .container{
  height: 407px;
}
}
@media (max-width: 991px) {
  .why_choose_us {
    padding: 0rem 0 3rem;
  }
  .why_choose_us h2 {
    font-size: 47px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .why_choose_us {
    padding: 3rem 0 0.5rem;
  }
  .why_choose_us h2 {
    font-size: 28px;
    margin-bottom: 1rem;
  }
}

.game_animation_section {
  /* padding: 0 0 5.7rem; */
}

.g_main_str {
  background: #030000;
  width: 900px;
  margin: 0 auto;
}
.g_main_str .g_str:before {
  content: "";
  height: 50px;
  width: 12px;
  background: #030000;
  position: absolute;
  left: -10px;
  top: 0;
}
.g_main_str > div {
  margin: 0px;
}
.g_main_str::after {
  left: auto;
  right: -10px;
}
.g_main_str .g2_str:before,
.g_main_str .g3_str:before,
.g_main_str .g5_str:before {
  width: 70px;
  height: 12px;
  top: -11px;
  left: 10px;
}
.g_main_str .g3_str:before {
  top: auto;
  bottom: -11px;
  left: 40px;
  width: 75px;
}
.g_main_str .g5_str:before {
  left: calc(100% - 84px);
}
.g_main_str .g4_str:before {
  top: 33%;
  height: 60px;
}
.g_main_str .g_text_line::before {
  content: none;
}

.g_str {
  border: 10px solid #5F5F5F;
  padding: 50px 0;
  margin: 0 50px;
  position: relative;
}

.g5_str {
  padding: 20px 0px;
}

a.banner-btn {
  border-radius: 10px;
  color: #000;
  border: 2px solid #5f5f5f;
  background: 0 0;
  position: relative;
  padding: 14px 24px;
  font-size: 17px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
  overflow: hidden;
  margin-top: 10px;
}
a.banner-btn span {
  position: relative;
  z-index: 2;
}
a.banner-btn:after {
  content: "";
  background: #000;
  position: absolute;
  width: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  transition: all 0.3s;
  right: 0;
}
a.banner-btn:hover {
  color: #fff;
  border-color: #000;
}
a.banner-btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.g_text_line {
  line-height: 1;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.g_text_line > span {
  display: block;
}
.g_text_line a {
  border-radius: 10px;
  color: #fff;
  border: 2px solid #5f5f5f;
  background: 0 0;
  position: relative;
  padding: 17px 24px;
  font-size: 17px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
  overflow: hidden;
  margin-top: 25px;
  margin-bottom: -3px;
}
.g_text_line a span {
  position: relative;
  z-index: 2;
}
.g_text_line a:after {
  content: "";
  background: #fff;
  position: absolute;
  width: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  transition: all 0.3s;
  right: 0;
}
.g_text_line a:hover {
  color: #000;
}
.g_text_line a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.food_line {
  position: absolute;
  bottom: 50px;
  right: 17.5px;
  display: none;
  width: 11px;
  height: 11px;
}
.food_line.h {
  transform: rotate(270deg);
  transform-origin: left top;
}
.food_line:after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #34C8D1;
  box-shadow: 0px 20px 0 0px #34C8D1, 0px 40px 0 0px #34C8D1, 0px 60px 0 0px #34C8D1, 0px 80px 0 0px #34C8D1, 0px 100px 0 0px #34C8D1, 0px 120px 0 0px #34C8D1;
  -webkit-animation: 1s foodBlink infinite linear;
          animation: 1s foodBlink infinite linear;
}
.food_line:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 0;
  background: #030000;
  left: -1px;
  top: 0;
}
.food_line.line_1 {
  bottom: 258px;
}
.food_line.line_2 {
  top: 40%;
  right: 20px;
  bottom: auto;
  left: auto;
}
.food_line.line_3, .food_line.line_5 {
  top: 29px;
  right: 75%;
  bottom: auto;
}
.food_line.line_4 {
  left: 174px;
  bottom: 9px;
}
.food_line.line_6 {
  bottom: 6.5px;
  left: 40.6%;
}
.food_line.line_7 {
  bottom: auto;
  left: 50px;
  top: 30.5px;
}

@-webkit-keyframes foodBlink {
  0% {
    box-shadow: 0px 0px 0 0px #34C8D1, 0px 20px 0 0px #214142, 0px 40px 0 0px #34C8D1, 0px 60px 0 0px #34C8D1, 0px 80px 0 0px #34C8D1, 0px 100px 0 0px #34C8D1, 0px 120px 0 0px #34C8D1;
  }
  14% {
    box-shadow: 0px 0px 0 0px #34C8D1, 0px 20px 0 0px #34C8D1, 0px 40px 0 0px #214142, 0px 60px 0 0px #34C8D1, 0px 80px 0 0px #34C8D1, 0px 100px 0 0px #34C8D1, 0px 120px 0 0px #34C8D1;
  }
  28.5% {
    box-shadow: 0px 0px 0 0px #34C8D1, 0px 20px 0 0px #34C8D1, 0px 40px 0 0px #34C8D1, 0px 60px 0 0px #214142, 0px 80px 0 0px #34C8D1, 0px 100px 0 0px #34C8D1, 0px 120px 0 0px #34C8D1;
  }
  43% {
    box-shadow: 0px 0px 0 0px #34C8D1, 0px 20px 0 0px #34C8D1, 0px 40px 0 0px #34C8D1, 0px 60px 0 0px #34C8D1, 0px 80px 0 0px #214142, 0px 100px 0 0px #34C8D1, 0px 120px 0 0px #34C8D1;
  }
  57% {
    box-shadow: 0px 0px 0 0px #34C8D1, 0px 20px 0 0px #34C8D1, 0px 40px 0 0px #34C8D1, 0px 60px 0 0px #34C8D1, 0px 80px 0 0px #34C8D1, 0px 100px 0 0px #214142, 0px 120px 0 0px #34C8D1;
  }
  72% {
    box-shadow: 0px 0px 0 0px #34C8D1, 0px 20px 0 0px #34C8D1, 0px 40px 0 0px #34C8D1, 0px 60px 0 0px #34C8D1, 0px 80px 0 0px #34C8D1, 0px 100px 0 0px #34C8D1, 0px 120px 0 0px #214142;
  }
}

@keyframes foodBlink {
  0% {
    box-shadow: 0px 0px 0 0px #34C8D1, 0px 20px 0 0px #214142, 0px 40px 0 0px #34C8D1, 0px 60px 0 0px #34C8D1, 0px 80px 0 0px #34C8D1, 0px 100px 0 0px #34C8D1, 0px 120px 0 0px #34C8D1;
  }
  14% {
    box-shadow: 0px 0px 0 0px #34C8D1, 0px 20px 0 0px #34C8D1, 0px 40px 0 0px #214142, 0px 60px 0 0px #34C8D1, 0px 80px 0 0px #34C8D1, 0px 100px 0 0px #34C8D1, 0px 120px 0 0px #34C8D1;
  }
  28.5% {
    box-shadow: 0px 0px 0 0px #34C8D1, 0px 20px 0 0px #34C8D1, 0px 40px 0 0px #34C8D1, 0px 60px 0 0px #214142, 0px 80px 0 0px #34C8D1, 0px 100px 0 0px #34C8D1, 0px 120px 0 0px #34C8D1;
  }
  43% {
    box-shadow: 0px 0px 0 0px #34C8D1, 0px 20px 0 0px #34C8D1, 0px 40px 0 0px #34C8D1, 0px 60px 0 0px #34C8D1, 0px 80px 0 0px #214142, 0px 100px 0 0px #34C8D1, 0px 120px 0 0px #34C8D1;
  }
  57% {
    box-shadow: 0px 0px 0 0px #34C8D1, 0px 20px 0 0px #34C8D1, 0px 40px 0 0px #34C8D1, 0px 60px 0 0px #34C8D1, 0px 80px 0 0px #34C8D1, 0px 100px 0 0px #214142, 0px 120px 0 0px #34C8D1;
  }
  72% {
    box-shadow: 0px 0px 0 0px #34C8D1, 0px 20px 0 0px #34C8D1, 0px 40px 0 0px #34C8D1, 0px 60px 0 0px #34C8D1, 0px 80px 0 0px #34C8D1, 0px 100px 0 0px #34C8D1, 0px 120px 0 0px #214142;
  }
}
.logo_game {
  position: absolute;
  max-height: 48px;
  left: 0;
  display: none;
  top: 2px;
  z-index: 1;
}

.start_logo_game .logo_game {
  -webkit-animation: 20s logoGame forwards linear;
          animation: 20s logoGame forwards linear;
  display: block;
}

@-webkit-keyframes logoGame {
  0% {
    left: 0%;
    top: 0;
    transform: rotate(0deg);
  }
  11.5% {
    left: calc(100% - 50px);
    top: 0;
    transform: rotate(0deg);
  }
  11.6% {
    transform: rotate(90deg);
  }
  21.5% {
    left: calc(100% - 50px);
    top: calc(100% - 45px);
    transform: rotate(90deg);
  }
  21.6% {
    transform: rotate(180deg);
  }
  32.3% {
    left: 110px;
    top: calc(100% - 45px);
    transform: rotate(180deg);
  }
  32.4% {
    transform: rotate(270deg);
  }
  33.5% {
    top: calc(100% - 108px);
    left: 110px;
    transform: rotate(270deg);
  }
  33.6% {
    transform: rotate(0deg);
  }
  43.3% {
    top: calc(100% - 108px);
    left: calc(100% - 113px);
    transform: rotate(0deg);
  }
  43.4% {
    transform: rotate(-90deg);
  }
  49% {
    top: 65px;
    left: calc(100% - 113px);
    transform: rotate(-90deg);
  }
  49.1% {
    transform: rotate(-180deg);
  }
  59.5% {
    top: 65px;
    left: 61px;
    transform: rotate(-180deg);
  }
  59.6% {
    transform: rotate(-270deg);
  }
  63% {
    top: 226px;
    left: 61px;
    transform: rotate(-270deg);
  }
  63.1% {
    transform: rotate(0deg);
  }
  65% {
    top: 226px;
    left: 122px;
    transform: rotate(0deg);
  }
  65.1% {
    transform: rotate(90deg);
  }
  69.4% {
    left: 122px;
    top: calc(100% - 170px);
    transform: rotate(90deg);
  }
  69.5% {
    transform: rotate(0deg);
  }
  80.5% {
    left: calc(100% - 173px);
    top: calc(100% - 170px);
    transform: rotate(0deg);
  }
  80.6% {
    transform: rotate(-90deg);
  }
  87% {
    left: calc(100% - 173px);
    top: 125px;
    transform: rotate(-90deg);
  }
  87.1% {
    transform: rotate(-180deg);
  }
  90.2% {
    left: calc(100% - 250px);
    top: 125px;
    transform: rotate(-180deg);
  }
  90.3% {
    transform: rotate(-270deg);
  }
  95.5% {
    top: calc(100% - 275px);
    left: calc(100% - 250px);
    transform: rotate(-270deg);
  }
  95.6% {
    transform: rotate(-180deg);
  }
  99% {
    transform: rotate(-180deg);
    top: calc(100% - 275px);
    left: calc(100% - 360px);
  }
  100% {
    transform: rotate(-180deg);
    top: calc(100% - 275px);
    left: calc(100% - 360px);
  }
}

@keyframes logoGame {
  0% {
    left: 0%;
    top: 0;
    transform: rotate(0deg);
  }
  11.5% {
    left: calc(100% - 50px);
    top: 0;
    transform: rotate(0deg);
  }
  11.6% {
    transform: rotate(90deg);
  }
  21.5% {
    left: calc(100% - 50px);
    top: calc(100% - 45px);
    transform: rotate(90deg);
  }
  21.6% {
    transform: rotate(180deg);
  }
  32.3% {
    left: 110px;
    top: calc(100% - 45px);
    transform: rotate(180deg);
  }
  32.4% {
    transform: rotate(270deg);
  }
  33.5% {
    top: calc(100% - 108px);
    left: 110px;
    transform: rotate(270deg);
  }
  33.6% {
    transform: rotate(0deg);
  }
  43.3% {
    top: calc(100% - 108px);
    left: calc(100% - 113px);
    transform: rotate(0deg);
  }
  43.4% {
    transform: rotate(-90deg);
  }
  49% {
    top: 65px;
    left: calc(100% - 113px);
    transform: rotate(-90deg);
  }
  49.1% {
    transform: rotate(-180deg);
  }
  59.5% {
    top: 65px;
    left: 61px;
    transform: rotate(-180deg);
  }
  59.6% {
    transform: rotate(-270deg);
  }
  63% {
    top: 226px;
    left: 61px;
    transform: rotate(-270deg);
  }
  63.1% {
    transform: rotate(0deg);
  }
  65% {
    top: 226px;
    left: 122px;
    transform: rotate(0deg);
  }
  65.1% {
    transform: rotate(90deg);
  }
  69.4% {
    left: 122px;
    top: calc(100% - 170px);
    transform: rotate(90deg);
  }
  69.5% {
    transform: rotate(0deg);
  }
  80.5% {
    left: calc(100% - 173px);
    top: calc(100% - 170px);
    transform: rotate(0deg);
  }
  80.6% {
    transform: rotate(-90deg);
  }
  87% {
    left: calc(100% - 173px);
    top: 125px;
    transform: rotate(-90deg);
  }
  87.1% {
    transform: rotate(-180deg);
  }
  90.2% {
    left: calc(100% - 250px);
    top: 125px;
    transform: rotate(-180deg);
  }
  90.3% {
    transform: rotate(-270deg);
  }
  95.5% {
    top: calc(100% - 275px);
    left: calc(100% - 250px);
    transform: rotate(-270deg);
  }
  95.6% {
    transform: rotate(-180deg);
  }
  99% {
    transform: rotate(-180deg);
    top: calc(100% - 275px);
    left: calc(100% - 360px);
  }
  100% {
    transform: rotate(-180deg);
    top: calc(100% - 275px);
    left: calc(100% - 360px);
  }
}
.start_logo_game .food_line {
  display: flex;
}
.start_logo_game .food_line.line_3:before, .start_logo_game .food_line.line_2:before {
  -webkit-animation: 20s foodvisible forwards linear;
          animation: 20s foodvisible forwards linear;
}
.start_logo_game .food_line.line_2:before {
  -webkit-animation: 20s foodvisible2 forwards linear;
          animation: 20s foodvisible2 forwards linear;
}
.start_logo_game .food_line.line_4:before {
  -webkit-animation: 20s foodvisible4 forwards linear;
          animation: 20s foodvisible4 forwards linear;
}
.start_logo_game .food_line.line_5:before {
  -webkit-animation: 20s foodvisible5 forwards linear;
          animation: 20s foodvisible5 forwards linear;
}
.start_logo_game .food_line.line_6:before {
  -webkit-animation: 20s foodvisible6 forwards linear;
          animation: 20s foodvisible6 forwards linear;
}
.start_logo_game .food_line.rl::before {
  left: -1px;
  top: auto;
  bottom: -121px;
}

@-webkit-keyframes foodvisible {
  0% {
    height: 0;
  }
  2.3% {
    height: 0;
  }
  4.2% {
    height: 135px;
  }
  100% {
    height: 135px;
  }
}

@keyframes foodvisible {
  0% {
    height: 0;
  }
  2.3% {
    height: 0;
  }
  4.2% {
    height: 135px;
  }
  100% {
    height: 135px;
  }
}
@-webkit-keyframes foodvisible2 {
  0% {
    height: 0;
  }
  15.2% {
    height: 0;
  }
  17.7% {
    height: 135px;
  }
  100% {
    height: 135px;
  }
}
@keyframes foodvisible2 {
  0% {
    height: 0;
  }
  15.2% {
    height: 0;
  }
  17.7% {
    height: 135px;
  }
  100% {
    height: 135px;
  }
}
@-webkit-keyframes foodvisible4 {
  0% {
    height: 0;
  }
  29.5% {
    height: 0;
  }
  31.5% {
    height: 135px;
  }
  100% {
    height: 135px;
  }
}
@keyframes foodvisible4 {
  0% {
    height: 0;
  }
  29.5% {
    height: 0;
  }
  31.5% {
    height: 135px;
  }
  100% {
    height: 135px;
  }
}
@-webkit-keyframes foodvisible5 {
  0% {
    height: 0;
  }
  54.8% {
    height: 0;
  }
  57% {
    height: 135px;
  }
  100% {
    height: 135px;
  }
}
@keyframes foodvisible5 {
  0% {
    height: 0;
  }
  54.8% {
    height: 0;
  }
  57% {
    height: 135px;
  }
  100% {
    height: 135px;
  }
}
@-webkit-keyframes foodvisible6 {
  0% {
    height: 0;
  }
  73.5% {
    height: 0;
  }
  76% {
    height: 135px;
  }
  100% {
    height: 135px;
  }
}
@keyframes foodvisible6 {
  0% {
    height: 0;
  }
  73.5% {
    height: 0;
  }
  76% {
    height: 135px;
  }
  100% {
    height: 135px;
  }
}

@media(max-width:1199px){
  .g_main_str {
    background: #030000;
    width: 900px;
    margin: 0 auto;
    transform: scale(0.8);
    transform-origin: center top;
}

.why_choose_us .container{
  height: 500px;
}
}

@media (max-width: 991px) {
  .game_animation_section {
    padding: 2.7rem 0;
  }
}
@media (max-width: 767px) {
  a.banner-btn {
    padding: 10px 17px;
    font-size: 16px;
    border-radius: 7px;
  }
  .d-block {
    display: inline;
  }
}
.contact_form-popup {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

@media(max-width:1199px){
  .contact_form-popup{
    position: fixed;
  }
}

.show_cfp {
  display: flex;
}

.cfp-inner {
  padding: 50px;
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.contact_form-popup h2 {
  font-size: 26px;
  list-style: 28px;
  -moz-columns: #000;
       columns: #000;
  text-align: center;
  margin-bottom: 20px;
}

.contact_form-popup input {
  width: 100%;
  height: 50px;
  padding: 0 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  border: none;
  background-color: #e3e3e3;
  font-size: 16px;
  border: 1px solid transparent;
}

.iti--separate-dial-code input {
  margin: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.iti__selected-flag {
  border-right: 1px solid #b2b1b1;
}

.contact_form-popup textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  border: none;
  background-color: #e3e3e3;
  font-size: 16px;
  border: 1px solid transparent;
}

.contact_form-popup input:focus,
.contact_form-popup textarea:focus {
  outline: none;
  border: 1px solid #d1d1d1;
}

.cfp-btn button {
  border-radius: 10px;
  color: #000;
  border: 2px solid #5f5f5f;
  background: 0 0;
  position: relative;
  padding: 12px 24px;
  font-size: 17px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
  overflow: hidden;
  margin-top: 10px;
  min-width: 200px;
}

.cfp-btn button span {
  position: relative;
  z-index: 2;
}

.cfp-btn button:hover {
  color: #fff;
  border-color: #000;
}

.cfp-btn button:after {
  content: "";
  background: #000;
  position: absolute;
  width: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  transition: all 0.3s;
  right: 0;
}

.cfp-btn button:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.cls-popup-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}


@media (max-width: 1899px) {
  .game_animation_section .container {
    position: relative;
    overflow: hidden;
    height: 457px;
  }
  .g_main_str{
    transform: translate(-50%, -50%) scale(0.8);
    position: absolute;
    left: 50%;
    top: 50%;
  }
}

@media (max-width: 1199px) {
  .why_choose_us .container{height: inherit;}
  .game_animation_section .container {
    position: static;
    height: 554px;
    padding: 2rem 0;
  }
  .g_main_str{
    position: static;
    transform: scale(0.8);
    left: inherit;
    top: inherit;
  }
}

@media (max-width: 767px) {
  .why_choose_us p {
    font-size: 18px;
    line-height: 30px;
  }
  .g_main_str {
    transform: translate(-50%, -50%) scale(0.6);
    position: relative;
    left: 50%;
    top: 50%;
    transform-origin: 50%;
  }
  .game_animation_section {
    padding: 1rem 0 2.5rem;
  }
  .game_animation_section .container {
    height: 351px;
  }
  .cfp-inner {
    padding: 50px 20px;
    overflow: auto;
    height: calc(100% - 20px);
  }
}
@media (max-width: 575px) {
  .game_animation_section .container {
    height: 243px;
  }
  .g_main_str {
    transform: translate(-50%, -50%) scale(0.415);
  }
  .cfp-inner {
    width: calc(100% - 20px);
    height: auto;
  }
}
.our_projects {
  background: #EDEDED;
  padding: 5.6rem 0;
}
.our_projects .apr_title {
  font-size: 150px;
  color: #fff;
  position: absolute;
  right: 0.3rem;
  top: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.3px;
  opacity: 0.5;
}
.our_projects h2.bar {
  margin-bottom: 1rem;
}
.our_projects h2.bar + p {
  font-size: 24px;
  max-width: 750px;
  position: relative;
  z-index: 2;
}

.project_slider {
  padding-top: 1.5rem;
  margin: 0 -0.7rem;
}
.project_slider .item {
  padding: 8px;
}

.slider_card {
  font-size: 20px;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  transition: 0.35s;
}
.slider_card figcaption {
  padding: 1.9rem 1.4rem 1.9rem 2.5rem;
  min-height: 155px;
}
.slider_card h4 {
  margin-bottom: 5px;
}
.slider_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199px) {
  .slick-slider .slick-track {
    display: flex;
  }
  .slick-slide {
    height: auto;
  }
  .slider_card {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .slider_card figcaption {
    padding: 1.9rem 1.2rem 1.9rem 1.8rem;
  }
  .our_projects {
    padding: 3.6rem 0;
  }
  .our_projects .apr_title {
    font-size: 110px;
    top: 8rem;
  }
}
@media (max-width: 767px) {
  .our_projects .apr_title {
    font-size: 80px;
    top: 28%;
  }
  .our_projects h2.bar {
    font-size: 28px;
  }
  .our_projects h2.bar + p {
    font-size: 18px;
    line-height: 27px;
  }
  .slider_card h4 {
    font-size: 20px;
  }
  .slider_card figcaption {
    padding: 15px 15px;
    font-size: 16px;
  }
}
.our_client {
  font-size: 24px;
  padding: 0;
}
.our_client .cs_ratio:before {
  padding-top: 48%;
}
.our_client .client_logo_list {
  padding-top: 2.8rem;
}
.our_client figure {
  margin-bottom: 1rem;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-property: opacity, transform;
  transform: scale(0.6);
  transition-duration: 1s;
}
.our_client figure.aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

@media (max-width: 1599px) {
  h2, .h2, .cs_title {
    font-size: 30px;
}
.our_client{
  font-size: 18px;
}
/* .our_client .client_logo_list {
  padding-top: 1rem;
} */

  .our_client h2.mb-4{
    margin-bottom: 1rem !important;
    padding-top: 3rem;
  }
}

@media (max-width: 991px) {
  .our_client {
    padding: 3.5rem 0 3.4rem;
  }
  .bar:before {
    left: -20px;
    height: 146%;
    top: -24%;
  }
  .ar_out .slick-next, .ar_out .slick-prev {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .our_client h2 {
    font-size: 28px;
  }
  .our_client p {
    font-size: 18px;
    list-style: 27px;
  }
}
[data-aos-delay="300"].aos-animate {
  transition-delay: 0.1s;
}

[data-aos-delay="500"].aos-animate {
  transition-delay: 0.3s;
}

[data-aos-delay="700"].aos-animate {
  transition-delay: 0.5s;
}

.our_achievements {
  background-attachment: fixed !important;
  padding: 5.7rem 0 7.7rem;
  font-size: 20px;
  overflow: hidden;
}
.our_achievements h2 {
  font-size: 50px;
}
.our_achievements .rope_center {
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  z-index: 1;
  background: url(../images/rope.png) repeat-y center top;
}
.our_achievements .rope_center .man_icon {
  max-width: 3rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
}
.our_achievements .ach_item {
  background: #fff;
  border-radius: 10px;
  width: 263px;
  font-size: 30px;
  line-height: 1.3333333333;
  color: #9E9E9E;
  text-align: center;
  font-weight: 600;
  font-family: inter600;
  position: relative;
}
.our_achievements .ach_item .cs_ratio:before {
  padding-top: 74.5%;
}
.our_achievements .ach_item .text_ach p {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 1.5rem;
}
.our_achievements .ach_item:before {
  content: "";
  width: 75px;
  height: 2px;
  background: #B07B27;
  position: absolute;
  right: -75px;
  top: 35%;
}
.our_achievements .ach_item:after {
  content: "";
  width: 6px;
  height: 14px;
  background: #E2A94E;
  top: 35%;
  right: -6px;
  position: absolute;
  transform: translateY(-6px);
}
.our_achievements .ach_item:nth-child(odd) {
  margin-left: auto;
}
.our_achievements .ach_item:nth-child(odd):before {
  left: -75px;
}
.our_achievements .ach_item:nth-child(odd):after {
  left: -6px;
}
.our_achievements .ach_item:first-child::after, .our_achievements .ach_item:first-child::before {
  content: none;
}
.our_achievements .man_body {
  width: 124px;
  height: 170px;
  position: absolute;
  display: none;
  left: -39px;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
.our_achievements .man_body .head,
.our_achievements .man_body .stomach {
  width: 26px;
  height: 26px;
  margin: 0 auto;
  border-radius: 50%;
  background: #FD05C1;
  top: 20px;
  position: absolute;
  left: 0;
  right: 0;
}
.our_achievements .man_body .stomach {
  border-radius: 4px;
  top: 50px;
  height: 58px;
  width: 35px;
}
.our_achievements .man_body .hand,
.our_achievements .man_body .hand:after {
  width: 14px;
  height: 35px;
  background: #FD05C1;
  right: 62%;
  bottom: 88%;
  position: absolute;
  border-radius: 10px 10px 2px 2px;
  transform-origin: center bottom;
  transform: rotate(244deg);
}
.our_achievements .man_body .hand:after {
  content: "";
  transform-origin: center bottom;
  transform: rotate(90deg);
  border-radius: 10px 10px 5px 5px;
  height: 32px;
  bottom: 28px;
  left: 0;
}
.our_achievements .man_body .r_hand {
  left: 62%;
  transform: rotate(37deg);
}
.our_achievements .man_body .r_hand::after {
  transform: rotate(0);
}
.our_achievements .man_body .leg,
.our_achievements .man_body .leg:after {
  width: 18px;
  height: 50px;
  background: #FD05C1;
  left: 0px;
  top: 53%;
  position: absolute;
  border-radius: 10px;
  transform-origin: 5px 16px;
  transform: rotate(25deg);
}
.our_achievements .man_body .leg:after {
  content: "";
  transform-origin: center 85%;
  transform: rotate(180deg);
  border-radius: 10px;
  height: 45px;
  /* bottom: -8px; */
  left: 0;
  top: calc(100% - 45px);
}
.our_achievements .man_body .r_leg {
  left: auto;
  right: 0px;
  transform: rotate(251deg);
  transform-origin: calc(100% - 5px) 16px;
}
.our_achievements .man_body .r_leg::after {
  transform: rotate(290deg);
}
.our_achievements .man_body.active .hand {
  -webkit-animation: hand 1s infinite ease-in-out;
          animation: hand 1s infinite ease-in-out;
}
.our_achievements .man_body.active .hand:after {
  -webkit-animation: 1s fhand infinite ease;
          animation: 1s fhand infinite ease;
}
.our_achievements .man_body.active .hand.r_hand {
  -webkit-animation: hand2 1s infinite ease-in-out;
          animation: hand2 1s infinite ease-in-out;
}
.our_achievements .man_body.active .hand.r_hand::after {
  -webkit-animation: 1s fhand2 infinite ease-out;
          animation: 1s fhand2 infinite ease-out;
}
.our_achievements .man_body.active .leg {
  -webkit-animation: 1s leg infinite ease-in-out;
          animation: 1s leg infinite ease-in-out;
}
.our_achievements .man_body.active .leg:after {
  -webkit-animation: 1s fleg infinite ease-in-out;
          animation: 1s fleg infinite ease-in-out;
}
.our_achievements .man_body.active .r_leg {
  -webkit-animation: 1s leg2 infinite ease-in-out;
          animation: 1s leg2 infinite ease-in-out;
}
.our_achievements .man_body.active .r_leg::after {
  -webkit-animation: 1s fleg2 infinite ease-in-out;
          animation: 1s fleg2 infinite ease-in-out;
}

@-webkit-keyframes ropeMoveup {
  100% {
    background-position: center -1000%;
  }
}

@keyframes ropeMoveup {
  100% {
    background-position: center -1000%;
  }
}
@-webkit-keyframes hand {
  50% {
    transform: rotate(323deg);
  }
}
@keyframes hand {
  50% {
    transform: rotate(323deg);
  }
}
@-webkit-keyframes hand2 {
  50% {
    transform: rotate(116deg);
  }
}
@keyframes hand2 {
  50% {
    transform: rotate(116deg);
  }
}
@-webkit-keyframes fhand {
  0% {
    transform: rotate(100deg);
  }
  30% {
    transform: rotate(50deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(100deg);
  }
}
@keyframes fhand {
  0% {
    transform: rotate(100deg);
  }
  30% {
    transform: rotate(50deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(100deg);
  }
}
@-webkit-keyframes fhand2 {
  0% {
    transform: rotate(-10deg);
  }
  35% {
    transform: rotate(-100deg);
  }
  50% {
    transform: rotate(-100deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@keyframes fhand2 {
  0% {
    transform: rotate(-10deg);
  }
  35% {
    transform: rotate(-100deg);
  }
  50% {
    transform: rotate(-100deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@-webkit-keyframes leg {
  50% {
    transform: rotate(110deg);
  }
}
@keyframes leg {
  50% {
    transform: rotate(110deg);
  }
}
@-webkit-keyframes leg2 {
  50% {
    transform: rotate(335deg);
  }
}
@keyframes leg2 {
  50% {
    transform: rotate(335deg);
  }
}
@-webkit-keyframes fleg {
  50% {
    transform: rotate(70deg);
  }
}
@keyframes fleg {
  50% {
    transform: rotate(70deg);
  }
}
@-webkit-keyframes fleg2 {
  50% {
    transform: rotate(180deg);
  }
}
@keyframes fleg2 {
  50% {
    transform: rotate(180deg);
  }
}
.achi_blocks_wrapper {
  padding-top: 5rem;
  margin: 0 auto;
  width: 665px;
}
.achi_blocks_wrapper .ach_item img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  max-height: 94%;
  margin-top: 2%;
}

@media (max-width: 767px) {
  .our_achievements {
    padding: 3.5rem 0 5rem;
  }
  .our_achievements h2, .our_achievements p {
    position: relative;
    z-index: 2;
  }
  .our_achievements h2 {
    font-size: 28px;
  }
  .our_achievements p {
    font-size: 18px;
    line-height: 27px;
  }
  .our_achievements .text_ach {
    padding: 0px 10px;
  }
  .our_achievements .ach_item .text_ach p {
    font-size: 15px;
    line-height: 19px;
  }
  .our_achievements .ach_item {
    width: 127px;
  }
  .achi_blocks_wrapper {
    width: 350px;
  }
  .achi_blocks_wrapper {
    padding-top: 3rem;
  }
  .our_achievements .ach_item:before {
    left: calc(100% + 6px);
    width: 44px;
  }
  .our_achievements .ach_item:nth-child(odd):before {
    right: calc(100% + 6px);
    left: auto;
  }
  .our_achievements .man_body {
    transform: scale(0.65);
  }
  .achi_blocks_wrapper .ach_item img {
    max-width: calc(100% - 12px);
    height: 76%;
    margin-top: 9%;
    left: 4%;
  }
}
@media (max-width: 575px) {
  .achi_blocks_wrapper {
    width: 100%;
  }
}
.latest_blog {
  padding:0;
}
.latest_blog h2.mb-5 {
  margin-bottom: 1rem;
}
.latest_blog p {
  font-size: 24px;
  max-width: 730px;
  margin-bottom: 3rem;
}

.blog_card {
  margin-bottom: 1rem;
  background: #fff;
  transition: 0.35s;
}
.blog_card .time_info {
  color: #121212;
  opacity: 0.3;
  font-weight: 400;
  font-size: calc(1rem - 3px);
}
.blog_card figcaption {
  padding: 1.5rem 1.25rem;
}
.blog_card .cs_ratio:before {
  padding-top: 65%;
}
.blog_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width:1199px) and (max-width: 1599px) {
  .blog_card .lh_15{
    font-size: 14px;
    min-height: 40px;
  }
  .latest_blog p{
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .latest_blog h2.mb-5{
    padding-top: 40px;
  }
}

@media (max-width: 1199px) {
  .latest_blog {
    padding: 5rem 0;
  }
}
@media (max-width: 991px) {
  .latest_blog {
    padding: 3.4rem 0;
  }
  .blog_card {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .latest_blog h2 {
    font-size: 27px;
  }
  .latest_blog p {
    font-size: 18px;
    line-height: 27px;
  }
  .row_20 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .blog_card {
    background: none;
  }
  .blog_card figcaption {
    background-color: #fff;
    padding: 1rem 1.25rem;
  }
}
.footer-main {
  background-color: #000;
  position: relative;
  padding: 50px 0;
  overflow-y: hidden;
  /* height: auto !important; */
}
.footer_height,.footer_height .fp-tableCell{
  height: auto !important;
}
.footer-main .heading {
  color: #fff;
  text-align: center;
  text-transform: none;
  font-style: normal;
  font-weight: 800;
  font-size: 43px;
  line-height: 62px;
  max-width: 810px;
  margin: 0 auto 50px;
}
.footer-main .text {
  font-weight: 500;
  color: #fff;
  margin-top: 30px;
}
.footer-main .footer-policy-box {
  display: flex;
}
.footer-main .footer-policy-box .text {
  font-size: 15px;
  line-height: 27px;
  margin-right: 50px;
  color: #c5c5c5;
  margin-top: 50px;
  margin-bottom: 0;
}
.footer-main .space-box {
  padding-left: 40px;
  padding-right: 40px;
}
.footer-main.contact-main .space-box {
  padding-right: 0;
  padding-left: 20%;
}
.footer-main.contact-main .right-contact {
  padding-left: 20%;
}
.footer-main .form {
  margin-left: auto;
}

.footer-box a {
  margin-right: 10px;
  display: inline-block;
  margin-bottom: 8px;
}

.iti--separate-dial-code {
  width: 100%;
  margin: 10px 0;
}

.form-control {
  border-radius: 6px;
  height: 48px;
  width: 100%;
  margin: 10px 0;
}
.form-control::-moz-placeholder {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #1b1a1e;
  text-transform: capitalize;
}
.form-control:-ms-input-placeholder {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #1b1a1e;
  text-transform: capitalize;
}
.form-control::placeholder {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #1b1a1e;
  text-transform: capitalize;
}
.form-control#phone::-webkit-outer-spin-button, .form-control#phone::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-control#phone[type=number] {
  -moz-appearance: textfield;
}

.box select {
  border-radius: 6px;
  height: 65px;
  margin: 10px 0;
  margin-right: 10px;
  font-size: 18px;
  line-height: 26px;
  padding: 0 2px;
}

.footer-icons-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 15%;
  display: none;
}
#main-footer {
  background-image: url("../../assets/img/footer-side-icon.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 15%;
  padding-top: 80px;
}
@media (min-width:1200px) and (max-width:1500px) {
  #main-footer {
      background-size: 12%;
  }
}
.footer-policy-box a {
  text-decoration: none;
}

.page-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 100%;
  height: 450px;
}

.contact-info {
  padding-bottom: 0;
  margin-bottom: -50px;
}
.contact-info .head {
  font-weight: 900;
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 40px;
  padding-right: 20%;
  font-family: inherit;
}
.contact-info .contact-box {
  display: flex;
  margin-bottom: 20px;
}
.contact-info .contact-box .contact-desc {
  margin-left: 30px;
}
.contact-info .contact-box .sub-heading {
  font-weight: 700;
}
.contact-info .form-template {
  position: relative;
  background: #fff;
  box-shadow: 0 0 47.7264px rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  padding: 38px 48px;
  z-index: 999;
}
.contact-info .iti__selected-flag {
  border-right: none;
}
.contact-info .iti {
  display: block;
}

.form-contact-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-radius: 6px;
  height: 48px;
  margin: 20px 0;
}

textarea.form-contact-control {
  height: auto;
}

.contact-main .footer-box {
  text-align: center;
}

.footer-main.contact-main .footer-policy-box {
  justify-content: center;
}

:focus-visible {
  outline: 1.19px solid rgb(44, 105, 223);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 9;
}
.back-to-top a {
  background: #F81080;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  line-height: 36px;
  text-align: center;
}
.back-to-top a img {
  width: 24px;
  position: relative;
  top: 8px;
}

@media (min-width: 576px) {
  .footer-main .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .footer-main .container {
    max-width: 729px;
  }
}
@media (min-width: 992px) {
  .footer-main .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .footer-main .container {
    max-width: 1320px;
  }
}
@media (max-width: 1024px) {
  .footer-box a {
    margin-right: 10px;
  }
}
@media (max-width: 991px) {
  .footer-main .space-box {
    padding: 0 3%;
  }
  .footer-main .footer-policy-box .text {
    margin-top: 10px;
  }
  .footer-main .heading {
    max-width: 550px;
    font-size: 35px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .footer-main .heading {
    font-size: 26px;
    line-height: 42px;
  }
}



.fade {
  animation: 0.5s linear 0s slide;
  opacity: 0;
}
@keyframes slide {
  from { left: 100%; opacity: 1; }
  to { left: 100%; -webkit-transform: translateX(-80%); transform: translateX(-80%);
    /* transform: skewX(-30deg); */
    /* transform: rotate(10deg); */
  }
}

.footer-box img,
.space-img img {
  vertical-align: middle;
}

.captcha-view {
  background: url(../../v2/images/captcha-bg.jpeg) no-repeat 100%;
  height: 46px;
  padding: 0 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 18px;
  position: relative;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.captcha-view:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.redText {
  color: red;
  font-size: 12px;
  line-height: unset;
}
/* .greenText {
  display: none;
} */
.hidden {
  display: none;
}


@media (max-width:991px) {
  .order-p-1 {
    order: 1;
  }
  .order-p-2 {
    order: 2;
  }
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: .65;
}

.our_projects .web-btn {
  padding: 8px 20px;
  background: #F81080;
  border-radius: 5px;
  color: #fff;
  border: 1.5px solid #F81080;
  display: inline-block;
  font-weight: 400;
  margin-top: 15px;
}
.our_projects .web-btn:hover {
  background-color: #fff;
  color: #F81080;
  border-color: #F81080;
}

.mt2 {
  margin-top: 15px;
  display: inline-block;
  color: #F81080;
  text-decoration: underline;
  font-weight: 600;
  font-size: 12px;
}
.mt2:hover {
  color: #F81080;
}
.mt2 img {
  position: relative;
  top: 2px;
}




.form { position: relative;}
.hubsportform fieldset {
    width: 100% !important;
    max-width: none !important;
}
.hubsportform fieldset.form-columns-2 .hs-form-field {
    width: 50% !important;
    max-width: none !important;
}
.hubsportform fieldset input.hs-input {
  width: 100% !important;
  border-radius: 6px;
  height: 48px;
  margin: 10px 0 0;
  padding: 12.5px 1rem;
  font-size: 18px;
  border: 1px solid #B4B4B4;
  background: #fff;
  color: #1B1A1E;
}
.hubsportform .form-columns-1 .hs-input {width: 100% !important; display: flex; margin-bottom: 0px !important;}
.hubsportform .form-columns-1 .hs-input select {
    min-width: 150px !important;
    width: 150px !important;
    border-radius: 6px;
    height: 48px;
    margin: 10px 10px 0 0;
    padding: 0 1rem;
    font-size: 16px;
    border: 1px solid #B4B4B4;
    background: #fff;
    color: #1B1A1E;
}
.hubsportform .hs_submit .hs-button {
    width: 98%;
    height: 48px;
    font-size: 17px;
    padding: 12.5px 1rem;
    display: inherit;
    cursor: pointer;
    background: #fa0079;
    border: none;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}
.hubsportform .hs-error-msgs,
.hubsportform .hs-error-msg {
    list-style: none;
    color: red;
    margin: 0 0 0;
    padding: 0;
    font-size: 12px;
}
.hubsportform .hs-error-msgs {
    margin: 5px 0 0;
}
.hubsportform .hs-submit {
  margin: 10px 0px 0 0;
  float: left;
  width: 50%;
}
.hubsportform label:not(.hs-main-font-element, .hs-error-msg) { display: none;}
.hubsportform fieldset.form-columns-1 {
    width: 50% !important;
    max-width: none !important;
    float: left;
}
.hubsportform .hs_error_rollup {
    position: absolute;
    left: 15px;
    bottom: 35px;
}
.grecaptcha-badge {
  display: none;
}

@media(max-width:1399px) {
  .hubsportform .hs_error_rollup {
    bottom: 57px;
  }
  .hubsportform .form-columns-1 .hs-input select {
    min-width: 100px !important;
    width: 100px !important;
  }
}
@media(max-width:991px) {
  .hubsportform fieldset.form-columns-2 .hs-form-field {
      width: 100% !important;
  }
  .hubsportform fieldset.form-columns-1 {
      width: 100% !important;
  }
  .hubsportform .hs-submit {
      width: 100%;
  }
  .hubsportform .hs_error_rollup {
      position: relative;
      bottom: unset;
      left: unset;
  }
}

.submitted-message p {
  color: #fff;
  text-align: center;
  padding-top: 30px;
  font-size: 1.6rem;
}
@media(max-width:991px){
  .submitted-message p {
    font-size: 1rem;
  }
}



/* banner section*/
.banner-image{
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
.banner-image img {
  margin: auto;
  height: 75vh;
  width: 100%
}

.banner-image video {
  width: 80%;
  margin-bottom: -10px;
  clip-path: inset(1px 1px);
  outline: 0;
}

.vertical-slider{
  margin-top: -50px;
  display: none; 
}

.vertical-slider.slick-initialized { display: block; }
.vertical-slider .slick-dots {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  top: calc(-55% - 105px);
  right: 10px;
  bottom: 0;
  width: 70px;
}

.vertical-slider .slick-dots li {
	display: inline-block;
  width: auto;
  height: auto;
}

.vertical-slider .slick-dots li button {
	display: block;
	width: 100%;
	height: 70px;
	border: 0;
	background-color: transparent;
	font-weight: 600;
	text-align: center;
	outline: 0;
	position: relative;
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
	opacity: .22;
	color: var(--primaryBlack);
	font-size: 21px;
	font-weight: 500;
	letter-spacing: .06px;
	line-height: 96px
}

.vertical-slider .slick-dots li button:before{
  display: none;
}

.vertical-slider .slick-dots li button .fa {
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -5px;
	opacity: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.vertical-slider .slick-dots li.slick-active button {
	opacity: 1
}

.vertical-slider .slick-dots li button .fa {
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -5px;
	opacity: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.vertical-slider .inner-item{
  text-align: center;
}

.HomeBannerImage .serv {
  color: var(--secondaryBlack);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: .1px;
  line-height: 60px;
  display: block;
  padding-top: 13px;
}

.HomeBannerImage .heading1 {
  color: var(--primaryBlack);
  font-size: 67px;
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 80px;
}
.HomeBannerImage .heading1 span {
  position: relative;
}
.HomeBannerImage .heading1 span::before {
  content: "";
  position: absolute;
  background-color: var(--light-yellow);
  width: 96%;
  left: 5px;
  height: 13px;
  bottom: 10px;
  z-index: -1;
}

.HomeBannerImage a {
  text-decoration: none;
  display: inline-block;
  line-height: 50px;
  color: var(--secondaryBlack);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .34px;
  margin-top: 25px;
}

.inner-item .icon-content {
  width: 55px;
  height: 55px;
  background: #252427;
  position: relative;
  border-radius: 50%;
  float: right;
  margin-left: 12px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}
/* end banner section */

/* company profile section */
.HomeCompany{
  padding: 2rem 0 5rem 0;
}
.HomeBannerContent {
  clear: both;
  margin-top: 10%;
}
.heading-bar-main span {
  color: var(--primaryGrey);
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  position: relative
}

.heading-bar-main span:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background: var(--primaryGrey);
  top: 60%;
  margin-left: 10px
}

.HomeCompany h2 {
  margin-top: 2.5%;
  color: var(--primaryBlack);
  font-size: 67px;
  font-weight: 700;
  letter-spacing: .28px;
  line-height: 78px;
}

.RunnerUp {
  text-align: center;
  background: var(--lightGrey);
  width: 20%;
  display: inline-block;
  padding: 26px 15px;
}
.RunnerUp:nth-child(even) {
  background-color: transparent;
}
.RunnerUp h3 {
  color: var(--primaryBlack);
  font-size: 19px;
  letter-spacing: -.7px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}
.RunnerUp p {
  color: var(--primaryBlack);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .05px;
  line-height: 26px;
}

.RunnerUp p span{
  display: block;
}
/* end company profile section */


/* app slider section */

.HomeCompanySlider {
  align-items: normal;
  padding:80px 0 0;
  width: 100%;
}

@media(max-width:1199px){
  .HomeCompanySlider{
  padding: 0;
  }
}

.HomeCompanySlider .box1 {
  background: var(--primaryGrey)
}

.HomeCompanySlider .box2 {
  background: var(--primaryWhite)
}

.HomeCompanySlider .box3 {
  background: var(--primaryWhite)
}

.HomeCompanySlider .item-home {
  /* min-height: 100vh; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: 25%;
  overflow: hidden;
  min-height: calc(100vh - 80px);
}

.HomeCompanySlider .item-home a{
  height: 100%;
}

.HomeCompanySlider .item-home img {
  width: 100%;
  padding: 0;
  margin-bottom: 3%
}

.HomeCompanySlider .item-home span {
  color: var(--primaryGrey);
  font-size: 18px;
  float: none;
  padding-left: 10%;
  margin: 5% 0
}

.HomeCompanySlider .item-home h4 {
  color: var(--primaryBlack);
  font-size: 25px;
  line-height: 57px;
  -webkit-transition: 2s ease-in-out;
  transition: 2s ease-in-out;
  margin-top: 24px
}

.HomeCompanySlider .item-home p {
  color: var(--secondaryBlack);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.22px;
  line-height: 35px;
  overflow: hidden;
  padding-right: 15%;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  position: absolute
}

.HomeCompanySlider .item-home span.port {
  color: #505050;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -.23px;
  line-height: 49px;
  padding: 0;
  -webkit-transition: 2s ease-in-out;
  transition: 2s ease-in-out;
  position: relative
}

.HomeCompanySlider .item-home span.port::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  background: var(--primaryBlack);
  top: 50%;
  bottom: 50%;
  margin-left: 20px
}

.HomeCompanySlider .item-home .dashboardcase-study {
  opacity: 0;
  color: var(--primaryBlack);
  font-size: 23px;
  letter-spacing: -.23px;
  line-height: 49px;
  position: relative;
  font-weight: 500;
  padding-left: 69px;
  top: 29px;
  -webkit-transition: all .3s;
  transition: all .3s
}

.HomeCompanySlider .item-home .dashboardcase-study::before {
  content: "";
  width: 55px;
  height: 55px;
  left: 0;
  background: var(--primaryBlack);
  color: var(--primaryWhite);
  line-height: 50px;
  font-size: 30px;
  position: absolute;
  border-radius: 50%;
  background-image: url(../../assets/img/card-sprw.svg);
  background-position: -24px center;
  background-repeat: no-repeat;
  top: -15px;
  -webkit-transition: .5 ease-in-out;
  transition: .5 ease-in-out;
  background-size: 60px
}

.HomeCompanySlider .item-home .dashboardcase-study:after {
  content: "";
  height: 2px;
  background-color: var(--primaryBlack);
  position: absolute;
  width: 0;
  left: 69px;
  bottom: -4px;
  -webkit-transition: all .3s;
  transition: all .3s
}

.HomeCompanySlider .item-home .dashboardcase-study:hover:before {
  background-position: 16px center
}

.HomeCompanySlider .item-home .dashboardcase-study:hover:after {
  content: "";
  width: calc(100% - 69px)
}

.HomeCompanySlider .item-home .inner-content-part {
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translate(0,0);
  transform: translate(0,0);
  width: 100%
}

.HomeCompanySlider .item-home .slidecontent {
  padding: 0 5% 0 10.5%
}

.HomeCompanySlider .item-home .slidecontent .port {
  -webkit-transition: all .3s;
  transition: all .3s
}

.HomeCompanySlider .item-home:hover .inner-content-part {
  -webkit-transform: translate(0,-20%);
  transform: translate(0,-20%)
}

.HomeCompanySlider .item-home:hover .slidecontent {
  padding: 0 5% 0 10.5%
}

.HomeCompanySlider .item-home:hover .slidecontent .port {
  visibility: hidden;
  opacity: 0
}

.HomeCompanySlider .item-home:hover p {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(10px);
  transform: translateY(10px)
}

.HomeCompanySlider .item-home:hover .dashboardcase-study {
  opacity: 1;
  top: 130px
}


@media(max-width:1599px){
  .HomeCompanySlider .item-home h4{
    font-size: 20px;
    line-height: 30px;
    margin-top: 20px;
  }
  .HomeCompanySlider .item-home p{
    font-size: 18px;
    line-height: 25px;
  }
  .HomeCompanySlider .item-home:hover .dashboardcase-study{
    top:100px
  }
  .HomeCompanySlider .item-home .dashboardcase-study{
    font-size: 18px;
  }

  .HomeCompanySlider .item-home .dashboardcase-study::before {
    content: "";
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-image: url(../../assets/img/card-sprw.svg);
    background-position: -31px center;
    top: -6px;
  }
  

  .HomeCompanySlider .item-home .dashboardcase-study:hover:before {
    background-position: 9px center;
  }
}

.projectApp_slider.slick-slider .slick-arrow{
width: 50px;
height: 50px;
background-size: 30px !important;
border: 2px solid #000;
border-radius: 50%;
z-index: 1;
}

.projectApp_slider.slick-slider .slick-next{
  background: url(../../assets/img/slider-arrow-next.png) 50% 50% no-repeat;
}

.projectApp_slider.slick-slider .slick-prev{
  background: url(../../assets/img/slider-arrow-prev.png) 50% 50% no-repeat;
}
.projectApp_slider.slick-slider .slick-arrow:hover{
  background-color: #fff;
}

@-webkit-keyframes visualcase {
  0% {
      opacity: 0
  }

  33% {
      opacity: .3
  }

  66% {
      opacity: .6
  }

  100% {
      opacity: 1
  }
}

@keyframes visualcase {
  0% {
      opacity: 0
  }

  33% {
      opacity: .3
  }

  66% {
      opacity: .6
  }

  100% {
      opacity: 1
  }
}

@-webkit-keyframes contentmove {
  from {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }

  to {
      -webkit-transform: translateY(-80%);
      transform: translateY(-80%);
      display: block
  }
}

@keyframes contentmove {
  from {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }

  to {
      -webkit-transform: translateY(-80%);
      transform: translateY(-80%);
      display: block
  }
}
/* end app slider section */


/* page loader */

.page-loader {
  position: fixed;
  z-index: 77777;
  height: 100vh;
  width: 100%;
  top: 0;
  background: #fff
}

.page-loader .left-section {
  background-color: #000;
  height: 100vh;
  width: 50%;
  float: left
}

.page-loader .right-section {
  background-color: #969696;
  width: 50%;
  height: 100vh;
  float: right
}

.page-loader .loader-logo {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  font-size: 70px;
  -webkit-animation: loader-animation 1s infinite;
  animation: loader-animation 1s infinite
}

.page-loader.page-loaded .left-section {
  -webkit-transform: translate(-100%,0);
  transform: translate(-100%,0);
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s
}

.page-loader.page-loaded .right-section {
  -webkit-transform: translate(100%,0);
  transform: translate(100%,0);
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s
}

.page-loader.page-loaded .loader-logo {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .8s;
  transition: all .8s
}

.page-loader.loader-hide {
  opacity: 0;
  visibility: hidden;
  z-index: -10;
  background: 0 0;
  -webkit-transition: .5s;
  transition: .5s
}

@-webkit-keyframes loader-animation {
  0% {
      font-weight: 400
  }

  20% {
      font-weight: 200
  }

  40% {
      font-weight: 300
  }

  60% {
      font-weight: 400
  }

  80% {
      font-weight: 500
  }

  100% {
      font-weight: 600
  }
}

@keyframes loader-animation {
  0% {
      font-weight: 400
  }

  20% {
      font-weight: 200
  }

  40% {
      font-weight: 300
  }

  60% {
      font-weight: 400
  }

  80% {
      font-weight: 500
  }

  100% {
      font-weight: 600
  }
}

.loading2 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 100pt;
  text-align: center;
  height: 120px;
  line-height: 110px;
  position: absolute;
  left: 50%;
  right: 0;
  top: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  display: block
}

.wave2 {
  background-image: url(../images/wave.png);
  -moz-background-clip: text;
  -o-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0;
  -webkit-animation: wave-animation 1s infinite linear,loading-animation 10s infinite linear alternate;
  animation: wave-animation 1s infinite linear,loading-animation 10s infinite linear alternate;
  background-size: 200px 100px;
  background-repeat: repeat-x;
  opacity: 1;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #242424;
  font-family: "Helvetica Neue"
}

@-webkit-keyframes wave-animation {
  0% {
      background-position: 0 70%
  }

  100% {
      background-position: 200px 70%
  }
}

@keyframes wave-animation {
  0% {
      background-position: 0 70%
  }

  100% {
      background-position: 200px 70%
  }
}

@-webkit-keyframes loading-animation {
  0% {
      background-size: 200px px
  }

  100% {
      background-size: 200px 200px
  }
}

@keyframes loading-animation {
  0% {
      background-size: 200px px
  }

  100% {
      background-size: 200px 100px
  }
}
/* end pageloader*/

/* video section */

.VideoSection {
  background: var(--primaryGrey);
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.VideoSection video {
  width: 100%;
  background-color: #000;
}
/* end video section */

@media screen and (min-width: 1200px) and (max-width: 1600px) and (min-resolution: 120dpi) and (max-resolution: 125dpi) {
  .HomeBannerImage .heading1 {
    font-size: 50px;
  }
  .banner-image video{
    width: 75%;
  }
}

@media (max-width:991px) {
  .HomeBannerImage .heading1{
    font-size: 47px;
    line-height: 1;
  }
  .HomeCompany h2{
    font-size: 47px;
    line-height: 1.3;
  }
  .HomeBannerContent{
    margin-top: 5%;
    flex-wrap: wrap;
  }
  .RunnerUp{
    width: 33%;
  }
  .loading2{
    font-size: 60pt;
  }
  .banner_section{
    padding-bottom: 1rem;
  }
  .HomeCompanySlider .item-home h4{
    line-height: 24px;
    margin-top: 10px;
  }
  
}

@media(max-width:1199px){
  .our_client{
    padding: 5rem 0 0 ;
  }
}

@media (max-width: 767px){
  .HomeCompanySlider .item-home{
    min-height: inherit;
  }
  .HomeCompanySlider .item-home h4 {
      line-height: 1.5;
      margin-top: 10px;
      font-size: 20px;
  }
  .HomeBannerImage .heading1{
    font-size: 28px;
  }
  .HomeCompany h2{
    font-size: 26px;
  }
  .heading-bar-main span{
    font-size: 24px;
  }
  .RunnerUp {
    width: 50%;
  }
  .loading2 {
    font-size: 33pt;
  }
  .latest_blog {
    padding: 2.4rem 0;
  }
  .RunnerUp p{
    font-size: 14px;
  }
  .HomeCompany{
    padding: 2rem 0 2rem 0;
  }
  .HomeCompanySlider .item-home p{
    font-size: 20px;
  }

  .HomeCompanySlider .item-home .dashboardcase-study::before {
    content: "";
    width: 40px;
    height: 40px;
    background-size: 51px;
    top: -4px;
    background-position: 11px center;
  }
  .HomeCompanySlider .item-home .dashboardcase-study{
    padding-left: 46px;
  }
  .our_client {
    padding: 3.5rem 0 0;
  }
  .hubsportform{
    padding-top: 20px;
  }

  
}

@media(min-width:1366px){
  .section .container{
    padding: 10px 0;
  }
}