/* Default CSS Code */

* {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
  color: #fff;
  background: #2692b8;
}

::selection {
  color: #fff;
  background: #2692b8;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

:focus * {
  outline: 0;
}

.form-group {
  margin-bottom: 0;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  display: inline-block;
}

a:hover {
  text-decoration: none;
}

.overflow {
  overflow: hidden;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

img.logo {
  width: unset;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.container {
  max-width: 1060px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* 

font-family: "Montserrat", sans-serif;

*/

/* Default CSS Code */
body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
  color: #eee;
  background: #0e0e0e;
}

.custom__btn {
  background: #20a5e6;
  color: #fff;
  border: 1px solid #000;
  width: 150px;
  height: 50px;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.custom__btn--center {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

main {
  min-height: 100vh;
}

/* Full Page Wrapped with 1800px */

main,
footer {
  max-width: 2000px;
  width: 100%;
  margin: 0 auto;
}

.section__heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.section__heading h2 {
  font-size: 32px;
  font-weight: 400;
}

/* Custom Preloader */

.preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__image {
  width: auto;
  height: 250px;
}

.preloader__image img {
  object-fit: contain;
}

/* Custom Preloader */

/* Header Area */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding-top: 20px;
}

.navbar {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.nav__container {
  max-width: 1465px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.nav__logo {
  height: 100px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

.nav__link {
  font-size: 16px;
  line-height: 1.3;
  color: #eee;
  text-transform: capitalize;
}

.nav__link--active {
  font-weight: 600;
}

/* Toggler */
.navbar-toggler {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 22px;
  right: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: none;
}

.navbar-toggler .toggler-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.toggler-btn .bar {
  width: 20px;
  display: block;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-bottom: 5px;
}

.toggler-btn .bar:nth-child(3) {
  margin-bottom: 0;
}

.navbar-toggler.change .toggler-btn .bar1 {
  background: #fff;
  transform: rotate(-45deg) translate(-4px, 4px);
  -webkit-transform: rotate(-45deg) translate(-4px, 4px);
  -moz-transform: rotate(-45deg) translate(-4px, 4px);
  -ms-transform: rotate(-45deg) translate(-4px, 4px);
  -o-transform: rotate(-45deg) translate(-4px, 4px);
}

.navbar-toggler.change .toggler-btn .bar2 {
  opacity: 0;
}

.navbar-toggler.change .toggler-btn .bar3 {
  background: #fff;
  transform: rotate(45deg) translate(-7px, -7px);
  -webkit-transform: rotate(45deg) translate(-7px, -7px);
  -moz-transform: rotate(45deg) translate(-7px, -7px);
  -ms-transform: rotate(45deg) translate(-7px, -7px);
  -o-transform: rotate(45deg) translate(-7px, -7px);
}

/* Toggler */

/* Header Area */

/* Hero Area */
.hero__area {
  position: relative;
  overflow: hidden;
}

.hero__area--fade {
  opacity: 0;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      134deg,
      rgba(14, 14, 14, 0.7),
      rgba(14, 14, 14, 0.19) 17%,
      rgba(14, 14, 14, 0) 50%
    ),
    url(../images/hero-gradient.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 5;
}

.hero {
  position: relative;
  padding-top: 180px;
  z-index: 50;
}

.hero__content {
  max-width: 1200px;
  width: 100%;
}

.hero__content h1 {
  font-size: 74px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 30px;
}

.hero__content h1 span {
  font-family: "Montserrat", sans-serif;
  display: block;
  font-style: italic;
}

.hero__content p {
  font-size: 22px;
}

.hero__images-wrapper {
  display: none;
  position: relative;
  z-index: 100;
  min-height: 750px;
  margin-top: 140px;
}

.hero__images {
  display: flex;
  align-items: center;
  gap: 25px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.single__hero-image {
  width: 540px;
  min-width: 540px;
}

.single__hero-image img {
  object-fit: contain;
}

/* Hero Area */

/* Process Area */
.process__area {
  padding-top: 200px;
  background-image: url(../images/process-gradient.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.process {
  display: flex;
  align-items: flex-start;
  gap: 200px;
}

.process__left {
  flex: 1;
  position: sticky;
  top: 180px;
  width: 100%;
}

.process__left h2 {
  margin-bottom: 25px;
  font-size: 32px;
  font-weight: 400;
  padding-right: 20px;
}

.process__left h2:last-of-type {
  margin-bottom: 0;
}

.process__right {
  flex: 1;
}

.process__list {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.process__list-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 20px;
}

.process__list-item h3 {
  margin-bottom: 15px;
}

/* Process Area */

/* Projects Area */
.projects__area {
  padding-top: 200px;
  padding-bottom: 80px;
}

.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.single__project-image {
  width: 100%;
  height: 335px;
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.single__project-image img {
  transition: transform 1.5s ease;
  -webkit-transition: transform 1.5s ease;
  -moz-transition: transform 1.5s ease;
  -ms-transition: transform 1.5s ease;
  -o-transition: transform 1.5s ease;
}

.single__project {
  cursor: pointer;
}

.single__project:hover .single__project-image img {
  transition: transform 4.5s ease;
  -webkit-transition: transform 4.5s ease;
  -moz-transition: transform 4.5s ease;
  -ms-transition: transform 4.5s ease;
  -o-transition: transform 4.5s ease;
}

.single__project-content {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.single__project-content h3 {
  font-size: 24px;
  font-weight: 400;
}

.blue {
  color: #5b92e5;
  font-weight: bold;
}

li.codeblue {
  list-style: decimal;
  margin-left: 30px;
}
ol.codeblue {
  padding-bottom: 20px;
}
.spacebot {
  padding-bottom: 30px;
}
#spacetop {
  padding-top: 30px;
}

#noheight {
  height: unset;
  overflow: hidden;
}

#nomargin {
  margin-top: 0px;
}

#nomarginbot {
  margin-bottom: 0px;
}

a.whitelink {
  color: #ffffff;
}

/* Projects Area */

/* Footer Area */

.footer-content {
  text-align: center;
  padding-bottom: 30px;
}

.footer-content p {
  font-size: 14px;
}

/* Footer Area */

/* Legacy Page */
.other__hero-area {
  position: relative;
  opacity: 0;
}

.other__hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1000px;
  background-image: linear-gradient(
      134deg,
      rgba(14, 14, 14, 0.7),
      rgba(14, 14, 14, 0.4) 17%,
      rgba(14, 14, 14, 0.25) 50%
    ),
    url(../images/other-hero-gradient.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  z-index: 5;
}

.other__white-bg {
  background-image: url(../images/other-white-gradient.svg);
  width: 840px;
  height: 654px;
  left: -5%;
  top: auto;
  bottom: 0%;
  background-size: contain;
  z-index: 6;
}

.other__hero {
  position: relative;
  padding-top: 180px;
  z-index: 50;
}

.single__content {
  margin-bottom: 50px;
}

.single__content .single__content-subhead {
  margin-top: 30px;
}

.single__content .single__content-subhead:first-of-type {
  margin-top: 0;
}

.single__content:last-of-type {
  margin-bottom: 0;
}

.single__content h1,
.single__content h2 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 25px;
}

.single__content-subhead h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.single__content h1 span,
.single__content h2 span {
  display: block;
  font-style: italic;
}

.single__content p {
  margin-bottom: 20px;
}

.single__content p:last-of-type {
  margin-bottom: 0;
}

.single__content-image {
  margin-top: 30px;
  height: 400px;
}

.single__content-image:last-of-type {
  margin-bottom: 0;
}

.single__content-image img {
  object-fit: cover;
}

a.conlink {
  color: #ffffff;
  text-decoration: underline;
}

a.conlink2 {
  color: #ffffff;
  text-decoration: none;
}

.topPad {
  padding-top: 10px;
}

.centered {
  text-align: center;
}
.light {
  font-weight: 300;
}

/* Legacy Page */

/* Competencies Page */

.features__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
}

.features__card {
  padding: 40px 45px;
  height: 344px;
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 0 !important;
}

#tallcard {
  height: 434px;
}

.glossy__bg {
  background: linear-gradient(
    103.37deg,
    rgba(217, 217, 217, 0.2) 1.3%,
    rgba(217, 217, 217, 0.1) 99.59%
  );
  border: 0.5px solid #8f8f8f;
  box-shadow: 3px 3px 25px 3px rgba(65, 95, 93, 0.25);
  backdrop-filter: blur(15px);
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}

.glossy__bg_quote {
  background: linear-gradient(
    2deg,
    #20a5e6 1.3%,
    rgba(217, 217, 217, 0.1) 99.59%
  );
  border: 0.5px solid #8f8f8f;
  box-shadow: 3px 3px 25px 3px rgba(65, 95, 93, 0.25);
  backdrop-filter: blur(15px);
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}

.glossy__heading {
  padding: 25px;
  margin-top: 30px;
  max-width: 660px;
  width: 100%;
}

.glossy__heading p {
  font-weight: 500;
}

/* Competencies Page */

/* Who Page */
.teams {
  margin-top: 50px;
}

.team {
  display: flex;
  align-items: flex-start;
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
  gap: 50px;
}

.team:first-of-type {
  padding-top: 0;
}

.team:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.team__heading {
  flex: 0.5;
}

.team__details {
  flex: 0.5;
}

.team__details p {
  margin-bottom: 20px;
}

.team__details p:last-of-type {
  margin-bottom: 0;
}

.team__heading h4 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 2px;
}

.team__heading h5 {
  font-size: 22px;
  font-weight: 400;
}

/* Who Page */

/* Think Page */

.think__items {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding-top: 25px;
}

.think__item {
  display: flex;
  gap: 65px;
}

.think__item-content {
  flex: 0.5;
}

.think__item-image {
  flex: 0.5;
  height: 360px;
  max-height: 360px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 3px 4px 30px 2px rgba(146, 226, 243, 0.25);
}

#seal {
  height: 300px;
}

#centertext {
  text-align: center;
}

.think__item-image img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.think__item-imageRD {
  flex: 0.5;
  border-radius: 5%;
}

#quote-space {
  margin-top: 40px;
}

.qoutes-box {
  padding: 35px 45px;
}

#shortbox {
  padding: 25px 45px;
}

.qoutes-box h2 {
  font-size: 28px;
}

.qoutes-box h3 {
  font-size: 22px;
}

.qoutes-box p {
  font-size: 18px;
}

/* Think Page */
