/* Smooth scroll */
 html[aria-busy="true"] {
    
  }

/* Nav Menu Colors */
:root {
  --nav-color: #3a3939;
  --nav-hover-color: #e84545;
  --nav-dropdown-color: #3a3939;
  --nav-dropdown-hover-color: #e84545;
  --nav-dropdown-background-color: #ffffff;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
 font-family: "Plus Jakarta Sans", sans-serif;
 overflow-x:hidden;
}

a {
  text-decoration: none;
  transition: 0.3s;
  cursor:pointer;
}

a:hover {
  color: rgba(var(--accent-color-rgb), 0.7);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0;
  transition: all 0.5s;
  z-index:99999;
  height:68px;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
color: #000;
  background: rgb(255, 204, 41);
  font-size: 14px;
  padding: 6px 15px !important;
  margin: 0 15px 0 15px !important;
  border-radius: 0;
  transition: 0.3s;
  font-weight: 700;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color:#fff;
  background:#000;
}

.thank-you-area .logo-section {
  position: static;
  background: #FFE182;
  text-align: left;
  padding: 20px 0;
}

.container-fluid.thank-you-area {
  padding: 0 !important;
}

#services h6 {
  margin: 0;
  padding: 0;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
	margin-left:0px;
  }
  .mobile-nav-toggle {
    margin-left: 15px;
  }
}

/* Global Header on page scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #444444;
  --nav-color: #444444;
  --nav-hover-color:rgb(255, 204, 41);
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 65px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/* Home Page Custom Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.515);
  --nav-hover-color: #ffffff;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #d83535;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
	padding:0px;
  }


  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  
.navmenu li::after {
    content: '';
    display: block;
    width: 0;
    background: #000;
    transition: width .3s;
}
.navmenu li:hover::after { width: 100%; transition: width .3s; } 

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  /* .navmenu li:last-child a {
    padding-right:49px;
  } */

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color:#fff;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
  }
}

.social-section {
  border-left: 1px solid #E4E4E4;
  padding-left: 14px;
  padding-top: 2px;
  padding-bottom: 2px;
}

.social-section img {
  filter: grayscale(100%);
}

.social-section img:hover {
  filter: grayscale(0);
}

.social-section a {
  float: left;
  margin-left: 10px;
  
}

.formp-row {
  margin-top: 30px !important;
  float: left;
}

.popform .formp-row {
  margin: 0 !important;
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  
}
.mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    position: absolute;
    inset: 0px 0px 0px 0px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--accent-color-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover {
    color: rgb(255, 204, 41);
  }
  .navmenu .active,
  .navmenu .active:focus {
    color:#fff);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul,
  .navmenu .megamenu ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul,
  .navmenu .megamenu ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active,
  .navmenu .megamenu>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top:0px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
	margin: 0 !important;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block !important;
	height: 100%;
     background: none !important;
	 margin-top: 40px;
  }



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: rgba(var(--accent-color-rgb), 0.8);
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding:65px 0 65px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title nav {
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.3);
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/

#main {
  margin-top: 68px;
}

.hero {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  width: 100%;
  min-height: 400px;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

.hero p {
  color: rgba(var(--default-color-rgb), 0.8);
  margin: 5px 0 0 0;
  font-size: 20px;
}

.hero .sign-up-form {
  margin-top: 20px;
  padding: 10px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

.hero .sign-up-form .form-control {
  border: none;
}

.hero .sign-up-form .form-control:active,
.hero .sign-up-form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero .sign-up-form input[type=submit] {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
}

.hero .sign-up-form input[type=submit]:hover {
  background-color: rgba(var(--accent-color-rgb), 0.9);
}

.text-right {
  margin-top: 178px;
  margin-left: 20px;
  color:#000;
}

.logo-section {
 position: absolute;
  top: 90px;
  z-index: 999;
}

.logo-text1 { font-size: 55px; font-weight: 700; line-height: 61px; letter-spacing: 1.2px; margin-bottom: 13px; } 
.logo-text2 { line-height: 24px; font-size: 19px; word-spacing: 2px;width: 100%;text-align: left; } 

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/* Clients Section - Home Page
------------------------------*/
.clients {
  padding-top:0px;
}

.clients ul {
  display: flex;
  justify-content: ;
  justify-content: space-between;
  margin: 0;
  padding: 0 !important;
}

.clients ul li { display: flex; list-style: none; margin-bottom: 50px; flex-wrap: nowrap; } 

ul.sec li { margin-bottom: 0 !important; } 

.clients .client-logo img {
  filter: grayscale(100%);
  opacity: 1;
}


.clients .client-logo img:hover {
  filter:none;
  opacity: 1;
}

.col-lg-2.client-logo.first {
  width: 14%;
}
.col-lg-2.client-logo.last {
  width: 11% !important;
}


@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.hero {
  --default-color: #ffffff;
  --default-color-rgb:#fff;
  --background-color: #fff;
  --background-color-rgb: 0, 0, 0;
  width: 100%;
  min-height: 400px;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

.hero p {
  color: rgba(var(--default-color-rgb), 0.8);
  margin: 5px 0 0 0;
  font-size: 20px;
}

.hero .sign-up-form {
  margin-top: 20px;
  padding: 10px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
}

.hero .sign-up-form .form-control {
  border: none;
}

.hero .sign-up-form .form-control:active,
.hero .sign-up-form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero .sign-up-form input[type=submit] {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
}

.hero .sign-up-form input[type=submit]:hover {
  background-color: rgba(var(--accent-color-rgb), 0.9);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/* About Section - Home Page
------------------------------*/


.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: rgba(var(--accent-color-rgb), 0.05);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about p {
  font-size: 20px;
  margin-bottom: 20px;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  padding:0px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
  background-color: #fff;
}

.small-box {
  width: 250px;
  float: left;
  height: auto;
}


.number-img {
  position: absolute;
  left: -15px;
  top: 30px;
}
.gray-box {
  float: left;
  width: 233px;
  height: 130px;
  background: #F3F3F3;
  border-radius: 0 0 15px 0;
  padding:19px 5px 19px 29px;
}
.icon-img {
  position: absolute;
  width: 63px;
  height: 60px;
  right: 0;
  background: #FFE182;
  border-radius: 50px;
  text-align: center;
  top: -25px;
}
.gray-box p {
  font-size: 13px !important;
  line-height: 16px;
  padding-right:10px;
}
.small-box {
  position: relative;
  width: 246px;
}
.icon-img img {
  margin-top: -9px;
}
.gray-box h6 {
  font-size: 18px;
  font-weight: 600;
}

.arrow-right {
  float: left;
  margin-left: -13px;
  margin-top: 80px;
}

.container.about-area .col-md-4 {
  width: 31%;
}
.container.about-area .col-md-8 {
  width: 69%;
  margin:0 auto;
}

.down-arrow {
  float: left;
  width: 100%;
  text-align: center;
}

/* Stats Section - Home Page
------------------------------*/
.stats {
  --default-color: #ffffff;
  --default-color-rgb: #fff;
  --background-color:#FFE182;
  --background-color-rgb: 0, 0, 0;
  position: relative;
  padding: 0;
  height: 95px;
  box-shadow: 0 3px 20px #e5e5e5;
}

.stats .container {
  position: relative;
  z-index: 3;
}



.stats .stats-item {
  padding:10px 0px 0;
  width: 100%;
}

.stats .stats-item span {
  font-size: 40px;
  display: block;
  color: #000;
  font-weight:700;
  line-height: 40px;
}

.stats .stats-item h2 {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: bold;
  color: #000;
  line-height: 20px;
  margin-top: 10px;
}

/* Services Section - Home Page
------------------------------*/

#services .small-title {
  text-align: center;
  float: none;
  margin: 0 auto;
  display: inline;
}

.imgarea2 {
  text-align: center;
}

.services .service-item {
  position: relative;
  padding-top: 40px;
}

.services .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(var(--default-color-rgb), 0.1);
}

.services .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  border-right: 5px solid var(--background-color);
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.services .service-item .icon i {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: rgba(var(--accent-color-rgb), 0.3);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .title a:hover {
  color: var(--accent-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
}


/* Call-to-action Section - Home Page
------------------------------*/
.call-to-action {
  --default-color: #000;
  --background-color:#FFCC29;
  --background-color-rgb: 0, 0, 0;
  padding:25px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
  
}

.call-to-action h2 {
  color: var(--default-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.call-to-action h2 a {font-size: 20px;font-weight: 600;text-decoration:underline;color: var(--default-color);}

/* Testimonials Section - Home Page
------------------------------*/


.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin:0px;
  box-shadow: 0px 2px 10px 1px rgba(8, 15, 52, 0.04);
}

.testimonials .testimonial-item .testimonial-img {
  width:62px;
  height: 62px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 18px;
  margin: 0;
    font-weight: 400;
}

.testimonials .col-lg-7.aos-init.aos-animate {
  width: 54%;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(var(--accent-color-rgb), 0.4);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 30px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(var(--default-color-rgb), 0.15);
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonial-item {
  padding:35px 35px 10px 35px !important;
  border-radius: 20px;
  border: 1px solid #EFF0F6;
  height: 415px;
}
.col-lg-7.slider1 { width: 53% !important; float: right !important; } 
.testimonial-slider .slick-prev, .testimonial-slider .slick-next { top:72%; }


@media (max-width: 767px) {
#portfolio {
  padding-bottom: 5px !important;
}
.last.last2 .wrap-icon img {
    width: 56px !important;
  }
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}

/* Contact Section - Home Page
------------------------------*/



.contact .info-item {
  background: rgba(var(--default-color-rgb), 0.03);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background:;
  padding:0px;
  height: 100%;
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea,
.contact .php-email-form select {
  font-size: 16px;
  padding:13px 15px !important;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background: #fff;
  border-radius:5px;
  border: 0;
}

.contact .php-email-form select {width:100% !important;height: 50px;background:#fff}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::-moz-placeholder,
.contact .php-email-form input[type=email]::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form button[type="submit"] {
  font-size: 20px;
  border-radius: 30px !important;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
  width: 184px;
  text-align: left;
  font-weight: 700;
  height: 72px;
  background:url(../images/btn-arrow.svg) no-repeat 114px 26px #FFCC29;
  color: #000 !important;
}

.contact .php-email-form button[type=submit]:hover {
  background-color:#fff;
  color: #000;
  
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.stats .col-lg-3.col-md-6 { width: 20% !important; margin: 0 !important; } 
.plus-area { display: flex; width: 100%; text-align: center; justify-content: center; } 
.plus { line-height: 37px !important; } 
.tagline-area {background:#FFE182;height: 200px;padding: 0 !important;}
.inside-area { width: 1072px; margin: 0 auto; } 
.tagline1 { font-size: 70px; line-height: 65px; font-weight: 700; float: left; margin-right: 10px; margin-top: 5px; } 
.tagline2 { /*! font-size: 108px; */ float: left;margin-top: 7px; } 
.btm-text { font-size: 22px; letter-spacing:1px; } 
.lets-talk-btn { width: 153px; height: 153px; background: #000; display: table; border-radius: 260px; float: right; text-align: center;color: #fff;transition: background .5s ease;position:relative;    z-index: 1;} 
.lets-talk-btn a { color: #FFE182; font-size: 17px; line-height: 20px; font-weight: 700; margin-top: 42px; float: left; width: 100%; line-height: 17px; position: relative; z-index: 99; letter-spacing: 1px; } 
.ripple:before { display: block; content: ""; border: 8px solid #000; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50%; -webkit-animation-duration: 0.8s; animation-duration: 0.8s; animation-fill-mode: forwards; opacity: 0; } 
.ripple:hover { background: #000; } 
.ripple:hover:before { -webkit-animation-name: ripple-out; animation-name: ripple-out; } 
@keyframes ripple-out {
  0% {
    opacity: 1;
  }
  100% {
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    opacity: 0;
  }
}
.small-title { background: #FFCC29; width: auto; float: left; text-align: center; border-radius: 30px; font-size: 16px; padding: 6px 22px 8px 22px; font-weight: 600; line-height: 18px; } 
.text1 { font-size:34px; width: 100%; margin-top: 19px; clear: both; line-height: 50px; font-weight: 300; float: left; margin-bottom:20px;letter-spacing: 3px; } 
.imgarea { position: absolute; right: 0; width: 82%; height: 100%; float: right; } 
.imgarea img {position:absolute;right:0;top:0;width:100%;}
.imgarea img { width: auto; height: 100%; } 
.hover-navigation2 { float: left; width: 100%;display:none} 
.hover-navigation2 ul { margin: 0; padding: 0; } 
.hover-navigation2 li { list-style: none; margin-bottom: 7px; float: left; width: 100%; } 
.hover-navigation2 li:last-child { margin-bottom: 0 !important; } 
.services .col-lg-6 { position: relative;z-index: 1; } 
.technology {background:url(../images/tech-bg.jpg) no-repeat center top;background-size: cover;}
.tech-img img { width: 100%; }
.tech-text { width: 40%; } 
.tech-box { width: 100%; float: left;margin-top: 40px; } 
.tech-box ul { margin: 0; padding: 0; } 
.tech-box ul li {margin:0 0px 40px 0; padding: 0; list-style: none; width: 102px; float: left; height: 72px; } 
.tech-box ul li span { width: 100%; text-align: center; float: left; text-transform: capitalize; font-size: 15px;  margin-bottom: 11px; font-weight: 500; transition: 0.3s; } 
.tech-icon { height: 50px !important; } 
.tech-box ul li span img {transition: 0.3s;filter: grayscale(100%);}
.tech-box ul li:hover img {animation: rotate-vertical 1.1s ease-out;filter: grayscale(0);} 
@keyframes rotate-vertical {
	0% {
		transform: rotateY(0deg);
	}
	100% {
		transform: rotateY(360deg);
	}
}
.tech-box ul li.last { margin-right: 0 !important; } 
.industries .section-title, .countries .section-title, .about .section-title{ display: grid; } 
.industries .section-title .small-title{margin: 0 auto;} 
.countries .section-title .small-title {margin: 0 auto;} 
.about .section-title .small-title {margin: 0 auto;} 
.industries { background: #252525; } 
.industries .text1 { color:#fff; } 
.service-item .title { font-size: 16px; color: #fff; text-align: center; width: 100%; float: left; line-height: 18px; margin-bottom: 0; letter-spacing: 1px; font-weight: 500; } 
.service-item .icon { text-align: center; width: 100%; float: left; margin-bottom: 19px; } 
.service-item:hover img {animation: rotate-vertical 1.1s ease-out;} 
.in-box { margin: 0 0 80px 0; } 
.portfolio-count { color: #FFCC29; font-size: 120px; line-height: 120px; font-weight: 600; position: relative; width: 453px; letter-spacing: 1px; margin-top: 7px; float: right; }
/* .portfolio-count::after { background: url(../images/arrow.svg) no-repeat center top; background-size: auto; background-size: cover; content: ''; position: absolute; right: 0; top: 20px; width: 103px; height: 93px; }  */
.portfolio .text1 { font-size: 37px; } 
.portfolio-count span { color: #FFCC29; font-size: 120px; line-height: 120px; font-weight: 600;float: left; } 
.portfolio-text { font-size: 20px; font-weight: 600;width:453px;float:right; } 
.portfolio .container { padding: 0 30px; } 
.portfolio-count span.plus { line-height: 86px !important; margin-left: 2px; font-size: 150px; } 
.why { background:#ffe083; background-size: auto; background-size: cover;height:auto;padding-bottom:0}
.why .small-title { background: #000; color: #fff; }
/* .why-right {background: url(../images/why-img.png) no-repeat center top;} */
.why-right img { width: 100%; }
.why .text1 { font-size: 44px; }
.wrap-area { width: 100%; float: left;margin-top: 40px; } 
.wrap-area ul { margin: 0; padding: 0; } 
.wrap-area ul li { margin: 0 0px 40px 0; padding: 0; list-style: none; width: 33.3%; float: left; height: 72px; }
.wrap-area ul li span { width: auto; text-align: left; float: left; text-transform: none; font-size: 21px; margin-bottom: 11px; font-weight: 500; transition: 0.3s; line-height: 24px; } 
.wrap-area { height: auto !important;padding:0 60px; } 
span.wrap-icon  {margin-right: 21px;width: 71px !important; }
#why-choose-us .section-title .small-title {
  margin: 0 auto;
  float: none;
  display: table;
}
.popup-link{ display:flex; flex-wrap:wrap; }
.popup-link a{ background: #333; color: #fff; padding: 10px 30px; border-radius: 5px; font-size:17px; cursor:pointer; margin:20px; text-decoration:none; }
.popup-container { visibility: hidden; opacity: 0; transition: all 0.3s ease-in-out; transform: scale(1.3); position: fixed; z-index: 1; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(21, 17, 17, 0.61); display: flex; align-items: center; }
.popup-content {margin: auto; display: flex; padding: 0px; border:0; width: 1000px; position: relative; }
.popup-content .content { background-color:#fff; margin: auto; border:0; width: 1000px; position: relative;margin-top: 40px; }
.popup-content p { font-size: 16px; padding: 0px; line-height: 25px; } 
.popup-content p a {color:#000;text-decoration:underline; } 
.popup-content .close { top: 0; background: rgb(255, 204, 41); right: 0; position: absolute; width: 40px; height: 40px; text-align: center; color: #000; font-size: 38px !important; line-height: 25px; } 
.close { top: 0; background: rgb(255, 204, 41); right: 0; width: 40px; height: 40px; float:right;text-align: center; color: #000; font-size: 38px !important; line-height: 25px;border:0;position:relative;z-index:999;padding:0;margin:0; } 
.testimonials .text1 br { display: none; }
.popup-content a.close:hover{ color:#fff; }
.popup-content a.close:hover{ color:#fff; }
.popup-content span:hover, .popup-content span:focus { color: #000; text-decoration: none; cursor: pointer; }
.popup-container:target{ visibility: visible; opacity: 1; transform: scale(1);z-index: 999999;}
.popup-container h3{ margin:10px; }
.inside-left-heading {font-size: 26px; font-weight: 500; float: left; width: 100%; margin-bottom: 11px !important;} 
.inside-list.inside-list-100  { margin: 0px; padding:0px; } 
.inside-left-heading a { color: #000; text-decoration: underline; } 
.inside-list.inside-list-100 li { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee;list-style:none; } 
.inside-list.inside-list-100 li a {color: #000;text-decoration:underline } 
.inside-list.inside-list-100 li:last-child {border-bottom: 0;} 
form#project-enquire-form { padding:40px 30px 40px 30px; }
#project-enquire-form .select-style{margin-bottom:10px}
#project-enquire-form input, #project-enquire-form textarea, #project-enquire-form select { margin: 0 0 15px; width: 100%; border: 1px solid #000 !important; border-radius: 0 !important; padding: 8px 10px;border-radius: 5px !important;background:#fff !important }
.modal-title { margin: 10px 0 !important; line-height: var(--bs-modal-title-line-height); }
.popimg img { width: 100%; }
.popimg { width: 50%; float: left; }
.popform { width: 50%; float: left;}
.popimg { height: 565px; width: 50%; float: left; }
.left-why { padding-right: 0 !important; } 
.testimonials .col-lg-7.aos-init.aos-animate { width: 53%; } 
.col-lg-5.left-test { width: 31% !important;margin-left: 300px; } 
.testimonials .container .swiper-nav-wrapper { position: absolute; width: 138px; left:-590px; top: 72%; } 
.testimonials .container { height: 350px; } 
.testimonials .container .swiper-button-prev, .testimonials .container .swiper-button-next { background: #FFCC29; width: 64px; height: 64px; border-radius: 60px; opacity: 1 !important; color: #000 !important; box-shadow: 0px 2px 6px 0px rgba(74, 58, 255, 0.2);} 
.testimonials .col-lg-7.aos-init.aos-animate { width: 53%; position: absolute; left: 47%; } 
#testimonials { overflow: hidden; height: 601px;} 
.testimonials .container .swiper-button-prev::after, .testimonials .container .swiper-button-next::after {display:none !important}
.swiper-button-prev::after, .swiper-button-next::after {display:none !important}
#popup1 .content { padding: 0 !important; } 
.modal-dialog { max-width: var(--bs-modal-width); margin-right: auto; margin-left: auto; --bs-modal-width: 1000px; height: 500px !important; overflow-x:none; margin-top: 70px !important;background:none; } 
.modal-body {background:#fff;float:left;padding:0 !important}
.modal-body .content {padding:0}
.modal-body .close {float:right;cursor:pointer !important}
.modal-backdrop {z-index: 999999;}
.modal {z-index: 999999999;}
.span12 p a { text-decoration: underline !important; color: #434343 !important; } 
#project-enquire-form select { height: 44px !important; } 
.testimonials .container .swiper-button-next { left: 63%; } 
 
.call-to-action.call-to-action2 .container { width: 1167px; margin: 0 auto;} 
.call-to-action.call-to-action2 {background: #FFE182; } 
.call-text { font-size: 63px; font-weight: 700; line-height: 60px; } 
.call-text h2 { font-size: 38px; font-weight: 700; line-height: 44px; } 
.call-to-action.call-to-action2 { padding: 0; } 
.get-btn { font-size: 22px; clear: both; font-weight: 600; width: 195px; height: 50px; display: block; background: #000; color: #fff; border-radius: 50px; text-align: center; line-height: 49px; margin-top: 35px;} 
.get-btn:hover {color:#000;background:#fff !important}
.call-to-action.call-to-action2 { padding: 0; height: 261px; } 
.call-text h2 { float: left; margin:22px 0 13px 0; } 
/* #services { padding-bottom:190px; } */ 
.services .text1 { font-size: 37px; margin-bottom: 25px; line-height: 41px;width:100%; } 
.hero-header1 { background: url(../images/header1.jpg) no-repeat right top; background-size: auto; background-size: cover;}
.hero-header2 { background: url(../images/header2.jpg) no-repeat right top; background-size: auto; background-size: cover;}
.hero-header3 { background: url(../images/header3.jpg) no-repeat right top; background-size: auto; background-size: cover;}
.porfolio-slider1 { background: url(../images/porfolio-slider1.jpg) no-repeat center top; background-size: auto; background-size: cover;}
.porfolio-slider2 { background: url(../images/porfolio-slider2.jpg) no-repeat center top; background-size: auto; background-size: cover;}
.porfolio-slider3 { background: url(../images/porfolio-slider3.jpg) no-repeat center top; background-size: auto; background-size: cover;}
.porfolio-slider4 { background: url(../images/porfolio-slider4.jpg) no-repeat center top; background-size: auto; background-size: cover;}
.porfolio-slider5 { background: url(../images/porfolio-slider5.jpg) no-repeat center top; background-size: auto; background-size: cover;}
.porfolio-slider6 { background: url(../images/porfolio-slider6.jpg) no-repeat center top; background-size: auto; background-size: cover;}
.contact { background: url(../images/contact-bg.jpg) no-repeat right top; background-size: auto; background-size: cover;}
.contact .text1, .contact p { color: #fff !important; } 
.contact p { font-size: 28px; } 
.contact .col-lg-7.left-ser .text1 { letter-spacing: 1px; font-size: 49px; } 
.contact .col-lg-7.left-ser { width: 666px; } 
.copyright-section { font-size: 16px; color: #fff; margin-top: 16px; } 
.copyright-section a { color: #fff !important; } 
textarea.form-control { height: 95px; } 
form#project-enquire-form button { background: url(../images/btn-arrow2.svg) no-repeat 84px 20px #000; color: #fff !important; margin-top: 12px; border-radius: 20px; border: 0; padding: 20px 50px 20px 20px; } 
.btn1.trigger {
  color: #fff;
}
.container.about-area { width: 1270px; } 
.about { padding: 92px 0; } 
.arrow-right.mob-arrow { display: none; } 

.carousel-wrap { margin: 90px auto; padding: 0 5%; width: 80%; position: relative; } 
.owl-carousel .item { position: relative; z-index: 100; -webkit-backface-visibility: hidden; }
/* end fix */
.owl-nav > div { margin-top: -26px; position: absolute; top: 50%; color: #cdcbcd; } 
.owl-nav i { font-size: 52px; } 
.owl-nav .owl-prev { left: -30px; } 
.owl-nav .owl-next { right: -30px; } 
.bg { position: absolute; left: 345px; right: 1px; top: 22px; bottom: 1px; z-index: -1; background: url(../images/tech-content-img-mask.png) 0% 0% repeat; background-size: auto; background-size: auto; background-size: 100%; animation-name: MOVE-BG; animation-duration: 80s; animation-timing-function: linear; animation-iteration-count: infinite; width: 595px; height: 446px; z-index: 9; } 
section.about-home.inside-page .image-mask { margin: 0; } @keyframes MOVE-BG {
   0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -100vw;
  }
}
.alpha-target { width: 100%; } 
.bg {position: absolute; left: 27px; right: 1px; top: 17px; bottom: 1px; z-index: -1; background: url(../images/screen-tab.png ) 0% 0% repeat; background-size: auto; background-size: auto; background-size: 100%; animation-name: MOVE-BG; animation-duration: 50s; animation-timing-function: linear; animation-iteration-count: infinite; width: 506px; height: 381px; z-index: 9; border-radius: 8px;}   
section.about-home.inside-page .image-mask { margin: 0; } 
@keyframes MOVE-BG {
   0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 -100vw;
  }
}
/* .alpha-target {
    width: 100%;
}
 */
#popup2 h2 { margin-bottom: 20px !important; float: left; width: 100%; } 
.bg2 { position: absolute; left: 12px; right: 1px; top: 12px; bottom: 1px; z-index: -1; background: url(../images/screen-mobile.png) 0% 0% repeat; background-size: auto; background-size: 100%; animation-name: MOVE-BG; animation-duration: 90s; animation-timing-function: linear;animation-delay:20s; animation-iteration-count: infinite; width: 160px; height: 346px; z-index: 9; border-radius:8px; } 
.image-mask1, .image-mask { float: left; } 
.image-mask1 { position: absolute; right: initial; top: 325px; left: 76px;  z-index: 9999; } 
.col-lg-6.tech-img.text-center.aos-init.aos-animate { 		position: relative;  	} .image-mask.image-mask2 {position: relative;left: 224px;top: 131px;}
.image-mask.image-mask2 { position: relative; z-index: 99; }
.image-mask.image-mask4 { margin-left: 78px; position: relative;} 
#portfolio { padding-bottom: 25px; } 
.content{ padding:5%; } 
.popup-container.popup-container2 .popup-content .content { height: 500px; overflow-y: scroll; } 
.modal-dialog { max-width: var(--bs-modal-width); margin-right: auto; margin-left: auto; --bs-modal-width: 1000px; height: 500px !important; overflow-x:none; margin-top: 180px !important;background:none; } 
.modal-body {background:#fff;float:left;padding:0 !important}
.modal-body.modal-body2 { background: #fff; float: left; padding: 30px !important; overflow-y: scroll; height: 500px; overflow-x: hidden !important; } 
.modal-body .content {padding:0}
.modal-body .close {float:right;cursor:pointer}
.modal-footer { margin-top: -80px; border: 0; padding: 0; } 
.modal-content { padding-bottom: 0 !important; border-radius: 0 !important; } 
.about .text1 { line-height: 55px !important; } 
.modal.show .modal-dialog {margin-top: 130px !important;}
.thankyou-msg { width: 50%; text-align: left; padding: 150px 0 0 100px; font-size: 30px; line-height: 40px; font-weight: 500; } 
.testimonials .text1 { width: 89%; } 
.thank-container { padding: 60px 0; } 
.thank-container .container { display: flex;width: 1000px !important; } 
.social-section a.twit-logo {width:32px;height:32px;} 
.social-section a.twit-logo:hover {background: url(../images/twitter-icon-hover.svg) 0% 0% repeat; } 
.social-section .twit-logo:hover img { display: none; } 
.col-lg-7.right-ser {position:relative;}
.contact .php-email-form input[type="number"] { height: 50px; } 
.contact .php-email-form input[type="text"], .contact .php-email-form input[type="email"], .contact .php-email-form select { height: 50px !important; border: 0 !important; } 
#project-enquire-form input, #project-enquire-form select { height:42px !important;} 

.copyright-section.thankyou { color: #000; text-align: center; padding: 20px 0; border-top: 1px solid #E4E4E4; } 
.copyright-section.thankyou a { color: #000 !important; text-decoration: underline !important; } 
#why-choose-us .small-title.aos-init.aos-animate { margin: 0 auto; float: none; display: table; }
.call-text.call-img { text-align: center;padding-top:10px; } 


@media (max-width:1539px) {
.testimonial-slider .slick-prev, .testimonial-slider .slick-next { top: 66%; }	 
.col-lg-5.left-test { width: 38% !important; margin-left: 120px; }	
.testimonials .col-lg-7.aos-init.aos-animate { width: 55%; position: absolute; left: 45%; } 
.testimonials .container .swiper-nav-wrapper { left: -564px;top: 81%; } 
.tech-text { width: 45%; } 
.image-mask1 { top: 297px; left:37px;width: 25%;} 
.image-mask.image-mask2 { position: relative; left: 165px; top: 151px; width: 20%;} 
.image-mask.image-mask4 { margin-left:90px; width: 64%;margin-top: 80px;}  
  #testimonials { height: 701px; } 
.testimonial-item { height: 445px; } 
.bg { left: 20px !important; top: 13px; width: 91%; height: 325px; } 
.bg2 { width: 88%; left: 9px; height: 87%; top: 9px; border-radius: 12px; } 
#clickNav { left: 130px; } 
.imgarea2 img {width:50%}

}


@media (max-width:1440px) {
.testimonial-item { height: 475px; }	 
.testimonial-slider .slick-next { left:-480px !important; } 
.testimonial-slider .slick-prev { left: -560px !important; } 	
.col-lg-5.left-test { margin-left: 93px; } 
.testimonial-slider .slick-prev, .testimonial-slider .slick-next { top: 59%; } 
#testimonials { overflow: hidden; height: 695px; } 
.bg { left: 20px !important; top: 13px; width: 91%; height: 302px; } 
}

@media (max-width: 1366px) {
.text1 br {display:none} 	
#testimonials { overflow: hidden; height: 795px; }
.testimonial-slider .slick-prev, .testimonial-slider .slick-next { top: 44%; }
.testimonial-slider .slick-next { left: -380px !important; } 
.testimonial-slider .slick-prev { left: -470px !important; } 
.testimonial-item { height: 595px; }
.header2 .container .col-lg-6.text-right { padding-left: 25px; }
.navmenu li {padding: 10px 12px;}
.logo-text1 { font-size: 51px;text-align: left; } 
.logo-text2 {font-size: 20px;line-height: 24px;text-align: left;} 
.tech-box ul li {width: 95px;}
.text1 { font-size: 38px !important;}
.wrap-area ul li span {font-size: 17px;}
span.wrap-icon img { width: 86%; } 
.wrap-area {margin-top: 20px;}
.testimonials .col-lg-7.aos-init.aos-animate { width: 59%;left: 41%; } 
.testimonials .container .swiper-nav-wrapper { left: -460px; } 
.testimonial-item {padding: 30px !important; } 
.container.about-area .col-md-4 { width: 30%; } 
.container.about-area .col-md-8 { width: 70%; } 
.small-box { position: relative; width: 220px; }
.container.about-area .col-md-4 { width: 27%; } 
.container.about-area .col-md-4 img { width:100%; } 
.gray-box {width: 210px;padding: 19px 0px 19px 26px;}
.slick-prev { left: -460px !important; } 
.slick-next { left: -370px  !important; } 
.image-mask.image-mask4 { margin-left:100px; width: 62%;}
.bg { left: 17px; top: 11px; width: 91%; height: 280px; background-size: 100%; } 
.bg2 { left: 8px; width: 88%; height: 249px; z-index: 9; top: 8px; border-radius: 10px; } 
.image-mask.image-mask2 { width: 20%; } 
}

@media (max-width: 1280px) {
#testimonials { overflow: hidden; height: 805px; }
.col-lg-7.slider1 { width: 56% !important; float: right !important; }
.testimonial-slider .slick-next { left:-390px !important; } 
.testimonial-slider .slick-prev { left:-480px !important; } 	
.col-lg-5.left-test { width: 38% !important; margin-left: 60px; }	
.tech-box ul li { width: 89px; }
.tech-box ul li span {font-size: 13px;}
.portfolio-count span {font-size: 107px;}
.portfolio-count {width:510px;}
.portfolio .text1 { font-size: 42px !important; } 
.call-to-action.call-to-action2 .col-lg-7.col-xs-12.col-md-6.call-text { width:50% !important; } 
.call-to-action.call-to-action2 .call-text { font-size: 48px; } 
.container.about-area { width: 100%; } 
.image-mask1 { position: absolute; right: initial; top: 285px; left: 50px; z-index: 9999; width: 25%;} 
.image-mask.image-mask4 { margin-left:100px; width: 62%;}
.bg { left: 17px !important; top: 11px; width: 91%; height: 260px; background-size: 100%; } 
.bg2 { left: 8px; width: 107px; height: 235px; z-index: 9; top: 6px; border-radius: 10px; } 
.image-mask.image-mask2 { width: 20%; } 
.hover-navigation li { list-style: none; margin-bottom: 8px; } 
.hover-navigation li a { font-size: 23px;} 
.slick-prev, .slick-next {top: 45% !important}
.text1 { font-size: 31px !important; } }

@media (max-width:1024px) {
.testimonial-slider .slick-prev, .testimonial-slider .slick-next { top: 64% !important;}	
.testimonial-item { height: auto; }	
.countries img { width: 100% !important; }
.why {height:auto}	
.wrap-area ul li.last { margin-bottom: 0 !important; }	
span.wrap-text br { display: none; }	
span.wrap-text { width:64% !important; font-size: 14px !important; }	
.header .justify-content-between.p-0 {justify-content: right !important;}
.social-section {padding-left: 0;border: 0 !important;}
.header .btn-getstarted { order: 2; margin:0 15px 0 15px; padding:6px 15px; }
.logo-text1 { font-size: 48px;line-height: 55px;} 
.logo-text1 { font-size: 27px;} 
.logo-text2 {font-size: 15px;} 
.inside-area { width: 100%; } 
.tagline1 { font-size: 59px; line-height: 70px; } 
.btm-text { font-size: 12px; letter-spacing: 1px; } 
.tagline2 .border-text img { width: 100%; } 
.tagline2 { width: 41%; } 
.text1 { font-size: 33px !important; line-height: 43px; font-weight: 300; } 
.hover-navigation li a {line-height: 15px;font-size:19px;} 
.hover-navigation li { margin-bottom: 14px; } 
.tech-text { width: 50%; } 
.portfolio-count span { font-size: 90px; } 
.portfolio-count span.plus { font-size: 119px; } 
.portfolio-count { width: 446px; } 
.portfolio-count::after {background-size: 80%;}
.portfolio .text1 { font-size: 36px !important; } 
.wrap-area ul li {margin: 0 0px 12px 0;}
.testimonials .container .swiper-nav-wrapper { left: -417px;  z-index: 1;} 
.call-text { font-size: 43px; } 
.call-text h2 { font-size: 36px; line-height: 33px; margin: 24px 0 !important; } 
.call-to-action.call-to-action2 .col-lg-4.call-text img { width: 100% !important; } 
.call-to-action.call-to-action2 { padding: 0; height: 187px; } 
.call-to-action.call-to-action2 .container { width: 100% !important; margin: 0 auto; } 
.small-box { position: relative; width: 190px; } 
.slick-prev { left: -330px !important; } 
.slick-next { left: -412px  !important; }
.bg { left: 11px; top: 7px;} 
.bg2 {width: 84px; height: 185px;} 
.image-mask.image-mask2 { width: 20%; }  
.image-mask.image-mask4 { margin-left: 100px; width: 52%; } 
.text1 br {display:none}
.testimonial-slider .slick-next { left:-300px !important; } 
.testimonial-slider .slick-prev { left:-390px !important; } 
}


@media (max-width:991px) {
.imgarea2 img { width: 100%; }
.testimonial-slide { padding: 0 !important; } 	
.col-lg-5.left-test { width: 100% !important; margin-left: 0px; }	
.col-lg-7.slider1 { width: 100% !important; margin-left: 0px; }		
.clients ul li { width: 13%; }
.stats .stats-item span { font-size: 33px; } 
.stats .stats-item h2 { line-height: 15px; margin-top: 10px;font-size: 13px;margin-top: 6px; } 
.tagline1 { font-size: 40px; line-height: 48px; } 
.tagline2 { width:40%; } 
.lets-talk-btn { width: 120px; height: 120px; } 
.lets-talk-btn a {margin-top: 29px;}
.tagline-area { height: 170px; }
.imgarea { position: static; margin-top: 30px;width: 100%;} 
.imgarea img { position: static; width: 100% !important; } 
.tech-text { width:100%; } 
.tech-box ul li { width:16%; } 
.portfolio-count span { font-size: 65px; line-height: 75px;margin-top: 35px; } 
.portfolio-count span.plus { font-size: 65px; line-height: 65px !important; } 
.portfolio-count { width: 96%; } 
.portfolio-count::after { background-size: 60%;top: 50px; } 
.portfolio .text1 { font-size: 25px !important; line-height: 31px; } 
.why-right { margin-top: 0px; text-align: center;display:none; }
.wrap-area ul li { margin: 0 0px 0 0; }
span.wrap-text { width: 54% !important; font-size: 15px !important; } 
.text1 br {display:none}
.wrap-area { height: auto !important; }
.wrap-area ul li { margin: 0 0px 0 0; width: 50% !important; }
.popup-content {width: 90%;}
.testimonials .col-lg-7.aos-init.aos-animate { width: 100%; left: 0;top: 330px; } 
#testimonials { position: relative; } 
.testimonials .container { height: 650px; } 
.testimonials .container .swiper-nav-wrapper { left: 0; top: -50px; } 
.container.about-area .col-md-8 { width: 97%; padding-left: 4%; } 
.about { padding: 60px 0; } 
.bg { left: 252px; top: 11px; width: 54%; height: 260px; background-size: 100%;} 
.bg2 { left: 8px; width: 107px; height: 235px; z-index: 9; top: 6px; border-radius: 10px; } 
.image-mask.image-mask2 { width: 20%; } 
.hover-navigation li { margin-bottom: 7px; width: 50%; text-align: left; } 
.hover-navigation li a { width: auto; } 
.thank-container .container { display: flex;width: 100% !important; } 
}


@media (max-width:767px) {
.hover-navigation2 li a { width: 100%; display: flex; flex-wrap: nowrap; align-items: center; color: #000 !important; }	 	
.logo-section { top: 80px; width:15%; left: 20px; }
.logo-section .logo { width: 100% !important; }
#project-enquire-form input, #project-enquire-form select { height: 40px !important; }
.testimonial__inner .testimonial-slider .slick-prev { left: 84px !important; }	 
.testimonial__inner .testimonial-slider .slick-next { left: 163px !important; }	 
.thankyou-msg { padding: 80px 20px !important; font-size: 25px !important; width: 100%; text-align: center; padding: 50px 50px 0px !important; }
.thank-img, .thankyou-msg { width: 100%; text-align: center; }
.thank-container .container { display: inline;width: 100% !important; } 	
.testimonial-slider .slick-prev::before {background: url(../images/left-arrow.svg) no-repeat left top; left: 12px; top: 14px; background-size: 85%; }	
.testimonial-slider .slick-next::before {background: url(../images/right-arrow.svg) no-repeat left top; left: 12px; top: 14px; background-size: 85%; }	
.testimonial_box-inner { padding:10px !important; }	 
#services {padding-bottom:70px !important}	
.services .text1 { font-size: 22px !important; margin-bottom: 25px; line-height: 29px; width: 100%; text-align: center !important;} 
.thankyou-msg { padding:30px 20px 0 20px !important; }
.thank-img .logo { width: 70% !important; } 
.testimonials .container-fluid { padding: 0 30px !important; }
.testimonial-slider .slick-prev, .testimonial-slider .slick-next  { left:0 !important;top: auto !important;z-index: 9999;bottom: 0 !important;bottom: -100px !important;width:45px !important;height:45px !important;} 	
.testimonial-slider .slick-next { left: 90px !important; } 
.navmenu li {border-bottom: 1px solid #353535;}
.testimonial-slide { padding: 0 !important; margin-top:0px; } 
.modal-dialog {padding:0 10px;margin-top:150px !important;}		
.modal-content1 {padding:0 20px;}	
.popup-container.popup-container2 .popup-content .content {
  height: 430px;
  overflow-y: scroll;
}		
.popup-container.popup-container2 .popup-content .content {
  height: 430px;
  overflow-y: scroll;
}	
.row {
  --bs-gutter-x:0rem;
}  
.stats .stats-item {
  padding:0px;
}  
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 2.5rem;
}  
.stats .stats-item h2 {margin-top:0 !important}	
.header2 .container .col-lg-5.text-right { padding-left: 25px !important; } 
.hover-navigation li a { line-height: 13px; font-size: 16px; }	 
.navmenu a, .navmenu a:focus {padding:0 !important;color:#fff}	
.header {z-index: 999999;}	
#navmenu  {
  background: #151718;
  width: 290px;
  height: 100vh;
  display: block;
  position: absolute;
  left: -290px;
  top: 0px;
  transition: left 0.3s linear;
  z-index:9999;
	display: none;
}

#navmenu.visible {
  left: 0px;
  transition: left 0.3s linear;
}

.mobile-nav-toggle {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 15px;
  cursor: pointer;
  margin: 20px;
  position: absolute;
  top: 0px;
  right: -60px;
}

.mobile-nav-toggle span {
  height: 1px;
  background: #111;
  margin-bottom: 5px;
  display: block;
}

.mobile-nav-toggle span:nth-child(2) {
  width: 75%;
}

.mobile-nav-toggle span:nth-child(3) {
  width: 50%;
}
.tech-box ul li.last {
  margin-right: 0 !important;
  margin-bottom: 0 !important;
}
.industries { padding-top: 60px !important; }
#project-enquire-form input, #project-enquire-form textarea, #project-enquire-form select {margin: 0 0 5px;}	
.about p br { display: none; }
.about p { font-size: 16px; margin-bottom: 20px; } 
.call-text h2 { width: 100%;}
.get-btn { line-height: 36px;} 
.contact { background-size: 100% !important; background-color: #000 !important; padding-top: 220px;padding-bottom: 80px !important; }
.contact p { font-size: 19px; }	 
span.wrap-icon { width: 14% !important; margin-right: 23px; }	
span.wrap-text { width: 60% !important; margin-top: 10px; }	
.text1 { font-size: 25px !important; line-height: 26px; float: left;width: 100% !important;}
.technology p br { display: none; }
.tech-box { margin-top: 13px; }
.tech-icon img { max-height: 31px; }
.tech-box ul li { width: 33%; margin-bottom: 31px; height: 59px; } 
.tech-icon { height: 30px !important; } 
.header2 .container { text-align: center;}
.logo { width: 150px; } 
.logo-text1 { font-size: 15px; line-height: 21px; margin-bottom: 4px; } 
.logo-text2 { font-size: 12px; line-height: 15px;padding:0px; } 
.stats { height: auto;padding-bottom: 0 !important;padding-top: 0 !important; }
.stats .col-lg-3.col-md-6 { width:20% !important;padding: 0 0 10px 0;} 
.stats .stats-item span { font-size: 19px; font-weight: 700; line-height: 32px !important; } 
.stats .stats-item h2 { font-size: 11px;line-height: 13px; } 
.tagline-area { height: auto;padding-bottom: 20px !important } 
.tagline2 { width: 51%; margin-top: 10px; } 
.tagline1 { font-size: 26px; line-height: 25px; margin: 0; width: 50%; text-align: left; } 
.lets-talk-btn { margin-top:-53px; } 
span.border-text { line-height: 40px; } 
.in-box { margin: 0 0 27px 0 !important; width: 24%; height:auto; } 
.text1 br {display:none;}
.call-to-action h2 {font-size: 15px;}
.call-to-action h2 a {font-size: 15px;width:100%}
.portfolio-count { width:100%;margin: 0 !important; } 
.portfolio-text {margin-bottom: 30px;width: 100%;float: left;}
.portfolio-count span {margin-top: 0 !important;}
.portfolio-count::after {top: 10px;}
.portfolio .container { --bs-gutter-x: 1.5rem;padding: 0 20px !important;} 
section, .section { padding:50px 0 50px 0 !important; } 
.in-box.last { margin-bottom: 0 !important; } 
.popimg {display: none;}
.popform { width:100%; }
.why-right img { width: 50%; } 
.testimonials .testimonial-item { margin:0px; height: auto; } 
.get-btn { font-size: 17px; width: 135px; height: 40px; border-radius: 50px; line-height: 31px; } 
.call-to-action {padding: 25px 0 !important;}
.contact .col-lg-7.left-ser .text1 { letter-spacing: 1px; font-size: 23px !important; } 
.last.last2 img {
  width: 100%;
}
}

@media (max-width:480px) {
.call-to-action.call-to-action2 .col-lg-7.col-xs-12.col-md-6.call-text { width:50% !important; }	 
.thank-container { padding: 60px 0 0 0; }
.thankyou-msg p { line-height: 32px; }	 
.thank-container { padding: 0; }
.thank-you-area .logo-section { width: 100%; margin: 0 auto 20px auto; } 
.thank-you-area .logo-section .logo.aos-init.aos-animate { width: 33% !important; }  
.ser-icon:nth-child(1) { width: 34%; }
.ser-icon:nth-child(2) { width: 75%; } 
.ser-icon img { width:100%; }
.logo-text2 br { display: none; }
.services .container.section-title { padding-bottom: 20px; }	
.hover-navigation2 li { margin-bottom: 17px; border: 1px solid #eee; padding: 11px; border-radius: 4px; display: inline-flex; align-items: center; }	 	 
.ser-icon { margin-right:0px; }
.imgarea2 {display:none}
.hover-navigation2 { display: block !important; } 
.icon-img { right: -30px; }	 
.gray-box { width: 230px; padding: 19px 0px 19px 26px; }
.lets-talk-btn a { font-size: 13px;line-height:13px }
.about .text1 { line-height:26px !important; }	 
.testimonials .col-lg-7.aos-init.aos-animate { top: 220px;padding: 0 30px !important; }
.technology {padding-top:0 !important}	
#countries-we-serve .container.section-title { padding-bottom: 0 !important; }
.why { padding-bottom: 15px !important; float: left; width: 100%; margin-bottom: 50px; } 
#why-choose-us .container.section-title { float: left; width: 100%; padding-bottom: 0 !important; } 
.wrap-area { height: auto !important; width: 89%; margin: 0 auto; float: none;padding: 10px !important; } 
.wrap-area ul li span { line-height: 19px !important; }
.wrap-area ul li { margin: 0 0px 0 0; width: 100% !important; }	 
span.wrap-icon { width: 17% !important; margin-right: 23px; } 
span.wrap-text { width: 74% !important; margin-top: 0; } 
.clients ul { display: inline; } 
.client-logo { text-align: center; } 
.clients ul li { width: 49%; margin-bottom: 0; display: inline-table; } 
.in-box { margin:0 0 27px 0 !important; width: 50%; }
.call-to-action.call-to-action2 { padding: 0 !important; height: auto; } 
.call-to-action.call-to-action2 .call-text { font-size: 43px; height: auto !important; width:50%; }  
 .call-to-action.call-to-action2 .call-text img { width:25%} 
.call-to-action.call-to-action2 .container { width: 100% !important; margin: 0 auto; } 
.container.about-area .col-md-4 { width: 48%; margin: 0 auto 40px; } 
.container.about-area .col-md-8 { width: 71%; padding-left: 0; margin: 0 auto; } 
.arrow-right { float: left; margin-left: 40px; margin-top: 0; transform: rotate(90deg) !important; height: 70px; } 
.down-arrow.mob-none { display: none; } 
.arrow-right.mob-arrow { display: block; } 
.call-text h2 {font-size: 14px; line-height: 18px; margin: 17px 0 13px 0 !important;} 
.call-text h2 br { display: none; } 
.get-btn { font-size: 14px; height: 32px; } 
.hero-slider .swiper-button-prev::before {left: 9px !important;top: 12px !important;}
.hero-slider .swiper-button-next::before {left: 9px !important;top: 12px !important;}
.tagline1 { font-size: 29px; line-height: 28px; } 
.technology .col-lg-6.tech-img { margin-bottom:60px; } 
.image-mask1 {top: 215px; left: 10px; z-index: 9999; width: 25%; } 
.image-mask.image-mask2 { width: 20%; left: 82px; top: 131px; } 
.image-mask.image-mask4 { margin-left: 30px; width: 66%; } 
.bg { left: 11px !important; top: 7px; width: 91%; height: 168px; } 
.bg2 { left: 4px; width: 87%; height: 141px; z-index: 9; top: 4px; }  
.clients { padding-top: 0 !important;padding-bottom: 20px !important; } 
#testimonials { height: 960px !important; } 
.hover-navigation li a { font-size: 14px !important; }
.btm-text { font-size: 13px; letter-spacing: 1px; float: left; line-height: 17px; } 
.small-box {width: 210px; } 
.modal.show .modal-dialog { margin-top: 100px !important; } 
#project-enquire-form input, #project-enquire-form textarea, #project-enquire-form select {padding: 5px 10px !important;}
textarea.form-control { height: 91px; } 
form#project-enquire-form { padding:40px 18px 40px 18px; } 
#testimonials .text1 { width: 100% !important; } 
.client-logo.first img { width: 85%; } 
#project-enquire-form input, #project-enquire-form textarea, #project-enquire-form select {padding: 5px 10px !important;}
.text-right { margin-top: 51px; margin-left: 0; } 
.logo-text1 { font-size: 12px; line-height: 14px; padding-right: 20px !important; } 	
.logo-text2 { font-size: 10px; line-height: 13px; padding: 0px;width: 32%; } 
}



@media (max-width:375px) {
.bg2 { width: 58px; height: 127px;border-radius: 6px; } 
.bg { width: 90%; height: 150px; border-radius: 5px; } 
#testimonials { height: 910px !important; } 
.call-text h2 { font-size: 15px; line-height: 18px; margin: 20px 0 9px 0 !important; }   
}

@media (max-width:360px) {
.bg2 { width: 88%; height: 121px; border-radius:-2px; } 
.bg { width: 91%; height: 142px; border-radius: 3px; left: 10px !important; } 
}