@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
body {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

:root {
  --des-text: #272727;
  --des-secondary: #8f8f8f;
  --primary-color: #006ff1;
  --primary-heading: #050505;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.only-mobile {
  display: none;
}

/* Header section start */

.header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-cont {
  width: 100%;
  height: 41px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 41px 140px;
  max-width: 1600px;
}

.header-logo {
  width: 206px;
  height: auto;
}

.nav-links {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  list-style: none;
  column-gap: 25px;
}

.nav-links li {
  font-size: 16px;
  font-weight: 500;
  line-height: 20.16px;
  text-align: left;
}
.nav-links li a {
  color: var(--des-text);
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav {
  display: none;
}

/* Header section end */

/* Service section Start */

.service-hero-section {
  object-fit: contain;
  object-position: 0%;
  width: 100%;
}

.hero-bg-image {
  width: 100%;
  /* height: 100%; */
  height: 100vh;
  position: relative;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}

.hero-content-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  row-gap: 44px;
  width: 828px;
}

.hero-content-container h3 {
  font-size: 88px;
  font-weight: 500;
  line-height: 92px;
  text-align: center;
  color: #ffff;
  text-transform: uppercase;
}

.hero-content-container p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: center;
  color: #ffff;
  width: 481px;
}
/* Service hero section End */
/* Service listing section start*/
.service-list-section {
  width: 100%;
  padding: 200px 140px;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  row-gap: 125px;
  padding-bottom: 75px;
}

.list-card {
  width: 100%;
  display: flex;
  align-items: center;

  justify-content: space-between;
}

.list-card:nth-child(even) {
  flex-direction: row-reverse;
}

.list-card-content {
  width: 466px;
  display: flex;
  align-items: start;
  flex-direction: column;

  row-gap: 35px;
}
.list-card-heading {
  font-size: 74px;
  font-weight: 400;
  line-height: 75px;
  text-align: left;
  text-transform: uppercase;
  color: var(--primary-heading);
}

.list-card-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  color: var(--des-text);
}

.card-image-container {
  width: 48%;
}

.card-image-container img {
  width: 100%;
}

.list-card-content button {
  background: transparent;
  border: 0;

  font-size: 18px;
  font-weight: 400;
  line-height: 21.78px;
  text-align: left;

  padding: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 18px;
}

/* Service listing section End*/

/* Cta section start */

.service-cta-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px 140px;
  overflow-x: clip;
  padding-bottom: 40px;
}

.service-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 635px;
  padding-bottom: 120px;
  row-gap: 35px;
}

.service-cta-content h1 {
  font-size: 88px;
  font-weight: 500;
  line-height: 92px;
  text-align: left;
  color: var(--primary-heading);
  text-transform: uppercase;
}

.service-cta-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  text-align: center;
  color: var(--des-text);
}

.service-cta-content button {
  background: #006ff1;
  width: 205px;
  height: 62px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 18px;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.78px;
  text-align: left;
  border: 0;
  color: #ffff;
}

/* Cta section end */
/* Footer section start */

.footer-section {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-container {
  color: #ffff;
  padding: 91px 140px;
  max-width: 1600px;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-logo {
  width: 256px;
  height: auto;
}

.footer-content-two {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}

.footer-content-one p {
  width: 351px;
  margin-top: 32px;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  text-align: left;
}

.active-link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 21px;
  width: 300px;
}

.active-link-container p {
  font-size: 25px;
  font-weight: 600;
  line-height: 31.5px;
  text-align: left;
  text-transform: uppercase;
}

.active-link-container li {
  list-style: none;
}

.active-link-container li a {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 10px;
  padding-bottom: 21px;
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
}

.address-container {
  max-width: 229px;
}

.address-container-header {
  font-size: 25px;
  font-weight: 600;
  line-height: 31.5px;
  text-align: left;
  text-transform: uppercase;
}

.address-container p:nth-child(2) {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.16px;
  text-align: left;
  padding: 21px 0;
}

/* Footer section end */

@media only screen and (min-width: 1024px) and (max-width: 1340px) {
  /* Header section start  */

  .header-cont {
    padding: 41px 65px;
  }

  .nav-links {
    column-gap: 10px;

    column-gap: 14px;
  }

  .nav-links li {
    font-size: 14px;
  }

  .header-cont {
    width: 100%;
    height: 41px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 54px 65px;
  }
  /* Header section End */

  /* Hero section start */

  .hero-content-container {
    width: 630px;
    row-gap: 25px;
  }

  .hero-content-container h3 {
    font-size: 55px;
    font-weight: 500;
    line-height: 61px;
    text-align: center;
    color: #ffff;
  }

  .service-list-section {
    padding: 90px 65px;
    row-gap: 90px;
    padding-bottom: 25px;
  }

  .list-card-heading {
    font-size: 58px;
    line-height: 59px;
  }

  .list-card-description {
    font-size: 14px;
    line-height: 21px;
  }

  .list-card-content {
    width: 400px;
    row-gap: 19px;
  }

  .list-card-content button {
    font-size: 13px;
  }

  /* Hero section end */

  /* Cta section start */

  .service-cta-content {
    row-gap: 20px;
  }

  .service-cta-content h1 {
    font-size: 67px;
    line-height: 76px;
  }

  .service-cta-content p {
    font-size: 14px;
    line-height: 21px;
  }

  .service-cta-content button {
    width: 188px;
    height: 47px;
    column-gap: 14px;
    font-size: 14px;
  }

  .service-cta-content {
    padding-bottom: 80px;
  }
  /* Cta section end */

  /* Footer section start 1024*/

  .footer-container {
    background-color: #000000;
    color: #ffff;
    padding: 91px 65px;
  }

  .footer-content-one p {
    width: 323px;
    margin-top: 32px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    text-align: left;
  }

  .active-link-container li a {
    font-size: 14px;
    padding-bottom: 9px;
  }

  .active-link-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    row-gap: 21px;
    width: 181px;
  }

  .address-container p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    padding: 21px 0;
  }
  /* Footer section End 1024 */
}

@media only screen and (min-width: 1340px) and (max-width: 1439px) {
  /* Header section start  */
  .header-cont {
    padding: 41px 100px;
  }

  .nav-links {
    column-gap: 10px;

    column-gap: 14px;
  }

  .nav-links li {
    font-size: 14px;
  }

  .header-cont {
    width: 100%;
    height: 41px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 54px 160px;
  }

  /* Header section End */

  /* Hero section start */

  .hero-content-container {
    width: 730px;
    row-gap: 25px;
  }

  .hero-content-container h3 {
    font-size: 73px;
    font-weight: 500;
    line-height: 77px;
    text-align: center;
    color: #ffff;
  }

  .service-list-section {
    padding: 90px 160px;
    row-gap: 90px;
    padding-bottom: 25px;
  }

  .list-card-heading {
    font-size: 58px;
    line-height: 59px;
  }

  .list-card-description {
    font-size: 14px;
    line-height: 21px;
  }

  .list-card-content {
    width: 400px;
    row-gap: 19px;
  }

  .list-card-content button {
    font-size: 13px;
  }

  /* Hero section end */

  /* Cta section start */

  .service-cta-content {
    row-gap: 20px;
  }

  .service-cta-content h1 {
    font-size: 67px;
    line-height: 76px;
  }

  .service-cta-content p {
    font-size: 14px;
    line-height: 21px;
  }

  .service-cta-content button {
    width: 188px;
    height: 47px;
    column-gap: 14px;
    font-size: 14px;
  }

  .service-cta-content {
    padding-bottom: 80px;
  }
  /* Cta section End */

  /* Footer section start 1024*/

  .footer-container {
    background-color: #000000;
    color: #ffff;
    padding: 91px 160px;
  }
  /* Footer section End 1024 */
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  /* common */
  .only-mobile {
    display: block;
  }
  /* Header section start  */

  .nav-container {
    display: none;
  }

  .header-cont {
    padding: 40px 35px;
  }

  .header-logo {
    width: 99px;
    height: auto;
  }
  /* Header section End  */

  /* Hero section start*/

  .hero-content-container h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
  }

  .hero-content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    row-gap: 25px;
    width: 301px;
  }

  .hero-content-container p {
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    text-align: center;
    color: #ffff;
    width: 100%;
  }

  /* Hero section end */

  /* Service list Section Start */

  .service-list-section {
    padding: 25px 35px;
    row-gap: 39px;
    padding-bottom: 3px;
  }

  .list-card-heading {
    font-size: 33px;
    line-height: 39px;
  }

  .list-card,
  .list-card:nth-child(even) {
    flex-direction: column-reverse;
    row-gap: 21px;
  }

  .list-card-content {
    width: 100%;
    row-gap: 14px;
  }

  .card-image-container {
    width: 100%;
  }

  .list-card-description {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
  }

  .list-card-content button {
    font-size: 14px;

    column-gap: 11px;
  }
  /* Service list Section End */

  /* Cta Section Start */

  .service-cta-section {
    padding: 25px 35px;
  }

  .service-cta-content h1 {
    font-size: 44px;
    font-weight: 500;
    line-height: 49px;
  }

  .service-cta-content p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    text-align: start;
  }

  .service-cta-content {
    padding-bottom: 20px;
  }
  /* Cta Section End */

  /* Footer section Start */

  .footer-container {
    padding: 57px 35px;
    column-gap: 40px;
    margin-top: 52px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-content-one p {
    width: 154px;
    margin-top: 15px;

    font-size: 10px;
    font-weight: 300;
    line-height: 15px;
    text-align: left;
  }

  .footer-content-two {
    flex-direction: column-reverse;
    row-gap: 33px;
  }

  .active-link-container {
    width: auto;
    align-items: start;
    row-gap: 9px;
  }

  .address-container-header {
    font-size: 15px;
    font-weight: 600;
    line-height: 18.9px;
    text-align: left;
    text-transform: uppercase;
  }

  .address-container p:nth-child(2) {
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    text-align: left;
    padding: 21px 0;
  }

  .active-link-container p {
    font-size: 15px;
    font-weight: 600;
    line-height: 18.9px;
    text-align: left;
    text-transform: uppercase;
  }

  .active-link-container li a {
    font-size: 10px;
    line-height: 20px;
    padding-bottom: 10px;
  }

  /* Footer section End */

  .mobile-nav {
    height: 100vh;
    width: 100%;
    background: #ffffff;
    right: -100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    transition: right 1s ease-in-out;
    padding: 30px;
  }

  .mobile-nav-header {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }

  .mobile-nav-header .logo img {
    width: 150px;
    height: auto;
  }

  .mobile-nav-header i {
    font-size: 20px;
  }

  .mobile-nav .mobile-nav-list {
    transition: opacity 1s ease-in-out;
  }

  .mobile-nav.expanded {
    height: 100vh;
    right: 0%;
    transition: right 1s ease-in-out;
  }

  .mobile-nav.expanded .mobile-nav-list {
    opacity: 1;
    transition: opacity 1s ease-in-out;
  }

  .mobile-nav-list {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }

  .mobile-active-links {
    display: flex;
    flex-direction: column;
    align-items: start;
    row-gap: 10px;
  }

  .mobile-active-links a {
    color: var(--des-text);
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
  }

  .hamburger {
    cursor: pointer;
    width: 25px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    user-select: none;
  }

  .hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .bar {
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease-in-out;
  }

  .hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .footer-section {
    margin-top: 50px;
  }
}
