/* Poppins font family */
@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');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-color: rgb(5, 29, 67);
  --secondary-color: rgb(138, 151, 159);
  --bg-color: #f8f8f8;
  --transition: all 0.3s ease-in-out;
}
h1{
  font-size: 36px;
}
h2 {
  font-size: 32px;
}

h6 {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0rem !important;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

ol,
ul {
  padding-left: 0rem !important;
}

.gap40 {
  gap: 40px;
}
.gap20 {
  gap: 20px;
}

p {
  font-size: 14px;
  font-weight: 500;
  color: rgb(138, 151, 159);
  margin-bottom: 12px;
}
li{
  font-size: 12px;
  font-weight: 700;
  padding: 5px 0px;
}
span{
  font-size: 14px;
  font-weight: 600;
  color: var(--main-color);
}
a{
    text-decoration: none !important;
}
img{
  max-width: 100%;
}
/* 1. Navigation. 
   2. Footer.
   3. Home.
   4. Privacy.
   5. Contact.
   6. About.
   7. AI.
   8. Industries.
   */

/* 1. Nav starts. */
.nav-second{
  display: none;
}
.nav-main{
  position: sticky;
  top: 0px;
  background-color: #fff;
  z-index: +9999;
}
.nav-logo img {
  max-width: 100%;
  height: 50px;
}

.nav-button button {
  width: 7.25rem;
  height: 2.375rem;
  background-color: var(--main-color);
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);

  a {
    color: #fff;
  }
}

.nav-button button:hover {
  background-color: transparent;
  border: 1px solid var(--secondary-color);
  transition: var(--transition);

  a {
    color: var(--main-color);
  }
}
.hamburger{
  display: none;
}
.hamburger i{
  font-size: 20px;
}

.nav-links li a {
  font-weight: 700;
  color: var(--main-color);
}

/* .nav-links li a::after {
  content: "\f107";
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
  padding-left: 3px;
  font-size: 12px;
} */

.services-main {
  position: absolute;
  width: 100%;
  height: 100vh;
  left: 0px;
  z-index: +99;
  background-color: #fff;
  display: none;
}
.services:hover .services-main{
  display: block;
}
.services-sublinks li{
  padding: 15px 10px;
  & a{
    font-size: 13px;
    font-weight: 600;
  }
  &:hover{
    background-color: var(--main-color);
  }
  &:hover a{
    color: #fff;
  }
}
.services-content{
  background-color: var(--main-color);
}
.services-services{
  overflow-y: scroll;
  height: 100vh;
  background-color: var(--bg-color);
}
/* 1. Nav ends. */

/* 2. Footer starts. */
.footer-main {
  background-color: var(--main-color);
  color: #fff;
}

.social-media {
  gap: 10px;
}

.social-media a {
  color: var(--secondary-color);
  font-size: 18px;
}

.footer-links li a {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 0px;
  color: #fff;
}

.footer-links li a:hover {
  color: var(--secondary-color);
}

.copy-right a {
  color: #fff;
}
.top{
  position: fixed;
  bottom: 20px;
  right: 20px;
  svg, img{
    padding: 2px 5px;
    background-color: #fff;
    color: var(--main-color);
    box-shadow: 0px 0px 3px 0px;
    width: 35px;
    height: 35px;
  }
}
.scrolltotop i{
  font-size: 16px;
  color: var(--main-color);
  padding: 10px 12px;
  box-shadow: 0px 0px 5px 0px;
}
.scrolltotop{
  position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: +9999;
    background: #fff;
    transform: scale(0);
}
.scrolltotop-active{
  transform: scale(1);
}

/* 2. Footer ends. */

/* 3. Home starts. */
.banner-main img {
  width: 100%;
  height: 100vh;
}

.banner-content {
  position: absolute;
  top: 20%;
  left: 20%;
  color: #fff;

  h2 {
    font-size: 40px;
    padding-bottom: 20px;
  }

  h6 {
    font-size: 20px;
  }
}

.banner-buttons {
  gap: 20px;
  padding-top: 40px;

  button {
    width: 7.25rem;
    height: 2.375rem;
    background-color: transparent;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid #fff;

    &:hover {
      background-color: var(--main-color);
      color: #fff;
    }
  }

}
.why-main{
  .why-image-content{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.home-services-main{
  .home-services-card{
    padding: 20px;
    &:hover{
      background-color: var(--main-color);
    }
    & a:hover{
      color: #fff;
    }
  }
}
.home-industries{
  background-image: url("../home-images/industries-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  .home-industries-content{
    background: #fff;
    padding: 100px;
    img{
      padding-bottom: 10px;
    }
    h2{
      padding-bottom: 30px;
    }
  }
}
.feedback-main{
  background-image: url("../feed-back.webp");
  background-repeat: no-repeat;
  height: 35vh;
  background-size: cover;
  button{
    border: 1px solid;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    &:hover{
      background-color: var(--main-color);
      color: #fff;
    }
  }
}
/* 3. Home ends. */

/* 4. Privacy starts. */
.privacy-content {
  padding-bottom: 25px;
}

/* 4. Privacy ends. */

/* 5. Contact starts. */
.contact-main {
  background-color: var(--bg-color);
  button{
    color: #fff;
    &:hover{
      color: var(--main-color);
    }
  }
}

.contact-form {
  input, select,textarea {
    border: none;
    border-bottom: 1px solid var(--secondary-color);
    font-size: 13px;
    width: 100%;
    height: 30px;
    background: transparent;
    outline: none;
    &:focus{
      border-bottom: 1px solid var(--main-color);
    }
  }
textarea{
  height: 100px;
  border: 1px solid var(--secondary-color);
}
  label {
    font-size: 14px;
    font-weight: 600;
  }
  div{
    margin-bottom: 20px;
  }
}
.contact-name{
  gap: 20px;
  div{
    width: 100%;
  }
}
.contact-check{
  gap: 10px;
  input{
    width: 4%;
    background-color: transparent;
  }
}
.bred-main{
  background-image: url("../contact/breducrumb.webp");
    .bred-content{
      color: #fff;
      a{
        color: #fff;
        padding-bottom: 5px;
        border-bottom: 1px solid var(--secondary-color);
      }
    }
}
.bred-main{
  height: 70vh;
  background-repeat: no-repeat;
  background-size: cover;
}
/* 5. Contact ends. */

/* 6. About starts. */
.we-do-img img{
  height: auto;
  max-width: 100%;
}
.key-main{
  background-color: var(--bg-color);
  img{
    height: auto;
    max-width: 100%;
  }
}
/* 6. About ends. */

/* 7. AI starts. */
.ai-bred-main{
  background-image: url("../bredcrumbs/01\ Artificial\ Intelligence\ Main\ banner.webp");
  height: 70vh;
  background-repeat: no-repeat;
  background-size: cover;
}
/* 7. AI ends. */

/* 8. Industries starts. */
.media-main{
  background-image: url("../bredcrumbs/01-M&A-banner.webp");
}
.travel-main{
  background-image: url("../bredcrumbs/01.Travel-&-Hospitality-Technology-Solutions.webp");
}
.software-main{
  background-image: url("../bredcrumbs/Software.webp");
}
.retail-main{
  background-image: url("../bredcrumbs/01-Digital-Retail-Banner.webp");
}
.logistics-main{
  background-image: url("../bredcrumbs/01-Supply-Chain-&-Logistics-Banner.webp");
}
.healthcare-main{
  background-image: url("../bredcrumbs/01-HCLS-Banner.webp");
}
.fintech-main{
  background-image: url("../bredcrumbs/01-FinTech-banner.webp");
}
.careers-main{
  background-image: url("../bredcrumbs/Career-Banner.webp");
}
.travel-services{
 .travel-services-sec{
  background-color: var(--bg-color); 
 }
  img{
    height: auto;
    max-width: 100%;
  }
}
/* 8. Industries ends. */









@media(max-width: 1023px){
  .nav-links{
    flex-direction: column;
        position: absolute;
        width: 100%;
        top: 75px;
        left: 0px;
        background: #fff;
        gap: 20px;
        padding: 20px 0px;
        transform: scale(0);
  }
  .nav-links-active{
    transform: scale(1);
  }
  .nav-services{
    display: none;
  }
  .hamburger{
    display: block ;
  }
  .navigation-button{
    display: none;
  }
}


@media(max-width:767px){
  body{
    width: 100%;
    overflow-x: hidden;
  }
  h1{
      font-size: 32px !important;
    }
    h2 {
      font-size: 26px !important;
    }
    
    h6 {
      font-size: 14px !important;
    }
    .banner-content {
      top: 10%;
      left: 10%;
  }
  .banner-main img {
    height: 40vh;
  }
  .home-industries {
    .home-industries-content {
        padding: 10px;
    }
  }
  .contact-name {
    flex-direction: column;
}
.column{
  flex-direction: column !important;
}
.social-media{
  padding-bottom: 10px;
}
.nav-logo img {
  height: 50px;
  width: 150px !important;
}
}