/*============ Google fonts ============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*======= CSS variables =======*/
:root {
  --white-color: #fff;
  --dark-color: #000;
  --navigation-item-hover-color: #3b5378;
  --heading-text-color: #ff6700;
  --enterprise-bg-color: #243656;

  --text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  --box-shadow: 0 5px 25px rgb(0 0 0 / 20%);

  --scroll-bar-color: #fff;
  --scroll-thumb-color: #282f4e;
  --scroll-thumb-hover-color: #454f6b;

  --gradient-1: linear-gradient(to bottom right, rgb(107, 107, 255), blue);
  --gradient-2: linear-gradient(to bottom right, rgb(80, 80, 255), rgb(253, 119, 119));
  --gradient-3: linear-gradient(to bottom right, rgb(255, 207, 145), rgb(255, 111, 92));
  --gradient-4: linear-gradient(to bottom right, #2af598, #009efd);

  --red: hsl(0, 78%, 62%);
  --cyan: hsl(180, 62%, 55%);
  --orange: hsl(34, 97%, 64%);
  --blue: hsl(212, 86%, 64%);
  --varyDarkBlue: hsl(234, 12%, 34%);
  --grayishBlue: hsl(229, 6%, 66%);
  --veryLightGray: hsl(0, 0%, 98%);
  --weight1: 200;
  --weight2: 400;
  --weight3: 600;
  --banerheight:calc(100vh - 96px);
  --mobilebanerheight:calc(100vh - 65px);

}

/*======= Scroll bar =======*/
::-webkit-scrollbar {
  width: 11px;
  background: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  width: 100%;
  background: var(--scroll-thumb-color);
  border-radius: 2em;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-thumb-hover-color);
}

/*======= Main CSS =======*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background: var(--enterprise-bg-color);
  font-family: 'Montserrat', sans-serif;
}

section {
  position: relative;
  margin: 5px 0px;
}

.section {
  color: var(--dark-color);
  padding: 65px 0px;
  min-height: 100vh;
}

.m-b-20 {
  margin-bottom: 20px;
}

h2 {
  /* font-family: "Righteous", sans-serif; */
  line-height: 4rem;
  font-size: 4rem;
  color: var(--heading-text-color);
  font-weight: var(--weight3);
  margin: 10px 0px 20px 0px;
  text-transform: uppercase;
  /* letter-spacing: 2px; */
}

hr {
  width: 45px;
  background-color: var(--heading-text-color);
  height: 6px;
  opacity: 1;
  margin: 0px;
}

.aliegcenter {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*======= Header =======*/
header {
  font-family: 'Poppins', sans-serif;
  z-index: 999;
  position: fixed;
  width: 100%;
  height: 96px;
  /* calc(5rem + 1rem); */
  /* height: calc(2.5rem + 1rem); */
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  background: var(--white-color);
  transition: 0.5s ease;
  transition-property: height, background;


}

header.sticky {
  height: 65px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .nav-bar {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: 0.3s ease;
}

.nav-close-btn,
.nav-menu-btn {
  display: none;
}

header .nav-bar .logo {
  width: 200px;
}

.nav-bar .logo img {
  width: 100%;
  height: auto;
}

.navigation .nav-items a {
  color: var(--dark-color);
  font-size: 1em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: var(--text-shadow);
  word-wrap: normal;
}
.navigation .nav-items a:hover , .navigation .nav-items a.active {
  border-bottom: solid 2px var(--heading-text-color);
  color: var(--heading-text-color);
}

.navigation .nav-items a i {
  display: none;
}

.navigation .nav-items a:not(:last-child) {
  margin-right: 45px;
}

/*=============Home=================*/
.home{
  padding: 0px; 
  margin-top: 90px;
  min-height: var(--banerheight);
}
.item1{
  background: url(../images/b1.jpg);
}
.item2{
  background: url(../images/b2.jpg);
}
.item3{
  background: url(../images/b3.jpg);
}
.item1, .item2, .item3{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: var(--banerheight)
}
.crosalcontwnt{
  position: absolute;
  z-index: 99;
  top: 0px;
  width: 100%;
  /* padding-top: 75px; */
}
main {
  height:var(--banerheight);
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
  
 
}

main .headoing {
  line-height: 4rem;
  font-size: 4rem;
  color: var(--heading-text-color);
  text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 4px;

}

main p {
  font-size: 0.8rem;
  color: var(--veryLightGray);
  text-transform: uppercase;
  width: 40%;
  line-height: 20px;
  /* background: rgba(0, 0, 0, 0.5); */
  /*  margin-top: 0px;*/
  padding: 10px;

}

/* .main button {
  width: 250px;
  height: 60px;
  border: none;
  outline: none;
  border-radius: 10px;
  margin-top: 30px;
  font-size: 30px;
  background: linear-gradient(#cc66ff, #f4f4f4);
  cursor: pointer;
}

.main button:hover {
  transform: translateY(5px);
  transition: 0.2s;
} */

/*======= About section =======*/
.about {
  background-color: var(--white-color);
  background-image: url("../images/about-bg.jpg");
  background-position: center;
  background-size: cover;
}

.about h2 {}

.about p {
  margin: 25px 0;
  text-align: justify;
}

.about img {
  border: solid 10px var(--white-color);
}



/*chouse us*/
.sectionchoseus {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 100vh;
  background: var(--white-color)
}

.sectionchoseus h2 {
  /* text-align: center; */

}


.why-chose-us .card {
  border-radius: 10px;
  background: white;
  min-height: 420px;
  margin-bottom: 10px;
  transform: none;
  /* border: none; */
}

.why-chose-us .card .icon {
  padding: 10px 0px;
}

.why-chose-us .card .icon img {
  width: 25%;
}

.why-chose-us .card .icon .linestyle,
.why-chose-us .card .icon .linestyle2 {
  height: 2px;
  width: 40px;
  background: #ff6700;
  transform: rotate(90deg);
  margin: 0 auto;
  margin-top: 17px;
}

.why-chose-us .card .icon .linestyle2 {
  background: #ac4500;
}

.why-chose-us .card .icon .linestyle:before,
.why-chose-us .card .icon .linestyle:after,
.why-chose-us .card .icon .linestyle2:before,
.why-chose-us .card .icon .linestyle2:after {
  content: '';
  height: 6px;
  width: 6px;
  border-radius: 3px;
  float: left;
  background: #ff6700;
  margin-top: -2px;
}

.why-chose-us .card .icon .linestyle2:before,
.why-chose-us .card .icon .linestyle2:after {
  background: #ac4500;
}

.why-chose-us .card .icon .linestyle:after,
.why-chose-us .card .icon .linestyle2:after {
  float: right;
}

.why-chose-us .card .icon h3 {
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 0px;
}

.why-chose-us .card .icon p {
  font-size: 1rem;
  padding: 10px;
  text-align: justify;
}

.why-chose-us .beignpartner {
  width: 300px;
  height: 330px;
  margin: 0 auto;
  font-size: 3rem;
  font-weight: bolder;
  align-items: center;
  display: flex;
  text-align: center;
}

.why-chose-us .beignpartner p {
  line-height: 50px;
}

.why-chose-us .beignpartner .getintouchbtn {
  /* width: 250px;
  height: 60px;
  border: none;
  outline: none;
  border-radius: 10px;
  font-size: 30px;
  background: linear-gradient(#cc66ff, #f4f4f4);
  cursor: pointer; */

  background: var(--heading-text-color);
  padding: 6px 18px;
  color: var(--white-color);
  font-weight: 600;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  height: 60px;
  font-size: 30px;
}

.why-chose-us .beignpartner .getintouchbtn:hover {
  transform: translateY(5px);
  transition: 0.2s;
}





/* .choseus {
  max-width: 100vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 35px;
  margin: 0 auto;
}


.choseus .why-chose-card {
  position: relative;
  width: 300px;
  height: 330px;
  margin: 0 auto;
  background: #000;
  border-radius: 15px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
}

.choseus .why-chose-card .face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choseus .why-chose-card .face.alignTop {
  align-items: flex-end
}

.choseus .why-chose-card .face.face1 {
  box-sizing: border-box;
  padding: 15px;
}

.choseus .why-chose-card h2 {
  font-size: 2rem;
}

.choseus .why-chose-card .face.face1 h2 {
  margin: 0;
  padding: 0;
}

.choseus .why-chose-card .face.face1 p {
  background-color: var(--white-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.choseus .why-chose-card .face.face2 {
  transition: 0.5s;
  background: var(--enterprise-bg-color);
  border-radius: 15px;
  color: var(--heading-text-color);

}

.chose-content{
  text-align: center;
}
.choseus .why-chose-card .face.face2 i {
  font-size: 2rem;
  display: inline-block;
}

.choseus .why-chose-card .face.face2 h2 {
  margin: 0;
  padding: 0;
  font-size: 2em;
  transition: 0.5s;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.choseus .why-chose-card:hover .face.face2 {
  height: 60px;
}

.choseus .why-chose-card:hover .face.face2 h2 {
  font-size: 2em;
} */



/*==============enterprise==============*/
.enterprise {
  width:100vw;
  position: relative;
  margin: 5px 0px;
  background: var(--enterprise-bg-color);
  color: var(--white-color);
}

.enterprise h2 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: -2px;
}

.enterprise hr {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.enterprise p {
  font-size: 1rem;

}

.enterprise .enterpriseIcon {
  margin: 20px 0px;
}

.enterprise .enterpriseIcon img {
  /* width: 50px;
  height: 50px;
  background: var(--heading-text-color);
  border-radius: 10px;
  display: inline-block;
  text-align: center;
  font-size: 2rem;
  margin-right: 15px;
  color: var(--white-color); */
  width: 50px;
  height: auto;
  margin-right: 10px;

}

/*total tilents*/
.total-tailent {
  width:100vw;
  position: relative;
  margin: 5px 0px;
  background: var(--white-color);
}

.total-tailent-main {
  width: 100%;
  min-height: 500px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  background: url(../images/006.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0 20px;
  text-transform: uppercase;
  color: var(--white-color);
  margin: 0 auto;
}

.total-tailent .total-tailent-content h2 {
  line-height: unset;
  font-size: 1.5rem;
  color: var(--white-color);
  font-weight: var(--weight3);
  margin-left: -40px;
  text-transform: uppercase;
  background: var(--heading-text-color);
  padding: 7px;
  padding-left: 70px;
}

.total-tailent-main .heading {
  font-size: 2rem;
  line-height: 30px;
  font-weight: var(--weight3);
  width: 72%;
}

.total-tailent-main .heading hr {
  width: 40%;
  margin: 8px 0px;
}

.total-tailent-main p {
  font-size: 1rem;
  width: 80%;
}

.total-tailent .total-tailent-content .total-tailent-content-one {
  margin-bottom: 100px;
}

/*methodology*/
.methodology {
  background: var(--white-color);
}

.methodology h2 {
  color: var(--dark-color);
  font-size: 4rem;
}

.methodology .methodology-left {
  width: 90%;
  display: flex;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.methodology li {
  counter-increment: count;
  position: relative;
  list-style: none;
  padding: 5px 40px;
  margin: 5px 0px;
  color: #000;
  width: 100%;
  /* text-transform: uppercase; */
}

.methodology li:before {
  content: counter(count);
  position: absolute;
  /* top: 4px; */
  left: -20px;
  display: inline-block;
  width: 50px;
  line-height: 40px;
  font-size: 2rem;
  font-weight: bolder;
  padding: 5px 0;
  text-align: center;
  background: var(--heading-text-color);
  color: var(--white-color);
}

.methodology li:nth-child(-n+9):before {
  content: '0'counter(count);
}

.methodology li:nth-child(1) {
  margin-top: 100px;
}

/*process*/
.process-section {
  background-color: var(--white-color);
}

.process {
  background: var(--heading-text-color);
  color: var(--white-color);
  padding: 50px;
  margin: 0 3%;
  margin-bottom: 20px;

}

.process hr {
  background: var(--white-color);
}

.process h2 {
  color: var(--white-color);
}

.process img {
  width: 100%;
  height: auto;
}

.process h1 {
  font-size: 1.2rem;
  font-weight: bolder;
  color: var(--white-color);
  text-transform: uppercase;
  display: -webkit-inline-box
}

.process h1 hr {
  background: var(--enterprise-bg-color);
  margin-top: 10px;
  width: 20px;
  margin-right: 10px;

}

.process .process-onetext {
  font-size: 1rem;
  margin-left: 30px;

}

/*privecy*/
.privecy {
  background: var(--white-color);
}

.privecydetail {
  background: var(--heading-text-color);
  color: var(--white-color);
  padding: 20px;
  margin: 0 3%;
  margin-bottom: 20px;
}

.privecydetail hr {
  background-color: var(--white-color);
}

.privecydetail h2 {
  color: var(--white-color);
  margin: 10px 0px 0px 0px;
}

.privecydetail P {
  width: 75%;
  text-transform: uppercase;
  text-align: justify;

}

.box p {
  color: var(--dark-color);
  text-align: justify;
}

.box h2 {
  font-size: 1.5rem;
  margin: 0px 0px 10px 0px;
  text-align: center;
}

.box {
  border-radius: 5px;
  box-shadow: 0px 30px 40px -20px var(--grayishBlue);
  padding: 20px;
  width: 100%;
  min-height: 100%;
}

.cyan {
  border-top: 3px solid var(--cyan);
}

.red {
  border-top: 3px solid var(--red);
}

.blue {
  border-top: 3px solid var(--blue);
}

.orange {
  border-top: 3px solid var(--orange);
}

/*get in tuch*/
.get-in-tuch {
  background-color: var(--white-color);
  color: var(--dark-color);
}

input[type="text"],
input[type="email"] {
  width: 100%;
  border-color: var(--enterprise-bg-color);
  margin: 10px 0px;
  line-height: 25px;
  font-size: 1rem;
  padding: 5px 10px;
}

label {
  color: var(--dark-color);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 12px;
}

textarea {
  margin: 10px 0px;
  border: solid 2px var(--enterprise-bg-color);
  width: 100%;
  padding: 5px 10px;
}
.btnholder{
  float: right;
}
input[type="submit"] {
  background: var(--heading-text-color);
  padding: 8px 25px;
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 600;
  border: none;
}

.address {
  padding: 0px 70px;
}

.address h2 {
  color: var(--dark-color);
  font-size: 2rem;
  font-weight: 600;
  margin: 10px 0px;
  line-height: 2rem;
}

.address p {
  font-size: 1rem;
}

.address h3 {
  color: var(--dark-color);
  font-size: 1.5rem;
  font-weight: 600;
}
.address .addre{
  font-size: 1.2rem;
}
.address .email-phone{
  font-weight: 600;
}

/*======= Media queries (max-width: 1100px) =======*/
@media screen and (max-width:1100px) {
  header .nav-bar {
    padding: 0 50px;
  }

  /* .section{
    padding: 25px 50px;
  } */
}

/*======= Media queries (max-width: 950px) =======*/
@media screen and (max-width:950px) {
  .crosalcontwnt{
    padding-top: 50px;
  }
  h2 {
    font-size: 3em;
    line-height: 45px;
  }

  /* main {
    background-position: center top;
    background-size: cover;
  } */

  main .headoing {
    font-size: 2.8rem;
    line-height: 3rem;
  }

  main p {
    width: 95%;
    font-size: 0.8rem;
  }

  .nav-menu-btn {
    display: block;
    color: var(--dark-color);
    font-size: 1.5em;
    cursor: pointer;
  }

  header .nav-bar {
    padding: 0px 25px;
  }

  .nav-close-btn {
    display: block;
    color: var(--dark-color);
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.3em;
    margin: 10px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .navigation {
    z-index: 99999;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
  }

  .navigation.active {
    visibility: visible;
    opacity: 1;
  }

  .navigation .nav-items {
    position: relative;
    background: var(--white-color);
    width: 400px;
    max-width: 400px;
    display: grid;
    place-content: center;
    margin: 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transform: translateY(-200px);
    transition: 0.3s ease;
  }

  .navigation.active .nav-items {
    transform: translateY(0);
  }

  .navigation .nav-items a {
    color: var(--dark-color);
    font-size: 1em;
    margin: 15px 50px;
    transition: 0.3s ease;
  }

  .navigation .nav-items a:hover {
    color: var(--navigation-item-hover-color);
  }

  .navigation .nav-items a i {
    display: inline-block;
    font-size: 1.3em;
    margin-right: 5px;
  }

  /*==============enterprise==============*/
  /* .enterprise .enterpriseIcon {
    margin: 20px 0px;
  } */

  .enterprise h2 {
    font-size: 3rem;
  }


  .total-tailent-main {
    width: 100%;
  }

  .total-tailent .total-tailent-content h2 {
    margin-left: 0px;
    padding: 7px;
  }

  .methodology .methodology-left {
    width: 100%;
  }

  .methodology h2 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .methodology li:nth-child(1) {
    margin-top: 10px;
  }

  .privecydetail {
    width: 100%;
    margin: 0px;
    margin-bottom: 20px;
  }

  .privecydetail P {
    width: 100%;
  }
}

/*======= Media queries (max-width: 785px) =======*/
@media screen and (max-width:785px) {
  /*.section {
    padding: 25px 0px;
  }
   .home{
    margin-top: 65px;
    min-height: var(--mobilebanerheight);
  }
  .item1, .item2, .item3{
    height: var(--mobilebanerheight)
  }
  main {
    height:var(--mobilebanerheight);
  } */
  main p {
    width: 95%;
    font-size: 0.7rem;
    line-height: 13px;
  }

  h2 {
    font-size: 2.5em;
    line-height: 45px;
  }

  /*======= About section =======*/
  .about p {
    margin: 25px 0 px;
    font-size: 0.9em;
  }

  /*==============enterprise==============*/
  .enterprise .enterpriseIcon {
    margin: 20px 0px;
  }

  .enterprise h2 {
    font-size: 2rem;
    line-height: 2rem;
  }

  .enterprise p {
    text-align: justify;
  }

  .total-tailent-main .heading {
    font-size: 1.5rem;
    width: 100%;
  }

  .total-tailent-main p {
    width: 100%;
  }

  .total-tailent .total-tailent-content .total-tailent-content-one {
    margin-bottom: 10px;
  }

  .methodology li {
    padding-right: 10px;
  }

  .methodology .methodology-left {
    width: 100%;
  }
  .process{
    padding: 50px 20px;
  }
  .address{
    padding: 0px 10px;
  }



}
/* @media screen and (max-width:785px) and (orientation : portrait){
  main{
    align-items: end;
    padding-bottom: 50px;
  }
} */

@media screen and (max-width:450px) {
  .box {

    padding: 20px 10px;

  }
}

/* 41969.121 */