* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
}

@font-face {
  font-family: "Britti Sans";
  src: url("fonts/BrittiSansTrial-Regular-BF6757bfd47ffbf.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Britti Sans";
  src: url("fonts/BrittiSansTrial-Light-BF6757bfd494951.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Britti Sans";
  src: url("fonts/BrittiSansTrial-Semibold-BF6757bfd443a8a.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Britti Sans";
  src: url("fonts/BrittiSansTrial-Bold-BF6757bfd4a96ed.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
h1 {
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 34px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

@media (min-width: 576px) {
  h1 {
    font-size: 72px;
    line-height: 80px;
  }
  h2 {
    font-size: 48px;
    line-height: 60px;
  }
  h3 {
    font-size: 34px;
    line-height: 45px;
  }
  h4 {
    font-size: 24px;
    line-height: 40px;
  }
  h5 {
    font-size: 20px;
    line-height: 28px;
  }
  h6 {
    font-size: 16px;
    line-height: 34px;
  }
}
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

p, h4, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

p {
  font-family: "Montserrat", sans-serif;
}

.common_btn {
  background-image: url("../images/svg/Button.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 210px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}
.common_btn a {
  color: #101010;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  font-size: 20px;
  padding: 8px 30px;
  cursor: pointer;
}
.common_btn a i {
  padding-left: 7px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.common_btn:hover i {
  transform: translateX(10px);
}

.common_header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 30px;
}
.common_header .common_title h2 {
  font-size: 60px;
  font-family: "Anton", sans-serif;
}
@media (max-width: 767px) {
  .common_header .common_title h2 {
    font-size: 40px;
  }
}
.common_header .common_title h2 span {
  color: transparent;
}

.header_section {
  padding: 24px 0px;
  position: absolute;
  width: 100%;
  z-index: 999;
}
@media (max-width: 1199px) {
  .header_section {
    display: none;
  }
}
.header_section.sticky-menu {
  background-color: #000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999999999 !important;
}
.header_section .header_inner .primary_menu ul li:not(.sub_menu li) {
  position: relative;
  margin: 10px 20px;
}
@media (max-width: 1199px) {
  .header_section .header_inner .primary_menu ul li:not(.sub_menu li) {
    margin: 10px 14px;
  }
}
.header_section .header_inner .primary_menu ul li:not(.sub_menu li)::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  height: 2px;
  transform: translateY(0px);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.header_section .header_inner .primary_menu ul li:not(.sub_menu li) a {
  color: #fff;
  text-decoration: none;
  padding: 42px 0px;
  font-size: 16px;
  font-family: "Unbounded", sans-serif;
}
.header_section .header_inner .primary_menu ul li:not(.sub_menu li) a i.fa-solid.fa-chevron-down {
  padding-left: 5px;
}
.header_section .header_inner .primary_menu ul li:not(.sub_menu li) a.active_menu {
  color: #6CDD6E;
}
.header_section .header_inner .primary_menu ul li:not(.sub_menu li):hover::after {
  transform: translateY(15px);
  opacity: 1;
}
.header_section .header_inner .primary_menu ul li:not(.sub_menu li):hover .sub_menu ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.header_section .header_inner .primary_menu ul li:not(.sub_menu li) .sub_menu ul {
  position: absolute;
  width: 251px;
  background: #f8fafe;
  top: 64px;
  left: 0;
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  border-radius: 3px;
}
.header_section .header_inner .primary_menu ul li:not(.sub_menu li) .sub_menu ul li {
  border-bottom: 1px solid #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header_section .header_inner .primary_menu ul li:not(.sub_menu li) .sub_menu ul li a {
  display: inline-block;
  width: 100%;
  padding: 10px 8px 10px 15px;
  height: 100%;
  color: #171C26;
}
.header_section .header_inner .primary_menu ul li:not(.sub_menu li) .sub_menu ul li:hover {
  background-color: #6CDD6E;
}
.header_section .header_inner .primary_menu ul li:not(.sub_menu li) .sub_menu ul li:hover a {
  color: #fff;
}

.mobile_menu {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999999999;
}
@media (min-width: 1200px) {
  .mobile_menu {
    display: none;
  }
}
.mobile_menu .mobile_menu_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #001C1C;
  padding: 25px 40px;
}
.mobile_menu .mobile_menu_top .mobile_menu_top_left .mobile_logo img {
  width: 130px;
  height: auto;
}
.mobile_menu .mobile_menu_top .mobile_menu_top_right span i {
  font-size: 30px;
  color: #fff;
}
.mobile_menu .mobile_menu_top .mobile_menu_top_right span i.fa-solid.fa-xmark {
  display: none;
}
.mobile_menu .mobile_menu_top .mobile_menu_top_right.close span i.fa-solid.fa-bars-staggered {
  display: none;
}
.mobile_menu .mobile_menu_top .mobile_menu_top_right.close span i.fa-solid.fa-xmark {
  display: block;
}
.mobile_menu .mobile_menu_bottom {
  position: fixed;
  left: 0;
  z-index: 999999999;
  background: #f8fafe;
  width: 100%;
  transform: scaleY(0);
  transform-origin: top;
  height: 100%;
  overflow-y: scroll;
  padding: 0 20px;
  padding-bottom: 60px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile_menu .mobile_menu_bottom.open {
  transform: scaleY(1);
}
.mobile_menu .mobile_menu_bottom .main_mobile_menu {
  background-color: #f8fafe;
}
.mobile_menu .mobile_menu_bottom .main_mobile_menu > ul {
  padding-top: 20px;
}
.mobile_menu .mobile_menu_bottom .main_mobile_menu > ul li {
  list-style: none;
  border-bottom: 1px solid rgba(212, 47, 83, 0.1215686275);
  padding: 18px 0px;
  margin: 0px 25px;
}
.mobile_menu .mobile_menu_bottom .main_mobile_menu > ul li:last-child {
  border-bottom: none;
}
.mobile_menu .mobile_menu_bottom .main_mobile_menu > ul li.mobile_drowpdown {
  position: relative;
}
.mobile_menu .mobile_menu_bottom .main_mobile_menu > ul li.mobile_drowpdown > a::after {
  top: 16px;
  right: 0;
  font-weight: 700;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
}
.mobile_menu .mobile_menu_bottom .main_mobile_menu > ul li.mobile_drowpdown.open > a::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #6CDD6E;
}
.mobile_menu .mobile_menu_bottom .main_mobile_menu > ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #001C1C;
  text-decoration: none;
  display: block;
}
.mobile_menu .mobile_menu_bottom .main_mobile_menu > ul li ul {
  display: none;
}
.mobile_menu .mobile_menu_bottom .main_mobile_menu > ul li ul li:last-child {
  padding-bottom: 0px;
}
.mobile_menu .mobile_menu_bottom .main_mobile_menu > ul li ul li > a {
  font-size: 16px;
}
.mobile_menu .mobile_menu_bottom .mobile_menu_btn {
  text-align: center;
  margin-top: 30px;
}
.hero_section .hero_section_inner {
  width: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 850px;
}
.hero_section .hero_section_inner .banner_content .banner_content_inner {
  color: #fff;
  padding: 180px 0px 120px;
}
.hero_section .hero_section_inner .banner_content .banner_content_inner.banner3 {
  padding: 240px 0px 0px;
}
@media (min-width: 768px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner.banner3 h2 {
    line-height: 100px;
    text-align: start;
  }
}
.hero_section .hero_section_inner .banner_content .banner_content_inner h5 {
  color: #6CDD6E;
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(130deg, #20583D 0%, rgba(32, 88, 61, 0) 100%);
  display: inline-block;
  padding: 10px 15px;
}
@media (max-width: 991px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner h5 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner h5 {
    font-size: 15px;
  }
}
.hero_section .hero_section_inner .banner_content .banner_content_inner h2 {
  font-size: 90px;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  margin: 40px 0px 25px;
}
@media (max-width: 991px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner h2 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner h2 {
    font-size: 40px;
    margin: 14px 0px 10px;
  }
}
@media (max-width: 575px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner h2 {
    font-size: 30px;
  }
}
.hero_section .hero_section_inner .banner_content .banner_content_inner .sm_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.hero_section .hero_section_inner .banner_content .banner_content_inner .sm_box span {
  font-size: 90px;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
}
@media (max-width: 991px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner .sm_box span {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner .sm_box span {
    font-size: 36px;
  }
}
.hero_section .hero_section_inner .banner_content .banner_content_inner .sm_box img {
  width: 250px;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner .sm_box img {
    width: 150px;
  }
}
.hero_section .hero_section_inner .banner_content .banner_content_inner p {
  max-width: 825px;
  font-size: 20px;
  font-weight: 400;
  margin: 10px 0px 30px;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 991px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner p {
    margin: 15px 0px 30px;
  }
}
.hero_section .hero_section_inner .banner_content .banner_content_inner.fourth_banner {
  padding: 130px 0px 120px;
}
.hero_section .hero_section_inner .banner_content .banner_content_inner.fourth_banner h5 {
  font-size: 18px;
}
@media (max-width: 575px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner.fourth_banner h5 {
    font-size: 15px;
  }
}
.hero_section .hero_section_inner .banner_content .banner_content_inner.fourth_banner h2 {
  font-size: 65px;
  margin: 25px 0px 15px;
  line-height: 45px;
}
@media (max-width: 991px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner.fourth_banner h2 {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner.fourth_banner h2 {
    font-size: 40px;
    margin: 14px 0px 10px;
  }
}
@media (max-width: 575px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner.fourth_banner h2 {
    font-size: 30px;
  }
}
.hero_section .hero_section_inner .banner_content .banner_content_inner.fourth_banner .sm_box span {
  font-size: 65px;
}
@media (max-width: 991px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner.fourth_banner .sm_box span {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner.fourth_banner .sm_box span {
    font-size: 30px;
  }
}
.hero_section .hero_section_inner .banner_content .banner_content_inner.fourth_banner p {
  font-size: 18px;
  max-width: 1020px;
}
@media (max-width: 575px) {
  .hero_section .hero_section_inner .banner_content .banner_content_inner.fourth_banner p {
    margin-top: 18px !important;
  }
}

span.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  color: #fff;
  opacity: 1;
  background: #fff;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 60px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #6CDD6E;
}

.subbanner_section {
  background-image: url("../images/hero_section/ai-labs-banner2.png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 1600px) {
  .subbanner_section {
    background-position: bottom right;
    background-size: cover;
  }
}
@media (max-width: 1599px) {
  .subbanner_section {
    background-size: cover;
    background-position: center right;
  }
}
.subbanner_section .sub_banner_inner .sub_banner_content {
  padding: 250px 0px 150px;
}
@media (max-width: 1599px) {
  .subbanner_section .sub_banner_inner .sub_banner_content {
    padding: 190px 0px 70px;
  }
}
@media (max-width: 767px) {
  .subbanner_section .sub_banner_inner .sub_banner_content {
    padding: 145px 0px 60px;
  }
}
@media (max-width: 575px) {
  .subbanner_section .sub_banner_inner .sub_banner_content {
    text-align: center;
  }
}
.subbanner_section .sub_banner_inner .sub_banner_content h2 {
  font-size: 90px;
  font-family: "Anton", sans-serif;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .subbanner_section .sub_banner_inner .sub_banner_content h2 {
    font-size: 40px;
  }
}
.subbanner_section .sub_banner_inner .sub_banner_content h2 span {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.subbanner_section .sub_banner_inner .banner_pagination {
  border-top: 2px solid;
  border-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)) 1;
  padding: 50px 0px 90px;
}
@media (max-width: 767px) {
  .subbanner_section .sub_banner_inner .banner_pagination {
    padding: 35px 0px 60px;
  }
}
.subbanner_section .sub_banner_inner .banner_pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .subbanner_section .sub_banner_inner .banner_pagination ul {
    justify-content: center;
  }
}
.subbanner_section .sub_banner_inner .banner_pagination ul li i {
  color: #6CDD6E;
  font-size: 20px;
}
.subbanner_section .sub_banner_inner .banner_pagination ul li a {
  color: rgba(255, 255, 255, 0.6509803922);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.subbanner_section .sub_banner_inner .banner_pagination ul li a.active_pagi {
  color: #fff !important;
  text-transform: capitalize;
}

.ai_game_innovation {
  background-image: url("../images/hero_section/ai-game-innovation3.png") !important;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
}
@media (min-width: 1600px) {
  .ai_game_innovation {
    padding-top: 150px;
  }
}
.ai_game_innovation .ai_game_innovation_inner .sub_banner_content {
  padding: 190px 0px 90px;
}
@media (min-width: 1600px) {
  .ai_game_innovation .ai_game_innovation_inner .sub_banner_content {
    padding: 110px 0px 90px;
  }
}
@media (min-width: 768px) {
  .ai_game_innovation .ai_game_innovation_inner .sub_banner_content h2 {
    line-height: 110px;
  }
}

.about_section {
  margin: 100px 0px;
}
@media (max-width: 991px) {
  .about_section {
    margin: 70px 0px;
  }
}
.about_section .about_inner .about_content h2 {
  font-size: 60px;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .about_section .about_inner .about_content h2 {
    font-size: 40px;
  }
}
.about_section .about_inner .about_content h2 span {
  color: transparent;
  -webkit-text-stroke: 1px #000;
}
.about_section .about_inner .about_content p {
  color: #5C5C5C;
  font-size: 20px;
  margin-top: 25px;
}
.about_section .about_inner .about_content .stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 45px 0px;
}
@media (max-width: 575px) {
  .about_section .about_inner .about_content .stats {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about_section .about_inner .about_content .stats .stat h3 {
  font-size: 50px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
}
@media (max-width: 767px) {
  .about_section .about_inner .about_content .stats .stat h3 {
    font-size: 30px;
  }
}
.about_section .about_inner .about_content .stats .stat p {
  font-size: 20px;
  margin-top: 15px;
}
.about_section .about_inner .about_image {
  text-align: end;
}
@media (max-width: 1199px) {
  .about_section .about_inner .about_image img {
    width: 100%;
  }
}

.brand_section {
  background-image: url("../images/brand-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  margin: 100px 0px;
  padding: 50px 50px 94px;
}
@media (max-width: 767px) {
  .brand_section {
    padding: 50px 20px 150px;
    margin: 0px;
  }
}
.brand_section .brand_section_inner .brand_logo_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .brand_section .brand_section_inner .brand_logo_inner .brand_logo_item {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .brand_section .brand_section_inner .brand_logo_inner .brand_logo_item img {
    width: 130px;
  }
}

.trending_section {
  margin: 100px 0px;
}
@media (max-width: 991px) {
  .trending_section {
    margin: 70px 0px;
  }
}
.trending_section .trending_area .trending_header .trending_title h2 span {
  -webkit-text-stroke: 1px #000;
}
.trending_section .trending_area .trending_inner .trending_item .trending_image img {
  width: 100%;
}
.trending_section .trending_area .trending_inner .trending_item .trending_bottom {
  margin-top: 30px;
}
.trending_section .trending_area .trending_inner .trending_item .trending_bottom .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1199px) {
  .trending_section .trending_area .trending_inner .trending_item .trending_bottom .meta {
    gap: 20px;
  }
}
.trending_section .trending_area .trending_inner .trending_item .trending_bottom .meta .author span, .trending_section .trending_area .trending_inner .trending_item .trending_bottom .meta .date span {
  color: #001C1C;
  font-family: "Montserrat", sans-serif;
}
.trending_section .trending_area .trending_inner .trending_item .trending_bottom .sub_title {
  font-size: 30px;
  color: #001C1C;
  font-family: "Anton", sans-serif;
  margin-top: 10px;
  text-decoration: none;
}
@media (max-width: 575px) {
  .trending_section .trending_area .trending_inner .trending_item .trending_bottom .sub_title {
    font-size: 22px;
  }
}
.trending_section .trending_area .trending_inner .trending_item .trending_bottom p {
  color: #001C1C;
  font-size: 16px;
  margin-top: 7px;
}
.trending_section .trending_area .trending_inner .trending_item .trending_bottom a {
  font-size: 24px;
  color: #001C1C;
  font-family: "Anton", sans-serif;
  margin-top: 30px;
  display: inline-block;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.trending_section .trending_area .trending_inner .trending_item .trending_bottom a i {
  padding-left: 7px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .trending_section .trending_area .trending_inner .trending_item .trending_bottom a {
    font-size: 20px;
    margin-top: 20px;
  }
}
.trending_section .trending_area .trending_inner .trending_item:hover .sub_title {
  color: #6CDD6E;
}
.trending_section .trending_area .trending_inner .trending_item:hover a i {
  transform: translateX(10px);
}
.trending_section .trending_area .trending_inner .trending_item:hover a {
  color: #6CDD6E;
}

.testmonial_section {
  background-image: url("../images/testmonial-bg.png");
  padding: 100px 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 575px) {
  .testmonial_section {
    background-size: cover;
    padding: 100px 0px 100px;
  }
}
.testmonial_section .testmonial_area .testmonial_header .testmonial_title h2 {
  color: #fff;
}
.testmonial_section .testmonial_area .testmonial_header .testmonial_title h2 span {
  -webkit-text-stroke: 1px #6CDD6E;
}
.testmonial_section .testmonial_area .testmonial_inner {
  position: relative;
  margin-top: 50px;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 100px 0px 150px;
}
@media (max-width: 991px) {
  .testmonial_section .testmonial_area .testmonial_inner {
    padding: 43px 0px 110px;
  }
}
@media (max-width: 767px) {
  .testmonial_section .testmonial_area .testmonial_inner {
    padding: 0px 0px 100px;
  }
}
.testmonial_section .testmonial_area .testmonial_inner .swiper {
  overflow: visible !important;
}
@media (min-width: 1440px) {
  .testmonial_section .testmonial_area .testmonial_inner .swiper {
    max-width: 1415px;
    margin-left: auto;
    margin-right: auto;
  }
}

.testmonial_section .testmonial_area .testmonial_inner .testmonial_item {
  background-image: url("../images/svg/review Shape.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 800px;
  width: 100%;
  padding: 30px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .testmonial_section .testmonial_area .testmonial_inner .testmonial_item {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    background-position: right center;
  }
}
@media (max-width: 575px) {
  .testmonial_section .testmonial_area .testmonial_inner .testmonial_item {
    padding: 15px;
  }
}
.testmonial_section .testmonial_area .testmonial_inner .testmonial_item .description {
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .testmonial_section .testmonial_area .testmonial_inner .testmonial_item .description {
    padding-bottom: 20px;
  }
}
.testmonial_section .testmonial_area .testmonial_inner .testmonial_item .description p {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 575px) {
  .testmonial_section .testmonial_area .testmonial_inner .testmonial_item .description p {
    font-size: 16px;
  }
}
.testmonial_section .testmonial_area .testmonial_inner .testmonial_item .testmonial_author {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 30px;
}
@media (max-width: 575px) {
  .testmonial_section .testmonial_area .testmonial_inner .testmonial_item .testmonial_author {
    padding-bottom: 20px;
    gap: 15px;
  }
}
.testmonial_section .testmonial_area .testmonial_inner .testmonial_item .testmonial_author img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
}
.testmonial_section .testmonial_area .testmonial_inner .testmonial_item .testmonial_author .author_info {
  color: #fff;
}
.testmonial_section .testmonial_area .testmonial_inner .testmonial_item .testmonial_author .author_info h4 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .testmonial_section .testmonial_area .testmonial_inner .testmonial_item .testmonial_author .author_info h4 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .testmonial_section .testmonial_area .testmonial_inner .testmonial_item .testmonial_author .author_info p {
    font-size: 15px;
  }
}
.testmonial_section .testmonial_area .testmonial_inner .swiper-button-prev,
.testmonial_section .testmonial_area .testmonial_inner .swiper-button-next {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70px;
  width: 70px;
  top: auto;
}
.testmonial_section .testmonial_area .testmonial_inner .swiper-button-prev {
  background-image: url("../images/svg/Review Arrow shape.svg");
  left: 45%;
  bottom: 0;
}
@media (max-width: 1199px) {
  .testmonial_section .testmonial_area .testmonial_inner .swiper-button-prev {
    left: 40%;
  }
}
@media (max-width: 767px) {
  .testmonial_section .testmonial_area .testmonial_inner .swiper-button-prev {
    left: 25%;
  }
}
.testmonial_section .testmonial_area .testmonial_inner .swiper-button-next {
  background-image: url("../images/svg/Review Arrow shape.svg");
  right: 43%;
  bottom: 0;
}
@media (max-width: 1439px) {
  .testmonial_section .testmonial_area .testmonial_inner .swiper-button-next {
    right: 41%;
  }
}
@media (max-width: 1199px) {
  .testmonial_section .testmonial_area .testmonial_inner .swiper-button-next {
    right: 36%;
  }
}
@media (max-width: 767px) {
  .testmonial_section .testmonial_area .testmonial_inner .swiper-button-next {
    right: 30%;
  }
}
.testmonial_section .testmonial_area .testmonial_inner .swiper-button-next::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 22px;
  color: #000;
}
.testmonial_section .testmonial_area .testmonial_inner .swiper-button-prev::after {
  content: "\f060";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 22px;
  color: #000;
}
.testmonial_section .testmonial_area .testmonial_inner .swiper-button-next.swiper-button-disabled, .testmonial_section .testmonial_area .testmonial_inner .swiper-button-prev.swiper-button-disabled {
  opacity: unset;
  cursor: auto;
  pointer-events: none;
}

.testmonial_item_section {
  position: relative;
}
.testmonial_item_section .testmonial_item_section_inner {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .testmonial_item_section .testmonial_item_section_inner {
    display: none;
  }
}
.testmonial_item_section .testmonial_item_section_inner .testmonial_item_left, .testmonial_item_section .testmonial_item_section_inner .testmonial_item_right {
  /* background: linear-gradient(to right, #002b2c, #002b2c); */
  padding: 30px;
  margin: auto;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .testmonial_item_section .testmonial_item_section_inner .testmonial_item_left, .testmonial_item_section .testmonial_item_section_inner .testmonial_item_right {
    width: 100%;
  }
}
.testmonial_item_section .testmonial_item_section_inner .testmonial_item_left .description_sm, .testmonial_item_section .testmonial_item_section_inner .testmonial_item_right .description_sm {
  padding-bottom: 40px;
}
.testmonial_item_section .testmonial_item_section_inner .testmonial_item_left .description_sm p, .testmonial_item_section .testmonial_item_section_inner .testmonial_item_right .description_sm p {
  color: #fff;
  font-size: 14px;
}
.testmonial_item_section .testmonial_item_section_inner .testmonial_item_left .testmonial_author_sm, .testmonial_item_section .testmonial_item_section_inner .testmonial_item_right .testmonial_author_sm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding-bottom: 30px;
}
@media (max-width: 575px) {
  .testmonial_item_section .testmonial_item_section_inner .testmonial_item_left .testmonial_author_sm, .testmonial_item_section .testmonial_item_section_inner .testmonial_item_right .testmonial_author_sm {
    padding-bottom: 70px;
  }
}
.testmonial_item_section .testmonial_item_section_inner .testmonial_item_left .testmonial_author_sm img, .testmonial_item_section .testmonial_item_section_inner .testmonial_item_right .testmonial_author_sm img {
  width: 40px;
  height: 40px;
  border-radius: 100px;
}
.testmonial_item_section .testmonial_item_section_inner .testmonial_item_left .testmonial_author_sm .author_info_sm, .testmonial_item_section .testmonial_item_section_inner .testmonial_item_right .testmonial_author_sm .author_info_sm {
  color: #fff;
}
.testmonial_item_section .testmonial_item_section_inner .testmonial_item_left .testmonial_author_sm .author_info_sm h4, .testmonial_item_section .testmonial_item_section_inner .testmonial_item_right .testmonial_author_sm .author_info_sm h4 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 30px;
}
.testmonial_item_section .testmonial_item_section_inner .testmonial_item_left .testmonial_author_sm .author_info_sm p, .testmonial_item_section .testmonial_item_section_inner .testmonial_item_right .testmonial_author_sm .author_info_sm p {
  font-size: 14px;
}

.contact_section {
  margin: 100px 0px;
}
@media (max-width: 991px) {
  .contact_section {
    margin: 70px 0px;
  }
}
.contact_section .contact_area .contact_content h2 {
  font-size: 60px;
  font-family: "Anton", sans-serif;
  color: #000;
}
@media (max-width: 767px) {
  .contact_section .contact_area .contact_content h2 {
    font-size: 40px;
  }
}
.contact_section .contact_area .contact_content h2 span {
  color: transparent;
  -webkit-text-stroke: 1px #001C1C;
}
.contact_section .contact_area .contact_content .contact_content_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px 76px;
  margin-top: 45px;
}
.contact_section .contact_area .contact_content .contact_content_inner .contact_content_item {
  display: flex;
  align-items: center;
  gap: 25px;
}
.contact_section .contact_area .contact_content .contact_content_inner .contact_content_item .contact_image {
  background-image: url("../images/svg/Contact us icon shape.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 21px;
}
.contact_section .contact_area .contact_content .contact_content_inner .contact_content_item .contact_info p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.contact_section .contact_area .contact_content .contact_content_inner .contact_content_item .contact_info h4 {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 30px;
}
.contact_section .contact_area .contact_content .contact_map {
  margin-top: 40px;
  border: 1px solid #f0f0f0;
  padding-top: 20px;
  position: relative;
  padding-bottom: 16px;
}
.contact_section .contact_area .contact_content .contact_map img {
  width: 100%;
}
.contact_section .contact_area .contact_content .contact_map .country_name {
  position: absolute;
  bottom: 0;
}
@media (max-width: 767px) {
  .contact_section .contact_area .contact_content .contact_map .country_name {
    position: static;
  }
}
.contact_section .contact_area .contact_content .contact_map .country_name ul {
  border: 1px solid #f0f0f0;
  display: inline-block;
}
.contact_section .contact_area .contact_content .contact_map .country_name ul li {
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
}
.contact_section .contact_area .contact_content .contact_map .country_name ul li:last-child {
  border-bottom: none;
}
.contact_section .contact_area .contact_content .contact_map .country_name ul li i {
  margin-right: 7px;
  color: #6CDD6E;
  font-size: 14px;
}
.contact_section .contact_area .contact_form {
  background-image: url("../images/svg/Contact us map Shape.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 20px 35px 70px;
  width: 465px;
}
@media (max-width: 1199px) {
  .contact_section .contact_area .contact_form {
    margin: auto;
  }
}
@media (max-width: 575px) {
  .contact_section .contact_area .contact_form {
    background-image: none;
    padding: 30px;
    width: 100%;
    border: 1px solid #000;
  }
}
.contact_section .contact_area .contact_form h3 {
  font-size: 34px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .contact_section .contact_area .contact_form h3 {
    font-size: 22px;
  }
}
.contact_section .contact_area .contact_form .form_group {
  margin-bottom: 20px;
}
.contact_section .contact_area .contact_form .form_group label {
  width: 100%;
  margin-bottom: 7px;
  font-size: 16px;
  color: #001C1C;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.contact_section .contact_area .contact_form .form_group input, .contact_section .contact_area .contact_form .form_group textarea, .contact_section .contact_area .contact_form .form_group select{
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #f0f0f0;
}

.partner_section {
  margin: 100px 0px;
}
@media (max-width: 991px) {
  .partner_section {
    margin: 80px 0px;
  }
}
.partner_section .partner_wrapper .partner_content h2 {
  font-size: 60px;
  font-family: "Anton", sans-serif;
  color: #001C1C;
  line-height: 80px;
}
@media (max-width: 1199px) {
  .partner_section .partner_wrapper .partner_content h2 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .partner_section .partner_wrapper .partner_content h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .partner_section .partner_wrapper .partner_content h2 {
    font-size: 30px;
    line-height: 45px;
  }
}
.partner_section .partner_wrapper .partner_content h2 span {
  color: transparent;
  -webkit-text-stroke: 1px #000;
}
.partner_section .partner_wrapper .partner_content p {
  color: #5C5C5C;
  margin: 20px 0px 36px;
  font-size: 20px;
  line-height: 35px;
}
.partner_section .partner_wrapper .partner_image img {
  width: 100%;
}

.ai_capabilities_section {
  background-color: #001C1C;
  padding: 120px 0px;
  position: relative;
}
@media (max-width: 991px) {
  .ai_capabilities_section {
    padding: 80px 0px;
  }
}
.ai_capabilities_section .bottom_line_image,
.ai_capabilities_section .top_line_image {
  position: absolute;
  width: 100%;
}
.ai_capabilities_section .bottom_line_image img,
.ai_capabilities_section .top_line_image img {
  width: 100%;
}
.ai_capabilities_section .bottom_line_image {
  bottom: -2px;
}
@media (max-width: 1439px) {
  .ai_capabilities_section .bottom_line_image {
    bottom: -3px;
  }
}
@media (max-width: 1199px) {
  .ai_capabilities_section .bottom_line_image {
    bottom: -5px;
  }
}
@media (max-width: 767px) {
  .ai_capabilities_section .bottom_line_image {
    bottom: -7px;
  }
}
@media (max-width: 575px) {
  .ai_capabilities_section .bottom_line_image {
    bottom: -10px;
  }
}
.ai_capabilities_section .top_line_image {
  top: -4px;
}
@media (max-width: 1599px) {
  .ai_capabilities_section .top_line_image {
    top: -6px;
  }
}
@media (max-width: 1439px) {
  .ai_capabilities_section .top_line_image {
    top: -7px;
  }
}
@media (max-width: 1199px) {
  .ai_capabilities_section .top_line_image {
    top: -10px;
  }
}
@media (max-width: 767px) {
  .ai_capabilities_section .top_line_image {
    top: -12px;
  }
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_header .ai_capabilities_title h2 {
  color: #fff;
  text-transform: uppercase;
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_header .ai_capabilities_title h2 span {
  -webkit-text-stroke: 1px #6CDD6E;
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item {
  position: relative;
  background-color: #014A4A;
  padding: 25px;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item:hover {
  transform: translateY(-15px);
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item:hover .custom_tooltip {
  opacity: 1;
  visibility: visible;
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item.ai_item_diff {
  margin-top: -32px;
}
@media (max-width: 991px) {
  .ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item.ai_item_diff {
    margin-top: 0px;
  }
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .ai_item_header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .ai_item_header h4 {
  color: #fff;
  font-size: 30px;
  font-family: "Anton", sans-serif;
}
@media (max-width: 1439px) {
  .ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .ai_item_header h4 {
    font-size: 27px;
  }
}
@media (max-width: 1199px) {
  .ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .ai_item_header h4 {
    font-size: 22px;
    line-height: 34px;
  }
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .ai_item_header h2 {
  font-size: 90px;
  font-weight: bold;
  background: linear-gradient(to bottom, rgba(0, 28, 28, 0.6392156863), rgba(12, 74, 74, 0.1490196078));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 15px;
  font-family: "Anton", sans-serif;
  padding-top: 13px;
}
@media (max-width: 1199px) {
  .ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .ai_item_header h2 {
    font-size: 60px;
  }
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .ai_item_para p {
  color: #fff;
  line-height: 30px;
  font-size: 17px;
}
@media (max-width: 1199px) {
  .ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .ai_item_para p {
    line-height: 26px;
  }
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .custom_tooltip {
  position: absolute;
  top: 20px;
  background: #fff;
  width: 100%;
  left: 0;
  padding: 10px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .ai_item_image {
  background-color: #003C3C;
  padding: 10px;
  border-radius: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .ai_item_image.image_style_one {
  margin-top: 25px;
}
.ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .ai_item_image.image_style_two {
  margin-bottom: 25px;
  height: 235px;
}
@media (max-width: 991px) {
  .ai_capabilities_section .ai_capabilities_wrapper .ai_capabilities_inner .ai_item .ai_item_image.image_style_two {
    height: 200px;
  }
}

.portfolio_section {
  margin: 100px 0px;
}
@media (max-width: 991px) {
  .portfolio_section {
    margin: 70px 0px;
  }
}
@media (max-width: 991px) {
  .portfolio_section .portfolio_wrapper .portfolio_header .portfolio_title h2 {
    line-height: 70px;
  }
}
@media (max-width: 575px) {
  .portfolio_section .portfolio_wrapper .portfolio_header .portfolio_title h2 {
    line-height: 60px;
  }
}
.portfolio_section .portfolio_wrapper .portfolio_header .portfolio_title span {
  -webkit-text-stroke: 1px #000;
}
.portfolio_section .portfolio_wrapper .portfolio_accordian {
  position: relative;
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FAFAFA;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button {
    padding: 12px;
  }
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button span {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-weight: 600;
}
@media (max-width: 767px) {
  .portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button span {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button span {
    font-size: 16px;
  }
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button h4 {
  font-size: 26px;
  font-family: "Anton", sans-serif;
  margin-left: 10px;
  line-height: 44px;
}
@media (max-width: 767px) {
  .portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button h4 {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button h4 {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button h4 {
    line-height: 24px;
  }
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  color: #777;
  font-weight: 600;
  margin-left: 5px;
  font-size: 25px;
  width: 50px;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 100%;
  display: inline-block;
  line-height: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button::after {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
  }
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button.active:after {
  content: "\f106";
  background: #6CDD6E;
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_button.active {
  background-color: #F2FFF2;
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_item {
  background-color: #F2FFF2;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_item.acc_active {
  padding: 0px 20px 20px 20px !important;
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_item .acc_image img {
  width: 100%;
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_item .accordion_content .problem h4 {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  text-decoration: underline;
  font-weight: 600;
  color: #101010;
}
@media (max-width: 575px) {
  .portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_item .accordion_content .problem h4 {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_item .accordion_content .problem p {
  color: #101010;
  font-size: 17px;
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_item .accordion_content .solution {
  margin-top: 20px;
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_item .accordion_content .solution h4 {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  text-decoration: underline;
  font-weight: 600;
  color: #101010;
}
@media (max-width: 575px) {
  .portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_item .accordion_content .solution h4 {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.portfolio_section .portfolio_wrapper .portfolio_accordian .accordion_item .accordion_content .solution p {
  color: #101010;
  font-size: 17px;
}

.active, .accordion_button:hover {
  background-color: #F2FFF2;
}

.game_dev_capabilities .game_dev_capabilities_wrapper {
  margin: 90px 0px;
}
@media (max-width: 991px) {
  .game_dev_capabilities .game_dev_capabilities_wrapper {
    margin: 70px 0px;
  }
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_header .game_dev_title h2 {
  line-height: 72px;
}
@media (max-width: 991px) {
  .game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_header .game_dev_title h2 {
    line-height: 60px;
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_header .game_dev_title h2 {
    line-height: 55px;
    font-size: 40px;
  }
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_header .game_dev_title h2 span {
  -webkit-text-stroke: 1px #000;
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item {
  background-color: #F7FAF7;
  padding: 25px;
  border-radius: 30px;
  position: relative;
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item.extra_bg {
  background-color: #6CDD6E;
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item.game_dev_style_two h3 {
  top: 30px;
  right: 40px;
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item.game_dev_style_two h2 {
  margin-top: 0px;
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item.game_dev_style_two img {
  margin-top: 10px;
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item.game_dev_style_two p {
  margin-bottom: 0;
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item img.extra_margin {
  margin-top: 30px !important;
  margin-bottom: 8px;
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item img.extra_margin6 {
  margin-top: 53px !important;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item img {
    width: 100%;
  }
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item h2 {
  font-size: 30px;
  font-family: "Anton", sans-serif;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item h2 {
    font-size: 27px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item p {
  font-size: 17px;
  color: #001C1C;
  max-width: 640px;
  margin-bottom: 15px;
}
.game_dev_capabilities .game_dev_capabilities_wrapper .game_dev_capabilities_inner .game_dev_item h3 {
  position: absolute;
  right: 40px;
  bottom: 30px;
  font-size: 75px;
  font-weight: bold;
  background: linear-gradient(to bottom, rgba(0, 28, 28, 0.16), rgba(12, 74, 74, 0.03));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 15px;
  font-family: "Anton", sans-serif;
  padding-top: 13px;
}
.game_dev_capabilities .bottom_line_image img {
  width: 100%;
}

/* =========== Footer Section Start Here  ========= */
.footer_section {
  background-image: url("../images/footer-bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: 100px 0px 70px;
}
.footer_section .footer_area {
  text-align: center;
}
@media (max-width: 575px) {
  .footer_section .footer_area {
    text-align: start;
    padding-left: 30px;
  }
}
.footer_section .footer_area .follow_section {
  margin: 50px 0px;
}
.footer_section .footer_area .follow_section h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
.footer_section .footer_area .follow_section ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .footer_section .footer_area .follow_section ul {
    justify-content: start;
  }
}
.footer_section .footer_area .follow_section ul li .follow_item {
  background-image: url("../images/svg/Contact us icon shape.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 21px;
}
.footer_section .footer_area .follow_section ul li .follow_item i {
  color: #001C1C;
  font-size: 24px;
}
.footer_section .footer_area .footer_menu {
  padding-bottom: 40px;
}
.footer_section .footer_area .footer_menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 991px) {
  .footer_section .footer_area .footer_menu ul {
    justify-content: start;
  }
}
@media (max-width: 575px) {
  .footer_section .footer_area .footer_menu ul li {
    width: 100%;
  }
}
.footer_section .footer_area .footer_menu ul li a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}
.footer_section .copy_right {
  border-top: 1px solid #f0f0f0;
  text-align: center;
  padding-top: 30px;
}
@media (max-width: 575px) {
  .footer_section .copy_right {
    margin: 0px 30px;
  }
}
.footer_section .copy_right p {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.scrollToTop {
  position: fixed;
  bottom: -30%;
  right: 5%;
  z-index: 9999;
}
.scrollToTop i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #6CDD6E;
  text-align: center;
}

/* =========== Inline Form Notification ========= */
.form_inline_msg {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 18px;
  font-family: "Montserrat", sans-serif;
}
.form_inline_msg .fim_icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}
.form_inline_msg .fim_text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.form_inline_msg .fim_text strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
}
.form_inline_msg .fim_text span {
  font-size: 13px;
  line-height: 19px;
}
.form_inline_msg--success {
  background-color: #eafaf1;
  border: 1px solid #6CDD6E;
}
.form_inline_msg--success .fim_icon {
  color: #27ae60;
}
.form_inline_msg--success .fim_text strong,
.form_inline_msg--success .fim_text span {
  color: #1a5c2a;
}
.form_inline_msg--error {
  background-color: #fff5f5;
  border: 1px solid #e74c3c;
}
.form_inline_msg--error .fim_icon {
  color: #e74c3c;
}
.form_inline_msg--error .fim_text strong,
.form_inline_msg--error .fim_text span {
  color: #922b21;
}

/* Submit button disabled state */
#submitt.submitt--disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
