@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creatodisplay-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creatodisplay-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creatodisplay-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creatodisplay-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

:root {
      --green: #09b219;
      --blue: #063c9d;
      --dark: #202020;
      --muted: #666;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Creato Display', sans-serif;
      color: var(--dark);
      background: #fff;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      background: #fff;
      padding: 10px 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    }

    .navbar {
      padding: 0;
    }

    .brand-logo {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      line-height: 1;
    }

    .mark-grid {
      width: 56px;
      display: grid;
      grid-template-columns: repeat(3, 13px);
      grid-auto-rows: 13px;
      gap: 4px;
    }

    .mark-grid span {
      border-radius: 2px;
      background: var(--green);
    }

    .mark-grid span:nth-child(2),
    .mark-grid span:nth-child(5),
    .mark-grid span:nth-child(8) {
      background: var(--blue);
    }

    .brand-logo strong {
      color: var(--blue);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .4px;
      text-transform: uppercase;
    }

    .navbar-nav {
      gap: 28px;
    }

    .nav-link {
         color: #404040;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 0;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--green);
    }

    @media (min-width: 992px) {
      .navbar .dropdown:hover > .dropdown-menu,
      .navbar .dropdown:focus-within > .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }
	a.dropdown-item {
		    font-size: 17px;
    font-weight: 600;
    color: #2a2a2a;
	}
	
	a.dropdown-item:hover {
		color:#0039bb;
		text-decoration:underline;
	}

    .btn-pill {
      border: 0;
      border-radius: 999px;
      background: var(--green);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 12px 26px;
      font-size: 17px;
      font-weight: 700;
      transition: .2s ease;
      white-space: nowrap;
    }

    .btn-pill:hover {
      background: #079915;
      color: #fff;
      transform: translateY(-1px);
    }

    .btn-outline-pill {
      border: 1.5px solid var(--blue);
      border-radius: 999px;
      color: var(--blue);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 46px;
      padding: 11px 25px;
      font-weight: 600;
      transition: .2s ease;
    }

    .btn-outline-pill:hover {
      background: var(--blue);
      color: #fff;
    }

    .hero-slider,
    .hero-slide {
      min-height: 650px;
    }

    .hero-slide {
      position: relative;
      color: #fff;
      background-position: center;
      background-size: cover;
    }

    .hero-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .42) 56%, rgba(0, 0, 0, .22));
    }

    .hero-slide > .container {
      min-height: 650px;
      display: flex;
      align-items: center;
    }

    .hero-content {
      position: relative;
      max-width: 790px;
      padding: 90px 0;
    }

    .hero-content .eyebrow {
      display: block;
      margin-bottom: 8px;
      font-size: 28px;
      font-weight: 500;
    }

    .hero-content h1 {
      margin: 0 0 26px;
      font-size: clamp(42px, 5.2vw, 64px);
      line-height: 1.12;
      font-weight: 500;
    }

    .hero-content p {
      max-width: 760px;
      margin-bottom: 35px;
      font-size: 22px;
      line-height: 1.48;
      font-weight: 500;
    }

    .slick-dots {
      bottom: 24px;
    }

    .slick-dots li button::before {
      color: #fff;
      font-size: 10px;
      opacity: .6;
    }

    .slick-dots li.slick-active button::before {
      color: var(--green);
      opacity: 1;
    }

    .section-pad {
      padding: 96px 0;
    }

    .section-kicker {
      margin-bottom: 10px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .02em;
      text-transform: uppercase;
    }

    .section-title {
      margin-bottom: 28px;
      font-size: clamp(30px, 3vw, 34px);
      line-height: 1.2;
      font-weight: 700;
    }

    .section-copy {
         color: #2e2e2e;
    font-size: 18px;
    line-height: 1.7;
    font-weight: normal;
	  font-family: "Poppins", sans-serif;
    }

    .rounded-image {
      width: 100%;
      min-height: 370px;
      object-fit: cover;
      border-radius: 14px;
    }

    .services-section {
      position: relative;
      color: #fff;
      background: url("../images/service-bg.jpg") center/cover no-repeat;
      overflow: hidden;
    }

    .services-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(9, 31, 56, .74);
    }

    .services-section .container {
      position: relative;
      z-index: 2;
    }

    .service-top {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 58px;
    }

    .service-controls {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .view-link {
      color: #fff;
      font-weight: 600;
      border-bottom: 1px solid rgba(255, 255, 255, .8);
      padding-bottom: 4px;
    }

    .slider-arrows {
      display: flex;
      gap: 10px;
    }

    .slick-arrow-btn {
      width: 38px;
      height: 38px;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, .88);
      color: #333;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .services-slider {
      margin: 0 -12px;
    }

    .service-item {
      padding: 0 12px;
    }

    .service-card {
      min-height: 500px;
      padding: 18px;
      background: #fff;
      color: #111;
      border-radius: 20px;
      overflow: hidden;
    }

    .service-card img {
       
      border-radius: 12px;
      margin-bottom: 20px;
    }

    .service-card h3 {
         margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #d8d8d8;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    }

    .service-card p {
      min-height: 92px;
      color: #252525;
      font-size: 17px;
	    font-family: "Poppins", sans-serif;
      line-height: 1.55;
    }

    .learn-link {
      color: #777;
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-size: 16px;
      font-weight: 600;
    }
	.learn-link:hover {
		color:#0137ba;
	}

    .why-list {
      display: grid;
      gap: 34px;
      padding-top: 10px;
      border-top: 1px solid #cfcfcf;
    }

    .why-item,
    .mini-feature {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 0px;
      align-items: start;
    }

    .check-icon {
      color: #25b95a;
      font-size: 55px;
      line-height: 1;
    }

    .why-item h3,
    .mini-feature h3 {
      margin-bottom: 12px;
      color: var(--blue);
      font-size: 24px;
      line-height: 1.2;
      font-weight: 700;
    }
	.why-item img {
		    width: 52px;
    text-align: right;
    display: inline-block;
	}

    .why-item p,
    .mini-feature p {
      margin: 0;
      font-size: 17px;
	    font-family: "Poppins", sans-serif;
      line-height: 1.55;
    }

    .why-image {
      min-height: 610px;
      object-fit: cover;
      border-radius: 14px;
    }

    .mini-features {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 56px;
    }
	
	.mini-features img {
	width: 52px;
    text-align: right;
    display: inline-block;
	}

    .numbers-section {
      position: relative;
      color: #fff;
      background: url("../images/find-miss-bg.jpg") center/cover no-repeat;
      text-align: center;
    }

    .numbers-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgb(10 13 21 / 77%);
    }

    .numbers-section .container {
      position: relative;
      z-index: 1;
    }

    .numbers-intro {
      max-width: 820px;
      margin: 0 auto 44px;
    }

    .numbers-intro h2 {
      margin-bottom: 22px;
      font-size: 38px;
      font-weight: 700;
    }

    .numbers-intro p {
      font-size: 18px;
      line-height: 1.65;
    }

    .numbers-table {
      max-width: 1180px;
      margin: 0 auto;
      text-align: left;
    }

    .numbers-table h3 {
      margin-bottom: 34px;
      font-size: 29px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .number-row {
      display: grid;
      grid-template-columns: 310px 1fr;
      gap: 40px;
      align-items: center;
      margin-bottom: 28px;
      font-size: 27px;
      line-height: 1.3;
    }

    .number-row strong {
      font-size: 31px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .projects-section {
      padding: 92px 0 84px;
    }

    .section-center {
      max-width: 720px;
      margin: 0 auto 70px;
      text-align: center;
    }

    .project-row {
      align-items: center;
      margin-bottom: 76px;
    }

    .project-row img {
      width: 100%;
      height: 390px;
      object-fit: cover;
      border-radius: 14px;
    }

    .project-content h3 {
      margin-bottom: 32px;
      font-size: 31px;
      line-height: 1.2;
      font-weight: 700;
      text-transform: uppercase;
    }

    .project-content p {
      margin-bottom: 17px;
      font-size: 17px;
      line-height: 1.55;
    }

    .site-footer {
      background: #2d2d2d;
      color: #fff;
      padding: 54px 0 62px;
    }

    .footer-logo .mark-grid span {
      background: #fff;
    }

    .footer-logo strong {
      color: #fff;
    }

    .footer-about {
      max-width: 330px;
      margin-top: 28px;
      font-size: 17px !important;
      line-height: 1.55 !important;
	  color:#fff !important;
    }

    .footer-title {
      margin-bottom: 24px;
      font-size: 20px;
      font-weight: 700;
    }

    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 9px;
      font-size: 17px !important;
	  color:#fff !important;
    }
	
	.footer-links li a {
		color:#fff !important;
		font-size:17px !important;
	}

    .contact-line {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 18px;
      font-size: 17px;
    }

    @media (max-width: 1199px) {
      .navbar-nav {
        gap: 18px;
      }

      .service-card h3 {
        font-size: 24px;
      }

      .mini-features {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 991px) {
      .site-header {
        padding: 12px 0;
      }

      .navbar-collapse {
        padding: 20px 0 8px;
      }

      .hero-slider,
      .hero-slide {
        min-height: 560px;
      }

      .hero-slide > .container {
        min-height: 560px;
      }

      .hero-content p {
        font-size: 18px;
      }

      .section-pad {
        padding: 70px 0;
      }

      .service-top {
        align-items: start;
        flex-direction: column;
      }

      .why-image {
        min-height: 390px;
        margin-top: 28px;
      }

      .number-row {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .project-row {
        margin-bottom: 58px;
      }

      .project-content {
        margin-top: 28px;
      }

      .project-row:nth-child(even) .project-content {
        margin-top: 0;
        margin-bottom: 28px;
      }
    }

    @media (max-width: 767px) {
      .hero-slider,
      .hero-slide {
        min-height: 530px;
      }

      .hero-slide > .container {
        min-height: 530px;
      }

      .hero-content .eyebrow {
        font-size: 21px;
      }

      .hero-content p,
      .section-copy {
        font-size: 16px;
      }

      .rounded-image,
      .project-row img {
        min-height: auto;
        height: 285px;
      }

      .why-item,
      .mini-feature {
        grid-template-columns: 54px 1fr;
        gap: 16px;
      }

      .check-icon {
        font-size: 42px;
      }

      .why-item h3,
      .mini-feature h3 {
        font-size: 23px;
      }

      .numbers-intro h2 {
        font-size: 30px;
      }

      .number-row,
      .number-row strong {
        font-size: 22px;
      }

      .site-footer {
        padding-bottom: 36px;
      }
    }
a.brand-logo img {
	height: 86px;
}



/*---- About Us Page ----*/

.about-hero {
      min-height: 384px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      background: url("../images/breadcum-bg.jpg") center/cover no-repeat;
    }

    .about-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0, 0, 0, .75), rgba(93, 66, 28, .52), rgba(0, 0, 0, .78));
    }

    .about-hero-content {
      position: relative;
      z-index: 1;
      max-width: 820px;
      padding: 70px 15px;
    }

    .about-hero h1 {
      margin: 0 0 30px;
      font-size: clamp(48px, 5vw, 48px);
      line-height: 1.1;
      font-weight: 700;
    }

    .about-hero p {
      margin: 0;
      font-size: 23px !important;
      line-height: 1.55 !important;
      font-weight: 600 !important;
	  color:#e9e9e9 !important;
	      font-family: "Poppins", sans-serif;
    }

    .about-page {
      color: #1f1f1f;
      background: #fff;
    }

    .about-block {
      padding: 90px 0 70px;
    }

    .about-narrow {
      max-width: 900px;
    }

    .about-shift-right {
      max-width: 860px;
      margin-left: auto;
    }

    .about-page h2 {
      margin: 0 0 22px;
      color: #000;
      font-size: clamp(34px, 3vw, 42px);
      line-height: 1.18;
      font-weight: 700;
    }

    .about-page p,
    .about-page li,
    .about-service-table {
      color: #252525;
      font-size: 20px;
      line-height: 1.55;
      font-weight: 400;
    }

    .about-page strong {
      font-weight: 700;
    }

    .about-spacer-lg {
      height: 38px;
    }

    .check-list {
      list-style: none;
      margin: 15px 0 0;
      padding: 0;
      display: grid;
      gap: 8px;
    }

    .check-list li {
      position: relative;
      padding-left: 36px;
    }

    .check-list li::before {
      content: "\f14a";
      position: absolute;
      left: 0;
      top: 1px;
      color: #1db954;
      font-family: "Font Awesome 6 Free";
      font-size: 24px;
      font-weight: 400;
      line-height: 1.2;
    }

    .about-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 95px;
      align-items: start;
    }

    .simple-list {
      margin: 0;
      padding-left: 24px;
    }

    .client-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 36px;
      align-items: center;
      margin-top: 50px;
    }

    .client-logo {
      height: 88px;
      min-width: 208px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #000;
      color: #fff;
      line-height: 1;
    }

    .turner-logo {
      font-size: 48px;
      font-weight: 700;
      letter-spacing: -3px;
    }

    .lt-logo {
      gap: 12px;
      font-size: 19px;
      font-style: italic;
      font-weight: 700;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .lt-logo i {
      width: 42px;
      height: 42px;
      border: 2px solid #fff;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-style: normal;
    }

    .services-offering {
      padding: 78px 0 96px;
    }

    .about-service-table {
      width: 100%;
      max-width: 1120px;
    }

    .about-service-table th,
    .about-service-table td {
      padding: 9px 0;
      border: 0;
      vertical-align: top;
    }

    .about-service-table th {
      padding-bottom: 12px;
      color: #000;
      font-size: 29px;
      line-height: 1.2;
      font-weight: 700;
    }

    .about-service-table td:first-child {
      width: 43%;
      color: #000;
      font-weight: 700;
      text-transform: uppercase;
    }

    @media (max-width: 991px) {
      .about-hero {
        min-height: 470px;
      }

      .about-block {
        padding: 65px 0 48px;
      }

      .about-shift-right {
        margin-left: 0;
      }

      .about-two-col {
        grid-template-columns: 1fr;
        gap: 58px;
      }
    }

    @media (max-width: 767px) {
      .about-hero {
        min-height: 390px;
      }

      .about-hero h1 {
        margin-bottom: 22px;
      }

      .about-hero p,
      .about-page p,
      .about-page li,
      .about-service-table {
        font-size: 17px;
      }

      .client-logos {
        gap: 18px;
        margin-top: 30px;
      }

      .client-logo {
        width: 100%;
        min-width: 0;
      }

      .about-service-table,
      .about-service-table tbody,
      .about-service-table tr,
      .about-service-table th,
      .about-service-table td {
        display: block;
        width: 100%;
      }

      .about-service-table thead {
        display: none;
      }

      .about-service-table tr {
        margin-bottom: 18px;
      }

      .about-service-table td {
        padding: 2px 0;
      }

      .about-service-table td:first-child {
        width: 100%;
      }
    }
	
/*---- Service Page Css ----*/
.service-detail-page {
      background: #fff;
      color: #111;
    }

    .service-detail-section {
      padding: 105px 0 100px;
    }

    .service-detail-image {
      width: 100%;
      height: 430px;
      object-fit: cover;
      border-radius: 0;
    }

    .service-detail-content {
      max-width: 880px;
      margin-left: auto;
    }

    .service-detail-content h1 {
      margin: 0 0 34px;
      color: #000;
      font-size: clamp(34px, 3vw, 42px);
      line-height: 1.2;
      font-weight: 700;
    }

    .service-detail-content p {
      margin: 0 0 24px;
      color: #111;
      font-size: 20px;
      line-height: 1.55;
      font-weight: 400;
	      font-family: "Poppins", sans-serif;
    }

    .service-detail-content p.lead-copy {
      margin-bottom: 30px;
    }

    .service-detail-content strong {
      font-weight: 700;
    }

    @media (max-width: 991px) {
      .service-detail-section {
        padding: 70px 0;
      }

      .service-detail-content {
        margin-left: 0;
      }

      .service-detail-image {
        height: 340px;
        margin-bottom: 34px;
      }
    }

    @media (max-width: 767px) {
      .service-detail-section {
        padding: 52px 0;
      }

      .service-detail-image {
        height: 260px;
      }

      .service-detail-content p {
        font-size: 17px;
      }
    }