
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');
/*Default-style
======================================================*/
body {
  color: #555555;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

img {
  max-width: 100%;
}
.select-box {
  display: flex;
  width: 100%;
  flex-direction: column;
}
section{
  overflow: hidden;
}
.select-box .options-container {
  background: #fff;
  color: #000;
  max-height: 0;
  width:180px;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  position: fixed;
  order: 1;
  margin-top: 50px;
}
.option label img{
  max-width: 30px;
}

.selected {
  background: none;
  border-radius: 4px;
  margin-bottom: 8px;
  color: #000;
  position: relative;
  order: 0;
  border: 1px solid #dadada;
}

.selected::after {
  content: "";
  background: url("../images/arrow-down.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  color: red;
  height: 100%;
  width: 20px;
  right: 10px;
  top: 12px;
  transition: all 0.4s;
}

.select-box .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.select-box .options-container.active + .selected::after {
  transform: rotateX(180deg);
  top: -12px;
}

.select-box .options-container::-webkit-scrollbar {
  width: 1px;
  background: #fff;
  border-radius: 0 8px 8px 0;
}

.select-box .options-container::-webkit-scrollbar-thumb {
  background: #525861;
  border-radius: 0 8px 8px 0;
}
.select-box .option,
.selected {
  padding: 11px 24px;
  cursor: pointer;
}

.select-box .option:hover {
  background: #f0f0f0;
}

.select-box label {
  cursor: pointer;
}

.select-box .option .radio {
  display: none;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.mr-20 {
  margin-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.mlr-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mlrt-5 {
  margin-right: 5px;
  margin-left: 5px;
  margin-top: 5px;
}

h1, h2, h3, h4, h5, h6 {
  color: #19191b;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #555555;
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

.owl-nav {
  margin-top: 0 !important;
}

.owl-dots {
  margin-top: 0 !important;
}


.form-control {
  height: 46px;
  border: 1px solid #e6e6e6;
  padding-left: 15px;
}


.form-control:focus {
  border: 1px solid #0797ff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

textarea {
  height: auto !important;
}

button {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

/*Section-title
======================================================*/

.app-banner-content h1 {
  font-size: 50px;
}



textarea::placeholder{
  font-size: 14px;
}
input::placeholder{
  font-size:13px;
}
.exchange-section-title {
  text-align: center;
  position: relative;
  margin: -5px auto 40px auto;
}



/*Navbar-style
======================================================*/
.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 7px 0;
  height: auto;
}
.navbar-brand {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.navbar .navbar-brand img{
  width:130px;
}
.navbar-brand a.main-logo{
  width: 200px;
}
.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 7px 0;
  z-index: 999;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 18px 1px rgba(0, 0, 0, 0.1);
  background-color: #ffffff !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar .container-fluid {
  max-width: 1690px;
  padding-left: 30px;
  padding-right: 30px;
}

.navbar{
  /* background-color: #fff; */
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}



.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  overflow: hidden;
  background: #19191b;
}

.preloader .loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  margin: -80px 0 0 -75px;
  border-radius: 50%;
  border: 7px solid transparent;
  border-top-color: #0797ff;
  -webkit-animation: spin 1.7s linear infinite;
          animation: spin 1.7s linear infinite;
  z-index: 11;
}

.preloader .loader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 7px solid transparent;
  border-top-color: #ffffff;
  -webkit-animation: spin-reverse .6s linear infinite;
          animation: spin-reverse .6s linear infinite;
}

.preloader .loader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 7px solid transparent;
  border-top-color: #0797ff;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes spin-reverse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}


@media only screen and (max-width:1280px){
  app-banner-content img {
    transform: scaleX(-1);
    width: 36%;
    margin-top: -72px;
}
.app-banner-area {
  height: 122vh !important;
}
}
@media (max-width: 1680px) {
  .single-approach-box.overly-one {
    height: 330px;
    border-radius: 5px;
}
}
@media (min-width:1920px){
  .app-banner-area{
    height: auto !important;
  }
  .app-banner-content {
    margin-top: 44px !important;
}
}
.app-banner-area {
  background-image: url(../images/png.webp);
  background-color: #F9FAFC;
  background-size: cover;
  background-position: center;
  height: 110vh;
  position: relative;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.slider-shape{
  position: absolute;
  top: 0;
  right: 0;
}
.slider-shape img{
  border: 0;
    max-width: 100%;
    height: auto;
}

.app-banner-area .container-fluid {
  max-width: 1540px;
  padding-left: 30px;
  padding-right: 30px;
}

.app-banner-content {
  margin-bottom: -57px;
}
.app-banner-content img{
  transform: scaleX(-1);
  width: 36%;
}

.app-banner-content span {
  color: #f4732a;
  margin-bottom: 15px;
  display: inline-block;
}
.netsuite-content.text-center {
  width: 80%;
  margin: 0 auto;
}
.netsuite-content.text-center img{
  width: 75%;
}
.app-banner-content h1 {
  font-family: 'Poppins', sans-serif;
  color: #0569C2;
  font-size: 32px !important;
  line-height: 48px !important;
  margin-bottom: 20px;
}
img.main-logo{
  width: 180px !important;
}
.app-banner-content {
  margin-top: 109px;
}
.app-banner-content p {
  color: #303030;
  margin-bottom: 30px;
}

.app-banner-content .download-links ul {
  padding-left: 0;
  margin-bottom: 0;
}

.app-banner-content .download-links ul li {
  display: inline-block;
  margin-right: 15px;
}

.app-banner-content .download-links ul li img {
  border-radius: 12px;
}
.form_slider {
  background: #fff;
    padding: 40px;
    border-radius: 5px;
    border-top: 5px solid #02253D;
    margin-top:86px;
    box-shadow: 0 0 20px 3px rgb(0 0 0 / 5%);
    position: relative;
}
input#exampleInputName1 {
  margin-bottom: 20px;
  padding: 10px;
}
#design{
  background-image: url(../images/main-1.webp);
  background-repeat: no-repeat;
  background-position: center;
}
input#exampleInputEmail1{
  margin-bottom: 20px;
  padding: 10px;
}
input#exampleInputText{
  margin-bottom: 20px;
  padding: 10px;
}
input#PhoneNumber{
  margin-bottom: 20px;
  padding: 10px;

}

#hero .btn-get-started:hover {
  background: transparent;
  border-color: #fff;
}
button.btn.form_btn{
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  width: 100%;
  margin-top: 30px;
  color: #fff;
  background: #1e1e1e;
  /* border: 2px solid #E32525; */
}
button.btn.form_btn:hover{
  background-color: #F4732A;
}
@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 58px;
    height: auto;
  }
  .full-width-slide .full-widthimg {
    width: 100%;
    margin: 0 auto;
    height: 38vh;
}

  #hero h1 {
    font-size: 28px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  .slider_content {
    padding: 40px 0;
}
section#expertise h1 {
  font-size: 27px;
}
p.main_p {
  font-size: 20px !important;
}
.about .content {
  padding: 0 !important;
}
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/* custom css here */
.slider_btn a.btn-slider{
  padding: 17px;
  background: #E32525;
  border-radius: 5px;
  color: #fff;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.mobile-development-two{
  padding: 60px 0;
}
.mobile-development-two h1{
  font-size: 32px;
  color: #252b33;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -.5px;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}
.row.back.align-items-center {
  /* background: white;
  padding: 20px; */
  /* box-shadow: 0px 2px 13px 1px #e6e6e6; */
}

.about-page-clients .about_title h1{
  font-size: 32px;
  color: #252b33;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -.5px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.about-page-clients marquee{
  max-width: 180%;
  animation: marquee 2s linear infinite;
}
.clients .clients-wrap {
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  display: flex;
}
section#clients {
  padding: 60px 0;
  /* display: none; */
}
.about-page-clients .client-logo img {
  width: 182px;
  margin-top: 23px;
  border: 1px solid gainsboro;
}

.clients .client-logo {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  background: #fff;
  height: 120px;
}

.clients .client-logo img {
  /* height: 50%; */
  /* filter: grayscale(100%); */
  transition: 0.3s;
}

.clients .client-logo:hover img {
  filter: none;
  transform: scale(1.2);
}

.clients img {
  transition: all 0.4s ease-in-out;
}

/* about-one */
section.about-one{
  background-color: #FBFDFE;
  padding: 60px 0;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  background: url("../images/cinntra.webp") top center;
  background-size: cover;
  position: relative;
  padding: 120px 0;
  z-index: 3;
}

@media (min-width: 1034px) {
  .hero:after {
    position: absolute;
    content: "";
    width: 50%;
    background:#00A29A;
    top: 0;
    bottom: 0;
  }
}

.hero:before {
  position: absolute;
  content: "";
  background: rgba(27, 47, 69, 0.2);
  inset: 0;
}

@media (max-width: 1034px) {
  .hero:before {
    background: rgba(27, 47, 69, 0.7);
  }
}

.hero .container {
  z-index: 1;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.hero blockquote p{
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}
.hero blockquote {
  color: #fff;
  padding-left: 20px;
  font-size: 15px;
  font-family: var(--font-default);
  border-left: 2px solid #fff;
  margin: 40px 0;
}
#hero-one li{
  list-style-type: none;
  margin-top: 10px;
}
#hero-one li i{
  color: #fff6e6;
}
#hero-one li a {
  color: #fff;
  padding: 20px;
  font-weight: 300;
  /* margin-top: 10px; */
}

.hero .btn-get-started:hover {
  background: rgba(86, 184, 230, 0.8);
}




@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
    line-height: 1;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}


.serviceBox{
  font-family: 'K2D', sans-serif;
  text-align: center;
  padding: 20px 15px 60px;
}
.serviceBox .service-icon i{
  font-size: 39px;
}
.serviceBox .service-icon{
  color: #00A29A;
  background-color: #fff;
  font-size: 50px;
  height: 80px;
  width: 80px;
  margin: 0 auto 40px;
  border-radius: 50%;
  border: 2px solid #00A29A;
  display: block;
  transition: all 0.3s;
}

.serviceBox .title{
  color: #303030;
  font-size: 16px;
  font-weight: 400;
  padding: 0 10px;
  margin-bottom: 15px;
  transition: all 0.3s;
}
.serviceBox:hover .title{ color:#00A29A; }
.serviceBox .description{
  font-size: 15px;
  text-align: center;
  line-height: 27px;
  margin-bottom: 20px;
}
erviceBox:hover .read-more{
  box-shadow: 0 0 10px #fff inset;
  transform: rotateX(0);
}
.serviceBox .read-more:hover{
  letter-spacing: 2px;
  text-shadow: 0 0 5px #000;
  text-decoration: none;
}
.serviceBox.blue .service-icon{
  color: #00A29A;
  border-color: #00A29A;
}

.serviceBox.blue:hover .title{ color: #E32525; }
.serviceBox.blue .read-more{ background: #E32525; }
.serviceBox.orange .service-icon{
  color: #FF8214;
  border-color: #FF8214;
}

.serviceBox.orange:hover .title{ color: #FF8214; }
.serviceBox.orange .read-more{ background: #FF8214; }
.serviceBox.green .service-icon{
  color: #8FB900;
  border-color: #8FB900;
}

.serviceBox.green:hover .title{ color: #E32525; }
.serviceBox.green .read-more{ background: #E32525; }
@media only screen and (max-width:990px){
  .serviceBox{ margin: 0 0 50px; }
}


@media only screen and (max-width:767.99px){
  .form_slider {
    padding: 14px;
}
.app-banner-area .app-banner-shape-3 {
  display: none;
}
.app-banner-area .app-banner-shape-1 {
  display: none;
}
.design-text-main {
  display: block;
}

a.app-default-btn.btn{
  margin-top: 28px;
}
.about .icon-boxes .icon-box h4 {
  font-size: 16px;
  padding: 12px 0px 14px 2px;
}
section#clients {
  padding: 60px 0;
  display:block;
}
.row.align-items-center {
  flex-direction: column-reverse;
}
.app-banner-area {
  height: auto !important;
}
.app-banner-content {
  margin-top: 24px;
}
.app-banner-content img {
  display: none;
}
.mobile-development-five .section-title h2 {
  font-size: 28px;
  text-align: left;
  line-height: 41px;
}
.mobile-development-five .section-title p {
  padding-bottom: 50px;
  text-align: left;
}
.cinntra-expertise .cinntra-contant h1 {
  padding-bottom: 0px;
  font-size: 28px;
}
.single-approach-box.overly-one{
  width: auto !important;
}
.col-lg-6.side-bg {
  padding: 70px 30px !important;
}
.col-lg-6.full-dg {
  padding: 205px 0 !important;
}
.mobile-development-five {

  padding:0 !important;
}
}

section.all-clients {
  padding: 90px 0;
}

.owl-carousel .owl-item img {
  display: block;
  width: 65% !important;
  line-height: 35px;
  text-align: center;
  margin-top: 12px;
  margin-left: 14px;
}

.footer-one{
  background-color: #1B2F45;
  padding: 35px 0;
}
.footer-one h3 {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
}



.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  padding: 40px;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.5);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0,0,0,.6);
  border-radius: 10px;
}

.login-box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #fff;
  text-align: center;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #03e9f4;
  font-size: 12px;
}

.login-box form a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #03e9f4;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px
}

.login-box a:hover {
  background: #03e9f4;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #03e9f4,
              0 0 25px #03e9f4,
              0 0 50px #03e9f4,
              0 0 100px #03e9f4;
}

.login-box a span {
  position: absolute;
  display: block;
}

.login-box a span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03e9f4);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

.login-box a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

.login-box a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

.login-box a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}



.form_slider form a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #03e9f4;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px
}

.form_slider a:hover {
  background: #03e9f4;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #03e9f4,
              0 0 25px #03e9f4,
              0 0 50px #03e9f4,
              0 0 100px #03e9f4;
}

.form_slider a span {
  position: absolute;
  display: block;
}

.form_slider a span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03e9f4);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

.form_slider a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

.form_slider a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

.form_slider a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}

section#netsuite-one {
  /* background-image: url(../images/new1.png);
  background-size: cover;
  background-repeat: no-repeat; */
    padding: 60px 0px;
}
#netsuite-one .netsuite-content h2{
  margin-top: 50px;
}
section#netsuite-two {
  padding: 80px 0;
  background-image: url(../images/main-1.webp);
  background-repeat: no-repeat;
  background-position: ;
}
.netsuite-two .netsuite-one-content h1{
  font-weight: 700;
  font-size: 33px;
  margin-bottom: 30px;
}

.mobile-development-five {
  overflow: hidden;
  position: relative;
  background-color: #FCEDDC;
  padding: 20px 23px;
}
.mobile-development-five .section-title h2{
  padding-bottom: 20px;
  font-size: 32px;
  color: #252b33;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -.5px;
  font-family: poppins,sans-serif;
}
.mobile-development-five .section-title p{
  padding-bottom: 50px;
}
.mobile-development-five .single-approach-box {
  position: relative;
  margin-bottom: 30px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  margin-top: 40px;
  z-index: 1;
}

.mobile-development-five .single-approach-box .icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background-color: #00A29A;
  border-radius: 50%;
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
}
.mobile-development-five .single-approach-box .icon img{
  width: 45px;
}

.mobile-development-five .single-approach-box .icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border: 1px solid #00A29A;
  border-radius: 50%;
}
.mobile-development-five .single-approach-box h3 {
  margin-bottom: 12px;
  margin-top: 35px;
  font-size: 20px;
  font-family: poppins,sans-serif;
}

.mobile-development-five .single-approach-box p {
  margin-bottom: 0;
  font-size: 15px;
}

.mobile-development-five .single-approach-box .approach-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: .7;
  z-index: -1;
}

.mobile-development-five .single-approach-box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.mobile-development-five .single-approach-box .approach-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: .7;
  z-index: -1;
}

.mobile-development-five .single-approach-box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}


.mobile-development-five .single-approach-box.overly-one {
  position: relative;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.mobile-development-five .single-approach-box.overly-one::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#00A29A), to(transparent));
  background: linear-gradient(left, #00A29A, transparent);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
  z-index: 1;
}

.mobile-development-five .single-approach-box.overly-one::after {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#00A29A), to(transparent));
  background: linear-gradient(top, #00A29A, transparent);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
}

.mobile-development-five .single-approach-box.overly-one .overly-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#00A29A));
  background: linear-gradient(left, transparent, #00A29A);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
}

.mobile-development-five .single-approach-box.overly-one .overly-two::after {
  content: "";
  position: absolute;
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#00A29A), to(transparent));
  background: linear-gradient(bottom, #00A29A, transparent);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
}

.mobile-development-five .single-approach-box.overly-one:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.mobile-development-five .single-approach-box.overly-one:hover .overly-two::before {
  left: 30px;
  opacity: 1;
}

.mobile-development-five .single-approach-box.overly-one:hover .overly-two::after {
  top: 30px;
  opacity: 1;
}

.mobile-development-five .single-approach-box.overly-one:hover::before {
  right: 30px;
  opacity: 1;
}

.mobile-development-five .single-approach-box.overly-one:hover::after {
  bottom: 30px;
  opacity: 1;
}
.mobile-development-five .section-title{
  width: 80%;
  margin: 0 auto;
}

/* BRAND CSS START */
.sotcox-brand-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  flex-wrap: nowrap;
  border: 1px solid #E6EEFB;
  padding: 5px;
  border-radius: 40px;
  width: auto;
  background: #ffffff;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  margin-top: 25px;
}
.sotcox-brand-box .icon {
  background: #266FF2;
  width: 60px;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.sotcox-brand-box .title {
  font-size: 18px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 15px;
  font-family: poppins,sans-serif;
  display: contents;
}
.sotcox-brand-box__1 .icon {
  background: #266FF2;
}
.sotcox-brand-box__1 .icon img {
  width: 38px;
}
.sotcox-brand-box__2 .icon img {
  width: 38px;
}
.sotcox-brand-box__3 .icon img {
  width: 38px;
}
.sotcox-brand-box__4 .icon img {
  width: 38px;
}
.sotcox-brand-box__5 .icon img {
  width: 38px;
}
.sotcox-brand-box__6 .icon img {
  width: 38px;
}
.sotcox-brand-box__7 .icon img {
  width: 38px;
}
.sotcox-brand-box__8 .icon img {
  width: 38px;
}
.sotcox-brand-box__4 .icon img {
  width: 38px;
}
.sotcox-brand-box__2 .icon img {
  width: 38px;
}
.sotcox-brand-box__2 .icon {
  background: #FE636E;
}
.sotcox-brand-box__3 .icon {
  background: #ffcaca;
}
.sotcox-brand-box__4 .icon {
  background: #f87676;
}
.sotcox-brand-box__5 .icon {
  background: #ffea00;
}
.sotcox-brand-box__6 .icon {
  background: #7e42ff;
}
.sotcox-brand-box__7 .icon {
  background: #aecd00;
}
.sotcox-brand-box__4 .icon {
  background: #65676B;
}

.sotcox-brand-box:hover .icon {
  transform: rotateY(180deg);
}

.cinntra-expertise{
  /* padding: 60px 0; */
  background-color: #F8F8F8;
  /* background-image: url(../images/video-img-4.jpg); */
}
.col-lg-6.full-dg {
  background: url(../images/side-img.webp);
  padding: 70px;
  /* width: 100%; */
  background-size: cover;
}
.col-lg-6.side-bg {
  padding: 70px;
  /* background-image: url(../images/video-img-4.jpg); */
  background-size: cover;
  background-color: #354656;
  background-repeat: no-repeat;
}
.cinntra-expertise .cinntra-contant{
  padding-bottom: 10px;
}
.cinntra-expertise .cinntra-contant h1{
  padding-bottom: 0px;
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  line-height: 42px;
  font-family: poppins,sans-serif;
}
.cinntra-expertise-content p{
  color: #fff;
}
.cinntra-expertise .cinntra-contant span{
  font-weight: 600;
  color: #00A29A;
}
.cinntra-expertise .cinntra-expertise-content img{
  margin-top:20px;
}
.watch-video-area .watch-box img{
  width: 50px;
}
.watch-video-area .watch-box{
  background-color: #fff;
  z-index: 999;
}

.full-width-slide {
  background-color: #EEEEEE;
}
.full-width-slide .full-widthimg{
    padding: 60px 0; 
  background-image: url(../images/aa.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 82%;
  margin: 0 auto;
  height: 100vh;
}
.full-width-slide .full-box{
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  
}
.full-width-slide .full-box img{
  width: 40px;
}

section.about-page-clients {
  padding: 0px 0 50px;
  background: #fff;
}
.netsuite-last-section{
  background-color: #FCEDDC;
  padding: 60px 0;
}
.netsuite-last-section .content h1{
  padding-bottom: 20px;
  font-size: 32px;
  color: #252b33;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -.5px;
  font-family: poppins,sans-serif;
}
.netsuite-last-section a {
  padding: 15px 30px 15px 28px;
  background-color: #00A29A;
  color: #fff;
  border-radius: 5px;
  margin-top: 28px;
  display: inline-block;
}

@media (max-width: 1200px) {
  .single-approach-box.overly-one {
    height: 332px;
    border-radius: 5px;
}
.app-banner-area {
  height: 125vh;
}
}