@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 11px;
  text-align: center;
  color: #090808;
  font-weight: 700;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-left: 0;
  background-color: #FFFFFF;
  border: 1px solid #707070;
}
input[type=number] {
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #FFFFFF;
}
::-webkit-scrollbar-thumb {
  background: #090808;
}
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
  font-family: 'Poppins';
}
p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #090808;
  width: 100%;
}
p strong,
p b {
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h6 {
  margin: 0;
}
h2 {
  font-weight: 600;
  font-style: normal;
}
ul {
  width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  line-height: 1.6;
  color: #090808;
  list-style: none;
  font-size: 14px;
}
button {
  border: 0;
  cursor: pointer;
}
.container {
  width: 100%;
}
section {
  display: flex;
  padding: 3rem 1.5rem;
}
.game-development .buttons {
  display: flex;
  margin-top: 1.5rem;
}
.game-development .buttons .btn-blue,
.game-development .buttons .btn-transparent {
  display: flex;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 1s all;
}
.game-development .buttons .btn-blue img,
.game-development .buttons .btn-transparent img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.game-development .buttons .btn-blue::before,
.game-development .buttons .btn-transparent::before {
  content: '';
  position: absolute;
  z-index: -1;
  height: 100%;
  left: -40%;
  top: 0;
  transform: skew(50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  width: 0;
  opacity: 0;
}
.game-development .buttons .btn-blue:hover::before,
.game-development .buttons .btn-transparent:hover::before {
  width: 145%;
  transition: 1s ease-out;
  opacity: 1;
}
.game-development .buttons .btn-blue {
  background-color: #597ECE;
  color: #FFFFFF;
}
.game-development .buttons .btn-blue::before {
  background: #C0A6FC;
}
.game-development .buttons .btn-transparent {
  border: 1px solid #090808;
  color: #090808;
}
.game-development .buttons .btn-transparent::before {
  background: #FFFFFF;
}
.game-development .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  width: 100%;
}
.game-development .heading p {
  margin-top: 1rem;
}
.game-development .heading h2 {
  width: 100%;
  font-size: 22px;
}
.game-development .heading h2 span {
  display: flex;
  width: 123px;
  height: 2px;
  background-color: #100505;
  position: relative;
  margin-top: 0.5rem;
}
.game-development .heading h2 span::before {
  content: '';
  background-image: url(/_public/images/game-development/heading.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 40px;
  height: 17px;
  position: absolute;
  top: -7px;
  left: 0;
  animation: move 5s linear infinite;
}
.game-development .center-heading {
  justify-content: center;
  align-items: center;
}
.game-development .center-heading h2,
.game-development .center-heading p {
  text-align: center;
}
.game-development .center-heading h2 span {
  margin: 0.5rem auto 0;
}
.game-development .white-heading h2,
.game-development .white-heading p {
  color: #FFFFFF;
}
.game-development .white-heading h2 span {
  background-color: #FFFFFF;
}
.game-development .white-heading h2 span::before {
  background-image: url(/_public/images/game-development/heading-white.svg);
}
@keyframes movetop {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes move {
  0% {
    left: 0;
  }
  50% {
    left: 80px;
  }
  100% {
    left: 0;
  }
}
@keyframes turn {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.game-development .banner {
  flex-direction: column;
  padding-top: 2rem;
}
.game-development .banner .logo-container,
.game-development .banner .tka-logo,
.game-development .banner .menu,
.game-development .banner .menu-toggle {
  display: flex;
}
.game-development .banner .logo-container {
  height: 100%;
  padding: 1rem;
  background-color: #597ECE;
}
.game-development .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  height: auto;
}
.game-development .banner .logo-container .tka-logo {
  max-width: 185px;
}
.game-development .banner .logo-container .tka-logo img {
  width: 100%;
  height: 100%;
}
.game-development .banner .logo-container .menu {
  margin-left: auto;
}
.game-development .banner .logo-container .menu img {
  width: 22px;
  height: 23px;
}
.game-development .banner .logo-container .menu-links {
  display: flex;
  flex-direction: column;
  width: 0;
  transition: all 0.5s;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #F5F5F5;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}
.game-development .banner .logo-container .menu-toggle {
  font-weight: 500;
  color: #090808;
}
.game-development .banner .logo-container .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.game-development .banner .logo-container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #090808;
  font-weight: 500;
}
.game-development .banner .logo-container ul .links-li:first-child {
  padding-top: 0;
}
.game-development .banner .logo-container ul .links-li:nth-child(4) {
  border-bottom: none;
  padding-bottom: 0;
}
.game-development .banner .logo-container ul .links-li:last-child {
  display: none;
}
.game-development .banner .logo-container .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.game-development .banner .logo-container .menu.active + .menu-links .menu-toggle {
  justify-content: flex-end;
  align-items: center;
}
.game-development .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 1s;
  height: auto;
  padding: 1rem 1.5rem;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
}
.game-development .banner .sticky-down {
  top: -100px;
}
.game-development .banner .container {
  height: 100%;
}
.game-development .banner .banner-container,
.game-development .banner .banner-content {
  display: flex;
  flex-direction: column;
}
.game-development .banner .banner-container {
  padding-top: 2rem;
}
.game-development .banner .banner-content h1 {
  font-size: 25px;
  text-shadow: 1px 5px 7px rgba(0, 0, 0, 0.16);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.game-development .banner .banner-content h1 span {
  color: #597ECE;
}
.game-development .banner .banner-content h1 img {
  width: 35px;
  height: 35px;
  margin-right: 0.5rem;
  transform: translateY(10px);
}
.game-development .banner .banner-info {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background-color: #597ECE;
  margin-top: 2rem;
}
.game-development .banner .banner-info img {
  width: 100%;
  height: 100%;
}
.game-development .career {
  padding-top: 0;
}
.game-development .career .career-container,
.game-development .career li {
  display: flex;
  flex-direction: column;
}
.game-development .career ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0 1rem 1.5rem;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
}
.game-development .career ul li {
  align-items: center;
  margin-top: 2rem;
  width: 48%;
}
.game-development .career ul li span {
  display: flex;
  background-color: #F5F5F5;
  padding: 0.5rem;
  border-radius: 4px;
  width: 55px;
  height: 50px;
  box-shadow: 0px 0px 0px 5px #FFFFFF, 0px 0px 0px 6px #597ECE;
}
.game-development .career ul li span img {
  width: 100%;
  height: 100%;
}
.game-development .career ul li p {
  text-align: center;
  margin-top: 1rem;
  font-weight: 500;
}
.game-development .course {
  padding-top: 0;
  padding-bottom: 0;
}
.game-development .course .course-container,
.game-development .course .course-list,
.game-development .course .course-item,
.game-development .course .course-content {
  display: flex;
  flex-direction: column;
}
.game-development .course .heading {
  margin-bottom: 0;
}
.game-development .course .heading p {
  margin: 0 0 0.2rem 0;
}
.game-development .course .heading p strong {
  color: #597ECE;
}
.game-development .course .course-item {
  border-radius: 0px 15px 15px 15px;
  background-color: #FFFFFF;
  background-image: linear-gradient(45deg, #B591E9, #5051A5);
  background-repeat: no-repeat;
  background-size: 100% 0;
  background-position: top;
  border: 1px solid #707070;
  padding: 1rem 1rem 1rem 0.9rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
  margin-top: 2rem;
  transition: 1s all;
}
.game-development .course .course-item span {
  display: flex;
  width: 70px;
  height: 70px;
  background-color: #F5F5F5;
  border-radius: 0px 15px 15px 15px;
  padding: 1rem;
  transition: 1s all;
}
.game-development .course .course-item span img {
  width: 100%;
  height: 100%;
  transition: 1s all;
}
.game-development .course .course-item span img:last-child {
  width: 0;
}
.game-development .course .course-item:hover {
  background-size: 100% 100%;
  border: 1px solid transparent;
}
.game-development .course .course-item:hover span {
  background-color: #C0A6FC;
}
.game-development .course .course-item:hover span img:first-child {
  width: 0;
}
.game-development .course .course-item:hover span img:last-child {
  width: 100%;
}
.game-development .course .course-item:hover .course-content h3,
.game-development .course .course-item:hover .course-content p {
  color: #FFFFFF;
}
.game-development .course .course-item:hover .course-content .buttons .btn-blue {
  border: 1px solid #FFFFFF;
  background-color: transparent;
}
.game-development .course .course-content h3,
.game-development .course .course-content p {
  transition: 1s all;
}
.game-development .course .course-content h3 {
  font-size: 14px;
  margin: 0.7rem 0;
}
.game-development .course .course-content p {
  font-size: 12px;
  font-weight: 500;
}
.game-development .course .course-content .buttons {
  margin-top: 1rem;
}
.game-development .course .course-content .buttons .btn-blue {
  min-width: 138px;
  border: 1px solid transparent;
}
.game-development .course .course-content .buttons .btn-blue img {
  width: 15px;
  height: 15px;
}
.game-development .method .method-container,
.game-development .method .method-list,
.game-development .method .method-item {
  display: flex;
  flex-direction: column;
}
.game-development .method .heading {
  margin-bottom: 0;
}
.game-development .method .method-item {
  width: 272px;
  padding: 1rem;
  margin-top: 2rem;
  align-self: center;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(45deg, #B591E9, #5051A5);
  background-size: 0 0;
  background-repeat: no-repeat;
  border-radius: 0px 15px 15px 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  transition: 1s all;
}
.game-development .method .method-item .image {
  display: flex;
  background-color: #F5F5F5;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  border-radius: 0px 15px 15px 15px;
  transition: 1s all;
}
.game-development .method .method-item .image img {
  width: 60px;
  height: 60px;
}
.game-development .method .method-item h3 {
  font-size: 15px;
  margin: 1rem 0;
  width: 100%;
}
.game-development .method .method-item h3,
.game-development .method .method-item p {
  transition: 1s all;
}
.game-development .method .method-item p {
  font-size: 13px;
  line-height: 1.4;
}
.game-development .method .method-item a {
  display: flex;
  padding: 0.5rem;
  align-self: flex-end;
  background-color: #597ECE;
  justify-content: center;
  border-radius: 50px;
  margin-top: 0.5rem;
  width: 30px;
  transition: 1s all;
  height: 30px;
}
.game-development .method .method-item a span {
  display: flex;
}
.game-development .method .method-item a span img {
  width: 100%;
  height: 100%;
}
.game-development .method .method-item a span img:last-child {
  display: none;
}
.game-development .method .method-item:hover {
  background-size: 100% 100%;
}
.game-development .method .method-item:hover .image {
  background-color: #C0A6FC;
}
.game-development .method .method-item:hover a {
  background-color: #FFFFFF;
}
.game-development .method .method-item:hover a span img:first-child {
  display: none;
}
.game-development .method .method-item:hover a span img:last-child {
  display: flex;
}
.game-development .method .method-item:hover h3,
.game-development .method .method-item:hover p {
  color: #FFFFFF;
}
.game-development .role {
  background-color: #F5F5F5;
}
.game-development .role .role-container,
.game-development .role .role-content,
.game-development .role .role-info {
  display: flex;
  flex-direction: column;
}
.game-development .role .role-container {
  align-items: flex-start;
}
.game-development .role .role-content {
  width: 100%;
}
.game-development .role .role-content ul li {
  margin: 0.5rem 0 0 1.5rem;
  position: relative;
  font-size: 13px;
}
.game-development .role .role-content ul li::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/game-development/box.svg);
  background-size: 100% 100%;
  width: 15px;
  height: 15px;
  left: -24px;
  top: 4px;
}
.game-development .role .role-info {
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.game-development .role .role-info h3 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 1.5rem;
}
.game-development .role .role-info .image {
  display: flex;
  height: 100%;
}
.game-development .role .role-info .image img {
  width: 100%;
  height: 100%;
}
.game-development .fact {
  padding-bottom: 0;
}
.game-development .fact .fact-container,
.game-development .fact .fact-item {
  display: flex;
  flex-direction: column;
}
.game-development .fact .fact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.game-development .fact .fact-item {
  align-items: center;
  margin-top: 2rem;
  width: 48%;
  z-index: 1;
}
.game-development .fact .fact-item span {
  display: flex;
  background-color: #EDF3FF;
  width: 68px;
  height: 68px;
  border-radius: 50px;
  padding: 1.2rem;
  position: relative;
}
.game-development .fact .fact-item span::after {
  content: '';
  position: absolute;
  background-image: linear-gradient(#FFFFFF, #FFFFFF), linear-gradient(127deg, #597ECE 50px, #FFFFFF 50px);
  border: 3px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: turn 7s linear infinite;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  left: -10px;
  top: -10px;
  z-index: -1;
}
.game-development .fact .fact-item span img {
  width: 100%;
  height: 100%;
}
.game-development .fact .fact-item p {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.game-development .fact .fact-count {
  display: flex;
  margin-top: 0.8rem;
}
.game-development .fact .fact-count h3 {
  font-size: 32px;
}
.game-development .choose .choose-container,
.game-development .choose .choose-list,
.game-development .choose .choose-item {
  display: flex;
  flex-direction: column;
}
.game-development .choose .heading {
  margin-bottom: 0;
}
.game-development .choose .choose-item {
  padding: 0 1.2rem 3rem;
  margin-top: 2rem;
  width: 272px;
  align-self: center;
  position: relative;
}
.game-development .choose .choose-item img {
  width: 85px;
  height: 95px;
}
.game-development .choose .choose-item::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/game-development/choose-bg.png);
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.game-development .choose .choose-item:nth-child(odd) {
  text-align: right;
  align-items: flex-end;
}
.game-development .choose .choose-item:nth-child(odd) img {
  transform: translatex(18px);
}
.game-development .choose .choose-item:nth-child(even)::before {
  transform: scalex(-1);
}
.game-development .choose .choose-item:nth-child(even) img {
  transform: translatex(-18px);
}
.game-development .choose .choose-item h3 {
  font-size: 14px;
  margin: 1.5rem 0 1rem;
  width: 100%;
}
.game-development .choose .choose-item p {
  font-size: 13px;
  line-height: 1.4;
}
.game-development .importance {
  padding-top: 0;
  padding-bottom: 0;
}
.game-development .importance .importance-container,
.game-development .importance .importance-content,
.game-development .importance .importance-info {
  display: flex;
  flex-direction: column;
}
.game-development .importance .importance-container {
  align-items: flex-start;
}
.game-development .importance .importance-content {
  align-items: center;
  width: 100%;
}
.game-development .importance .importance-content p {
  text-align: center;
}
.game-development .importance .importance-content p:nth-child(3) {
  margin-top: 1rem;
}
.game-development .importance .importance-info {
  padding: 1rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
  margin-top: 2rem;
  width: 100%;
  height: 100%;
}
.game-development .importance .importance-info .image {
  display: flex;
  width: 100%;
  height: 100%;
}
.game-development .importance .importance-info .image img {
  width: 100%;
  height: 100%;
}
.game-development .skill .skill-container,
.game-development .skill li {
  display: flex;
  flex-direction: column;
}
.game-development .skill .heading {
  margin-bottom: 0;
}
.game-development .skill ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  counter-reset: counter;
  height: 100%;
}
.game-development .skill li {
  padding: 1rem;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  margin-top: 2rem;
  width: 47%;
  align-self: center;
}
.game-development .skill li h3 {
  margin-bottom: 1rem;
  font-size: 13px;
}
.game-development .skill li h3::before {
  content: counter(counter, decimal-leading-zero) ". ";
  counter-increment: counter;
}
.game-development .skill li span {
  display: flex;
  background-color: #F5F5F5;
  padding: 1rem;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}
.game-development .skill li span img {
  width: 100%;
  height: 100%;
}
.game-development .client {
  background-image: linear-gradient(45deg, #B591E9, #5051A5);
  background-size: 100% 100%;
  padding-bottom: 5rem;
}
.game-development .client .client-container,
.game-development .client .client-list,
.game-development .client .client-item,
.game-development .client .content {
  display: flex;
  flex-direction: column;
}
.game-development .client .info {
  display: none;
}
.game-development .client .client-container {
  position: relative;
}
.game-development .client .client-list {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 20px;
}
.game-development .client .content {
  width: 95%;
  margin: 0 auto;
  background-image: url(/_public/images/game-development/quote.svg);
  background-size: 85px 65px;
  background-repeat: no-repeat;
  padding-top: 5rem;
}
.game-development .client .content p {
  font-size: 13px;
}
.game-development .client .content h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 1.5rem 0 0.2rem;
  color: #597ECE;
}
.game-development .client .content h4 {
  font-size: 15px;
  font-weight: 500;
}
.game-development .client .content img {
  width: 85px;
  height: 54px;
  margin-bottom: 1rem;
}
.game-development .client .owl-nav {
  display: flex;
  width: 80px;
  justify-content: space-between;
  position: absolute;
  bottom: -50px;
  left: 0;
}
.game-development .client .owl-nav .owl-prev,
.game-development .client .owl-nav .owl-next {
  display: flex;
  height: 35px;
  width: 35px;
  border-radius: 50px;
  background-size: 15px 20px;
  background-position: center;
  border: 2px solid #FFFFFF;
  background-repeat: no-repeat;
  background-image: url(/_public/images/game-development/nav-arrow.svg);
  opacity: 0.5;
}
.game-development .client .owl-nav .owl-next {
  transform: rotate(180deg);
}
.game-development .client .owl-nav .btn-active {
  opacity: 1;
}
.game-development .faq {
  padding-bottom: 0;
}
.game-development .faq .faq-container,
.game-development .faq .faq-list,
.game-development .faq .faq-content,
.game-development .faq .faq-item {
  display: flex;
  flex-direction: column;
}
.game-development .faq .faq-container {
  align-items: flex-start;
}
.game-development .faq .faq-content {
  width: 100%;
  height: 100%;
}
.game-development .faq .faq-content .heading h2 span {
  display: none;
}
.game-development .faq .faq-content .image {
  display: flex;
  width: 100%;
  height: 100%;
}
.game-development .faq .faq-content .image img {
  width: 100%;
  height: 100%;
}
.game-development .faq .faq-item {
  background-color: #F5F5F5;
  border-radius: 10px;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  transition: 1s all;
  z-index: 1;
}
.game-development .faq .active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
}
.game-development .faq .ques {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.game-development .faq .ques h3 {
  font-size: 15px;
  width: calc(100% - 32px);
}
.game-development .faq .ques img {
  display: flex;
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  transition: 1s all;
}
.game-development .faq .ans {
  display: none;
  margin-top: 0.8rem;
}
.game-development .faq .ans p,
.game-development .faq .ans li {
  font-size: 13px;
}
.game-development .faq .ans ul {
  padding-left: 1rem;
}
.game-development .faq .ans ul li {
  list-style: disc;
  margin-top: 0.5rem;
  line-height: 1.6;
}
.game-development .faq .active .ques img {
  transform: rotate(180deg);
}
.game-development .footer {
  padding-bottom: 0;
}
.game-development .footer .footer-container,
.game-development .footer .form,
.game-development .footer .input-list,
.game-development .footer .footer-content,
.game-development .footer .footer-list,
.game-development .footer .content {
  display: flex;
  flex-direction: column;
}
.game-development .footer .footer-container {
  position: relative;
  padding-bottom: 2.5rem;
}
.game-development .footer .footer-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 15px;
  background-color: #597ECE;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 20px 20px 0 0;
}
.game-development .footer .form {
  margin-bottom: 0;
  background-color: #F5F5F5;
  padding: 1.5rem 1rem;
  margin-top: 1.5rem;
}
.game-development .footer .form .input-container {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  border-radius: 8px;
  justify-content: space-between;
  padding: 0.6rem;
  border: 1px solid #B3B3B3;
}
.game-development .footer .form .input-container:last-child {
  align-items: flex-start;
}
.game-development .footer .form .input-container span {
  display: flex;
  height: 16px;
  width: 16px;
}
.game-development .footer .form .input-container span img {
  height: 100%;
  width: 100%;
}
.game-development .footer .form .input-container span img:last-child {
  display: none;
}
.game-development .footer .form .input-container input,
.game-development .footer .form .input-container textarea {
  width: calc(100% - 30px);
  border: none;
  outline: 0;
  padding: 0;
  background-color: transparent;
  font-size: 14px;
}
.game-development .footer .form .input-container textarea {
  height: 50px;
  resize: none;
  overflow: auto;
}
.game-development .footer .form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #B3B3B3;
  font-size: 13px;
}
.game-development .footer .form .input-container :-ms-input-placeholder {
  /* Edge */
  color: #B3B3B3;
  font-size: 13px;
}
.game-development .footer .form .input-container ::placeholder {
  color: #B3B3B3;
  font-size: 13px;
}
.game-development .footer .form .input-error {
  border: 1px solid #ff0000;
}
.game-development .footer .form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.game-development .footer .form .input-error :-ms-input-placeholder {
  /* Edge */
  color: #ff0000;
}
.game-development .footer .form .input-error ::placeholder {
  color: #ff0000;
}
.game-development .footer .form .input-error span img:first-child {
  display: none;
}
.game-development .footer .form .input-error span img:last-child {
  display: flex;
}
.game-development .footer .form .form-consent {
  display: flex;
  margin-bottom: 0.5rem;
}
.game-development .footer .form .form-consent:nth-last-child(2) {
  margin-bottom: 0;
}
.game-development .footer .form .form-consent label {
  display: flex;
  font-size: 11px;
  width: 95%;
  align-self: center;
  margin-left: 0.3rem;
  cursor: pointer;
  line-height: 1.6;
  color: #090808;
}
.game-development .footer .form .form-consent p {
  font-size: 11px;
}
.game-development .footer .form .form-consent a {
  font-weight: 600;
  color: #597ECE;
}
.game-development .footer .form .consent-error,
.game-development .footer .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.game-development .footer .form .consent-error p,
.game-development .footer .form .consent-error-other p {
  color: #ff0000;
  line-height: 1.4;
  font-size: 11px;
}
.game-development .footer .form .buttons .btn-blue {
  min-width: 125px;
}
.game-development .footer .form .buttons .btn-blue img {
  height: 16px;
  width: 16px;
}
.game-development .footer .footer-heading {
  margin-bottom: 0;
}
.game-development .footer .footer-content {
  margin-top: 1.5rem;
  height: 100%;
}
.game-development .footer .footer-content .image {
  display: flex;
  height: 100%;
  margin-top: 2rem;
}
.game-development .footer .footer-content .image img {
  width: 100%;
  height: 100%;
}
.game-development .footer .footer-content .heading {
  margin-bottom: 0;
}
.game-development .footer .footer-content .heading h2 span {
  display: none;
}
.game-development .footer .footer-content .footer-item {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.game-development .footer .footer-content .footer-item img {
  width: 55px;
  height: 55px;
}
.game-development .footer .footer-content .footer-item .content {
  width: calc(100% - 65px);
  align-self: center;
}
.game-development .footer .footer-content .footer-item .content h3 {
  font-size: 15px;
  margin-bottom: 0.2rem;
}
.game-development .footer .footer-content .footer-item .content a {
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 320px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
}
@media (min-width : 768px) {
  section {
    padding: 3rem 2rem;
  }
  .game-development .banner .logo-container .menu.active + .menu-links {
    width: 50%;
  }
  .game-development .banner .sticky {
    padding: 1rem 2rem;
  }
  .game-development .banner .banner-info {
    display: none;
  }
  .game-development .career ul {
    justify-content: space-between;
  }
  .game-development .career ul li {
    width: 13%;
    position: relative;
  }
  .game-development .career ul li::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/game-development/lines.png);
    background-size: 100% 100%;
    width: 8px;
    height: calc(100% + 11px);
    right: -34px;
    top: -9px;
  }
  .game-development .career ul li:last-child::before {
    content: none;
  }
  .game-development .course .course-list {
    flex-flow: wrap;
    justify-content: center;
  }
  .game-development .course .course-item {
    width: 47%;
    margin-right: 2rem;
  }
  .game-development .course .course-item:nth-child(2n) {
    margin-right: 0;
  }
  .game-development .course .course-content h3 {
    min-height: 42px;
  }
  .game-development .method .method-list {
    flex-flow: wrap;
    justify-content: space-around;
  }
  .game-development .method .method-item {
    width: 45%;
  }
  .game-development .method .method-item p {
    min-height: 73px;
  }
  .game-development .role .role-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .game-development .role .role-content {
    width: 53%;
  }
  .game-development .role .role-info {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 60px;
  }
  .game-development .fact .fact-list {
    background-color: #FFFFFF;
    padding: 0 1rem 1rem;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  }
  .game-development .fact .fact-item {
    width: 24%;
  }
  .game-development .choose .choose-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .game-development .choose .choose-item {
    width: 46%;
  }
  .game-development .choose .choose-item h3 {
    min-height: 42px;
  }
  .game-development .choose .choose-item p {
    min-height: 110px;
  }
  .game-development .importance .importance-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .game-development .importance .importance-content {
    align-items: flex-start;
    width: 47%;
  }
  .game-development .importance .importance-content h2,
  .game-development .importance .importance-content p {
    text-align: left;
  }
  .game-development .importance .importance-content h2 span {
    margin: 0.5rem 0 0;
  }
  .game-development .importance .importance-info {
    margin-top: 0;
    width: 47%;
    position: sticky;
    top: 60px;
  }
  .game-development .skill li {
    width: 23%;
  }
  .game-development .client .client-list::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 240px;
    border: 1px solid #597ECE;
    background-color: #FFFFFF;
    right: 14px;
    top: 18px;
    border-radius: 0 20px 0 0;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  .game-development .client .client-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .game-development .client .info {
    display: flex;
    width: 30%;
    border-radius: 40px;
    overflow: hidden;
  }
  .game-development .client .info img {
    width: 100%;
    height: 100%;
  }
  .game-development .client .content {
    width: 60%;
  }
  .game-development .client .owl-nav {
    right: 0;
    margin: auto;
  }
  .game-development .faq .faq-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  .game-development .faq .faq-content {
    width: 36%;
    position: sticky;
    top: 60px;
  }
  .game-development .faq .faq-list {
    width: 56%;
  }
  .game-development .faq .faq-item .ans {
    margin: 1rem 0 0 3rem;
    border-left: 2px solid #597ECE;
    padding-left: 1rem;
  }
  .game-development .faq .faq-item:first-child {
    margin-top: 0;
  }
  .game-development .footer .footer-container {
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .game-development .footer .footer-container .footer-heading {
    width: 80%;
    margin: auto;
  }
  .game-development .footer .footer-container .footer-heading h2,
  .game-development .footer .footer-container .footer-heading p {
    text-align: center;
  }
  .game-development .footer .footer-container .footer-heading h2 span {
    margin: 0.5rem auto 0;
  }
  .game-development .footer .form {
    width: 48%;
  }
  .game-development .footer .footer-content {
    width: 48%;
    position: sticky;
    top: 60px;
  }
}
@media (min-width : 1024px) {
  p,
  li {
    line-height: 1.8;
  }
  .game-development .heading h2 {
    font-size: 28px;
  }
  .game-development .buttons .btn-blue,
  .game-development .buttons .btn-transparent {
    font-size: 16px;
  }
  .game-development .banner {
    background-image: url(/_public/images/game-development/banner-bg.png);
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  .game-development .banner .logo-container {
    background-color: transparent;
    padding: 0;
  }
  .game-development .banner .logo-container .container {
    position: relative;
    z-index: 1;
  }
  .game-development .banner .logo-container .container::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 120px;
    left: -12%;
    top: -32px;
    background-image: url(/_public/images/game-development/banner-layer.png);
    background-size: 100% 100%;
    z-index: -1;
  }
  .game-development .banner .logo-container .tka-logo {
    margin-right: auto;
  }
  .game-development .banner .logo-container .menu-links {
    width: auto;
    background-color: transparent;
    box-shadow: none;
    position: relative;
  }
  .game-development .banner .logo-container .menu,
  .game-development .banner .logo-container .menu-toggle {
    display: none;
  }
  .game-development .banner .logo-container ul {
    display: flex;
    align-items: center;
  }
  .game-development .banner .logo-container ul .links-li {
    border-bottom: none;
    margin-right: 1.8rem;
    padding: 0;
    position: relative;
  }
  .game-development .banner .logo-container ul .links-li::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    border-radius: 3px;
    height: 3px;
    width: 0px;
    background-color: #597ECE;
    transition: 1s all;
  }
  .game-development .banner .logo-container ul .links-li:hover::before {
    width: 22px;
  }
  .game-development .banner .logo-container ul .links-li:nth-child(4) {
    display: none;
  }
  .game-development .banner .logo-container ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .game-development .banner .logo-container ul .links-li:last-child::before {
    content: none;
  }
  .game-development .banner .logo-container ul .links-li .btn-blue,
  .game-development .banner .logo-container ul .links-li .btn-transparent {
    font-size: 14px;
  }
  .game-development .banner .logo-container ul .links-li .btn-transparent {
    margin-right: 1.8rem;
  }
  .game-development .banner .sticky {
    padding: 1rem 2rem;
    background-image: linear-gradient(90deg, #597ECE 25%, #F5F5F5 25%);
  }
  .game-development .banner .sticky .container::before {
    content: none;
  }
  .game-development .banner .banner-container {
    padding-top: 4rem;
    flex-direction: row;
    justify-content: space-between;
  }
  .game-development .banner .banner-content {
    width: 45%;
  }
  .game-development .banner .banner-content h1 {
    font-size: 35px;
  }
  .game-development .banner .banner-info {
    display: flex;
    margin-top: 0;
    width: 40%;
    background-color: transparent;
    padding: 0;
    animation: movetop 3s linear infinite;
  }
  .game-development .career {
    padding-top: 6rem;
  }
  .game-development .career .career-container {
    flex-direction: column-reverse;
    position: relative;
  }
  .game-development .career .career-container::before {
    content: '';
    position: absolute;
    border: 6px solid #597ECE;
    width: 38%;
    height: 61%;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .game-development .career .heading {
    flex-direction: row;
    justify-content: space-between;
    width: 93%;
    margin: 1.5rem auto;
  }
  .game-development .career .heading h2,
  .game-development .career .heading p {
    text-align: left;
  }
  .game-development .career .heading h2 {
    width: 37%;
  }
  .game-development .career .heading h2 span {
    display: none;
  }
  .game-development .career .heading p {
    width: 59%;
    margin-top: 0;
  }
  .game-development .career ul {
    padding: 3rem 2rem 2.5rem;
    width: 93%;
    margin-left: auto;
    position: relative;
  }
  .game-development .career ul::before {
    content: '';
    background-image: url(/_public/images/game-development/dots.png);
    background-size: 100% 100%;
    position: absolute;
    width: 168px;
    height: 36px;
    left: -34px;
    top: -32px;
    z-index: -1;
  }
  .game-development .career ul li {
    margin-top: 0;
  }
  .game-development .career ul li p {
    font-size: 17px;
  }
  .game-development .course .course-item {
    width: 31%;
  }
  .game-development .course .course-item:nth-child(2n) {
    margin-right: 2rem;
  }
  .game-development .course .course-item:nth-child(3n),
  .game-development .course .course-item:last-child {
    margin-right: 0;
  }
  .game-development .course .course-content .btn-blue {
    font-size: 14px;
  }
  .game-development .method .heading {
    width: 80%;
    margin: auto;
  }
  .game-development .method .method-list {
    justify-content: space-between;
  }
  .game-development .method .method-item {
    width: 22.8%;
  }
  .game-development .method .method-item h3 {
    min-height: 46px;
  }
  .game-development .method .method-item p {
    min-height: 110px;
  }
  .game-development .role .role-content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .game-development .role .role-content ul li {
    width: 45%;
  }
  .game-development .role .role-info {
    position: static;
    top: 0px;
  }
  .game-development .fact {
    padding-bottom: 2rem;
  }
  .game-development .fact .heading {
    width: 65%;
    margin: 0 auto 2rem;
  }
  .game-development .fact .fact-list {
    padding: 1.8rem 2.5rem;
    width: 84%;
    margin: auto;
    position: relative;
  }
  .game-development .fact .fact-list::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/game-development/grid-border.png);
    background-size: 100% 100%;
    width: 100px;
    height: 95px;
    left: -73px;
    top: -63px;
    z-index: -1;
    animation: blink 2s linear infinite;
  }
  .game-development .fact .fact-list:after {
    content: '';
    position: absolute;
    background-image: url(/_public/images/game-development/grid.png);
    background-size: 100% 100%;
    width: 60px;
    height: 60px;
    right: -32px;
    bottom: -32px;
    z-index: -1;
    animation: blink 2s linear infinite;
  }
  .game-development .fact .fact-item {
    margin-top: 0;
  }
  .game-development .fact .fact-item p {
    font-size: 15px;
  }
  .game-development .choose .choose-container {
    position: relative;
  }
  .game-development .choose .choose-container::before {
    content: '';
    background-image: url(/_public/images/game-development/circle.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    width: 420px;
    height: 420px;
    left: -69px;
    top: -59px;
    z-index: -1;
    animation: scale 4s linear infinite;
  }
  .game-development .choose .heading {
    width: 85%;
    margin: auto;
  }
  .game-development .choose .choose-item {
    width: 24%;
    margin-top: 3rem;
  }
  .game-development .choose .choose-item p {
    min-height: 164px;
  }
  .game-development .importance .importance-info {
    padding: 1.5rem 2rem;
    position: static;
    top: 0;
    align-self: center;
  }
  .game-development .skill li {
    padding: 1.5rem;
  }
  .game-development .skill li h3 {
    font-size: 16px;
  }
  .game-development .skill li span {
    padding: 2rem;
  }
  .game-development .client {
    background-image: url(/_public/images/game-development/client-bg.png);
    background-size: cover;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .game-development .client .client-list {
    width: 75%;
    margin: auto;
    padding: 2rem;
  }
  .game-development .client .client-item .content {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .game-development .client .client-item .content h3,
  .game-development .client .client-item .content h4 {
    width: 45%;
    margin: 1.5rem 0 0;
  }
  .game-development .client .client-item .content h4 {
    text-align: right;
  }
  .game-development .client .owl-nav {
    width: calc(100% + 22%);
    height: 33px;
    bottom: 0;
    top: 0;
    left: -10%;
  }
  .game-development .footer .form {
    padding: 1.5rem;
  }
  .game-development .footer .form .input-list {
    flex-flow: wrap;
    justify-content: space-between;
  }
  .game-development .footer .form .input-container {
    width: 48.5%;
  }
  .game-development .footer .form .input-container:last-child {
    width: 100%;
  }
  .game-development .footer .footer-content {
    position: static;
    top: 0;
  }
  .game-development .footer .footer-content .image {
    order: 1;
    margin: 0 0 2rem;
  }
  .game-development .footer .footer-content .heading {
    order: 2;
  }
  .game-development .footer .footer-content .heading h2 {
    text-align: center;
  }
  .game-development .footer .footer-content .footer-list {
    order: 3;
    flex-direction: row;
    justify-content: space-between;
  }
  .game-development .footer .footer-content .footer-item {
    width: 60%;
  }
  .game-development .footer .footer-content .footer-item:first-child {
    width: 150px;
  }
}
@media (min-width : 1366px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
  section {
    padding: 4rem 0rem;
  }
  .game-development .heading h2 {
    font-size: 32px;
  }
  .game-development .banner {
    padding-bottom: 7rem;
  }
  .game-development .banner .logo-container .container::before {
    width: 500px;
    height: 150px;
    left: -10%;
  }
  .game-development .banner .logo-container .tka-logo {
    max-width: 230px;
  }
  .game-development .banner .logo-container ul .links-li {
    margin-right: 1.5rem;
  }
  .game-development .banner .logo-container ul .links-li:nth-child(4) {
    display: flex;
  }
  .game-development .banner .sticky {
    background-image: linear-gradient(90deg, #597ECE 35%, #F5F5F5 35%);
  }
  .game-development .banner .banner-container {
    padding-top: 7rem;
  }
  .game-development .banner .banner-content h1 {
    font-size: 42px;
    margin-bottom: 1.5rem;
  }
  .game-development .banner .banner-content h1 img {
    width: 55px;
    height: 55px;
  }
  .game-development .banner .banner-info {
    width: 46%;
  }
  .game-development .career ul li {
    width: 16%;
  }
  .game-development .career ul li::before {
    right: -30px;
  }
  .game-development .course .course-item {
    flex-direction: row;
    justify-content: space-between;
    width: 31.5%;
  }
  .game-development .course .course-item span {
    width: 100px;
    height: auto;
    padding: 1.2rem;
  }
  .game-development .course .course-item:nth-child(2n) {
    margin-right: 2rem;
  }
  .game-development .course .course-item:nth-child(3n) {
    margin-right: 0;
  }
  .game-development .course .course-item:last-child {
    margin-right: 0;
  }
  .game-development .course .course-content {
    width: calc(100% - 116px);
  }
  .game-development .course .course-content h3 {
    margin-top: 0;
  }
  .game-development .method .method-item .image {
    width: 100%;
    height: 160px;
  }
  .game-development .method .method-item .image img {
    width: 95px;
    height: 95px;
  }
  .game-development .method .method-item h3 {
    min-height: auto;
  }
  .game-development .method .method-item p {
    min-height: 91px;
  }
  .game-development .role .role-content {
    align-self: center;
  }
  .game-development .choose .choose-item {
    width: 23%;
  }
  .game-development .choose .choose-item p {
    min-height: 146px;
  }
  .game-development .faq .faq-content {
    position: static;
    top: 0;
  }
  .game-development .faq .faq-item {
    padding: 1rem 1.5rem;
  }
  .game-development .faq .active {
    padding: 1.5rem;
  }
  .game-development .footer {
    background-image: url(/_public/images/game-development/footer-bg.png);
    background-size: 18% 66%;
    background-repeat: no-repeat;
    background-position: center left;
  }
  .game-development .footer::before {
    width: calc(100% - 12%);
  }
  .game-development .footer .footer-content .image {
    width: 80%;
    align-self: center;
  }
  .game-development .footer .footer-content .footer-item:first-child {
    width: 180px;
  }
  .game-development .footer .footer-content .footer-item img {
    width: 60px;
    height: 60px;
  }
  .game-development .footer .footer-content .footer-item .content {
    width: calc(100% - 82px);
  }
  .game-development .footer .footer-content .footer-item .content h3 {
    font-size: 17px;
  }
  .game-development .footer .footer-content .footer-item .content a {
    font-size: 14px;
  }
}
@media (min-width : 1500px) {
  .game-development .footer {
    background-image: none;
  }
}
