/*

Project      : Aitheon
Version      : v1.0
Last update  : N/A
Author       : AngularMinds

*/
/**************************************

=============TABLE OF CONTENT==========
01 - variables
02 - mixins
03 - base
04 - buttons
05 - header

***************************************/
/* Variables */
/*02 - mixins*/
body {
  font-family: "Proxima Nova Rg", sans-serif;
  background: #141414;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #8c8c8c;
  font-size: 0.75rem;
  line-height: 1.125rem;
  height: 100vh;
}

a {
  color: #DCBC65;
}

a:hover {
  color: #DCBC65;
}

h1 {
  font-size: 2rem;
  line-height: 2.5rem;
  letter-spacing: 1px;
}

h2 {
  font-size: 1.5rem;
  line-height: 1.875rem;
}

h3 {
  font-size: 1rem;
  line-height: 1.25rem;
}

h4 {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

h5 {
  font-size: 0.75rem;
  line-height: 0.9375rem;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #8c8c8c !important;
  font-size: 0.875rem;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #8c8c8c !important;
  font-size: 0.875rem;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #8c8c8c !important;
  font-size: 0.875rem;
}

.login-form {
  margin-top: 1rem;
}

.form-control {
  height: 35px;
  border-radius: 2px;
  border: solid 1px #363636;
  background-color: #202020;
}

.form-control:focus {
  background-color: #202020;
}

.info-text {
  color: #4f4f4f;
  margin-top: 1.25rem;
}

.card-c {
  padding: 6.25rem 2rem;
  border-radius: 2px;
  background: #2B2B2B;
  width: 100%;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
}

.card-c-title {
  margin: 0.625rem 0 1.5625rem;
}

.card-c-text {
  margin-bottom: 1.875rem;
}

.home-banner {
  padding: 2.5rem 0;
}

.home-banner .banner-inner {
  background: url(../images/banner-bg.jpg) center center no-repeat;
  height: 570px;
  background-size: cover;
}

.home-banner .card-c {
  height: 570px;
  box-shadow: none;
}

.home-banner .scroll-down {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 45px;
  height: 45px;
}

.typewriter {
  display: inline-block;
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: 8px solid #DCBC65;
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  animation: typing 2s steps(50, end), blink-caret 0.5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 90%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #DCBC65;
  }
}

.btn-social {
  text-align: center;
  display: none;
}

.btn-social a {
  display: inline-block;
  height: 30px;
  width: 30px;
}

.c-logos div {
  padding: 0 7px;
}

.services {
  background: url(../images/group-9.png) 0 0 repeat-x;
  height: 500px;
  margin-top: 154px;
  width: 100%;
  padding: 20px 0;
  -webkit-animation: slide 50s linear infinite;
  -moz-animation: slide 50s linear infinite;
  -o-animation: slide 50s linear infinite;
  animation: slide 50s linear infinite;
}

.services .card-c {
  height: 460px;
}

@-webkit-keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0;
  }
}

@-moz-keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0;
  }
}

@-o-keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0;
  }
}

@keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0;
  }
}

.Rect-leftTop1, .Rect-rightTop1, .Rect-leftBottom1, .Rect-rightBottom1, .Rect-leftTop2, .Rect-rightTop2, .Rect-leftBottom2, .Rect-rightBottom2 {
  position: absolute;
  background: #828383;
  z-index: 50;
}

.Rect-leftTop1 {
  width: 6px;
  height: 6px;
  left: -3px;
  top: -3px;
}

.Rect-rightTop1 {
  width: 4px;
  height: 4px;
  right: -2px;
  top: -2px;
}

.Rect-leftBottom1 {
  width: 6px;
  height: 6px;
  left: -3px;
  bottom: -3px;
}

.Rect-rightBottom1 {
  width: 6px;
  height: 6px;
  right: -3px;
  bottom: -3px;
}

.Rect-leftTop2 {
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.Rect-rightTop2 {
  width: 6px;
  height: 6px;
  right: -3px;
  top: -5px;
}

.Rect-leftBottom2 {
  width: 6px;
  height: 6px;
  left: -3px;
  bottom: -3px;
}

.Rect-rightBottom2 {
  width: 9px;
  height: 9px;
  right: -5px;
  bottom: -5px;
}

.art1, .art2 {
  display: none;
}

footer {
  border-top: solid 1px #232323;
  padding: 60px 0;
  margin-top: 80px;
}

footer ul a {
  color: #8c8c8c;
  display: inline-block;
  margin-bottom: 12px;
}

footer ul a:hover {
  text-decoration: none;
}

footer .form-control {
  width: calc(100% - 103px) !important;
}

.contact-bx {
  margin-top: 170px;
}

.contact-bx .contact-form h3 {
  margin-bottom: 35px;
}

.contact-bx .contact-details div {
  margin: 30px 0 5px 0;
}

.contact-bx .contact-info-text {
  margin-top: 70px;
}

.breadcrumb {
  padding-top: 1.25rem;
}

.breadcrumb .active {
  color: #8c8c8c;
}

.inner-page {
  background: linear-gradient(to left, rgba(20, 20, 20, 0.9294117647) 0%, rgba(20, 20, 20, 0.94) 20%, #141414 68%);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 65px;
}

.inner-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.card-wrapper {
  position: absolute;
  top: 95px;
}

.inner-page .slashT {
  margin-bottom: 3.75rem;
  margin-top: 0;
}

.inner-page .row .inner-Menu {
  position: inherit;
}

.list-menu {
  display: inherit;
}

.list-menu a {
  display: block;
  font-size: 0.875rem;
  color: #8c8c8c;
  margin-right: 0;
}

.list-menu a.active {
  color: #DCBC65;
  position: relative;
}

.list-menu a.active span {
  background: #141414;
  position: relative;
  z-index: 50;
  padding-right: 1.875rem;
}

.list-menu a.active::after {
  border-top: 1px solid #DCBC65;
  content: '';
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
}

.simplebar-scrollbar:before {
  opacity: 1 !important;
}

.simplebar-track.simplebar-vertical::before {
  border-left: 1px solid #393939;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
}

.team-details {
  font-size: 0.875rem;
}

.team-details .designation-title {
  margin: 0.625rem 0;
}

.team-details .designation-disc {
  margin-top: 1.875rem;
}

.services-box {
  margin-bottom: 0.625rem;
}

.services-box a {
  display: inline-block;
  padding: 38px 10px;
  width: 115px;
  height: 115px;
  vertical-align: middle;
  color: #FFF;
  background: #202020;
  margin-bottom: 0;
  border: solid 1px #202020;
  margin-left: 0.625rem;
  text-align: center;
}

.services-box a:first-child {
  margin-left: 0;
}

.services-box a:hover {
  color: #FFF;
  border: solid 1px #DCBC65;
  text-decoration: none;
}

.services-box a.active {
  color: #FFF;
  border: solid 1px #DCBC65;
  text-decoration: none;
}

.font-14 {
  font-size: 0.875rem;
  line-height: 1.3125rem;
}

.mt-30 {
  margin-top: 1.875rem;
}

.mt-100 {
  margin-top: 6.25rem !important;
}

.careerimg-right .imgright {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, rgba(20, 20, 20, 0.67) 20%), url(../images/banner-bg.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  max-width: 100%;
  vertical-align: middle;
  height: 240px;
  position: relative;
}

.careerimg-right .imgright > p {
  opacity: 100;
  position: absolute;
  right: 30px;
  left: auto;
  top: -32px;
  float: right;
}

.careerimg-right .serach-creers .form-control {
  height: 50px;
}

.careerimg-right .serach-creers > p {
  font-size: 14px;
}

.careerimg-right .empo {
  margin-top: 100px;
}

.careerimg-right .empo .row > div .box {
  border: solid 1px #343434;
  padding: 28px 16px;
  margin: auto 0;
}

.careerimg-right .empo .row > div .box > h1 {
  font-size: 3.375rem;
  margin-bottom: 10px;
  line-height: 0.8;
  color: #DCBC65;
}

.careerimg-right .empo .row > div .box > h1 > span {
  font-size: 18px;
}

.careerimg-right .empo .row > div .box > p {
  margin-bottom: 0;
}

.careerimg-right .we-offer .offer-box a {
  width: 170px;
  height: 170px;
  margin-left: 0.9375rem;
  margin-right: 0.9375rem;
  border-radius: 2px;
  background-color: rgba(32, 32, 32, 0.98);
  display: block;
  color: #8c8c8c;
  padding-top: 10px;
  border: solid 1px rgba(32, 32, 32, 0.98);
  text-align: center;
}

.careerimg-right .we-offer .offer-box a:hover {
  color: #FFF;
  border: solid 1px #DCBC65;
  text-decoration: none;
}

.careerimg-right .job-Openings li {
  background: url(../images/arrow-next.png) right center no-repeat;
}

.careerimg-right .job-Openings li a {
  text-decoration: none !important;
  display: block;
  padding: 1.25rem 2.5rem 1.25rem 0;
  color: #8c8c8c;
  border-bottom: solid 1px #343434;
}

.careerimg-right .job-Openings li a .job-title {
  width: calc(100% - 50px);
  padding-right: 1rem;
  float: left;
}

.careerimg-right .job-Openings li a .job-title span {
  font-size: 1.125rem;
  color: #DCBC65;
  display: block;
  margin-bottom: 0.3125rem;
}

.careerimg-right .job-Openings li a .job-numbers {
  float: right;
  width: 50px;
  text-align: right;
  line-height: 2.5rem;
}

.careerimg-right .job-Openings li:last-child a {
  border: none;
}

.listC {
  border-color: #343434 !important;
}

.listC > li {
  background: none;
  border: none;
  padding: 0 0 .75rem 0;
  font-size: 14px;
}

.listC > li .badge {
  font-size: 14px;
  font-weight: 100;
  line-height: 0;
  color: #8c8c8c;
}

.listC a {
  color: #8c8c8c;
  text-decoration: none !important;
}

.listC a:hover {
  color: #DCBC65;
}

.listC .active {
  background: none;
}

.listC .active a {
  color: #DCBC65;
  font-size: 16px;
}

.listC .active .badge {
  color: #DCBC65;
  font-size: 16px;
}

.position-list-table > tbody > tr > td {
  border-top: none;
  border-bottom: 1px solid #343434;
  font-size: 14px;
  padding: 1.1875rem 0;
}

.show-job-details {
  cursor: pointer;
}

.position-details {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 555;
  top: 0;
  right: 0;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
  background-color: rgba(32, 32, 32, 0.98);
  padding: 15px;
}

.position-details .close-job-details {
  width: 70px;
  height: 70px;
}

.position-details .position-discription {
  border-color: #2c2c2c !important;
  padding-top: 30px;
  height: 400px;
  max-width: 100%;
}

.position-details .position-discription ul {
  padding-left: 15px;
}

.position-details .job-apply-from {
  display: none;
  border-color: #2c2c2c !important;
  padding-top: 30px;
  height: 500px;
  max-width: 100%;
}

.position-details .job-apply-from .file-up {
  padding-bottom: 2.4375rem;
  border-color: #2c2c2c !important;
}

.position-details .job-apply-from .file-up .reupload > a {
  font-size: 12px;
}

.custom-checkbx {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}

.custom-checkbx input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbx .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background: none;
  border: solid 1px #7e7e7e;
  border-radius: 2px;
  -moz-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

.custom-checkbx:hover input ~ .checkmark {
  border: solid 1px #DCBC65;
}

.custom-checkbx input:checked ~ .checkmark {
  background-color: #DCBC65;
  border: solid 1px #DCBC65;
}

.custom-checkbx .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbx input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbx .checkmark:after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #1f1f1f;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


.custom-textfield {
  position: relative;
  margin-top: 0.5rem;
}

.custom-textfield.password {
  margin-bottom: 0.5rem !important;
}

.forgot-password {
  margin-bottom: 0.5rem;
}

/*.custom-textfield label {*/
/*  font-weight: normal;*/
/*  position: absolute;*/
/*  pointer-events: none;*/
/*  left: 0px;*/
/*  top: 8px;*/
/*  -moz-transition: 0.2s ease all;*/
/*  -o-transition: 0.2s ease all;*/
/*  -webkit-transition: 0.2s ease all;*/
/*  transition: 0.2s ease all;*/
/*}*/

.custom-textfield input {
  background-color: #1F1F1F;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0.5rem 1rem;
  display: block;
  width: 100%;
  color: #FFF;
  font-size: 14px;
  caret-color: #fff;
}

.custom-textfield input:hover {
  border: 1px solid #454545;
}

.custom-textfield input:focus {
  border: 1px solid #dcbc65;
}

.custom-textfield input:disabled {
  background-color: #1f1f1f;
}

input:-webkit-autofill {
  -webkit-text-fill-color: white !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px rgba(33, 33, 33, 1) inset !important;
  border: 2px solid rgb(33, 33, 33);
  padding: 7px 15px;
  height: 36px;
}

input:-webkit-autofill:focus {
  border: 1px solid #dcbc65;
}

input:-webkit-autofill + label,
input:-webkit-autofill:hover + label,
input:-webkit-autofill:focus + label,
input:-webkit-autofill:active + label {
  font-size: 12px;
  top: -20px;
}

.custom-textfield input:focus {
  outline: none;
}

.custom-textfield input:focus + label {
  font-size: 12px;
  top: -20px;
  color: #DCBC65;
}

input:not(:empty) + label,
input:not([value=""]) + label,
input:-webkit-autofill + label,
input:-moz-autofill + label {
  font-size: 12px;
  top: -20px;
}

.custom-textfield input + label.freeze-label {
  font-size: 12px;
  top: -20px;
}

.field-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 36px;
  right: 10px;
}

.password #password {
  padding-right: 36px;
}

.password .visible-pass {
  background: url(../images/visible-24.png) top left no-repeat;
  background-size: cover;
  cursor: pointer;
}

.password .invisible-pass {
  background: url(../images/invisible-24.png) top left no-repeat;
  background-size: cover;
  cursor: pointer;
}

.error-message-container {
  width: 100%;
  max-width: 480px;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-message-text {
  display: block;
  width: 100%;
  background-color: rgba(233, 96, 88, 0.2);
  border: 1px solid #E96058;
  font-size: 0.85rem;
  text-align: center;
  color: #fff;
  line-height: 2.25rem;
}

.input-error {
  color: #b44b45;
}

.input-error .error-msg {
  font-weight: normal;
  position: absolute;
  left: 0;
  top: -20px;
  display: block !important;
}

.two-factor-message {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/*.input-error input {*/
/*  !*border-bottom: solid 2px #b44b45;*!*/
/*  border-color: #b44b45;*/
/*}*/

/*.input-error label {*/
/*  opacity: 0;*/
/*}*/

.input-error .password-hintBx {
  display: block;
  background: #b44b45;
}

.password-hintBx {
  position: absolute;
  top: 16px;
  right: 30px;
  width: 10px;
  height: 10px;
  display: none;
}

.input-success {
  color: #429b52;
}

.input-success input {
  border-bottom: solid 2px #429b52;
}

.input-success label {
  color: #429b52 !important;
  top: -20px;
}

.input-success .password-hintBx {
  display: block;
  background: #429b52;
}

.input-warning {
  color: #927c4d;
}

.input-warning input {
  border-bottom: solid 2px #927c4d;
}

.input-warning label {
  color: #927c4d !important;
  top: -20px;
}

.input-warning .password-hintBx {
  display: block;
  background: #f1a25c;
}

.optional-field {
  position: absolute;
  top: 10px;
  right: 0;
  display: inline-block;
}

.field-info {
  position: absolute;
  right: -40px;
  top: 10px;
  width: 20px;
  height: 20px;
}

.signup-tyepBX {
  text-align: center;
  border: solid 1px #343434;
  cursor: pointer;
  margin-bottom: 30px;
  border-radius: 5px;
  background: url(../images/circle-line.png) 130px 15px no-repeat;
}

.signup-tyepBX:hover {
  border: solid 1px #DCBC65;
}

.signup-tyep-selected {
  border: solid 1px #DCBC65;
  background: url(../images/circle-line-filled.png) 130px 15px no-repeat;
}

.signup-type-info {
  width: 250px;
  position: absolute;
  top: 150px;
  right: -280px;
}

.team-profileBx {
  min-height: 450px;
}

.team-profile {
  width: 65%;
  cursor: pointer;
  position: absolute;
  text-align: center;
  opacity: 0.5;
}

.team-profile .name-btn {
  margin: -80px 0 -80px 80px;
  width: 150px;
  border-radius: 2px;
  color: #FFF;
  text-align: center;
  padding: 0.8125rem 1.25rem 0.75rem 1.25rem;
  text-transform: uppercase;
  background: url(../images/team-btn-line0.png) left 16px no-repeat, url(../images/team-btn-line2.png) right top no-repeat;
  background-color: #212121;
}

.team-profile .name-btn div {
  display: none;
}

.team-profile img {
  width: 100%;
}

.team-profile-left {
  left: 0;
}

.team-profile-right {
  right: 0;
}

.team-profile-right .name-btn {
  margin-left: 120px;
}

.active-team-profile {
  top: 0;
  opacity: 1;
  z-index: 50;
}

.active-team-profile img {
  width: 100%;
}

.active-team-profile .name-btn {
  background: #DCBC65;
}

.active-team-profile .name-btn div {
  display: block;
  background: #ffffff;
}

#team-member2 {
  display: none;
}

.border-gold {
  border-color: #DCBC65 !important;
}

.partner-logos .align-self-center {
  width: 170px;
  padding-bottom: 30px;
}

@media (min-width: 576px) {
  .home-banner {
    padding: 2.5rem 3.75rem;
  }

  .home-banner .card-c {
    height: 570px;
    margin-left: 4.6875rem;
    padding-top: 10.875rem;
  }

  .logo {
    max-width: 159px;
  }

  .card-c {
    padding: 3rem 4rem;
    width: 480px;
  }

  .btn-social {
    top: 50%;
    left: 0;
    position: fixed;
    width: 60px;
    z-index: 50;
    margin-top: -80px;
    display: block;
  }

  a {
    margin-bottom: 0.625rem;
  }

  .c-logos div {
    padding: 0;
  }

  .team-details .custom-scroller {
    height: 400px;
    max-width: 100%;
  }

  .position-details {
    padding: 46px 60px;
    width: 605px;
  }

  .w-sm-auto {
    width: auto !important;
  }
}

@media (min-width: 992px) {
  /*.container {*/
  /*  max-width: 1200px;*/
  /*  height: 100vh;*/
  /*  min-height: 100vh;*/
  /*}*/
  .creator-Studio {
    position: relative;
    padding-top: 178px;
  }

  .creator-Studio .art1 {
    position: absolute;
    left: 43px;
    top: -300px;
    width: 550px;
    display: block;
    z-index: 50;
  }

  .creator-Studio-inner {
    background: rgba(69, 69, 69, 0.1);
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .use-cases {
    padding-top: 150px;
    position: relative;
  }

  .use-cases .art2 {
    position: absolute;
    left: 280px;
    top: 75px;
    right: 0;
    margin: auto;
    width: 322px;
    z-index: 50;
    display: block;
  }

  .use-cases .use-cases-inner {
    background: url(../images/banner-bg.jpg) top left no-repeat;
    background-size: cover;
  }

  .contact-info-text {
    width: 470px;
  }

  .contacts-bg {
    background: url(../images/contact-us-bg.png) top left no-repeat;
  }

  .animated-img {
    width: calc(100% - 570px);
  }

  .animated-img img {
    width: 100%;
  }

  .services-box-scroller {
    height: 450px !important;
    max-width: 100% !important;
  }

  #navbarSupportedContent li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #DCBC65;
    transition: width .3s;
  }

  #navbarSupportedContent li a:hover::after {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .animated-img img {
    width: auto;
    height: 423px;
  }
}

@media (max-width: 991px) {
  .menu-btn {
    position: fixed;
    right: 20px;
    outline: none !important;
    bottom: 30px;
    z-index: 555;
    width: 62px;
    height: 62px;
  }

  .mobile-menu {
    position: fixed;
    z-index: 500;
    background: #212121;
    top: 0;
    left: 0;
    height: 100%;
    text-align: center;
    width: 100%;
  }

  .mobile-menu .mobile-logo {
    background: #202020;
    padding: 20px 15px;
    border-bottom: solid 1px #2b2b2b;
  }

  .mobile-menu .mobile-logo img {
    height: 15px !important;
  }

  .mobile-menu a.mobile-fb {
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 30px;
    left: 20px;
    display: block;
  }

  .mobile-menu li a {
    font-size: 24px;
    padding: 20px 0;
    text-transform: none !important;
  }

  .navbar-brand img {
    height: 15px;
  }

  .close-mobile-menu-btn {
    display: none;
  }

  .close-mobile-menu .close-mobile-menu-btn {
    display: block;
  }

  .close-mobile-menu .open-mobile-menu-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  .card-c {
    padding: 20px;
    height: auto !important;
    font-size: 14px;
    margin: auto;
  }

  .card-c-text {
    line-height: 21px;
  }

  .home-banner {
    padding: 0;
  }

  .home-banner .banner-inner {
    height: auto;
    padding: 10px;
  }

  .home-banner .banner-inner .btn {
    display: block;
    width: 100%;
  }

  .home-banner .banner-inner .card-c {
    font-size: 12px;
  }

  .home-banner .banner-inner .card-c-text {
    line-height: 18px;
  }

  h1 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .scroll-down {
    display: none;
  }

  .c-logos {
    padding: 30px 0;
  }

  .c-logos div {
    margin-bottom: 15px;
  }

  .c-logos div img {
    width: 80%;
  }

  .services {
    margin: 0;
    background: url(../images/group-9.png) center center repeat-x;
    animation: none;
    height: auto;
  }

  .creator-Studio .art1 {
    display: block;
    overflow: hidden;
    padding: 0 10px;
  }

  .use-cases {
    position: relative;
  }

  .use-cases .card-c {
    /*margin-top: 100px;*/
    padding-top: 30px;
  }

  .use-cases .art2 {
    display: block;
    margin-left: -15px;
    margin-bottom: -15px;
    position: relative;
    z-index: 50;
  }

  .border-radius-left-0 {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }

  .careerimg-right .imgright {
    background: none;
    height: auto;
  }

  .careerimg-right .imgright > p {
    left: 0;
    right: auto;
    top: 0;
    float: left;
    position: inherit;
  }

  .careerimg-right .imgright .Rect-leftTop1 {
    display: none;
  }

  .careerimg-right .imgright .Rect-rightBottom2 {
    display: none;
  }

  .careerimg-right .empo .row > div .box {
    padding: 20px 20px;
  }

  .careerimg-right .offer-box a {
    width: 150px !important;
    height: auto !important;
    padding-bottom: 30px;
  }

  .careerimg-right .job-Openings li {
    background: url(../images/arrow-next.png) right 15px no-repeat !important;
  }

  .careerimg-right .job-Openings li .job-numbers {
    line-height: 10px !important;
  }

  .careerimg-right .job-Openings li .job-title span {
    font-size: 14px !important;
    line-height: 21px;
  }

  .list-menu {
    display: inline-flex;
  }

  .list-menu a {
    margin-bottom: 0.9375rem;
    margin-right: 20px;
  }

  .list-menu a.active {
    color: #DCBC65;
  }

  .list-menu a.active span {
    padding-right: 0rem;
  }

  .inner-page .slashT {
    margin-bottom: 1rem;
    margin-top: 22%;
  }

  .inner-page .row .inner-Menu {
    position: absolute;
    top: 85px;
  }

  .animated-img img {
    width: 100%;
    margin-top: 2rem;
  }

  .team-profile {
    width: 50%;
  }

  .team-profile .name-btn {
    margin: -80px auto 0 auto;
    padding: 0.8125rem 0 0.75rem 0;
    width: 100px;
  }

  .team-profile .name-btn div {
    display: none;
  }

  .team-profile img {
    width: 100%;
  }

  .partner-logos .align-self-center {
    width: 95px;
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .careerimg-right .offer-box a {
    width: 40% !important;
  }

  .team-profile {
    position: static;
    float: left;
  }

  .team-profileBx {
    min-height: auto;
    margin-bottom: 60px;
  }
}

/* Buttons */
.btn {
  font-size: 0.75rem;
  letter-spacing: 1px;
  line-height: 1.67;
  padding: 0.5rem 1.25rem 0.4375rem 1.25rem;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-style: normal;
  font-style: normal;
  font-stretch: normal;
}

.btn-lgc {
  padding-top: 0.8125rem;
  padding-bottom: 0.75rem;
}

.btn-gold {
  background: #DCBC65;
  color: #151414;
  border: none;
  max-height: 36px;
  padding: 8px 0;
}

.btn-gold:hover {
  background: #F7DB90;
}

.btn-gold:disabled {
  background: #DCBC65;
  opacity: 0.5;
}

.btn-outline-gold {
  color: #DCBC65;
  border-color: #DCBC65;
}

.btn-outline-gold:hover {
  background: #DCBC65;
  color: #FFF;
}

/*social media HOVER COLOR change*/
a svg:hover #facebook, a svg:hover #twitter, a svg:hover #youtube, a svg:hover #telegram {
  fill: #dcbc65;
}

a svg:hover #facebook-border, a svg:hover #twitter-border, a svg:hover #youtube-border, a svg:hover #telegram-border {
  stroke: #dcbc65;
}

.create-account-text {
  font-size: 0.88rem;
  color: #fff;
}

/* header */
.header-title {
  padding: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.navbar {
  height: 60px;
  background: #202020;
  border-bottom: solid 1px #2b2b2b;
  font-size: 0.75rem;
}

.navbar .nav-link {
  color: #d8d8d8 !important;
  padding-left: 0.9375rem !important;
  padding-right: 0.9375rem !important;
}

.navbar .btn-link {
  font-size: 0.75rem;
  color: #d8d8d8 !important;
}


.input-name:not(:empty) + label,
.input-name:not([value=""]) + label,
.input-name:-webkit-autofill + label,
.input-name:-moz-autofill + label,
.input-password:not(:empty) + label,
.input-password:not([value=""]) + label,
.input-password:-webkit-autofill + label,
.input-password:-moz-autofill + label {
  font-size: 12px;
  top: -20px;
}

/*.form-check-input:focus + .checkmark {*/
/*  box-shadow: 0 0 0 0.2rem rgba(38,143,255,.5) !important;*/
/*}*/
