/* web font link */
@font-face {
    font-family: 'Atyp Text';
    src: url('../fonts/AtypText-Bold.woff') format('woff2'),
         url('../fonts/AtypText-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Atyp Text';
    src: url('../fonts/AtypText-Semibold.woff2') format('woff2'),
         url('../fonts/AtypText-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Atyp Text';
    src: url('../fonts/AtypText-Medium.woff2') format('woff2'),
         url('../fonts/AtypText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Atyp Text';
    src: url('../fonts/AtypText-Regular.woff2') format('woff2'),
         url('../fonts/AtypText-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Atyp Text';
    src: url('../fonts/AtypText-Thin.woff2') format('woff2'),
         url('../fonts/AtypText-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

body{
    margin: 0;
    padding: 0;
    padding-top: 372px;
    transition: 0.5s;
    font-family: 'Atyp Text';
    overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --black:#000000;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --light-grey-200:#CECECE;
  --pink-700:#FF0046;
  --pink-600:#F5134F;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  text-decoration: none;
}

a,
button {
  -webkit-transition: all 250ms ease 0s;
  -moz-transition: all 250ms ease 0s;
  -ms-transition: all 250ms ease 0s;
  -o-transition: all 250ms ease 0s;
  transition: all 250ms ease 0s;
}

button,
button:focus {
  outline: none;
  border: none;
  cursor: pointer;
}
p{
  margin:18px 0px !important;
}

.form-control:focus,
.form-check-input:focus {
  outline: 0;
  box-shadow: none;
}

input,
select,
textarea {
  font-size: 16px;
  line-height: 37px;
}

select:hover,
select:active,
select:focus {
  outline: none;
  box-shadow: none;
}

textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
  box-shadow: none;
}

input:hover,
input:active,
input:focus {
  outline: none;
  box-shadow: none;
}

input[type=number] {
  -moz-appearance: textfield;
  /*For FireFox*/
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.custom-container{
    max-width:1920px;
    width: 100%;
    margin: auto;
}
.top-navbar li a::after{
  content: '';
  right: 0;
  top: 52%;
  max-width: 0px;
  width: 100%;
  background-color: var(--light);
  border-bottom:2px solid #fff;
  z-index:-1;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.top-navbar li.current-menu-item a::after, .top-navbar li:hover a::after{
  max-width: 195px;
}
.show-languages {
    margin-right: 8px;
}
.home .top-header {
    height: 513px;
}

body.home {
    padding-top: 512px;
}
.top-header{
  height: 372px;
  padding-top: 50px;
  -webkit-transition: all 600ms ease 0s;
    -moz-transition: all 600ms ease 0s;
    transition: all 600ms ease 0s;
    overflow: hidden;
}
.top-header.stickyBar {
    padding-top: 1px;
    transition: all 600ms ease 0s;
}
.header-bg{
  z-index: -1;
      background-position: top;
    width: calc(100vw + 300px);
    max-width: calc(100vw + 300px);
    transform: translate(-150px, 0);
    animation: bgAnimation 60s ease infinite;
}

.top-header.stickyBar{
  height: 64px;
  position: fixed;
  top:0px;
  z-index: 999;
  width: 100%;
  padding-top: 23px;
  -webkit-transition: all 600ms ease 0s;
  -moz-transition: all 600ms ease 0s;
  transition: all 600ms ease 0s;
}
.top-header h1{
  transform:translateX(0%);
  -webkit-transition: all 600ms ease 0s;
    -moz-transition: all 600ms ease 0s;
    transition: all 600ms ease 0s;
    opacity: 1;
}
.top-header.stickyBar h1{
    display: inline-block;
    opacity: 0;
    transform:translateX(-130%);
    overflow: hidden;
    padding-top: 0px;
}
.top-header .top-navbar li, .top-header.stickyBar .top-navbar li{
   -webkit-transition: all 400ms ease 0s;
    -moz-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s;
}
.top-header.stickyBar .top-navbar li a{
    height: 0;
    margin-right: -250px;
    -webkit-transition: all 10ms ease-in-out 0s;
    -moz-transition: all 10ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    opacity: 1;
}
.top-header.stickyBar .top-navbar li {
    display: none;
}
.top-header.stickyBar .top-navbar li.current-menu-item{
  display: block;
  margin-top:-6px;
  -webkit-transition: all 400ms ease 0s;
    -moz-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s;
}
.top-header img{
   -webkit-transition: all 400ms ease 0s;
    -moz-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s;
}
.top-header.stickyBar img {
    max-width: 96px;
    -webkit-transition: all 400ms ease 0s;
    -moz-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s;
}

.top-header.stickyBar .language-menu{
  display: none;
}
.top-header.stickyBar .top-navbar li.current-menu-item a {
    margin-right: 0px;
    height: auto;
    position: relative;
}
.top-header .top-navbar li a i{
    display: none;
    -webkit-transition: all 400ms ease 0s;
    -moz-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s;
}
.top-header.stickyBar li a i {
    display: block;
    font-size: 10px;
    margin-left: 10px;
    position: relative;
    top: 3px;
}
.top-header.stickyBar li.showActiveClass i{
  transform:rotate(90deg);
}

.bg-animated-gradient {
  overflow: hidden;
    background: linear-gradient(90deg, #ff0046, #00ffbc, #ff0046);
    background-size: 250% 250%;
    animation: gradientMove 15s ease-in-out infinite;
}
.top-header.stickyBar li.current-menu-item a::after{
  display: none;
}
.top-header.stickyBar .top-navbar li a{
  background-color: transparent;
  color: var(--white);
}

.header-menu-fixed ul {
    display: flex;
    color: #fff;
    justify-content: flex-end;
    gap: 20px 20px;
}
body:has(.top-header.stickyBar) {
    padding-top: 170px;
}
.shownavbar {
    opacity: 1;
    visibility: visible;
}
#mobileNavMenu {
    width: 100%;
    height: 100%;
    z-index: 99999;
    top: 110px;
}
#mobileNavMenu nav li.selected a{
  color:#ff0046;
  font-weight:400 !important;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bgAnimation {
  0% {
    transform: translate(-150px, 0);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-150px, 0);
  }
}

@keyframes bgAnimationMobile {
  0% {
    transform: translate(-100px, 0);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100px, 0);
  }
}
.hideTopNavBarClass{
  position: fixed;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 400ms ease 0s;
    -moz-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s;
}
.mobileNavbarActive li:last-child {
    transform: rotate(315deg);
}
.mobileNavbarActive li:first-child {
    transform: rotate(45deg);
}
.showTopNavbar{
  top:71px;
  opacity: 1;
  z-index: 9;
  visibility: visible;
  -webkit-transition: all 400ms ease 0s;
    -moz-transition: all 400ms ease 0s;
    transition: all 400ms ease 0s;
}
.service-zigzag-dark{
  overflow: hidden;
}
.service-zigzag-dark p{
  text-align: left;
}
#hideCategoryList li{
  color:#909090;
}
#hideCategoryList li.active{
  color: var(--pink-700);
}
#CategoryListBox .category-box{
  -webkit-transition: all 400ms ease 0s;
  -moz-transition: all 400ms ease 0s;
  transition: all 400ms ease 0s;
}

.fade-in {
    animation: fadeIn 0.4s ease-in-out;
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
  }
  .stickyBarul .top-navbar li a:hover, .stickyBarul .top-navbar li a {
    pointer-events: none;
}


.language-menu nav li{
    max-width: max-content;
    margin-left: auto;
}
.show-languages li{
    display: inline-block;
    width: 0;
    overflow: hidden;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    transition: all 400ms ease-in-out 0s;
}
.show-languages li.active, .show-languages.openNav li  {
    width: 45px;
}

.show-languages li a {
    display: flex;
    align-items: center;
    gap: 4px;
}
.show-languages li a i{
  font-size: 13px;
}
.show-languages li a, .show-languages li {
    pointer-events: none;
}

.show-languages.openNav li, .show-languages.openNav li a{
  pointer-events: visible;
} 

.show-languages.openNav li.active a i {
    opacity: 0;
}
.show-languages li a{
  color: var(--black);
}
.show-languages li.active a{
  color: var(--white);
}
.show-languages.openNav li a i{
  transform: rotate(270deg);
}
div#mobileNavMenu .show-languages li a {
    color: #8c8c8c;
}
div#mobileNavMenu .show-languages li.active a{
  color: #fff;
}
.header-container {
    max-width: 1920px;
    margin: auto;
    padding: 0px 0 0 0px;
}

.contactUs-Form .gform-footer {
    justify-content: center;
}
.contactUs-Form input, .contactUs-Form textarea {
    border: 0px !important;
    box-shadow: none !important;
    background: transparent !important;
    border-bottom: 1px solid #404041 !important;
    border-radius: 0px !important;
    resize: none !important;
    color:#6C757D !important;
}
.contactUs-Form input::placeholder, .contactUs-Form textarea::placeholder{
  color:#6C757D !important;
}
.contactUs-Form textarea{
  height:145px !important;
}
.contactUs-Form .gform_button{
  background: rgb(255 0 70) !important;
  max-width: 382px !important;
  width: 100% !important;
  height: 47px !important;
  border: 0px !important;
  color: #fff !important;
  text-transform: uppercase !important;
}
.contactUs-Form .gform_button:hover{
  transform:scale(1.06);
  transition: all 0.3 ease-in-out;
}

input:focus, textarea:focus {
    outline: 0px !important;
}
.service-page-block h3 {
    word-break: break-word;
}

/* work section start */
.work-items-outer ul li, .word-details ul li{
    position: relative;
    margin-left: 2px;
    padding-left: 20px;
}
.work-items-outer ul li::after{
    content: '';
    height: 7px;
    width: 7px;
    position: absolute;
    top: 16px;
    left: 0px;
    background-color: #000;
    border-radius: 50%;
}

.word-details ul li::after{
    content: '';
    height: 7px;
    width: 7px;
    position: absolute;
    top: 16px;
    left: 0px;
    background-color: #000;
    border-radius: 50%;
}
.word-details p{
  font-size: 22px;
  line-height:24px;
  font-weight:333;
}

.work-items-outer .group:hover ul li::after{
  background-color: #fff;
}

/* work section end */
.srvc-pic, .word-details img {
    object-fit: contain;
}


