* {
  margin: 0;
  padding: 0; }

body {
  height: 100vh;
  width: 100%;
  background: #F7F7F7;
  box-sizing: border-box;
  font-size: 1.3rem;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center; }

html {
  font-size: 62.5%; }

@-moz-keyframes elasticInput {
  50% {
    d: path("M2,2 C21,17 46,25 74,25 C102,25 118,25 120,25"); } }

@-webkit-keyframes elasticInput {
  50% {
    d: path("M2,2 C21,17 46,25 74,25 C102,25 118,25 120,25"); } }

@-o-keyframes elasticInput {
  50% {
    d: path("M2,2 C21,17 46,25 74,25 C102,25 118,25 120,25"); } }

@keyframes elasticInput {
  50% {
    d: path("M2,2 C21,17 46,25 74,25 C102,25 118,25 120,25"); } }

.inp {
  position: relative;
  margin: auto;
  width: 100%; }
  .inp .label {
    position: absolute;
    bottom: 1rem;
    left: 0;
    font-size: 16px;
    color: #9098a9;
    font-weight: 500;
    transform-origin: 0 0;
    transition: all 0.2s ease;
    z-index: -1; }
  .inp svg {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 26px;
    fill: none;
    z-index: -1; }
    .inp svg path {
      stroke: #c8ccd4;
      stroke-width: 2; }
      .inp svg path d {
        transition: all 0.2s ease; }
  .inp .border {
    position: absolute;
    bottom: 0;
    left: 120px;
    height: 2px;
    right: 0;
    background: #c8ccd4; }
  .inp input, .inp select, .inp textarea {
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 1rem 0;
    height: fit-content;
    font-size: 16px;
    font-weight: 500;
    background: none;
    border-radius: 0;
    color: #223254;
    transition: all 0.15s ease; }
    .inp input:not(:placeholder-shown) + span, .inp select:not(:placeholder-shown) + span, .inp textarea:not(:placeholder-shown) + span {
      color: #5a667f;
      transform: translateY(-26px) scale(0.75); }
    .inp input:focus, .inp select:focus, .inp textarea:focus {
      background: none;
      outline: none; }
    .inp input:focus + span, .inp select:focus + span, .inp textarea:focus + span {
      color: #FFD71F;
      transform: translateY(-26px) scale(0.75);
      transition-delay: 0.1s; }
    .inp input:focus + span + svg path, .inp select:focus + span + svg path, .inp textarea:focus + span + svg path {
      stroke: #FFD71F;
      animation: elasticInput 0.4s ease forwards; }
    .inp input:focus + span + svg + .border, .inp select:focus + span + svg + .border, .inp textarea:focus + span + svg + .border {
      background: #FFD71F; }

.primaryButton {
  width: unset;
  height: unset;
  padding: 0.5rem;
  font-size: 1.1rem;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #ededed;
  background: #D81E09;
  text-transform: uppercase;
  font-family: 'poppins',sans-serif; }

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

button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer; }

.service_card {
  width: 31rem;
  background: #f7f7f7;
  height: 20rem;
  padding: 3rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  @media (max-width: 600px) {
    .service_card {
      width: 100%; } }
  .service_card .serviceTitle {
    color: #D81E09;
    font-weight: 500;
    font-size: 1.6rem; }
  .service_card .aboutService {
    font-size: 1.1rem; }

.clientCard {
  width: 33rem;
  height: 19rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box; }
  @media (max-width: 600px) {
    .clientCard {
      width: 100%;
      height: 18rem;
      background: white;
      padding: 2rem; } }
  .clientCard .clientDetail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem; }
    .clientCard .clientDetail img {
      width: 5rem;
      height: 5rem;
      object-fit: cover;
      object-position: center;
      border-radius: 50%; }
    .clientCard .clientDetail .detail .clientName {
      text-transform: uppercase;
      font-weight: 500;
      font-size: 1.5rem; }
    .clientCard .clientDetail .detail .position {
      font-size: 1.1rem;
      color: #D81E09; }
  .clientCard .clientDesc {
    font-size: 1.1rem;
    letter-spacing: 0.1rem; }

.teamMembercard {
  width: 28rem;
  min-width: 28rem;
  height: 28rem;
  background: grey;
  position: relative;
  transition: all ease 1s; }
  @media (max-width: 600px) {
    .teamMembercard {
      width: 23rem;
      min-width: 23rem;
      height: 23rem; } }
  .teamMembercard:hover {
    transform: scale(115%);
    z-index: 3; }
  .teamMembercard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
  .teamMembercard .memberDetail {
    background: #FFD71F;
    position: absolute;
    bottom: 3rem;
    left: 0;
    padding: 0.5rem 1rem; }
    .teamMembercard .memberDetail .name {
      font-size: 1.4rem;
      text-transform: uppercase;
      color: #323232;
      font-weight: 600; }
    .teamMembercard .memberDetail .position {
      font-size: 1.1rem;
      text-transform: uppercase;
      color: #D81E09; }

.smallCard {
  width: 25rem;
  height: 16rem; }

.bigCard {
  width: 52.9%;
  height: 32rem; }
  @media (max-width: 600px) {
    .bigCard {
      width: 100%;
      height: 15rem; } }
  .bigCard .BlogPostCard {
    padding: 4rem; }
    @media (max-width: 600px) {
      .bigCard .BlogPostCard {
        padding: 1.5rem; } }
    .bigCard .BlogPostCard .title {
      font-size: 3rem;
      font-weight: normal;
      color: #FFD71F;
      font-family: "Tenali Ramakrishna", "poppins", sans-serif; }
      @media (max-width: 600px) {
        .bigCard .BlogPostCard .title {
          font-size: 2rem;
          line-height: 1; } }
    .bigCard .BlogPostCard .content {
      font-size: 1.2rem;
      line-height: 1.5;
      color: #ddd;
      margin-bottom: 1rem;
      font-weight: normal; }

.BlogPostCard {
  width: 100%;
  height: 100%;
  padding: 2rem;
  box-sizing: border-box;
  background: linear-gradient(to bottom right, #212121e0, #212121ed), url("../img/blogImg2.svg");
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.5rem; }
  .BlogPostCard .title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #FFD71F; }
  .BlogPostCard .content {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 1rem;
    font-weight: normal; }

.secondaryBlogCard {
  width: 49%;
  height: 15rem;
  display: flex;
  gap: 1.5rem; }
  @media (max-width: 600px) {
    .secondaryBlogCard {
      width: 100%;
      flex-direction: column;
      gap: 1rem;
      height: 25rem; } }
  .secondaryBlogCard img {
    width: 45%;
    height: 100%;
    min-width: 45%;
    object-fit: cover;
    object-position: center left; }
    @media (max-width: 600px) {
      .secondaryBlogCard img {
        width: 50%;
        min-width: 50%;
        height: 50%;
        object-fit: cover; } }
  .secondaryBlogCard .blogDetailContainer {
    width: 53%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0 0 0;
    box-sizing: border-box; }
    @media (max-width: 600px) {
      .secondaryBlogCard .blogDetailContainer {
        height: 50%;
        width: 100%;
        gap: 0; } }
    .secondaryBlogCard .blogDetailContainer .title {
      font-size: 1.4rem;
      font-weight: 600; }
    .secondaryBlogCard .blogDetailContainer .content {
      font-size: 1rem;
      color: grey;
      line-height: 1.3; }
      @media (max-width: 600px) {
        .secondaryBlogCard .blogDetailContainer .content {
          margin-bottom: 1rem; } }

.modal {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.82);
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0; }
  .modal .modalContent {
    width: 70%;
    height: fit-content;
    max-height: 90%;
    background: #f7f7f7;
    padding: 4rem;
    position: relative;
    overflow-y: auto; }
    .modal .modalContent .closeBtn {
      background: none;
      border: none;
      outline: none;
      cursor: pointer;
      position: absolute;
      background: #ffd1d1;
      color: #D81E09;
      top: 3rem;
      right: 3rem;
      height: 5rem;
      font-size: 1.6rem;
      width: 5rem;
      border-radius: 200rem;
      cursor: pointer; }
      .modal .modalContent .closeBtn:hover {
        transform: scale(110%);
        background: #ffa2a2; }
    .modal .modalContent .detail {
      display: flex;
      align-items: center;
      gap: 4rem; }
      .modal .modalContent .detail .title {
        font-size: 1.6rem;
        font-weight: 500;
        margin: 1rem 0; }
      .modal .modalContent .detail .date {
        font-size: 1.3rem;
        font-weight: 600; }
        .modal .modalContent .detail .date span {
          font-weight: normal; }
    .modal .modalContent .content {
      font-size: 1.1rem; }

.creation_modal {
  width: 100%;
  display: flex;
  justify-content: center; }
  .creation_modal .modalContent {
    display: flex;
    gap: 5rem;
    height: 85%;
    width: 65%;
    box-sizing: border-box;
    z-index: -3;
    padding: 0; }
    .creation_modal .modalContent .img_container {
      width: 32%;
      height: 100%;
      position: relative; }
      .creation_modal .modalContent .img_container img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center; }
      .creation_modal .modalContent .img_container .file_upload {
        height: 100%;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        cursor: pointer;
        opacity: 0;
        z-index: 10; }
      .creation_modal .modalContent .img_container::after {
        content: "Click to change image";
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        color: white;
        font-size: 1.4rem;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.651); }
    .creation_modal .modalContent .form_content {
      width: 57%;
      padding: 2rem  0; }
      .creation_modal .modalContent .form_content .form_title {
        font-size: 2rem;
        margin-bottom: 5rem;
        font-weight: 500; }
      .creation_modal .modalContent .form_content .primaryButton {
        padding: 1rem; }
      .creation_modal .modalContent .form_content .question {
        margin-bottom: 1rem;
        color: #D81E09; }
      .creation_modal .modalContent .form_content .inp {
        margin-bottom: 4rem; }
        .creation_modal .modalContent .form_content .inp .label {
          font-size: 1.2rem; }
        .creation_modal .modalContent .form_content .inp .border {
          border: unset !important; }
        .creation_modal .modalContent .form_content .inp input,
        .creation_modal .modalContent .form_content .inp select,
        .creation_modal .modalContent .form_content .inp textarea {
          font-size: 1.3rem;
          font-weight: normal; }
          .creation_modal .modalContent .form_content .inp input:focus + span,
          .creation_modal .modalContent .form_content .inp select:focus + span,
          .creation_modal .modalContent .form_content .inp textarea:focus + span {
            color: #D81E09;
            transform: translateY(-26px) scale(0.75);
            transition-delay: 0.1s; }
          .creation_modal .modalContent .form_content .inp input:focus + span + svg path,
          .creation_modal .modalContent .form_content .inp select:focus + span + svg path,
          .creation_modal .modalContent .form_content .inp textarea:focus + span + svg path {
            stroke: #D81E09;
            animation: elasticInput 0.4s ease forwards; }
          .creation_modal .modalContent .form_content .inp input:focus + span + svg + .border,
          .creation_modal .modalContent .form_content .inp select:focus + span + svg + .border,
          .creation_modal .modalContent .form_content .inp textarea:focus + span + svg + .border {
            background: #D81E09; }
        .creation_modal .modalContent .form_content .inp textarea {
          height: 15rem;
          resize: none; }

.web_content .modalContent {
  display: flex;
  gap: 3rem;
  justify-content: center;
  height: 85%;
  width: 65%;
  box-sizing: border-box;
  z-index: -3;
  padding: 0;
  padding: 2rem;
  box-sizing: border-box; }
  .web_content .modalContent .img_container {
    width: 10rem;
    height: 10rem;
    object-fit: contain;
    position: relative;
    margin-top: 3rem;
    box-sizing: border-box;
    background: #f7f7f7; }
    .web_content .modalContent .img_container img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center; }
    .web_content .modalContent .img_container .file_upload {
      height: 100%;
      width: 100%;
      position: absolute;
      left: 0;
      top: 0;
      cursor: pointer;
      opacity: 0;
      z-index: 10; }
    .web_content .modalContent .img_container::after {
      content: "upload image";
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      width: 100%;
      color: white;
      font-size: 1.2rem;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.651); }
  .web_content .modalContent .form_content {
    width: 57%;
    padding: 2rem  0; }
    .web_content .modalContent .form_content .form_title {
      font-size: 2rem;
      margin-bottom: 5rem;
      font-weight: 500; }
    .web_content .modalContent .form_content .primaryButton {
      padding: 1rem; }
    .web_content .modalContent .form_content .question {
      margin-bottom: 1rem;
      color: #D81E09; }
    .web_content .modalContent .form_content .inp {
      margin-bottom: 4rem; }
      .web_content .modalContent .form_content .inp .label {
        font-size: 1.2rem; }
      .web_content .modalContent .form_content .inp .border {
        border: unset !important; }
      .web_content .modalContent .form_content .inp input,
      .web_content .modalContent .form_content .inp select,
      .web_content .modalContent .form_content .inp textarea {
        font-size: 1.3rem;
        font-weight: normal; }
        .web_content .modalContent .form_content .inp input:focus + span,
        .web_content .modalContent .form_content .inp select:focus + span,
        .web_content .modalContent .form_content .inp textarea:focus + span {
          color: #D81E09;
          transform: translateY(-26px) scale(0.75);
          transition-delay: 0.1s; }
        .web_content .modalContent .form_content .inp input:focus + span + svg path,
        .web_content .modalContent .form_content .inp select:focus + span + svg path,
        .web_content .modalContent .form_content .inp textarea:focus + span + svg path {
          stroke: #D81E09;
          animation: elasticInput 0.4s ease forwards; }
        .web_content .modalContent .form_content .inp input:focus + span + svg + .border,
        .web_content .modalContent .form_content .inp select:focus + span + svg + .border,
        .web_content .modalContent .form_content .inp textarea:focus + span + svg + .border {
          background: #D81E09; }
      .web_content .modalContent .form_content .inp textarea {
        height: 15rem;
        resize: none; }

.d-none {
  display: none; }

footer {
  height: 70vh;
  min-height: 70vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  background: #323232;
  z-index: -2; }
  @media (max-width: 600px) {
    footer {
      height: unset;
      min-height: unset;
      flex-direction: column;
      align-items: flex-start;
      padding: 2rem;
      box-sizing: border-box; } }
  footer img {
    width: 10rem;
    height: 10rem;
    object-fit: contain; }
  footer .column {
    width: 15%; }
    @media (max-width: 600px) {
      footer .column {
        width: 100%; } }
    footer .column h4 {
      color: #fefefe;
      margin-bottom: 3rem;
      font-weight: 600;
      font-size: 1.4rem; }
    footer .column ul {
      list-style: none; }
      footer .column ul li {
        display: flex;
        align-items: flex-start;
        gap: 1rem; }
        footer .column ul li:not(:last-of-type) {
          margin-bottom: 2rem; }
        footer .column ul li i {
          font-size: 2rem;
          color: #eee; }
        footer .column ul li a {
          font-size: 1.1rem;
          color: #d8d8d8; }
  footer .contactForm {
    width: 32%; }
    @media (max-width: 600px) {
      footer .contactForm {
        width: 100%; } }
    footer .contactForm .formHeader {
      width: 100%;
      font-family: "Tenali Ramakrishna", sans-serif;
      font-size: 4rem;
      color: white;
      font-weight: 100;
      margin-bottom: 7rem; }
      @media (max-width: 600px) {
        footer .contactForm .formHeader {
          line-height: .8;
          margin-bottom: 3rem; } }
    footer .contactForm .inp {
      display: flex; }
      footer .contactForm .inp input {
        color: #edeeed;
        height: unset;
        padding-bottom: 0;
        font-weight: normal; }
      footer .contactForm .inp .submit {
        background: #FFD71F;
        padding: 2rem;
        font-size: 1.2rem;
        font-weight: 500; }
        @media (max-width: 600px) {
          footer .contactForm .inp .submit {
            font-size: 1.1rem;
            padding: 1.5rem; } }
    footer .contactForm .socials {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-top: 7rem; }
      @media (max-width: 600px) {
        footer .contactForm .socials {
          margin-top: 2rem; } }
      footer .contactForm .socials a {
        color: #FFD71F;
        font-size: 2rem; }
        footer .contactForm .socials a:hover {
          color: #ff9000; }

.header {
  height: 100vh;
  min-height: 100vh;
  width: 100%;
  background: url(../img/hero.svg);
  background-size: cover;
  background-position: 30% 30%;
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media (max-width: 600px) {
    .header {
      background-position: 25% 0; } }
  .headerContent {
    width: 84%;
    height: 88%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .headerContent .captionContainer {
      width: 39%;
      padding-bottom: 6rem;
      box-sizing: border-box; }
      @media (max-width: 600px) {
        .headerContent .captionContainer {
          width: 90%;
          padding-bottom: 6rem; } }
      .headerContent .captionContainer .caption .highlight {
        font-size: 7rem;
        font-family: "Tenali Ramakrishna", sans-serif;
        font-weight: 100;
        line-height: .8; }
        @media (max-width: 600px) {
          .headerContent .captionContainer .caption .highlight {
            font-size: 4rem; } }
      .headerContent .captionContainer .caption .subCaption {
        font-size: 1.2rem;
        padding-right: 3rem; }
        @media (max-width: 600px) {
          .headerContent .captionContainer .caption .subCaption {
            font-size: 1rem;
            padding-right: 0; } }
      .headerContent .captionContainer .headerCta {
        margin-top: 2rem;
        padding: 2rem 3rem; }
    .headerContent .crumbs {
      width: 55%;
      height: 100%;
      position: relative;
      overflow: hidden; }
      @media (max-width: 600px) {
        .headerContent .crumbs {
          display: none; } }
      .headerContent .crumbs img {
        aspect-ratio: 1/1;
        height: 30rem;
        object-fit: contain; }
      .headerContent .crumbs .topRight {
        position: absolute;
        right: -3rem;
        top: -5rem; }
      .headerContent .crumbs .blue {
        position: absolute;
        bottom: 1rem;
        left: -2rem; }
      .headerContent .crumbs .bottomRight {
        position: absolute;
        top: 60%;
        right: -3rem;
        height: 26rem; }

.subHeader {
  width: 100%;
  background: #323232;
  height: 39%;
  min-height: 39%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center; }
  @media (max-width: 600px) {
    .subHeader {
      height: 20%;
      min-height: 20%; } }
  .subHeader .navigation {
    height: 30%; }
  .subHeader .title_brumbs {
    width: 84%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .subHeader .title_brumbs .pageTitle {
      font-family: "Tenali Ramakrishna", sans-serif;
      font-size: 6rem;
      margin-bottom: 0;
      color: #f7f7f7;
      font-weight: 100; }
      @media (max-width: 600px) {
        .subHeader .title_brumbs .pageTitle {
          font-size: 4rem;
          line-height: 1; } }
    .subHeader .title_brumbs .breadcrumbs {
      font-size: 1.1rem;
      margin-top: 1rem;
      font-weight: 300;
      color: #f7f7f7;
      display: flex;
      align-items: center;
      gap: 2rem;
      color: #FFD71F;
      font-weight: 600; }
      .subHeader .title_brumbs .breadcrumbs a {
        cursor: pointer;
        color: #bdbdbd;
        font-weight: normal; }
        .subHeader .title_brumbs .breadcrumbs a:hover {
          color: #FFD71F; }

.navigation {
  width: 100%;
  height: 12%;
  background: linear-gradient(to right, #D81E09, #FFD71F);
  padding: 0 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box; }
  @media (max-width: 600px) {
    .navigation {
      padding: 0 2rem; } }
  .navigation .logo {
    height: 100%; }
    .navigation .logo img {
      height: 100%;
      width: 10rem;
      object-fit: contain; }
      @media (max-width: 600px) {
        .navigation .logo img {
          width: 70%; } }
  .navigation .navigationLinkContainer {
    display: flex;
    align-items: center;
    height: 100%; }
    .navigation .navigationLinkContainer .navList {
      height: 100%;
      display: flex; }
      .navigation .navigationLinkContainer .navList .navigation_link {
        height: 100%;
        padding: 2rem 2.5rem;
        color: #323232;
        box-sizing: border-box;
        font-weight: 500;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center; }
        @media (max-width: 600px) {
          .navigation .navigationLinkContainer .navList .navigation_link {
            display: none; } }
        .navigation .navigationLinkContainer .navList .navigation_link:hover, .navigation .navigationLinkContainer .navList .navigation_link:active, .navigation .navigationLinkContainer .navList .navigation_link:focus {
          background: #D81E09;
          color: white; }
    .navigation .navigationLinkContainer .activePage {
      background: #D81E09;
      color: white !important;
      font-weight: 600; }
    .navigation .navigationLinkContainer .hamburger {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      width: 2.5rem;
      height: 4rem;
      min-height: 4rem;
      padding: 1rem 0;
      cursor: pointer;
      box-sizing: border-box;
      display: none; }
      @media (max-width: 600px) {
        .navigation .navigationLinkContainer .hamburger {
          display: flex; } }
      .navigation .navigationLinkContainer .hamburger .line {
        height: 2px;
        min-height: 1px;
        width: 100%;
        background: white;
        transition: all 0.5s ease; }
        .navigation .navigationLinkContainer .hamburger .line:nth-child(2) {
          margin: 0.7rem 0;
          box-sizing: border-box; }
    .navigation .navigationLinkContainer .active {
      position: relative; }
      .navigation .navigationLinkContainer .active .line {
        position: absolute;
        top: 2rem;
        transition: all 0.5s; }
        .navigation .navigationLinkContainer .active .line:nth-child(2) {
          transform: translate(-50%);
          opacity: 0; }
        .navigation .navigationLinkContainer .active .line:nth-child(3) {
          transform: rotate(45deg);
          opacity: 1; }
        .navigation .navigationLinkContainer .active .line:nth-child(1) {
          transform: rotate(-45deg);
          opacity: 1; }

.mobile_navigation .mobileNavList {
  height: 100%;
  width: 70%;
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  background: linear-gradient(to right bottom, #323232, #aa9f9f);
  z-index: 100;
  padding: 2rem;
  box-sizing: border-box; }
  .mobile_navigation .mobileNavList .logo {
    height: 5rem;
    width: 10rem;
    margin-bottom: 3rem; }
    .mobile_navigation .mobileNavList .logo img {
      height: 100%;
      width: 100%;
      object-fit: contain; }
      @media (max-width: 600px) {
        .mobile_navigation .mobileNavList .logo img {
          width: 70%; } }
  .mobile_navigation .mobileNavList .mobileNav_link {
    height: 8%;
    padding: 1rem;
    color: #f7f7f7;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 1.2rem;
    display: flex;
    align-items: center; }
    .mobile_navigation .mobileNavList .mobileNav_link:hover, .mobile_navigation .mobileNavList .mobileNav_link:active, .mobile_navigation .mobileNavList .mobileNav_link:focus {
      background: #D81E09;
      color: white; }
  .mobile_navigation .mobileNavList .active {
    color: #FFD71F; }

.welcomeMessage {
  width: 84%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8rem; }
  @media (max-width: 600px) {
    .welcomeMessage {
      width: 100%;
      flex-direction: column-reverse;
      align-items: center;
      gap: 1rem;
      padding: 2rem;
      box-sizing: border-box; }
      .welcomeMessage .sectionImage {
        width: 100%;
        height: auto; } }
  .welcomeMessage .sectionImage {
    width: 32%;
    height: 73%;
    overflow: hidden; }
    .welcomeMessage .sectionImage img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: top; }
      @media (max-width: 600px) {
        .welcomeMessage .sectionImage img {
          display: none; } }
  .welcomeMessage .sectionWords {
    width: 48%;
    padding: 6rem 0; }
    @media (max-width: 600px) {
      .welcomeMessage .sectionWords {
        width: 100%;
        padding: 2rem 0; } }

.ourServices {
  width: 100%;
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  background: white;
  height: 100vh;
  min-height: 100vh; }
  @media (max-width: 600px) {
    .ourServices {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      padding: 2rem;
      height: unset;
      min-height: unset;
      box-sizing: border-box; } }
  .ourServices .sectionWords {
    width: 30%; }
    @media (max-width: 600px) {
      .ourServices .sectionWords {
        width: 100%; } }
    .ourServices .sectionWords .primaryButton {
      padding: 2rem;
      margin-top: 2rem; }
      @media (max-width: 600px) {
        .ourServices .sectionWords .primaryButton {
          display: none; } }
  .ourServices .servicesList {
    width: 52%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem; }
    @media (max-width: 600px) {
      .ourServices .servicesList {
        width: 100%; } }
    .ourServices .servicesList .service_card {
      box-sizing: border-box; }

.successStories {
  width: 84%;
  padding: 4rem 0;
  box-sizing: border-box; }
  @media (max-width: 600px) {
    .successStories {
      width: 100%;
      padding: 2rem;
      box-sizing: border-box; } }
  .successStories .sectionWords {
    width: 100%;
    text-align: center;
    margin-bottom: 7rem; }
    @media (max-width: 600px) {
      .successStories .sectionWords {
        width: 100%;
        margin-bottom: 2rem; } }
  .successStories .testimonialList {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem; }

.team {
  width: 100%;
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  background: white;
  height: 100vh;
  min-height: 100vh; }
  @media (max-width: 600px) {
    .team {
      flex-direction: column-reverse;
      height: unset;
      min-height: unset;
      padding: 2rem;
      box-sizing: border-box; } }
  .team .sectionWords {
    width: 25%; }
    @media (max-width: 600px) {
      .team .sectionWords {
        width: 100%; } }
    .team .sectionWords .primaryButton {
      padding: 2rem;
      margin-top: 2rem; }
  .teamSlider {
    width: 59%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (max-width: 600px) {
      .teamSlider {
        width: 100%; } }
    .teamSlider button {
      background: #D81E09;
      height: 5rem;
      width: 5rem;
      min-width: 5rem;
      border-radius: 100rem; }
      @media (max-width: 600px) {
        .teamSlider button {
          position: absolute;
          bottom: 3rem;
          width: 4.5rem;
          height: 4.5rem;
          min-width: 4.5rem; }
          .teamSlider button:nth-of-type(2) {
            left: 8rem; } }
      .teamSlider button i {
        font-size: 2rem;
        color: #efefef; }
    .teamSlider .carousel_container {
      width: 78%;
      height: 40rem;
      overflow-y: scroll;
      scrollbar-width: none; }
      .teamSlider .carousel_container::-webkit-scrollbar {
        display: none; }
      @media (max-width: 600px) {
        .teamSlider .carousel_container {
          width: 100%; } }
      .teamSlider .carousel_container .teamCardList {
        display: flex;
        align-items: center;
        width: fit-content;
        gap: 2rem;
        height: 100%; }
        @media (max-width: 600px) {
          .teamSlider .carousel_container .teamCardList {
            width: 100%; } }

.blogPost {
  width: 84%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media (max-width: 600px) {
    .blogPost {
      height: unset;
      min-height: unset;
      width: 100%;
      padding: 2rem;
      box-sizing: border-box;
      flex-direction: column; } }
  .blogPost .sectionWords {
    width: 30%; }
    @media (max-width: 600px) {
      .blogPost .sectionWords {
        width: 100%;
        margin-bottom: 3rem; } }
    .blogPost .sectionWords .primaryButton {
      padding: 2rem;
      margin-top: 2rem; }
      @media (max-width: 600px) {
        .blogPost .sectionWords .primaryButton {
          display: none; } }
  .blogPost .blogList {
    width: 54%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.2rem; }
    @media (max-width: 600px) {
      .blogPost .blogList {
        width: 100%; } }
    .blogPost .blogList .smallCard {
      box-sizing: border-box; }

.banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #D81E09;
  height: 100vh;
  min-height: 100vh;
  color: white; }
  @media (max-width: 600px) {
    .banner {
      position: relative;
      height: 90vh;
      min-height: 90vh; } }
  .banner .sectionWords {
    width: 60%;
    padding: 0 13rem; }
    @media (max-width: 600px) {
      .banner .sectionWords {
        width: 100%;
        padding: 2rem; } }
    .banner .sectionWords .sectionSubcaption {
      color: #FFD71F; }
    .banner .sectionWords .summary {
      color: #eaeaea; }
    .banner .sectionWords .primaryButton {
      background: #FFD71F;
      padding: 2rem;
      color: #323232;
      font-weight: 600;
      margin-top: 4rem; }
  .banner img {
    width: 40%;
    height: 100%;
    min-height: 100%;
    object-fit: cover; }
    @media (max-width: 600px) {
      .banner img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
        position: absolute;
        z-index: -1;
        mix-blend-mode: overlay;
        opacity: .5; } }

.aboutContainer {
  width: 84%;
  display: flex;
  align-items: center;
  height: 90%;
  min-height: 90%;
  gap: 5rem; }
  @media (max-width: 600px) {
    .aboutContainer {
      flex-direction: column-reverse;
      width: 100%;
      padding: 2rem;
      box-sizing: border-box;
      gap: 1rem;
      height: unset;
      min-height: unset; } }
  .aboutContainer .sectionWords {
    width: 50%; }
    @media (max-width: 600px) {
      .aboutContainer .sectionWords {
        width: 100%; } }
    .aboutContainer .sectionWords .sectionCaption {
      font-size: 10rem; }
      @media (max-width: 600px) {
        .aboutContainer .sectionWords .sectionCaption {
          font-size: 5rem; } }
  .aboutContainer img {
    width: 45%; }
    @media (max-width: 600px) {
      .aboutContainer img {
        width: 100%; } }

.missionVision {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90%;
  min-height: 90%;
  gap: 5rem;
  background: white; }
  @media (max-width: 600px) {
    .missionVision {
      height: unset;
      min-height: unset;
      flex-direction: column;
      gap: 2rem;
      padding: 2rem;
      box-sizing: border-box; } }
  .missionVision .sectionWords {
    width: 40%; }
    @media (max-width: 600px) {
      .missionVision .sectionWords {
        width: 100%; } }
    .missionVision .sectionWords .sectionCaption {
      font-weight: normal;
      margin-bottom: 2rem; }
  .missionVision .divider {
    width: 1px;
    height: 100%;
    background: #f7f7f7; }

.aboutTeam {
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #f7f7f7; }
  @media (max-width: 600px) {
    .aboutTeam {
      height: 50%;
      min-height: 50%; } }
  .aboutTeam .sectionWords {
    width: 100%;
    text-align: center; }
    @media (max-width: 600px) {
      .aboutTeam .sectionWords {
        text-align: left; } }
    .aboutTeam .sectionWords .subCaption {
      line-height: 0; }
  .aboutTeam .carousel_container {
    width: 100%;
    overflow-y: scroll;
    height: 40rem;
    scrollbar-width: none; }
    .aboutTeam .carousel_container .teamCardList {
      display: flex;
      align-items: center;
      width: 120%;
      gap: 3rem;
      height: 100%; }
      .aboutTeam .carousel_container .teamCardList::-webkit-scrollbar {
        display: none; }

.aboutBanner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFD71F;
  height: 100vh;
  min-height: 100vh; }
  @media (max-width: 600px) {
    .aboutBanner {
      height: 30vh;
      min-height: 30vh; } }
  .aboutBanner .sectionWords {
    width: 60%;
    padding: 0 13rem; }
    @media (max-width: 600px) {
      .aboutBanner .sectionWords {
        width: 100%;
        padding: 2rem; } }
    .aboutBanner .sectionWords .sectionSubcaption {
      color: #323232;
      width: 45%;
      font-size: 1.1rem;
      text-transform: capitalize; }
      @media (max-width: 600px) {
        .aboutBanner .sectionWords .sectionSubcaption {
          width: 60%; } }
    .aboutBanner .sectionWords .sectionCaption {
      color: #D81E09;
      font-size: 17rem; }
      @media (max-width: 600px) {
        .aboutBanner .sectionWords .sectionCaption {
          font-size: 8rem; } }
    .aboutBanner .sectionWords .summary {
      color: #eaeaea; }
    .aboutBanner .sectionWords .primaryButton {
      background: #FFD71F;
      padding: 2rem;
      color: #323232;
      font-weight: 600;
      margin-top: 4rem; }
  .aboutBanner img {
    width: 40%;
    height: 100%;
    min-height: 100%;
    object-fit: cover; }
    @media (max-width: 600px) {
      .aboutBanner img {
        width: 100%;
        height: 100%;
        opacity: 1;
        transform: scaleX(-1); } }

.blogPage {
  width: 84%; }
  @media (max-width: 600px) {
    .blogPage {
      width: 100%;
      padding: 2rem;
      box-sizing: border-box; } }
  .blogPage .blogTop {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .1rem; }
    @media (max-width: 600px) {
      .blogPage .blogTop {
        flex-direction: column;
        align-items: flex-start; } }
    .blogPage .blogTop .smallCardsContainer {
      display: flex;
      flex-wrap: wrap;
      width: 47.9%;
      gap: .1rem; }
      @media (max-width: 600px) {
        .blogPage .blogTop .smallCardsContainer {
          width: 100%; } }
      .blogPage .blogTop .smallCardsContainer .smallCard {
        width: 49.9%; }
        @media (max-width: 600px) {
          .blogPage .blogTop .smallCardsContainer .smallCard {
            width: 100%; } }
  .blogPage .dividerText {
    font-size: 1.7rem;
    color: #D81E09;
    font-weight: 500;
    margin: 4rem 0; }
    @media (max-width: 600px) {
      .blogPage .dividerText {
        margin: 2rem 0; } }
  .blogPage .otherBlogContent {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem; }

.servicesContainer {
  height: auto !important;
  min-height: auto !important;
  position: relative;
  background: #f7f7f7;
  display: flex;
  align-items: flex-start;
  padding: 4rem 0; }
  @media (max-width: 600px) {
    .servicesContainer {
      padding: 2rem 2rem; } }
  .servicesContainer .sectionWords {
    position: sticky;
    top: 3rem;
    left: 0; }
    @media (max-width: 600px) {
      .servicesContainer .sectionWords {
        position: unset; } }
  .servicesContainer .servicesList .service_card {
    background: white; }

.contact {
  width: 84%;
  display: flex;
  align-items: center;
  padding: 4rem 0; }
  @media (max-width: 600px) {
    .contact {
      flex-direction: column;
      width: 100%;
      gap: 3rem; } }
  .contact .formColumn {
    width: 70%; }
    @media (max-width: 600px) {
      .contact .formColumn {
        width: 80%; } }
    .contact .formColumn .sectionWords .summary {
      margin: 2rem 0 8rem 0; }
    .contact .formColumn form {
      width: 60%; }
      @media (max-width: 600px) {
        .contact .formColumn form {
          width: 100%; } }
      .contact .formColumn form .question {
        font-weight: normal;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: #323232; }
      .contact .formColumn form .inp {
        margin-bottom: 5rem; }
        .contact .formColumn form .inp input, .contact .formColumn form .inp select {
          font-size: 1.3rem;
          font-weight: normal; }
          .contact .formColumn form .inp input:focus + span, .contact .formColumn form .inp select:focus + span {
            color: #D81E09;
            transform: translateY(-26px) scale(0.75);
            transition-delay: 0.1s; }
          .contact .formColumn form .inp input:focus + span + svg path, .contact .formColumn form .inp select:focus + span + svg path {
            stroke: #D81E09;
            animation: elasticInput 0.4s ease forwards; }
          .contact .formColumn form .inp input:focus + span + svg + .border, .contact .formColumn form .inp select:focus + span + svg + .border {
            background: #D81E09; }
      .contact .formColumn form .primaryButton {
        padding: 2rem; }
  .contact .contactColumn .contactContainer {
    margin-bottom: 4rem; }
    .contact .contactColumn .contactContainer .instruct {
      text-transform: uppercase;
      color: #9e9e9e;
      font-size: 1.3rem;
      font-weight: normal;
      margin-bottom: 1.5rem; }
    .contact .contactColumn .contactContainer .data {
      display: flex;
      align-items: center;
      gap: 1rem; }
      .contact .contactColumn .contactContainer .data i {
        color: #D81E09;
        font-size: 2rem; }
  .contact .contactColumn .socials {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 7rem; }
    .contact .contactColumn .socials a {
      color: #D81E09;
      font-size: 2rem; }
      .contact .contactColumn .socials a:hover {
        color: #323232; }

.sectionWords {
  box-sizing: border-box; }
  .sectionWords .sectionSubcaption {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #D81E09;
    margin-bottom: 2rem;
    box-sizing: border-box; }
    @media (max-width: 600px) {
      .sectionWords .sectionSubcaption {
        font-size: 1.1rem;
        margin-bottom: 1rem; } }
  .sectionWords .sectionCaption {
    font-family: "Tenali Ramakrishna", sans-serif;
    font-size: 8.5rem;
    text-transform: capitalize;
    line-height: .8;
    letter-spacing: .4rem; }
    @media (max-width: 600px) {
      .sectionWords .sectionCaption {
        font-size: 5rem; } }
  .sectionWords .summary {
    font-size: 1.1rem;
    color: grey; }

.loginBody {
  height: 100vh;
  width: 100%;
  background: #D81E09;
  display: flex;
  align-items: center; }
  @media (max-width: 600px) {
    .loginBody {
      justify-content: center; } }
  .loginBody img {
    width: 70%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0; }
    @media (max-width: 600px) {
      .loginBody img {
        width: 100%;
        mix-blend-mode: soft-light; } }
  .loginBody .signInForm {
    background: white;
    height: 60%;
    width: 28%;
    position: absolute;
    z-index: 10;
    right: 15%;
    top: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    box-sizing: border-box; }
    @media (max-width: 600px) {
      .loginBody .signInForm {
        width: 80%;
        right: 10%;
        background: white; } }
    .loginBody .signInForm form .inp {
      margin-bottom: 3rem; }
      .loginBody .signInForm form .inp .label {
        font-size: 1.2rem; }
      .loginBody .signInForm form .inp input,
      .loginBody .signInForm form .inp select,
      .loginBody .signInForm form .inp textarea {
        font-size: 1.2rem;
        font-weight: normal; }
        .loginBody .signInForm form .inp input:focus + span,
        .loginBody .signInForm form .inp select:focus + span,
        .loginBody .signInForm form .inp textarea:focus + span {
          color: #D81E09;
          transform: translateY(-26px) scale(0.75);
          transition-delay: 0.1s; }
        .loginBody .signInForm form .inp input:focus + span + svg path,
        .loginBody .signInForm form .inp select:focus + span + svg path,
        .loginBody .signInForm form .inp textarea:focus + span + svg path {
          stroke: #D81E09;
          animation: elasticInput 0.4s ease forwards; }
        .loginBody .signInForm form .inp input:focus + span + svg + .border,
        .loginBody .signInForm form .inp select:focus + span + svg + .border,
        .loginBody .signInForm form .inp textarea:focus + span + svg + .border {
          background: #D81E09; }
    .loginBody .signInForm form .primaryButton {
      padding: 2rem;
      width: 100%; }

.alterSubHeader {
  min-height: 29% !important;
  max-height: 29% !important;
  margin-bottom: 0; }
  @media (max-width: 600px) {
    .alterSubHeader {
      min-height: 20%; } }
  .alterSubHeader .left_side {
    height: 100%; }
    .alterSubHeader .left_side .welcome {
      color: #d8d8d8;
      font-size: 3.5rem;
      font-family: "poppins";
      font-weight: 300; }
    .alterSubHeader .left_side .greet {
      font-size: 1.3rem;
      color: #FFD71F;
      font-weight: 600; }
  .alterSubHeader .account_indicator {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600 !important;
    outline: none !important; }
    .alterSubHeader .account_indicator img {
      width: 4rem;
      height: 4rem;
      border-radius: 500px;
      object-fit: cover;
      object-position: center;
      margin-right: 0.5rem;
      border: white 2px solid; }

.dashboard_container {
  width: 100%;
  height: 80%;
  padding: 2rem 10rem; }
  @media (max-width: 600px) {
    .dashboard_container {
      padding: 2rem; } }
  .dashboard_container #v-pills-tab {
    width: 16%;
    height: fit-content;
    background: linear-gradient(to right bottom, #323232, #535353); }
    @media (max-width: 600px) {
      .dashboard_container #v-pills-tab {
        display: flex;
        flex-direction: row !important;
        width: fit-content; } }
    .dashboard_container #v-pills-tab .nav-link {
      width: 100%;
      padding: 2rem 1.5rem;
      text-align: left;
      font-size: 1.2rem;
      border-radius: 0;
      background: none;
      border: none;
      outline: none;
      cursor: pointer;
      color: #f7f7f7; }
      @media (max-width: 600px) {
        .dashboard_container #v-pills-tab .nav-link {
          width: fit-content; } }
    .dashboard_container #v-pills-tab .active {
      color: #FFD71F;
      font-weight: 600; }
  .dashboard_container .tab-content {
    width: 79%; }
    @media (max-width: 600px) {
      .dashboard_container .tab-content {
        width: 100%; } }
    .dashboard_container .tab-content .tab-pane .blogList {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1rem; }
      @media (max-width: 600px) {
        .dashboard_container .tab-content .tab-pane .blogList .smallCard {
          width: 100%; } }
    .dashboard_container .tab-content .tab-pane .accordion .accordion-item .accordion-header .accordion-button {
      background: #5e5e5e;
      color: white;
      outline: none;
      padding: 1.5rem;
      font-size: 1.3rem; }
    .dashboard_container .tab-content .tab-pane .accordion .accordion-item .accordion-collapse .accordion-body {
      background: #efefef;
      padding: 2rem; }
      .dashboard_container .tab-content .tab-pane .accordion .accordion-item .accordion-collapse .accordion-body .add_content {
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        background: #D81E09;
        font-size: 1.2rem;
        padding: 1rem;
        color: #f7f7f7;
        border-radius: 5px; }
      .dashboard_container .tab-content .tab-pane .accordion .accordion-item .accordion-collapse .accordion-body .content_card-list {
        width: 100%;
        display: flex;
        margin-top: 1rem;
        gap: 1.5rem;
        flex-wrap: wrap; }
        .dashboard_container .tab-content .tab-pane .accordion .accordion-item .accordion-collapse .accordion-body .content_card-list .content_card {
          width: 49%;
          height: 17rem;
          background: white;
          border-radius: 5px;
          padding: 1.5rem;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          box-sizing: border-box; }
          @media (max-width: 600px) {
            .dashboard_container .tab-content .tab-pane .accordion .accordion-item .accordion-collapse .accordion-body .content_card-list .content_card {
              width: 100%; } }
          .dashboard_container .tab-content .tab-pane .accordion .accordion-item .accordion-collapse .accordion-body .content_card-list .content_card .card_title {
            width: 100%;
            font-size: 2.1rem;
            font-family: "Tenali Ramakrishna", sans-serif;
            text-transform: capitalize;
            color: #323232;
            max-height: 50%;
            margin-bottom: 0;
            line-height: 1; }
          .dashboard_container .tab-content .tab-pane .accordion .accordion-item .accordion-collapse .accordion-body .content_card-list .content_card .descr {
            font-size: 1.1rem;
            font-family: "poppins";
            color: #8e6f00;
            height: 55%;
            overflow: hidden; }
          .dashboard_container .tab-content .tab-pane .accordion .accordion-item .accordion-collapse .accordion-body .content_card-list .content_card .btn_container {
            height: 15%; }
        .dashboard_container .tab-content .tab-pane .accordion .accordion-item .accordion-collapse .accordion-body .content_card-list .clientCard {
          width: 49%;
          height: 17rem;
          background: white;
          border-radius: 5px;
          padding: 1.5rem; }
          @media (max-width: 600px) {
            .dashboard_container .tab-content .tab-pane .accordion .accordion-item .accordion-collapse .accordion-body .content_card-list .clientCard {
              width: 100%; } }
