* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'proximanova';
    font-weight: 500;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'proximanova';
    src: url('../fonts/proximanova-bold-webfont.woff2') format('woff2'), url('../fonts/proximanova-bold-webfont.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'proximanova';
    src: url('../fonts/proximanova-regular-webfont.woff2') format('woff2'), url('../fonts/proximanova-regular-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'proximanova';
    src: url('../fonts/proximanova-semibold-webfont.woff2') format('woff2'), url('../fonts/proximanova-semibold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}


/* Radial Out */

.hvr-radial-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-radius: 2px !important;
}

.hvr-radial-out:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s !important;
    transition-duration: 0.3s !important;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    border-radius: 2px;
}

.hvr-radial-out:hover,
.hvr-radial-out:focus,
.hvr-radial-out:active {
    color: #020202;
    border-radius: 2px;
}

.hvr-radial-out:hover:before,
.hvr-radial-out:focus:before,
.hvr-radial-out:active:before {
    -webkit-transform: scale(2);
    transform: scale(2);
    border-radius: 2px;
}


/* ///////////////////////////////////////// */

.hvr-radial-out-invert {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-radius: 2px !important;
}

.hvr-radial-out-invert:before {
    content: "";
    position: absolute;
    z-index: -9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #020202;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s !important;
    transition-duration: 0.3s !important;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    border-radius: 2px;
}

.hvr-radial-out-invert:hover,
.hvr-radial-out-invert:focus,
.hvr-radial-out-invert:active {
    color: white;
    border-radius: 2px;
}

.hvr-radial-out-invert:hover:before,
.hvr-radial-out-invert:focus:before,
.hvr-radial-out-invert:active:before {
    -webkit-transform: scale(2);
    transform: scale(2);
    border-radius: 2px;
}

.closebtn {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-size: 20px;
    cursor: pointer;
}

.header-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 2px;
    font-size: 20px;
    cursor: pointer;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #020202;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.desk-header {
    width: 100%;
    background: #020202;
    padding: 15px 0;
    z-index: 9999;
    position: sticky;
    top:0;
}

.header-content-holder {
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    max-width: 200px;
    width: 100%;
}

.header-logo a img {
    width: 100%;
}

.header-navigation {
    width: fit-content;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.header-navigation ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.header-navigation ul li {
    margin: 0 10px;
    list-style: none;
}

.header-navigation ul li:first-child {
    margin-left: 0;
}

.header-navigation ul li:last-child {
    margin-right: 0;
}

.get-in-touch {
    display: none;
}

.header-navigation ul li a {
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    border-radius: 2px;
}

.header-navigation ul li a::before {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    width: 0;
    font-weight: 500;
    margin: 0 auto;
    background: white;
    transition: 0.2s ease-in;
    content: "";
    z-index: 99;
}


.header-navigation ul li a:hover:before {
    width: 100%;
}

.header-btn a {
    font-weight: 600;
    font-size: 20px;
    /* line-height: 22px ; */
    letter-spacing: 0.01em;
    color: #ffffff;
    padding: 10px 30px !important;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    border-radius: 2px !important;
    text-decoration: none;
    transition: 0.2s;
    overflow: hidden;
}

.header-toggle {
    display: none;
}


/* .header-btn a:hover {
    background: #36b37e;
    border: 1px solid #36b37e;
} */

.banner {
    width: 100%;
    background: #020202;
    padding: 80px 0 0 0;
}


.banner-content {
    width: 100%;
}

.banner-content h6 {
    font-weight: 800;
    font-size: 16px;
    line-height: 150%;
    /* identical to box height, or 24px */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a8f98;
}

.banner-content h1 {
    font-style: normal;
    font-weight: 800;
    font-size: 55px;
    line-height: 125%;
    /* or 80px */
    /* White */
    color: #ffffff;
}

.banner-content p {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
}

.banner-cta-box {
    width: fit-content;
    text-align: center;
}


.banner-cta-box a {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2em;
    letter-spacing: 0.01em;
    color: #ffffff;
    padding: 12px 30px;
    background: #36b37e;
    transition: 0.2s;
    display: block;
    width: fit-content;
    margin-top: 40px;
    margin-bottom: 20px;
    border-radius: 2px;
    overflow: hidden
}


.banner-cta-box p {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    /* identical to box height, or 24px */
    text-align: center;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 0;
}

.banner-img {
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* .banner-img img {
    width: 100%;
    transition: 0.1s;
} */

.banner-img svg {
    width: 100%;
    transition: 0.1s;
}

.kind-agency-sec {
    width: 100%;
    padding-bottom: 80px;
    padding-top: 80px;
    max-width: 990px;
    width: 100%;
    margin: 0 auto;
    background: #020202;
}

.kind-title {
    width: 100%;
}

.kind-title h2 {
    font-weight: 800;
    font-size: 48px;
    letter-spacing: -0.01em;
    /* White */
    color: #ffffff;
    margin: 0;
}

.kind-content p {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 5px;
}

.kind-content p:last-child {
    margin-bottom: 0;
}

.title-heading {
    font-weight: 800;
    font-size: 45px;
    line-height: 125%;
    color: #020202;
    margin-bottom: 0;
}

.title-heading.center {
    text-align: center;
}

.title-heading.white {
    color: white !important;
}

.one-step-sec {
    width: 100%;
    padding: 80px 0;
}

.one-step-content {
    width: 100%;
}


.counter-box-container {
    width: 100%;
    background: #f8f6f6;
    padding: 20px 40px;
    margin: 60px auto 0 auto;
    max-width: 960px;
    box-sizing: border-box;
}

.counter-box {
    width: 100%;
    text-align: center;
}


.partner-sec {
    width: 100%;
    background: #F8F6F6;
    ;
    padding: 80px 0;
}

.partner-content {
    width: 100%;
}


.partner-img {
    width: 100%;
    position: relative;
    height: 100%;
}


.service-sec {
    width: 100%;
    padding: 80px 0;
    background: #020202;
    position: relative;
}

.service-shape {
    position: absolute;
    bottom: 0;
    left: 0;
}


.service-img {
    width: 100%;
    text-align: center;
    height: 100%;
}



.service-img svg {
    max-width: 140px;
    width: 100%;
}

.s-right {
    margin-left: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.s-left {
    margin-right: 0 auto;
    display: flex;
    justify-content: flex-start;
}


.service-border {
    border-bottom: 1px solid #ffffff1e;
}

.tech-solution {
    margin: 120px 0;
    text-align: center;
}


.service-btn {
    width: 100%;
    text-align: center;
    margin-top: 80px;
}


.project-sec {
    width: 100%;
    padding: 80px 0;
}

.project-box {
    width: 100%;
}

.pro-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 2s ease;
    aspect-ratio: 1 / 1;
}

.pro-box-img {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    display: block;
    background: #f8f6f6;
}

.pro-box-img:hover img {
    transform: scale(1.1);
}


.see-project-btn {
    width: fit-content;
    text-align: center;
    display: block;
    margin: 40px auto 0 auto;
    overflow: hidden;
}



.service-tailored-sec {
    padding: 80px 0 160px 0;
    background: #020202;
    position: relative;
    z-index: 1;
}

.tailored-shape {
    position: absolute;
}

.tailored-shape {
    position: absolute;
    bottom: 0;
    right: 0;
}

.tailored-shape img {
    object-fit: contain;
    max-width: 150px;
    width: 100%;
}



.tetimoial-sec {
    width: 100%;
    padding-top: 80px;
    background: white;
}

.testislider-holder {
    width: 100%;
    padding: 80px 0;
    margin-top: 20px;
    background: #f8f6f6;
}

.testi-box {
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    padding: 30px;
    height: 100%;
    min-height: 340px;
}


.testi-box p {
    line-height: 200%;
    color: #020202;
    margin-bottom: 0;
    font-size: 18px;
    color: #020202;
}

.testi-btn {
    width: 100%;
    margin-top: 30px;
}



.get-in-touch-sec {
    width: 100%;
    padding: 80px 0;
    background: #020202;
}

.get-in-touch-content {
    width: 100%;
}

.get-in-touch-content p {
    font-size: 16px;
    line-height: 150%;
    /* or 30px */
    /* White */
    color: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 0;
}

.get-in-touch-content p:last-child {
    margin-bottom: 20px;
}

.field-box {
    width: 100%;
}

.field-box input {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    background: #020202;
    border: 1px solid #4F4D4D;
    box-sizing: border-box;
    padding: 7px 10px;
    border-radius: 2px;
    color: white;
    font-weight: 400;
    transition: 0.2s;
}

.field-box input:focus {
    border: 1px solid white;
}

.field-box textarea:focus {
    border: 1px solid white;
}

.field-box input::placeholder {
    color: #B0ADAD;
    padding-left: 5px;
}

.field-box.message textarea::placeholder {
    color: #B0ADAD;
    padding-left: 5px;
}

.field-box.message textarea {
    min-height: 100px;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    background: #020202;
    border: 1px solid #4F4D4D;
    box-sizing: border-box;
    padding: 7px 10px;
    border-radius: 2px;
    color: white;
    font-weight: 400;
    transition: 0.2s;
}

.field-box textarea:focus {
    border: 1px solid white;
}

.field-box button {
    width: 100%;
    background: #36B37E;
    outline: none;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    /* identical to box height, or 30px */
    letter-spacing: 0.02em;
    padding: 12px 5px;
    color: #FFFFFF;
    transition: 0.2s;
    text-transform: capitalize;
    overflow: hidden
}

.field-box button:hover {
    background: white;
    color: #020202;
}

.get-in-touch-right {
    max-width: 240px;
    width: 100%;
    /* margin: 0 auto; */
    margin-left: auto;
}

.get-in-touch-right svg {
    width: 100%;
}

.get-in-touch-right p {
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 40px;
    text-align: center;
    margin-bottom: 0;
}

.footer {
    width: 100%;
    padding: 80px 0;
    background: #020202;
}

.get-touch-content-holder {
    max-width: 990px;
    width: 100%;
    margin: 0 auto;
}

.footer-logo {
    max-width: 200px;
    width: 100%;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 100%;
}

.footer-info {
    width: 100%;
    max-width: 200px;
}

.footer-info h6 {
    font-weight: 800;
    font-size: 20px;
    line-height: 18px;
    /* or 90% */
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.footer-info p {
    font-size: 16px;
    line-height: 32px;
    /* or 178% */
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.footer-right-info {
    margin-left: auto;
    max-width: 320px;
    width: 100%;
}

.footer-right-info p {
    font-size: 16px;
    /* line-height: 32px; */
    /* or 178% */
    letter-spacing: 0.02em;
    color: #FFFFFF;
    font-weight: 500;
    text-align: right;
}

.footer-right-info p span {
    font-weight: 800 !important;
}

.footer-right-info p a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-right-info p a:last-child {
    margin-right: 0;
    margin-left: 5px;
}

.footer-bottom {
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy-right p {
    margin: 0;
    font-size: 16px;
    line-height: 18px;
    /* identical to box height, or 100% */
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.footer-social-icons ul {
    display: flex;
    align-items: center;
}

.footer-social-icons ul li {
    list-style: none;
    margin: 0 10px;
}

.footer-social-icons ul li:first-child {
    margin-left: 0;
}

.footer-social-icons ul li:last-child {
    margin-right: 0;
}

.footer-social-icons ul li a img {
    transition: 0.2s ease-in;
}

.footer-social-icons ul li a img:hover {
    transform: scale(1.1);
}














/* loading spinner  */



.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
  box-sizing: border-box;
}
.lds-spinner {
  color: currentColor;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3.2px;
  left: 36.8px;
  width: 6.4px;
  height: 17.6px;
  border-radius: 20%;
  background: currentColor;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
    z-index: 99999;
}

.success-msg {
  margin: 10px 0;
  padding: 10px;
  border-radius: 3px 3px 3px 3px;
  width: 640px;
  color: #ffffff;
  background-color: #36B37E;
  display: none;
}
