/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Global
	6. 	Plugins
	7. 	Page Templates
		a. 	Template: Home
		b. 	Template: About
		c. 	Template: Team
		d. 	Template: Case studies
		e. 	Template: Career
		f. 	Template: Engineering
		g. 	Template: Contact
		h. 	Template: Content Page
		i. 	Template: 


		...
		z. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Extras
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	1. Document Setup
/* -------------------------------------------------------------------------- */
:root {
  --primaryColor: #0072ae;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", serif;
}

html {
  overflow-x: hidden;
}

@media (min-width: 1799px) {
  .container {
    max-width: 1599px;
  }
  #header .container {
    max-width: 1650px;
  }
}

/* -------------------------------------------------------------------------- */
/*	2. Element Base
/* -------------------------------------------------------------------------- */

main {
  position: relative;
  z-index: 9;
}

ul,
ol {
  padding-left: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* -------------------------------------------------------------------------- */
/*	3. Helper Classes
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	4.	Site Header
/* -------------------------------------------------------------------------- */

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 30px 0 11px 0;
  background-color: #f8f8f8;
}

#header .header-content {
  position: relative;
}

#header .header-wrapper {
  display: flex;
  justify-content: end;
  height: 49px;
}

#header .logo-area {
  width: 314px;
  height: 54px;
  display: flex;
  position: absolute;
  left: 0;
}

#header .logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

#header .main-menu {
  display: flex;
  align-items: center;
  gap: 97px;
}

#header .main-menu > .menu-item > a {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

#header .main-menu > .menu-item:hover > a {
  color: var(--primaryColor);
}

#header .main-menu > .menu-item.item-dropdown > a {
  padding-right: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='13' viewBox='0 0 8 13' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.071 7.071L1.414 12.728L0 11.314L4.95 6.364L0 1.414L1.414 0L7.071 5.657C7.25847 5.84453 7.36379 6.09884 7.36379 6.364C7.36379 6.62916 7.25847 6.88347 7.071 7.071Z' fill='black'/%3E%3C/svg%3E");
  background-position: right 5px;
  background-repeat: no-repeat;
  background-size: 7px;
  transition: color 0.3s ease;
}

#header .main-menu > .menu-item.item-dropdown:hover > a {
  color: var(--primaryColor);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.65703 7.071L2.66411e-05 1.414L1.41403 -4.94551e-07L6.36403 4.95L11.314 -6.18079e-08L12.728 1.414L7.07103 7.071C6.8835 7.25847 6.62919 7.36379 6.36403 7.36379C6.09886 7.36379 5.84455 7.25847 5.65703 7.071Z' fill='%230072AE'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: right center;
}

#header .main-menu > .menu-item.item-dropdown .sub-menu::before {
  content: "";
  width: 100%;
  height: 30px;
  display: block;
  position: absolute;
  left: 0;
  top: -30px;
  cursor: pointer;
}

#header .main-menu > .menu-item.item-dropdown .sub-menu {
  gap: 55px;
  justify-content: end;
  width: 100%;
  left: 0;
  position: absolute;
  top: 100%;
  background-color: #fff;
  border-top: 1px solid #afafaf;
  padding: 32px 12.5% 32px 3.5%;
  display: none;
  transition: 0.3s ease;
}

#header .main-menu > .menu-item.item-dropdown:hover .sub-menu {
  display: flex;
}

#header .main-menu > .menu-item.item-dropdown .sub-menu > .menu-item {
  list-style: disc;
}

#header .main-menu > .menu-item.item-dropdown .sub-menu > .menu-item a {
  color: #212121;
  font-size: 20px;
  font-weight: 400;
  line-height: 212%;
  letter-spacing: -0.4px;
  transition: 0.3s ease;
}

#header .main-menu > .menu-item.item-dropdown .sub-menu > .menu-item:hover a {
  color: var(--primaryColor);
}

#header .main-menu .menu-item.item-btn a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 125px;
  border-radius: 6px;
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  transition: 0.3s ease;
}

#header .main-menu .menu-item.item-btn:hover a {
  color: var(--primaryColor);
  background-color: #f8f8f8;
}

#header .mobile-menu-btn {
  display: none;
  border: none;
  background-color: transparent;
  outline: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 36px;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='36' viewBox='0 0 42 36' fill='none'%3E%3Cpath d='M42 6H0V0H42V6ZM42 21H0V15H42V21ZM0 36H42V30H0V36Z' fill='black'/%3E%3C/svg%3E");
}

/* Mobile Menu Styles (Modern & Minimal) */
.offcanvas {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: none !important;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.08);
}

.offcanvas-header {
  padding: 35px 45px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.offcanvas-header .btn-close {
  background-size: 0.9em;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offcanvas-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg) scale(1.1);
}

.offcanvas-body {
  padding: 40px 45px !important;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu .menu-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1a1a1a;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 0;
  transition: color 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.8px;
}

.mobile-menu .menu-item > a:hover {
  color: var(--primaryColor);
  transform: translateX(8px);
}

.mobile-menu .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.mobile-menu .menu-item-has-children > a:hover::after {
  filter: invert(33%) sepia(87%) saturate(2335%) hue-rotate(182deg)
    brightness(97%) contrast(101%);
}

.mobile-menu .menu-item.active > a::after {
  transform: rotate(180deg);
}

.mobile-menu .sub-menu {
  list-style: none;
  padding: 8px 0 16px 20px;
  margin: 0;
  display: none;
  border-left: 1.5px solid rgba(0, 0, 0, 0.06);
  margin-left: 10px;
}

.mobile-menu .sub-menu .menu-item > a {
  font-size: 17px;
  font-weight: 400;
  color: #666;
  padding: 10px 0;
  letter-spacing: -0.3px;
}

.mobile-menu .sub-menu .menu-item > a:hover {
  color: var(--primaryColor);
  transform: translateX(6px);
}

/* -------------------------------------------------------------------------- */
/*	5. Global
/* -------------------------------------------------------------------------- */

main {
  padding-top: 90px;
}

section.contact {
  background: #212121;
}

section.contact .content-row {
  display: flex;
  gap: 177px;
}

section.contact .title {
  color: #fff;
  text-align: right;
  font-size: 72px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -2.16px;
  text-transform: uppercase;
}

section.contact .title-area p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
}

section.contact .title-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
}

section.contact .form-area {
  flex: 1.1;
}

section.contact .form-area form {
  width: 100%;
}

section.contact .form-row {
  display: flex;
  gap: 16px;
}

section.contact .input-wrap {
  flex: 1;
  width: 100%;
  margin-bottom: 25px;
}

section.contact .input-wrap label {
  color: #e4dad7;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  margin-bottom: 4px;
}

section.contact .input-wrap textarea,
section.contact .input-wrap input {
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0);
  background: rgba(224, 191, 184, 0.12);
  padding: 8px 12px;
  width: 100%;
  height: 36px;
  outline: none;
  box-shadow: none;
  font-size: 12px;
  color: #fff;
  line-height: 20px;
}

section.contact .input-wrap textarea::placeholder,
section.contact .input-wrap input::placeholder {
  color: rgba(235, 213, 209, 0.4);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

section.contact .input-wrap textarea {
  height: 76px;
  resize: none;
}

section.contact .submit-wrap {
  position: relative;
}

section.contact input[type="submit"] {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  width: 100%;
  max-width: 403px;
  height: 57px;
  transition: 0.3s ease;
}

section.contact input[type="submit"]:hover {
  background-color: #212121;
  color: var(--primaryColor);
}

/* General Hero */
section.hero-blue {
  padding: 115px 0 60px 0;
  background-color: var(--primaryColor);
  background-image: url(../images/general/hero.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  min-height: 507px;
}

section.hero-blue .subtitle {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 91%;
  letter-spacing: -0.96px;
  margin-bottom: 18px;
}

section.hero-blue .title {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 91%;
  text-transform: uppercase;
  margin-bottom: 40px;
}

section.hero-blue p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.48px;
}

section.hero-blue.dark {
  background-color: #212121;
}

/* IMG Section */
section.img-section {
  width: 100%;
}

section.img-section img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

main.content-template .s1 {
  padding: 125px 0 150px 0;
  background-color: #212121;
}

main.content-template .s1 .heading {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -2.16px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

main.content-template .s1 .content-area > * {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
}

main.content-template .s1 .content-area p{
  margin-bottom: 20px;
}

main.content-template .s1 .content-area strong,
main.content-template .s1 .content-area b{
  font-weight: 700;
}

main.content-template .s1 .content-area a{
  text-decoration: underline;
  color: #0072ae;
}

main.content-template .s1 .content-area ul,
main.content-template .s1 .content-area ol{
  padding-left: 1.5rem;
  margin-bottom: 20px
}

main.content-template .s1 .content-area li{
  list-style: disc;
  margin-bottom: 2.5px;
}

/* -------------------------------------------------------------------------- */
/*	6. Plugins
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7. Page Templates
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	a. Template: Home
/* -------------------------------------------------------------------------- */

main.home .s1 {
  background-image: url(../images/home/s1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 435px 0 130px 0;
  position: sticky;
  top: 0;
}

main.home .s1 .subtitle {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: 128%;
  margin-bottom: 5px;
}

main.home .s1 .title {
  color: #fff;
  font-size: 118px;
  font-weight: 700;
  line-height: 91%;
  letter-spacing: -3.75px;
  text-transform: uppercase;
}

main.home .s2 .content-section {
  padding: 125px 0;
  position: sticky;
  top: 0;
  background-color: #f8f8f8;
}

main.home .s2 .content-section:nth-child(even) {
  background: #ddd;
}

main.home .s2 .content-row {
  display: flex;
  gap: 117px;
}

main.home .s2 .image-col {
  width: 100%;
  max-width: 912.849px;
  display: flex;
  flex-direction: column;
  gap: 43px;
}

main.home .s2 .image-col p {
  color: #212121;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
}

main.home .s2 .image-area img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

main.home .s2 .cta-btn {
  color: var(--primaryColor);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  padding: 20px 55px;
  line-height: 105%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid var(--primaryColor);
  max-width: 100%;
  width: max-content;
  transition: 0.3s ease;
}

main.home .s2 .cta-btn:hover {
  background-color: var(--primaryColor);
  color: #fff;
}

main.home .s2 .content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
}

main.home .s2 .subtitle {
  color: var(--primaryColor);
  text-align: right;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.4px;
  margin-bottom: 13px;
}

main.home .s2 .title {
  color: #212121;
  text-align: right;
  font-size: 72px;
  font-weight: 700;
  line-height: 91%;
  letter-spacing: -2.16px;
  text-transform: uppercase;
}

main.home .s2 .content-list {
  display: flex;
  flex-direction: column;
  align-items: end;
}

main.home .s2 .content-list li {
  list-style: disc;
  color: #212121;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
  line-height: 212%;
  letter-spacing: -0.4px;
}

main.home .s3 {
  background-color: #212121;
  padding: 185px 0 200px 0;
  background-position: right bottom;
  background-image: url(../images/home/s3-bg.webp);
  background-repeat: no-repeat;
  background-size: 79.2%;
  position: relative;
  z-index: 3;
}

main.home .s3 .content-area {
  width: 100%;
  max-width: 663px;
}

main.home .s3 .title {
  color: #fff;
  text-align: right;
  font-size: 72px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 80px;
}

main.home .s3 .title span {
  color: #0072ae;
}

main.home .s3 .desc-wrap {
  padding-left: 145px;
}

main.home .s3 p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
  margin-bottom: 45px;
  max-width: 340px;
}

main.home .s3 .cta-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  width: 205px;
  height: 57px;
  transition: 0.3s ease;
}

main.home .s3 .cta-btn:hover {
  background-color: #212121;
  color: var(--primaryColor);
}

main.home .s4 {
  padding: 194px 0;
  background-color: #ddd;
  position: relative;
  z-index: 3;
}

main.home .s4 .content-row {
  display: flex;
  gap: 200px;
}

main.home .s4 .image-area {
  flex: 1.15;
}

main.home .s4 .image-area img {
  width: 100%;
  height: auto;
}

main.home .s4 .content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 45px;
  justify-content: space-between;
}

main.home .s4 .title {
  color: #212121;
  text-align: right;
  font-size: 72px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -2.16px;
  text-transform: uppercase;
}

main.home .s4 .title > span {
  color: var(--primaryColor);
}

main.home .s4 .content-area p {
  color: #212121;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
  padding-left: 45px;
}

main.home .s4 .cta-btn {
  color: var(--primaryColor);
  font-size: 16px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid var(--primaryColor);
  width: 209px;
  height: 57px;
  transition: 0.3s ease;
}

main.home .s4 .cta-btn:hover {
  color: #fff;
  background-color: var(--primaryColor);
}

main.home .s5 {
  padding: 200px 0 180px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
  background-color: #fff;
}

main.home .s5 .title {
  color: #212121;
  text-align: right;
  font-size: 72px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -2.16px;
  text-transform: uppercase;
  max-width: 335px;
  width: 100%;
}

main.home .s5 .content-row {
  display: flex;
  gap: 125px;
  margin-left: max(15px, calc((100vw - 1599px) / 2));
}

main.home .s5 .slider-wrap {
  flex: 1;
  overflow-x: scroll;
}

main.home .s5 .slider-wrap::-webkit-scrollbar {
  display: none;
  visibility: hidden;
  opacity: 0;
}

main.home .s5 .slider-area {
  width: max-content;
  display: flex;
  gap: 37px;
}

main.home .s6 {
  padding: 198px 0;
  position: relative;
  z-index: 3;
}

main.home .s6 .title-area {
  justify-content: space-between;
}

main.home .s6 .title-area p {
  max-width: 513px;
}

/* -------------------------------------------------------------------------- */
/*	b. Template: About
/* -------------------------------------------------------------------------- */

main.about .s1 {
  padding: 115px 0 105px 0;
  background-color: var(--primaryColor);
  background-image: url(../images/general/hero.svg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 95%;
}

main.about .s1 .content-wrap {
  width: 100%;
  max-width: 1399px;
}

main.about .s1 .title {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -1.28px;
  text-transform: uppercase;
  margin-bottom: 89px;
}

main.about .s1 .subtext {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 128%;
  letter-spacing: -0.96px;
  margin-bottom: 27px;
}

main.about .s1 p {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.72px;
}

main.about .s2 {
  padding: 119px 0 139px 0;
}

main.about .s2 .slider-wrap {
  flex: 1;
  overflow-x: scroll;
  margin-left: max(15px, calc((100vw - 1599px) / 2));
}

main.about .s2 .slider-wrap::-webkit-scrollbar {
  display: none;
  visibility: hidden;
  opacity: 0;
}

main.about .s2 .slider-area {
  width: max-content;
  display: flex;
  gap: 37px;
}

main.about .s2 .title {
  color: #212121;
  font-size: 64px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -1.92px;
  text-transform: uppercase;
  margin-bottom: 60px;
}

main.about .s3 {
  padding: 143px 0 174px 0;
  background-color: #ecf1f8;
}

main.about .s3 .title {
  color: #212121;
  font-size: 64px;
  font-weight: 700;
  line-height: 91%;
  letter-spacing: -1.92px;
  text-transform: uppercase;
  margin-bottom: 110px;
}

main.about .s3 .timeline-wrap {
  overflow-x: scroll;
  padding-left: max(15px, calc((100vw - 1599px) / 2));
  position: relative;
  cursor: grab;
}

main.about .s3 .timeline-wrap.dragging {
  cursor: grabbing;
}

main.about .s3 .timeline-bg {
  position: absolute;
  left: calc(-1 * max(15px, calc((100vw - 1599px) / 2)));
  width: inherit;
  top: 40%;
}

main.about .s3 .timeline-row {
  display: flex;
  gap: 250px;
  width: max-content;
}

main.about .s3 .timeline-wrap::-webkit-scrollbar {
  display: none;
  visibility: hidden;
  opacity: 0;
}

main.about .s3 .timeline-row.top {
  margin-bottom: 125px;
}

main.about .s3 .timeline-row.top .timeline-item:nth-child(2) {
  max-width: 550px;
}
main.about .s3 .timeline-row.top .timeline-item:nth-child(3) {
  max-width: 520px;
}
main.about .s3 .timeline-row.top .timeline-item:nth-child(4),
main.about .s3 .timeline-row.top .timeline-item:nth-child(5) {
  max-width: 495px;
}

main.about .s3 .timeline-row.bottom .timeline-item .divider-wrap {
  align-items: start;
  top: -75px;
}
main.about .s3 .timeline-row.bottom .timeline-item .timeline-divider::before {
  top: 23px;
}
main.about .s3 .timeline-row.bottom .timeline-item .timeline-divider::after {
  top: -32px;
}

main.about .s3 .timeline-row.bottom {
  padding-left: 330px;
}

main.about .s3 .timeline-row.bottom .timeline-item:nth-child(1) {
  max-width: 480px;
}

main.about .s3 .timeline-row.bottom .timeline-item:nth-child(3),
main.about .s3 .timeline-row.bottom .timeline-item:nth-child(2) {
  max-width: 495px;
}

main.about .s3 .timeline-item {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 480px;
  user-select: none;
  -webkit-user-select: none;
}

main.about .s3 .timeline-year {
  color: #212121;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

main.about .s3 .timeline-year.mob {
  display: none;
  margin-bottom: 10px;
}

main.about .s3 .divider-wrap {
  position: relative;
  height: 100%;
  width: 45px;
  display: flex;
  align-items: end;
}

main.about .s3 .timeline-divider {
  width: 43.556px;
  height: 43.556px;
  background-color: #000;
  border: 18px solid #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main.about .s3 .timeline-divider::before {
  content: "";
  width: 1.5px;
  height: calc(100% - 23px);
  background-color: #000;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
}

main.about .s3 .timeline-divider::after {
  content: "";
  width: 107.423px;
  height: 107.423px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.45;
  display: block;
  position: absolute;
  bottom: -32px;
}

main.about .s3 .timeline-item .timeline-detail {
  flex: 1;
}

main.about .s3 .timeline-title {
  color: #212121;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.4px;
}

main.about .s3 .timeline-image {
  margin: 15px 0;
}

main.about .s3 .timeline-item p {
  color: #212121;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.28px;
}

main.about .s4 {
  padding: 211px 0;
  background-color: #f8f8f8;
  position: sticky;
  top: 0;
}

main.about .s4 .content-row {
  display: flex;
  gap: 320px;
}

main.about .s5 .content-row {
  display: flex;
  gap: 117px;
}

main.about .s5 {
  padding: 144px 0;
  background-color: #ddd;
  position: relative;
  z-index: 3;
}

main.about .content-section .subtitle {
  color: var(--primaryColor);
  text-align: right;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.4px;
  margin-bottom: 13px;
}

main.about .content-section .title {
  color: #212121;
  text-align: right;
  font-size: 64px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -1.92px;
  text-transform: uppercase;
  margin-bottom: 48px;
}

main.about .content-section .content-col {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

main.about .content-section .content-col p {
  color: #212121;
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
}

main.about .content-section .image-col p {
  color: #212121;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
  margin-top: 43px;
}

main.about .content-section .cta-btn {
  color: var(--primaryColor);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primaryColor);
  transition: 0.3s ease;
  border-radius: 6px;
  height: 57px;
  width: 100%;
  max-width: 244px;
}

main.about .content-section .cta-btn.mob {
  display: none;
}

main.about .content-section .cta-btn:hover {
  background-color: var(--primaryColor);
  color: #fff;
}

main.about .s4.content-section .cta-btn {
  max-width: 191px;
}

/* -------------------------------------------------------------------------- */
/*	c. Template: Team
/* -------------------------------------------------------------------------- */

main.team .s2 {
  background-color: #212121;
  padding: 144px 0 182px 0;
}

main.team .s2 .content-row {
  display: flex;
  gap: 179px;
}

main.team .s2 .divider {
  width: 1px;
  height: 144px;
  background: #fff;
  opacity: 0.5;
}

main.team .s2 .content-col {
  flex: 1;
}

main.team .s2 .content-col p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
}

main.team .s3 {
  background-color: #212121;
}

main.team .s3 .main-title {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 91%;
  letter-spacing: -1.92px;
  text-transform: uppercase;
  margin-bottom: 93px;
}

main.team .s3 .team-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 57px;
}

main.team .s3 .team-item {
  width: 100%;
  background-color: #fff;
  padding: 14px;
}

main.team .s3 .team-item .image-area img {
  width: 100%;
  height: 323px;
  object-fit: cover;
  border-radius: 6px;
}

main.team .s3 .team-item .item-body {
  padding-top: 31px;
}

main.team .s3 .team-item .title {
  color: #212121;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
  margin-bottom: 4px;
}

main.team .s3 .team-item .name {
  color: #212121;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.64px;
  margin-bottom: 50px;
}

main.team .s3 .team-item .read-more {
  display: flex;
  align-items: center;
  gap: 12px;
}

main.team .s3 .team-item .read-more i.arrow-right {
  width: 41px;
  height: 39px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='24' viewBox='0 0 12 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.1569 12.7106L4.49994 18.3676L3.08594 16.9536L8.03594 12.0036L3.08594 7.05365L4.49994 5.63965L10.1569 11.2966C10.3444 11.4842 10.4497 11.7385 10.4497 12.0036C10.4497 12.2688 10.3444 12.5231 10.1569 12.7106Z' fill='%230072AE'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  border: 1px solid var(--primaryColor);
  transition: 0.3s ease;
}

main.team .s3 .team-item .read-more:hover i.arrow-right {
  background-color: var(--primaryColor);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='24' viewBox='0 0 12 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.1569 12.7106L4.49994 18.3676L3.08594 16.9536L8.03594 12.0036L3.08594 7.05365L4.49994 5.63965L10.1569 11.2966C10.3444 11.4842 10.4497 11.7385 10.4497 12.0036C10.4497 12.2688 10.3444 12.5231 10.1569 12.7106Z' fill='white'/%3E%3C/svg%3E");
}

main.team .s3 .team-item .read-more .btn-label {
  flex: 1;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
}

main.team .s4 {
  padding: 175px 0 145px 0;
  background-color: #212121;
}

main.team .s4 .content-row {
  display: flex;
  gap: 306px;
}

main.team .s4 .title {
  color: #fff;
  text-align: right;
  font-size: 64px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -1.92px;
  text-transform: uppercase;
  width: 100%;
  max-width: 675px;
}

main.team .s4 .content-area {
  flex: 1;
}

main.team .s4 p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
  margin-bottom: 70px;
}

main.team .s4 .cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 57px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  border-radius: 6px;
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  transition: 0.3s ease;
}

main.team .s4 .cta-btn:hover {
  background-color: #212121;
  color: var(--primaryColor);
}

#team-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  align-items: center;
  justify-content: center;
  background-color: #0000004f;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: none;
}

#team-modal.show {
  display: flex;
}

#team-modal .team-modal-inner {
  background-color: #fff;
  width: 95%;
  max-width: 1575px;
  padding: 37px 43px;
}

#team-modal .team-modal-content {
  display: flex;
  gap: 95px;
}

#team-modal .image-area {
  width: 473px;
}

#team-modal .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#team-modal .content-area {
  flex: 1;
}

#team-modal .btn-wrapper {
  display: flex;
  justify-content: end;
  margin-bottom: 40px;
}

#team-modal .read-less {
  display: flex;
  align-items: center;
  gap: 12px;
}

#team-modal .read-less i.arrow-left {
  width: 41px;
  height: 39px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='24' viewBox='0 0 12 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.1569 12.7106L4.49994 18.3676L3.08594 16.9536L8.03594 12.0036L3.08594 7.05365L4.49994 5.63965L10.1569 11.2966C10.3444 11.4842 10.4497 11.7385 10.4497 12.0036C10.4497 12.2688 10.3444 12.5231 10.1569 12.7106Z' fill='%230072AE'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  border: 1px solid var(--primaryColor);
  rotate: 180deg;
  transition: 0.3s ease;
}

#team-modal .read-less:hover i.arrow-left {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='24' viewBox='0 0 12 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.1569 12.7106L4.49994 18.3676L3.08594 16.9536L8.03594 12.0036L3.08594 7.05365L4.49994 5.63965L10.1569 11.2966C10.3444 11.4842 10.4497 11.7385 10.4497 12.0036C10.4497 12.2688 10.3444 12.5231 10.1569 12.7106Z' fill='white'/%3E%3C/svg%3E");
  background-color: var(--primaryColor);
}

#team-modal .read-less .btn-label {
  flex: 1;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
}

#team-modal .title {
  color: #212121;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
  margin-bottom: 4px;
}

#team-modal .name {
  color: #212121;
  font-size: 72px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -2.16px;
  text-transform: uppercase;
  margin-bottom: 21px;
}

#team-modal .desc-area {
  margin-top: 75px;
}

#team-modal p {
  color: #212121;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
  margin-bottom: 1rem;
}

/* -------------------------------------------------------------------------- */
/*	d. Template: Case Studies
/* -------------------------------------------------------------------------- */

main.case-studies .s1 .title {
  max-width: 900px;
}

main.case-studies .s1 p {
  max-width: 1227px;
}

main.case-studies .s2 {
  padding: 129px 0 188px 0;
}

main.case-studies .s2 .boxes-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

main.case-studies .s2 .box-item {
  padding: 24px;
  background: #ddd;
  border-radius: 6px;
}

main.case-studies .s2 .box-item .image-area {
  width: 100%;
  height: 314px;
}

main.case-studies .s2 .box-item .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main.case-studies .s2 .box-item .box-title {
  color: #212121;
  font-size: 42px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.84px;
  margin: 40px 0 35px 0;
}

main.case-studies .s2 .box-item p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.48px;
}

main.case-studies .s3 {
  padding: 169px 0 106px 0;
}

main.case-studies .s3 .title {
  margin-bottom: 66px;
}

main.case-studies .s3 p {
  text-align: right;
  max-width: 469px;
}

/* -------------------------------------------------------------------------- */
/*	e. Template: Career
/* -------------------------------------------------------------------------- */
main.career .s1 p {
  max-width: 1200px;
}

main.career .s2 {
  padding: 122px 0 152px 0;
}

main.career .s2 .title {
  color: #212121;
  font-size: 64px;
  font-weight: 700;
  line-height: 91%;
  letter-spacing: -1.92px;
  text-transform: uppercase;
  margin-bottom: 72px;
}

main.career .s2 .boxes-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

main.career .s2 .box-item {
  padding: 45px 37px 32px 39px;
  background-color: var(--primaryColor);
  border-radius: 6px;
  border: 1px solid var(--primaryColor);
}

main.career .s2 .box-item .date {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
}

main.career .s2 .box-item .box-title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.64px;
  margin-top: 40px;
  max-width: 495px;
}

main.career .s2 .box-item .subtext {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
  margin: 33px 0;
}

main.career .s2 .box-item .box-desc {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
  margin-bottom: 70px;
}

main.career .s2 .box-item .learn-more {
  display: flex;
  align-items: center;
  gap: 12px;
}

main.career .s2 .box-item .learn-more i.arrow-right {
  width: 41px;
  height: 39px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='24' viewBox='0 0 12 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.1569 12.7106L4.49994 18.3676L3.08594 16.9536L8.03594 12.0036L3.08594 7.05365L4.49994 5.63965L10.1569 11.2966C10.3444 11.4842 10.4497 11.7385 10.4497 12.0036C10.4497 12.2688 10.3444 12.5231 10.1569 12.7106Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 6px;
  border: 1px solid #fff;
  transition: 0.3s ease;
}

main.career .s2 .box-item .learn-more .btn-label {
  flex: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
}

main.career .s2 .box-item .learn-more:hover i.arrow-right {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='24' viewBox='0 0 12 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.1569 12.7106L4.49994 18.3676L3.08594 16.9536L8.03594 12.0036L3.08594 7.05365L4.49994 5.63965L10.1569 11.2966C10.3444 11.4842 10.4497 11.7385 10.4497 12.0036C10.4497 12.2688 10.3444 12.5231 10.1569 12.7106Z' fill='%230072AE'/%3E%3C/svg%3E");
}

main.career .s3 {
  padding-bottom: 90px;
}

main.career .s3 .content-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

main.career .s3 .title {
  color: #212121;
  text-align: right;
  font-size: 64px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -1.92px;
  text-transform: uppercase;
  padding-right: 120px;
}

main.career .s3 .list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

main.career .s3 .list-item {
  display: flex;
  align-items: center;
  gap: 33px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.5);
}

main.career .s3 .list-item:nth-last-child(1) {
  padding: 0;
  border: none;
}

main.career .s3 .list-item .icon {
  width: 40px;
  height: 40px;
  background-image: url(../images/icons/plus.svg);
  background-position: center;
  background-repeat: no-repeat;
}

main.career .s3 .list-item .list-title {
  flex: 1;
  color: #212121;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.48px;
}

main.career .s4 {
  padding: 169px 0 149px 0;
}

main.career .s4 .title {
  margin-bottom: 66px;
}

main.career .s4 p {
  text-align: right;
  max-width: 469px;
}

/* -------------------------------------------------------------------------- */
/*	f. Template: Contact
/* -------------------------------------------------------------------------- */

main.contact .s1 {
  padding: 127px 0 157px 0;
}

main.contact .s1 .title {
  margin-bottom: 68px;
  text-align: right;
}

main.contact .s1 p {
  max-width: 514px;
  text-align: right;
}

/* -------------------------------------------------------------------------- */
/*	g. Template: Engineering
/* -------------------------------------------------------------------------- */

main.engineering .s1 p {
  max-width: 820px;
}

main.engineering .s2 .content-section {
  padding: 180px 0 190px 0;
  position: sticky;
  top: 0;
  background-color: #f8f8f8;
}

main.engineering .s2 .content-section:nth-child(odd) {
  background-color: #ddd;
}

main.engineering .s2 .content-row {
  display: flex;
  gap: 117px;
}

main.engineering .s2 .image-col {
  width: 100%;
  max-width: 912.849px;
  display: flex;
  flex-direction: column;
  gap: 43px;
}

main.engineering .s2 .image-col p {
  color: #212121;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
}

main.engineering .s2 .image-area {
  width: 100%;
}

main.engineering .s2 .image-area img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

main.engineering .s2 .cta-btn {
  color: var(--primaryColor);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid var(--primaryColor);
  width: 209px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

main.engineering .s2 .cta-btn.mob {
  display: none;
}

main.engineering .s2 .cta-btn:hover {
  background-color: var(--primaryColor);
  color: #fff;
}

main.engineering .s2 .content-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
}

main.engineering .s2 .title {
  color: #212121;
  text-align: right;
  font-size: 64px;
  font-weight: 700;
  line-height: 91%;
  letter-spacing: -1.92px;
  text-transform: uppercase;
}

main.engineering .s3 {
  background-color: #212121;
  padding: 145px 0 130px 0;
}

main.engineering .s3 .content-row {
  display: flex;
  gap: 117px;
}

main.engineering .s3 .title-area {
  flex: 1;
}

main.engineering .s3 .title {
  color: #fff;
  text-align: right;
  font-size: 64px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -1.92px;
  text-transform: uppercase;
  position: sticky;
  top: 120px;
}

main.engineering .s3 .list-area {
  width: 100%;
  max-width: 922px;
  display: flex;
  flex-direction: column;
  align-items: end;
}

main.engineering .s3 .list-wrap {
  width: 100%;
  max-width: 735px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

main.engineering .s3 .list-item {
  display: flex;
  align-items: center;
  gap: 33px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

main.engineering .s3 .list-item:nth-last-child(1) {
  border: none;
  padding: 0;
}

main.engineering .s3 .list-item .icon {
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/icons/plus.svg);
  filter: invert(1) contrast(3);
}

main.engineering .s3 .list-item .list-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.48px;
}

main.engineering .s4 {
  background-color: #212121;
  padding: 185px 0 300px 0;
  background-position: right bottom;
  background-image: url(../images/general/footer-banner.webp);
  background-repeat: no-repeat;
  background-size: 79.2%;
}

main.engineering .s4 .content-area {
  width: 100%;
  max-width: 663px;
  display: flex;
  flex-direction: column;
  align-items: end;
}

main.engineering .s4 .title {
  color: #fff;
  text-align: right;
  font-size: 72px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 80px;
}

main.engineering .s4 .desc-wrap {
  padding-right: 145px;
  max-width: 516px;
}

main.engineering .s4 p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
  margin-bottom: 45px;
}

main.engineering .s4 .cta-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  width: 205px;
  height: 57px;
  transition: 0.3s ease;
}

main.engineering .s4 .cta-btn:hover {
  background-color: #212121;
  color: var(--primaryColor);
}

/* -------------------------------------------------------------------------- */
/*	h. Template: Content Page
/* -------------------------------------------------------------------------- */

main.content-page.data-solutions .s1 p,
main.content-page.program-management .s1 p,
main.content-page.bridge-management .s1 p,
main.content-page.engineering-design .s1 p {
  max-width: 917px;
}

main.content-page .s1 {
  position: sticky;
  top: 0;
}

main.content-page .s1-bottom {
  position: relative;
}

main.content-page .s1-bottom .content-area {
  position: absolute;
  left: 0;
  bottom: 85px;
  width: 100%;
}

main.content-page .s1-bottom .content-row {
  display: flex;
  gap: 117px;
  align-items: end;
}

main.content-page .s1-bottom .title {
  color: #fff;
  text-align: right;
  font-size: 72px;
  font-weight: 700;
  line-height: 91%;
  letter-spacing: -2.16px;
  text-transform: uppercase;
  width: 100%;
  max-width: 547px;
}

main.content-page .s1-bottom p {
  flex: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
}

main.content-page .s2::before {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  background: #212121;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(33, 33, 33, 1) 50%
  );
  height: 100px;
}

main.content-page .s2 {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #212121;
  padding: 150px 0 75px 0;
}

main.content-page .s2 .boxes-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

main.content-page .s2 .box-item {
  padding: 24px 20px 75px 20px;
  border-radius: 6px;
  background: #fff;
}

main.content-page .s2 .box-item .image-area {
  width: 100%;
  margin-bottom: 40px;
}

main.content-page .s2 .box-item .image-area img {
  width: 100%;
  height: auto;
  aspect-ratio: 726/311;
}

main.content-page .s2 .box-item .title {
  color: #212121;
  font-size: 42px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.84px;
  margin-bottom: 15px;
}

main.content-page .s2 .box-item p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}

section.footer-banner {
  background-color: #212121;
  padding: 150px 0 290px 0;
  background-position: right bottom;
  background-image: url(../images/general/footer-banner.webp);
  background-repeat: no-repeat;
  background-size: 75.2%;
  position: relative;
  z-index: 3;
}

section.footer-banner .content-area {
  width: 100%;
  max-width: 663px;
  display: flex;
  flex-direction: column;
}

section.footer-banner .desc-wrap {
  max-width: 370px;
  align-self: center;
}

section.footer-banner .title {
  color: #fff;
  text-align: right;
  font-size: 64px;
  font-weight: 700;
  line-height: 105%;
  text-transform: uppercase;
  letter-spacing: -1.92px;
  margin-bottom: 80px;
}

section.footer-banner .title span {
  color: var(--primaryColor);
}

section.footer-banner p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.36px;
  margin-bottom: 45px;
}

section.footer-banner .cta-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
  width: 205px;
  height: 57px;
  transition: 0.3s ease;
}

section.footer-banner .cta-btn:hover {
  background-color: #212121;
  color: var(--primaryColor);
}

/* -------------------------------------------------------------------------- */
/*	7z. Template: Full Width
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	8. Post: Archive
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	9. Post: Single
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	10. Blocks
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	11. Entry Content
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	13. Site Pagination
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	14. Error 404
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	15.	Extras
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	16. Site Footer
/* -------------------------------------------------------------------------- */

#footer {
  padding: 142px 0 519px 0;
  background-color: var(--primaryColor);
  background-image: url(../images/general/footer-bg.svg);
  background-position: bottom right;
  background-size: 98%;
  background-repeat: no-repeat;
}

#footer .footer-logo {
  margin-bottom: 115px;
  position: relative;
}

#footer .footer-logo::before {
  content: "";
  width: 900px;
  height: 5.678px;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  right: 100%;
}

#footer .footer-logo img {
  width: 190px;
  height: 48px;
}

#footer .footer-wrapper {
  display: flex;
  gap: 135px;
}

#footer .copyright {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 182%;
  letter-spacing: -0.42px;
}

#footer .footer-start {
  display: flex;
  flex-direction: column;
  flex: 0.7;
}

#footer .footer-mid {
  flex: 1.6;
}

#footer .footer-end {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  flex: 1.9;
}

#footer .legal-link {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 182%;
  letter-spacing: -0.42px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

#footer .footer-mid .title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 91%;
  letter-spacing: -1.44px;
  text-transform: uppercase;
  margin-bottom: 42px;
}

#footer .newsletter-form .form-row {
  display: flex;
  gap: 15px;
}

#footer .newsletter-form .input-wrap {
  flex: 1;
}

#footer .newsletter-form input[type="email"] {
  width: 100%;
  display: flex;
  height: 41px;
  padding: 8px 12px;
  align-items: center;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0);
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
}

#footer .newsletter-form input[type="email"]::placeholder {
  color: #212121;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

#footer .newsletter-form input[type="submit"] {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  display: flex;
  width: 148px;
  height: 41px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #212121;
  border: 1px solid #212121;
}

#footer .footer-end .menu-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.54px;
  text-transform: uppercase;
}

#footer .footer-end .footer-menu {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer .footer-menu .menu-item a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 105%;
  letter-spacing: -0.48px;
}

#footer .sm-items {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 18px;
}

#footer .footer-details {
  flex-direction: column;
}

#footer .footer-details.mob {
  display: none;
}

/* -------------------------------------------------------------------------- */
/*	17. Media Queries
/* -------------------------------------------------------------------------- */

@media (min-width: 1999px) {
  main.home .s3,
  main.engineering .s4,
  section.footer-banner {
    background-size: 1400px;
  }
}

@media (max-width: 1799px) {
  #header .main-menu > .menu-item.item-dropdown .sub-menu {
    padding: 24px 16.5% 24px 3.5%;
  }

  /* Home */
  main.home .s1 {
    padding: 350px 0 120px 0;
  }

  main.home .s1 .title {
    font-size: 96px;
    letter-spacing: -2.75px;
  }

  main.home .s2 .image-col {
    max-width: 740px;
  }

  main.home .s3 {
    padding: 140px 0 165px 0;
  }

  main.home .s3 .content-area {
    max-width: 590px;
  }

  main.home .s4 .content-row {
    gap: 100px;
  }

  main.home .s4 .title {
    font-size: 64px;
  }

  main.home .s4 .content-area p {
    padding-left: 35px;
  }

  main.home .s5 .content-row {
    gap: 75px;
  }

  main.home .s5 {
    padding: 150px 0 125px 0;
  }

  section.contact .content-row {
    gap: 100px;
  }

  section.contact .title {
    font-size: 64px;
  }

  section.hero-blue .subtitle {
    font-size: 28px;
  }

  section.hero-blue .title {
    font-size: 64px;
  }

  section.hero-blue p {
    font-size: 22px;
  }

  /* About */
  main.about .s1 .title {
    font-size: 56px;
    margin-bottom: 50px;
  }

  main.about .s1 .subtext {
    font-size: 28px;
    margin-bottom: 20px;
  }

  main.about .s1 p {
    font-size: 22px;
  }

  main.about .s3 .timeline-wrap {
    padding-left: max(15px, calc((100vw - 1320px) / 2));
  }
  main.home .s5 .content-row,
  main.about .s2 .slider-wrap {
    margin-left: max(15px, calc((100vw - 1320px) / 2));
  }

  main.about .s4 {
    padding: 150px 0;
  }

  main.about .s5 {
    padding: 125px 0;
  }

  /* Engineering */
  main.engineering .s2 .content-section {
    padding: 140px 0 150px 0;
  }

  main.engineering .s2 .image-col {
    max-width: 740px;
  }

  main.engineering .s2 .content-row {
    gap: 100px;
  }

  main.engineering .s2 .title {
    font-size: 56px;
  }

  main.engineering .s3 {
    padding: 125px 0 75px 0;
  }

  main.engineering .s3 .list-area {
    max-width: 740px;
  }

  main.engineering .s3 .list-wrap {
    max-width: 100%;
  }

  main.engineering .s4 .title {
    font-size: 64px;
  }

  /* Team */
  main.team .s2 .content-row {
    gap: 138px;
  }

  main.team .s3 .main-title {
    font-size: 56px;
    margin-bottom: 70px;
  }

  main.team .s3 .team-row {
    gap: 27px;
  }

  main.team .s3 .team-item .title {
    font-size: 16px;
  }

  main.team .s3 .team-item {
    padding: 14px 10px;
  }

  main.team .s3 .team-item .name {
    font-size: 24px;
    margin-bottom: 30px;
  }

  main.team .s4 .title {
    font-size: 56px;
    letter-spacing: -1.24px;
    max-width: 585px;
  }

  main.team .s4 .content-row {
    gap: 200px;
  }

  /* Content Page */
  main.content-page .s1-bottom .title {
    font-size: 64px;
    max-width: 474px;
  }

  main.content-page .s2 .box-item .title {
    font-size: 32px;
  }

  /* Careers */
  main.career .s3 .title {
    padding-right: 70px;
  }

  #footer {
    padding: 110px 0 430px 0;
  }

  #footer .footer-mid .title {
    font-size: 42px;
    letter-spacing: -1.14px;
  }

  #footer .footer-wrapper {
    gap: 75px;
  }

  #footer .footer-end {
    gap: 35px;
  }
}

@media (max-width: 1599px) {
  #header .main-menu {
    gap: 60px;
  }
  #header .main-menu > .menu-item.item-dropdown .sub-menu {
    padding: 24px 12% 24px 3.5%;
  }
}

@media (max-width: 1399px) {
  #header .main-menu > .menu-item.item-dropdown .sub-menu > .menu-item a {
    font-size: 18px;
  }

  #header .main-menu {
    gap: 50px;
  }

  /* Content Page */
  section.footer-banner .title {
    font-size: 56px;
    letter-spacing: -1.32px;
  }

  section.footer-banner .content-area {
    max-width: 595px;
  }

  main.content-template .s1 .heading{
    font-size: 64px;
  }

  /* Home */
  main.home .s1 {
    padding: 300px 0 120px 0;
  }

  main.home .s1 .title {
    font-size: 82px;
    letter-spacing: -1.75px;
  }

  main.home .s2 .title {
    font-size: 48px;
  }

  main.home .s2 .image-col {
    max-width: 640px;
  }

  main.home .s2 .content-list li {
    font-size: 18px;
  }

  main.home .s3 .title {
    font-size: 64px;
  }

  main.home .s3 .content-area {
    max-width: 571px;
  }

  main.home .s3 .desc-wrap {
    padding-left: 110px;
  }

  main.home .s4 {
    padding: 125px 0;
  }

  main.home .s4 .title {
    font-size: 56px;
    letter-spacing: -1.32px;
  }

  main.home .s4 .content-area p {
    padding-left: 0;
  }

  main.home .s4 .content-row {
    gap: 75px;
  }

  main.home .s5 .content-row {
    gap: 70px;
  }

  main.home .s5 .title {
    font-size: 56px;
    max-width: 260px;
  }

  main.home .s5 .slider-area .slide-item img {
    max-width: 250px;
  }

  main.home .s6 {
    padding: 145px 0;
  }

  section.contact .title {
    font-size: 56px;
  }

  section.contact input[type="submit"] {
    max-width: 320px;
  }

  section.hero-blue p {
    font-size: 20px;
  }

  section.hero-blue .title {
    font-size: 56px;
    margin-bottom: 25px;
  }

  section.hero-blue .subtitle {
    font-size: 24px;
    letter-spacing: -0.48px;
    margin-bottom: 13px;
  }

  section.hero-blue {
    min-height: 350px;
    background-size: 100%;
  }

  /* Home */
  main.about .s1 {
    padding: 100px 0 90px 0;
  }

  main.about .s1 p {
    font-size: 20px;
    letter-spacing: -0.36px;
  }

  main.about .s1 .title {
    font-size: 48px;
    margin-bottom: 40px;
    letter-spacing: -0.64px;
  }

  main.about .s1 .subtext {
    font-size: 24px;
    letter-spacing: -0.48px;
  }

  main.about .s3 .timeline-wrap {
    padding-left: max(15px, calc((100vw - 1140px) / 2));
  }
  main.home .s5 .content-row,
  main.about .s2 .slider-wrap {
    margin-left: max(15px, calc((100vw - 1140px) / 2));
  }

  main.about .s3 .timeline-row {
    gap: 110px;
  }

  main.about .s3 .timeline-row.bottom {
    padding-left: 250px;
  }

  main.about .s3 .timeline-divider::after {
    width: 90px;
    height: 90px;
    bottom: -23px;
  }

  main.about .s3 .timeline-row.bottom .timeline-item .timeline-divider::after {
    top: -23px;
  }

  main.about .s2 .title,
  main.about .s3 .title,
  main.about .content-section .title {
    font-size: 48px;
    letter-spacing: -0.96px;
  }

  main.about .s4 .content-row {
    gap: 175px;
  }

  main.about .content-section .content-col p {
    max-width: 378px;
  }

  /* Team */
  main.team .s2 .content-row {
    gap: 45px;
  }

  main.team .s2 {
    padding: 100px 0 125px 0;
  }

  main.team .s3 .main-title {
    font-size: 48px;
    letter-spacing: -0.96px;
  }

  main.team .s3 .team-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 57px;
  }

  main.team .s3 .team-item {
    padding: 14px;
  }

  main.team .s4 .title {
    font-size: 48px;
    letter-spacing: -0.96px;
    max-width: 500px;
  }

  main.team .s4 .content-row {
    gap: 115px;
  }

  main.team .s4 p {
    margin-bottom: 35px;
  }

  #team-modal .image-area {
    width: 375px;
  }

  #team-modal .name {
    font-size: 52px;
    letter-spacing: -1px;
  }

  #team-modal .desc-area {
    margin-top: 45px;
  }

  /* Case Studies */
  main.case-studies .s2 {
    padding: 100px 0 125px 0;
  }

  main.case-studies .s3 {
    padding: 135px 0 95px 0;
  }

  /* Career */
  main.career .s2 {
    padding: 105px 0 125px 0;
  }

  main.career .s2 .title {
    font-size: 56px;
    margin-bottom: 50px;
    letter-spacing: -1.32px;
  }

  main.career .s3 .title {
    font-size: 56px;
    letter-spacing: -1.32px;
  }

  main.career .s4 {
    padding: 135px 0 115px 0;
  }

  /* Engineering */
  main.engineering .s4 .title,
  main.engineering .s3 .title {
    font-size: 56px;
    letter-spacing: -1.32px;
  }

  main.engineering .s2 .title {
    font-size: 48px;
  }

  main.engineering .s2 .image-col {
    max-width: 640px;
  }

  main.engineering .s2 .content-section {
    padding: 125px 0 135px 0;
  }

  main.engineering .s2 .content-row,
  main.engineering .s3 .content-row {
    gap: 90px;
  }

  main.engineering .s3 .list-area {
    max-width: 640px;
  }

  main.engineering .s4 {
    padding: 135px 0 285px 0;
  }

  /* Content page */
  main.content-page .s1-bottom .title {
    font-size: 48px;
    max-width: 360px;
    letter-spacing: -1.08px;
  }

  main.content-page .s1-bottom .content-row {
    gap: 90px;
  }

  main.content-page .s1-bottom .content-area {
    bottom: 70px;
    z-index: 3;
  }

  #footer .footer-mid {
    flex: 1.2;
  }

  #footer .footer-mid .title {
    font-size: 36px;
    letter-spacing: -0.96px;
  }

  #footer .footer-wrapper {
    gap: 60px;
  }

  #footer .newsletter-form .form-row {
    flex-direction: column;
  }
}

@media (max-width: 1199px) {
  #header .main-menu > .menu-item.item-dropdown .sub-menu {
    padding: 24px 12.5%;
    gap: 40px;
  }

  #header .main-menu > .menu-item.item-dropdown .sub-menu > .menu-item a {
    font-size: 16px;
  }

  /* Home */
  main.home .s1 {
    padding: 265px 0 105px 0;
  }

  main.home .s1 .title {
    font-size: 64px;
    letter-spacing: -1.25px;
  }

  main.home .s2 .content-row {
    flex-direction: column;
    gap: 50px;
  }

  main.home .s2 .content-col {
    align-items: start;
  }

  main.home .s2 .subtitle,
  main.home .s2 .content-list li,
  main.home .s2 .title {
    text-align: left;
  }

  main.home .s2 .title br {
    display: none;
  }

  main.home .s2 .image-col {
    max-width: 100%;
  }

  main.home .s2 .content-list {
    align-items: start;
    padding-left: 1.5rem;
    margin-top: 35px;
  }

  main.home .s2 .content-section {
    padding: 100px 0;
  }

  main.home .s3 {
    padding: 105px 0 145px 0;
  }

  main.home .s3 .desc-wrap {
    padding-left: 70px;
  }

  main.home .s4 .content-row {
    flex-direction: column;
  }

  main.home .s4 .content-area {
    align-items: start;
  }

  main.home .s5 {
    padding: 100px 0 90px 0;
  }

  main.home .s5 .content-row {
    flex-direction: column;
    gap: 50px;
  }

  main.home .s5 .title {
    max-width: 100%;
    text-align: left;
  }

  section.contact .content-row {
    flex-direction: column;
    gap: 50px;
  }

  main.home .s6 {
    padding: 125px 0;
  }

  main.home .s6 .title-area {
    gap: 45px;
  }

  section.contact .title {
    text-align: left;
  }

  section.contact .title-area {
    align-items: start;
  }

  /* About */
  main.about .s5 .content-row,
  main.about .s4 .content-row {
    flex-direction: column;
    align-items: start;
    gap: 50px;
  }

  main.about .content-section .content-col {
    align-items: start;
    gap: 30px;
  }

  main.about .content-section .title {
    text-align: left;
    margin-bottom: 0;
  }

  main.about .content-section .subtitle {
    text-align: left;
  }

  main.about .content-section .content-col p {
    text-align: left;
    max-width: 100%;
  }

  main.about .s3 .timeline-wrap {
    padding-left: max(15px, calc((100vw - 960px) / 2));
  }
  main.home .s5 .content-row,
  main.about .s2 .slider-wrap {
    margin-left: max(15px, calc((100vw - 960px) / 2));
  }

  /* Team */
  main.team .s2 .content-row {
    flex-direction: column;
    gap: 35px;
  }

  main.team .s2 .divider {
    height: 1px;
    width: 100%;
  }

  main.team .s3 .team-row {
    gap: 14px;
  }

  main.team .s4 {
    padding: 125px 0 105px 0;
  }

  main.team .s4 .content-row {
    flex-direction: column;
    align-items: start;
    gap: 35px;
  }

  main.team .s4 .title {
    text-align: left;
  }

  #team-modal .team-modal-content {
    gap: 50px;
  }

  #team-modal .name {
    font-size: 48px;
  }

  #team-modal .image-area {
    width: 350px;
    height: 350px;
  }

  #team-modal .btn-wrapper {
    margin-bottom: 15px;
  }

  #team-modal .title,
  #team-modal p {
    font-size: 16px;
  }

  /* Case studies */
  main.case-studies .s2 {
    padding: 90px 0 100px 0;
  }

  main.case-studies .s3 {
    padding: 100px 0;
  }

  main.case-studies .s3 .title {
    margin-bottom: 35px;
  }

  main.case-studies .s3 p {
    text-align: left;
    max-width: 100%;
  }

  /* Engineering */
  main.engineering .s2 .content-row {
    flex-direction: column;
    gap: 50px;
    margin-bottom: 45px;
  }

  main.engineering .s2 .content-section {
    padding: 100px 0 105px 0;
  }

  main.engineering .s2 .cta-btn.desk {
    display: none;
  }

  main.engineering .s2 .cta-btn.mob {
    display: flex;
  }

  main.engineering .s2 .content-col {
    align-items: start;
    gap: 35px;
  }

  main.engineering .s2 .image-col {
    max-width: 100%;
  }

  main.engineering .s2 .title {
    text-align: left;
  }

  main.engineering .s2 .title br {
    display: none;
  }

  main.engineering .s3 .content-row {
    flex-direction: column;
    gap: 50px;
  }

  main.engineering .s3 .list-area,
  main.engineering .s3 .list-wrap {
    max-width: 100%;
  }

  main.engineering .s3 .title {
    text-align: left;
  }

  main.engineering .s4 .content-area {
    max-width: 570px;
  }

  /* Content Page */
  section.footer-banner .content-area {
    max-width: 570px;
  }

  main.content-page .s2 .boxes-row {
    grid-template-columns: repeat(1, 1fr);
  }

  main.content-page .s1-bottom .content-row {
    gap: 35px;
    flex-direction: column;
    align-items: start;
  }

  main.content-page .s1-bottom .title {
    text-align: left;
  }

  main.content-page .s1-bottom .content-area {
    bottom: -60px;
  }

  /* Careers */
  main.career .s3 .content-row,
  main.career .s2 .boxes-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }

  main.career .s3 .title {
    padding-right: 0;
    text-align: left;
  }

  main.career .s4 p {
    text-align: left;
    max-width: 100%;
  }

  main.career .s4 .title {
    margin-bottom: 35px;
  }

  /* Contact */
  main.contact .s1 {
    padding: 100px 0 125px 0;
  }

  main.contact .s1 p {
    text-align: left;
    max-width: 100%;
  }

  main.contact .s1 .title {
    text-align: left;
    margin-bottom: 35px;
  }

  #footer {
    padding: 100px 0 325px 0;
  }

  #footer .footer-wrapper {
    flex-wrap: wrap;
    row-gap: 75px;
  }

  #footer .footer-end {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 991px) {
  #header .main-menu {
    display: none;
  }

  #header .mobile-menu-btn {
    display: block;
  }

  main.content-page .s1,
  main.engineering .s3 .title,
  main.engineering .s2 .content-section,
  main.about .s4,
  main.home .s2 .content-section,
  main.home .s1 {
    position: relative;
    top: auto;
  }

  /* Home */
  main.home .s1 {
    padding: 215px 0 100px 0;
  }

  main.home .s3 .desc-wrap {
    padding-left: 0;
  }

  main.home .s3 .title {
    text-align: left;
  }

  /* About */
  main.about .s1 .title {
    line-height: 100%;
  }

  main.about .s3 .timeline-wrap {
    padding-left: max(15px, calc((100vw - 720px) / 2));
  }
  main.home .s5 .content-row,
  main.about .s2 .slider-wrap {
    margin-left: max(15px, calc((100vw - 720px) / 2));
  }

  /* Engineering */
  section.footer-banner .title,
  main.engineering .s4 .title {
    text-align: left;
  }

  main.engineering .s4 .desc-wrap {
    padding-right: 0;
  }

  main.engineering .s4 .content-area {
    align-items: start;
  }

  /* Content Page */
  section.footer-banner {
    padding: 120px 0 190px 0;
  }
  section.footer-banner .desc-wrap {
    align-self: start;
  }

  main.content-page .s1-bottom .content-area {
    background-color: #212121;
    position: relative;
    bottom: 0;
    padding-top: 45px;
  }

  main.content-page .s2 {
    padding: 100px 0 25px 0;
  }

  /* Team */
  main.team .s3 .team-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 57px;
  }

  #team-modal .team-modal-content {
    flex-direction: column;
    padding-top: 60px;
  }

  #team-modal .team-modal-inner {
    position: relative;
    padding: 15px 25px 35px 25px;
  }

  #team-modal .btn-wrapper {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    padding-right: 25px;
  }

  #team-modal .image-area {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  #team-modal .read-less .btn-label {
    display: none;
  }

  #team-modal .name {
    font-size: 42px;
  }

  /* Case Studies */
  main.case-studies .s2 .boxes-row {
    grid-template-columns: repeat(1, 1fr);
  }

  main.case-studies .s2 .box-item .image-area {
    height: auto;
  }

  main.case-studies .s2 .box-item .box-title {
    font-size: 32px;
    margin: 30px 0 20px 0;
  }

  main.case-studies .s2 .box-item .image-area img {
    height: auto;
    min-height: 150px;
  }
}

@media (max-width: 768px) {
  main.team .s3 .team-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 27px;
  }

  main.team .s3 .team-item .image-area img {
    height: auto;
    aspect-ratio: 1/1;
  }

  main.about .s3 .timeline-wrap {
    padding-left: max(15px, calc((100vw - 540px) / 2));
  }
  main.home .s5 .content-row,
  main.about .s2 .slider-wrap {
    margin-left: max(15px, calc((100vw - 540px) / 2));
  }

  #footer .footer-wrapper {
    flex-direction: column;
  }

  #footer .footer-details.desk {
    display: none;
  }
  #footer .footer-details.mob {
    display: flex;
  }

  #footer .footer-logo {
    margin-bottom: 0;
  }

  #footer .footer-end {
    flex-wrap: wrap;
    gap: 35px;
  }

  #footer {
    padding: 75px 0 115px 0;
  }
}

@media (max-width: 576px) {
  #header {
    padding: 20px 0;
  }

  #header .logo-area {
    width: 275px;
    height: 47px;
    left: -35px;
  }

  main.content-template .s1 .heading{
    font-size: 48px;
  }

  /* Home */
  main.home .s1 .subtitle {
    font-size: 24px;
  }

  main.home .s1 .title {
    font-size: 42px;
    letter-spacing: -1px;
  }

  main.home .s2 .content-section {
    padding: 75px 0;
  }

  main.home .s2 .title {
    font-size: 42px;
    letter-spacing: -1px;
    max-width: 420px;
  }

  main.home .s2 .title br {
    display: none;
  }

  main.home .s3 .title {
    font-size: 42px;
    margin-bottom: 35px;
  }

  main.home .s3 p {
    margin-bottom: 30px;
  }

  main.home .s3 {
    padding: 100px 0 190px 0;
    background-size: 100%;
  }

  main.home .s4 {
    padding: 95px 0;
  }

  main.home .s4 .title {
    font-size: 42px;
    letter-spacing: -1.12px;
    text-align: left;
  }

  main.home .s4 .content-area {
    gap: 35px;
  }

  main.home .s5 .title {
    font-size: 42px;
    letter-spacing: -1.08px;
    padding-right: 15px;
  }

  main.home .s5 {
    padding: 95px 0 50px 0;
  }

  section.contact .form-row {
    flex-direction: column;
    gap: 0;
  }

  section.contact .title {
    font-size: 42px;
    letter-spacing: -1.08px;
  }

  main.home .s6 {
    padding: 100px 0;
  }

  /* About */
  main.about .s1 {
    padding: 80px 0 50px 0;
  }

  main.about .s1 .title {
    font-size: 42px;
  }

  main.about .s1 .subtext {
    font-size: 20px;
  }

  main.about .s1 p {
    font-size: 18px;
  }

  main.about .s2 {
    padding: 90px 0 75px 0;
  }

  main.about .s3 {
    padding: 100px 0 75px 0;
  }

  main.about .s3 .timeline-wrap {
    padding-left: 15px;
  }
  main.home .s5 .content-row,
  main.about .s2 .slider-wrap {
    margin-left: 15px;
  }

  main.about .s3 .timeline-item {
    max-width: 320px !important;
    gap: 0;
  }

  main.about .s3 .timeline-row.top {
    margin-bottom: 0;
    padding-bottom: 125px;
    background-image: url(../images/about/timeline-bg.svg);
    background-repeat: no-repeat;
    background-position: bottom 10% left;
  }

  main.about .s3 .title {
    margin-bottom: 75px;
  }

  main.about .s3 .timeline-year.desk {
    display: none;
  }
  main.about .s3 .timeline-year.mob {
    display: block;
  }

  main.about .s3 .timeline-row.bottom {
    padding-left: 145px;
  }

  main.about .s3 .timeline-bg {
    display: none;
  }

  main.about .s2 .title,
  main.about .s3 .title,
  main.about .content-section .title {
    font-size: 38px;
    letter-spacing: -0.64px;
  }

  main.about .s4 {
    padding: 100px 0;
  }

  main.about .s5 {
    padding: 75px 0;
  }

  /* Content Page  */
  section.footer-banner {
    padding: 100px 0 190px 0;
    background-size: 100%;
  }

  section.footer-banner .title {
    font-size: 42px;
    letter-spacing: -1.08px;
    margin-bottom: 35px;
  }

  main.content-page .s1-bottom .title {
    font-size: 42px;
  }

  /* Team */
  section.hero-blue {
    padding: 80px 0 50px 0;
  }

  section.hero-blue .title {
    font-size: 42px;
  }

  section.hero-blue p {
    font-size: 18px;
  }

  main.team .s2 {
    padding: 90px 0 105px 0;
  }

  main.team .s3 .main-title {
    font-size: 36px;
    letter-spacing: -0.74px;
    margin-bottom: 45px;
  }

  main.team .s4 .title {
    font-size: 36px;
  }

  /* Careers */
  main.career .s2 {
    padding: 90px 0 105px 0;
  }

  main.career .s3 .title,
  main.career .s2 .title {
    font-size: 42px;
    letter-spacing: -0.96px;
  }

  main.career .s2 .box-item {
    padding: 35px;
  }

  main.career .s2 .box-item .box-title {
    font-size: 24px;
    margin-top: 25px;
  }

  main.career .s2 .box-item .subtext {
    margin: 20px 0;
  }

  main.career .s3 .list-item .list-title {
    font-size: 20px;
  }

  main.career .s3 .list-item {
    gap: 13px;
  }

  /* Contact */
  main.contact .s1 {
    padding: 80px 0 105px 0;
  }

  /* Engineering */
  main.engineering .s2 .content-section {
    padding: 75px 0 90px 0;
  }

  main.engineering .s3 .list-item .list-title {
    font-size: 20px;
  }

  main.engineering .s3 .list-item {
    gap: 13px;
  }

  main.engineering .s2 .title,
  main.engineering .s4 .title,
  main.engineering .s3 .title {
    font-size: 42px;
    letter-spacing: -0.96px;
  }

  main.engineering .s4 {
    padding: 50px 0 190px 0;
    background-size: 100%;
  }

  main.engineering .s4 .title {
    font-size: 42px;
    margin-bottom: 35px;
  }
}
