/* html,
body {
  overflow: hidden;
  overflow-y: auto;
} */

:root {
  --color-white: #ffffff;
  --color-black1: #000000;
  --color-black2: #0d0d0d;
  --color-black3: #484848;
  --color-black4: #1a1a1a;
  --color-orange: #d74e08;
  --color-blue: #114e78;
  --color-grey: #7f7f7f;
  --color-rating: #ffb800;
  --color-bg-light: #f5f9fc;
  --color-bg-light-blue: rgba(17, 78, 120, 0.35);
  --color-bg-light-orange: rgba(215, 78, 8, 0.35);
  --color-bg-light-green: rgba(9, 157, 140, 0.35);
  --color-primary-thames-green: #099d8c;
  --color-primary-thames-yellow: #fdd01e;
  --color-primary-thames-black: #1a1a1a;
  --color-secondary-thames-blue: #114e78;
  --color-secondary-thames-orange: #d74e08;
  --color-secondary-thames-mehron: #6e0d0b;
  --font-size-10: 10px;
  --font-size-11: 11px;
  --font-size-12: 12px;
  --font-size-13: 13px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-17: 17px;
  --font-size-18: 18px;
  --font-size-19: 19px;
  --font-size-20: 20px;
  --font-size-21: 21px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-26: 26px;
  --font-size-27: 27px;
  --font-size-28: 28px;
  --font-size-30: 30px;
  --font-size-32: 32px;
  --font-size-34: 34px;
  --font-size-36: 36px;
  --font-size-40: 40px;
  --font-size-42: 42px;
  --font-size-44: 44px;
  --font-size-48: 42px;
  --font-size-50: 50px;
  --font-size-52: 52px;
  --font-size-56: 56px;
  --font-size-58: 58px;
  --font-size-60: 60px;
  --font-size-62: 62px;
  --font-size-80: 80px;
  --font-weight-200: 200;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;
  --font-family: "Sora", sans-serif;
  --font-family-2: "Montserrat", sans-serif;
}

body {
  font-family: "Sora", sans-serif;
}
::selection {
  background-color: var(--color-primary-thames-green);
  color: var(--color-white);
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1170px;
  }
}

p {
  font-size: 16px;
  color: var(--color-black3);
  line-height: 22px;
  font-weight: var(--font-weight-400);
  text-align: justify;
}

/* Background Classes */
.bg-thames-green {
  background-color: var(--color-primary-thames-green);
}

.bg-thames-yellow {
  background-color: var(--color-primary-thames-yellow);
}

.bg-thames-black {
  background-color: var(--color-primary-thames-black);
}

.bg-light-blue {
  background-color: var(--color-bg-light-blue);
}

.bg-light-orange {
  background-color: var(--color-bg-light-orange);
}

.bg-light-green {
  background-color: var(--color-bg-light-green);
}

/* BUTTON CSS */
.btn_common {
  font-size: var(--font-size-18);
  font-style: normal;
  font-weight: var(--font-weight-600);
  line-height: 23px;
  display: inline-block;
  text-align: center;
  font-family: var(--font-family);
  color: var(--color-white);
  min-width: 180px;
  height: 60px;
  border: none;
  border-radius: 3px;
  padding: 19px 30px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.btn_common:hover,
.btn_common:focus,
.btn_common:active {
  background-color: var(--color-primary-thames-yellow);
  color: var(--color-black2);
  box-shadow: none;
  outline: 0;
}

/* HEADER CSS */
.header {
  position: absolute;
  padding: 10px 0;
  width: 100%;
  transition: all ease 0.3s;
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo1 {
  display: inline-block;
  max-width: 280px;
}

.logo2 {
  display: none;
}

.header.sticky {
  position: fixed;
  padding: 5px 0;
  top: 0;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.header.sticky .logo2 {
  display: inline-block;
  max-width: 280px;
}

.header.sticky .logo1 {
  display: none;
}

.navbar-expand-lg {
  flex-wrap: nowrap;
  justify-content: center;
}

.navbar-expand-lg .navbar-nav.menu_bar .nav-link {
  padding-left: 15px;
  padding-right: 15px;
  color: var(--color-white);
  opacity: 1;
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-500);
  text-transform: capitalize;
  line-height: 19px;
  text-align: center;
}

.navbar-expand-lg .navbar-nav.menu_bar .nav-link:hover,
.navbar-expand-lg .navbar-nav.menu_bar .nav-link:focus,
.navbar-expand-lg .navbar-nav.menu_bar .nav-link:active {
  color: var(--color-primary-thames-yellow);
}

.header.sticky .navbar-expand-lg .navbar-nav.menu_bar .nav-link {
  color: var(--color-black2);
}

.header.sticky .navbar-expand-lg .navbar-nav.menu_bar .nav-link:hover {
  color: var(--color-primary-thames-green);
}

.closebtn,
.button_nav {
  display: none;
}

.mobile_visible {
  display: none;
}

.navBar_btn .riskAssement-Btn {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-500);
  text-transform: capitalize;
  line-height: 19px;
  padding: 15px 18px;
  border-radius: 3px;
  border: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.navBar_btn .riskAssement-Btn:hover,
.navBar_btn .riskAssement-Btn:focus,
.navBar_btn .riskAssement-Btn:active {
  box-shadow: none;
  outline: 0;
  color: var(--color-white);
  background-color: var(--color-primary-thames-green);
}

/* BANNER CSS */
.banner {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  overflow: hidden;
}
.banner .bannerCarousel .carousel-inner .carousel-item img {
  position: relative;
  height: 768px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.banner .bannerCarousel .carousel-inner .carousel-item .carousel-caption {
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
  bottom: auto;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  /* background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5);  */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1;
}
.banner .bannerCarousel .carousel-control-next-icon,
.banner .bannerCarousel .carousel-control-prev-icon {
  background-color: var(--color-primary-thames-yellow);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  line-height: 50px;
  text-align: center;
  font-size: 25px;
  background-image: none;
}
.banner .bannerCarousel .carousel-control-next {
  right: 20px;
  justify-content: flex-end;
}
.banner .bannerCarousel .carousel-control-prev {
  left: 20px;
  justify-content: flex-start;
}
.banner .bannerCarousel .carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  background-color: var(--color-primary-thames-black);
  border-radius: 50px;
  border: none;
  opacity: 1;
}
.banner .bannerCarousel .carousel-indicators .active {
  background-color: var(--color-primary-thames-green);
}
.banner-content {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  text-align: center;
}

.banner-heading {
  color: var(--color-white);
  line-height: 101px;
  text-transform: none;
  font-size: var(--font-size-80);
  font-weight: var(--font-weight-600);
}

.ExploreNow-btn,
.what-wedo_row,
.btn_row {
  margin-top: 40px;
}
/* CALL TO ACTION BUTTON CSS */
.btn-call-section {
  position: fixed;
  width: 215px;
  /* height: 45px; */
  right: -140px;
  bottom: 60px;
  z-index: 99;
  background-color: #fdd01e;
  overflow: hidden;
  -ms-transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50px 0 0 50px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
}
.btn-callAction {
  cursor: pointer;
  text-decoration: none;
  color: #000;
  font-size: 32px;
  font-weight: var(--font-weight-600);
  display: block;
  text-align: left;
  margin: 0 0 0 10px;
}

.btn-callAction p {
  margin: 0;
  text-align: center;
  display: inline-block;
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-500);
  margin: 0 0 0 20px;
  color: var(--color-black1);
}
.btn-call-section:hover {
  background-color: #099d8c;
  color: #fff;
  right: 0;
}
.btn-call-section:hover .btn-callAction,
.btn-call-section:hover .btn-callAction p {
  color: #fff;
}

/* WHO WE ARE SECTION CSS */
.who-we-are-section {
  background-color: transparent;
  padding: 100px 0;
}

.who-we-are-section,
.our-story-section {
  position: relative;
  background: url("../assets/bg-element-1.png") no-repeat;
  background-size: cover;
  background-position: left center;
}

/* .who-we-are-section::before,
.our-story-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../assets/bg-element-1.png") no-repeat;
  background-size: cover;
  background-position: left center;
  top: 0;
  left: 0;
} */

.sub-heading {
  font-size: var(--font-size-50);
  font-weight: var(--font-weight-600);
  line-height: 63px;
  text-transform: capitalize;
  color: var(--color-black4);
  text-align: center;
  margin-bottom: 21px;
}

.who-we-are-row,
.who-we-are-tabs_row,
.our-story-row {
  position: relative;
  z-index: 1;
}

.who-we-are-section p,
.what-we-do-section p,
.our-feature-section p,
.our-story-content p,
.get-In-touch-section p,
.what-we-do-services p,
.what-our-process p,
.whyThames-content p {
  font-size: var(--font-size-18);
  text-align: justify;
  line-height: 36px;
  margin-bottom: 20px;
}

.who-we-areList,
.who-we-are-tabs_row {
  margin-top: 20px;
}

.who-we-are-section ul.who-we-areList li,
.what-we-do-support-box ul li,
.what-we-do-service-box ul li,
.our-product-box ul li,
.whyThames-list ul li,
.what-we-do-service-box ul li,
.our-product-box ul li,
.whyThames-list ul li {
  font-size: var(--font-size-18);
  margin-bottom: 10px;
}
.who-we-are-section ul.who-we-areList li,
.what-we-do-support-box ul li,
.what-we-do-service-box ul li,
.our-product-box ul li,
.whyThames-list ul li {
  color: var(--color-primary-thames-green);
  font-weight: var(--font-weight-500);
}
.what-we-do-service-box ul li,
.our-product-box ul li,
.whyThames-list ul li {
  color: var(--color-black3);
  font-weight: var(--font-weight-400);
}
.who-we-are-tabs .nav {
  justify-content: space-between;
}

.who-we-are-tabs .nav.nav-tabs {
  border-bottom: 2px solid #e1e1e1;
}

.who-we-are-tabs .nav .nav-item button {
  background-color: transparent;
  border: none;
}

.who-we-are-tabs .nav .nav-item .nav-link {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-600);
  line-height: 36px;
  color: var(--color-black3);
  padding: 5px 50px 15px;
  position: relative;
}

.who-we-are-tabs .nav .nav-item .nav-link.active,
.who-we-are-tabs .nav .nav-item .nav-link:focus,
.who-we-are-tabs .nav .nav-item .nav-link:active {
  color: var(--color-primary-thames-green);
  border-bottom: 2px solid #099d8c;
  margin-bottom: -2px;
}
.who-we-are-tabs-content .tab-content {
  margin-top: 40px;
}
.who-we-are-tabs-content .tab-content p {
  /* text-align: left; */
  margin: 20px 0 10px 0;
  color: var(--color-black2);
  min-height: 108px;
}

/* WHAT WE DO SECTION CSS */
.what-we-do-section {
  background-color: #f5f9fc;
  padding: 70px 0 70px;
}

.what-weDo_card .card .card-body .card-link {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-500);
  text-transform: capitalize;
  line-height: 28px;
  color: var(--color-primary-thames-green);
  text-decoration: none;
  cursor: pointer;
}

.what-weDo_card .card .card-body .card-link:hover {
  color: var(--color-primary-thames-yellow);
}

.what-weDo_card .card .card-body .card-link:hover i {
  padding-left: 5px;
  transition: padding-left 0.5s ease-in-out;
}

.btn_row {
  margin-top: 50px;
}

.services-img {
  border: 5px solid var(--color-primary-thames-black);
  border-radius: 5px;
  max-width: 850px;
  margin: 0 auto 25px;
}
.what-we-do-slider_card .card .card-body .info-icon img {
  width: 64px;
  height: 64px;
}
/* DOWNLOAD APP CSS */
.Download-app-section {
  background-color: var(--color-primary-thames-green);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.Download-app-section::after {
  content: "";
  background: url(../assets/bg-waves.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: -1;
  bottom: 0;
}

.download-app-img {
  height: 100%;
}

.download-app-img img {
  vertical-align: bottom;
  margin-left: -60px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  padding-top: 30px;
}

.download-app-content {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  padding: 250px 0 150px;
  align-items: flex-start;
}

.download-app-content img {
  margin-bottom: 15px;
}

.download-app-content h3 {
  font-size: var(--font-size-60);
  font-weight: var(--font-weight-600);
  line-height: 76px;
  color: var(--color-white);
  margin-bottom: 15px;
}

.download-app-content h4 {
  color: var(--color-white);
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-400);
  line-height: 38px;
}

.mt_3 {
  margin-top: 30px;
}
.mt_5 {
  margin-top: 40px;
}

/* OUR FEATURE CSS */
.our-feature-section {
  background-color: #f5f9fc;
  padding: 70px 0 90px;
}

.our_feature_card .card {
  border: none;
  border-right: 2px solid #e1e1e1;
  background: transparent;
  border-radius: none;
}

.our_feature_card .card .card-body {
  padding: 5px 34px 5px 5px;
}

.our_feature_card .card .card-body .info-icon {
  display: inline-block;
  margin-bottom: 20px;
}

.our_feature_card .card .card-body .card-title {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-500);
  line-height: 30px;
  color: var(--color-black1);
  /* min-height: 100px; */
  margin-bottom: 30px;
}

.our_feature_card .card .card-body .card-text {
  min-height: 145px;
}
.info-icon.circle-yellow,
.product-icon.circle-yellow {
  position: relative;
  z-index: 2;
}
.info-icon.circle-yellow::before,
.product-icon.circle-yellow::before {
  content: "";
  width: 35px;
  height: 35px;
  background: #fdd01e;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}

/* OUR STORY HTML START */
.our-story-section {
  padding: 90px 0 100px;
  background-color: transparent;
}

.our-story-img {
  position: relative;
  /* display: flex; */
}

/* .our-story-img img {
  width: 48%;
  padding-left: 12px;
} */

.our-story-img::before,
.our-story-img::after {
  content: "";
  position: absolute;
  right: -20px;
}

.our-story-img::before {
  width: 90%;
  height: 10px;
  background-color: var(--color-primary-thames-yellow);
  top: -20px;
}

.our-story-img::after {
  height: 90%;
  width: 10px;
  background-color: var(--color-primary-thames-green);
  top: 0;
}
/* .story-img {
  margin-top: 50px;
} */
.story-img .our-story-img::before,
.story-img .our-story-img::after {
  right: auto;
  left: -20px;
}

/* .our-story-content p {
  text-align: left;
} */

.our-story-content .btn-area .ReadMore-btn {
  position: relative;
}

/* TESTIMONIAL SECTION CSS */

.testimonial-section {
  background-color: transparent;
}

.testmonial-front-img {
  margin-left: -15px;
  height: 100%;
}

.testmonial-front-img img {
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  background-image: url("../assets/testimonial/testimonial-bg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin-left: -1px;
}

.testimonial-content {
  padding: 70px 30px 30px 40px;
  color: var(--color-white);
}

.testimonial-content .sub-heading {
  color: var(--color-white);
  text-align: left;
}

.testimonial-section .row .col-md-6:first-child {
  padding-right: 0;
}

.testimonial-section .row .col-md-6:last-child {
  padding-left: 0;
  padding-right: 0;
}

.rating {
  display: block;
  font-size: var(--font-size-17);
}

.star.enabled {
  color: var(--color-rating);
}

.star.disabled {
  color: var(--color-grey);
}

.quote-right,
.quote-left {
  font-family: var(--font-family-2);
  font-size: 150px;
  font-style: italic;
  font-weight: var(--font-weight-500);
  color: rgba(255, 255, 255, 0.2);
  /* display: inline-block; */
  line-height: 130px;
}

.quote-left {
  text-align: left;
  margin-bottom: -50px;
}

.quote-right {
  text-align: right;
  margin: -50px 20px 0 0;
}

.rating,
.testi-review,
.testi-info_box {
  padding-left: 20px;
  padding-right: 20px;
}

.testi-review,
.testi-info_box .name {
  color: var(--color-white);
}

.testi-review {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-500);
  line-height: 30px;
  margin: 15px 0;
}

.testi-info_box .name {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-600);
  line-height: 23px;
  margin: 0 0 0 15px;
}

.testi-info_box {
  margin: 20px 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* TESTIMONIAL SLIDER BX WRAPPER */
.testimonial-content .bx-wrapper {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  margin-bottom: 0;
}

.testimonial-content .bx-wrapper .bx-prev {
  background: none;
}

.testimonial-content .bx-wrapper .bx-controls-direction {
  padding: 0 20px 0 20px;
}

.testimonial-content .bx-wrapper .bx-controls-direction a {
  text-indent: inherit;
  position: inherit;
  margin-top: 0;
  font-size: 30px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-content .bx-wrapper .bx-controls-direction a:active,
.testimonial-content .bx-wrapper .bx-controls-direction a:hover,
.testimonial-content .bx-wrapper .bx-controls-direction a:focus {
  color: rgba(255, 255, 255);
}

.testimonial-content .bx-wrapper a.bx-prev:before,
.testimonial-content .bx-wrapper a.bx-next:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  text-indent: inherit;
}

.testimonial-content .bx-wrapper a.bx-prev:before {
  content: "\f30a";
  margin-right: 20px;
}

.testimonial-content .bx-wrapper a.bx-next:before {
  content: "\f30b";
}

/* GET IN TOUCH WITH US CSS */
.get-In-touch-section {
  padding: 60px 0 140px;
  background: transparent;
  text-align: center;
}

.get-In-touch-section h4,
.testimonial-content h4 {
  text-transform: uppercase;
  font-size: var(--font-size-20);
  letter-spacing: 0.1em;
  line-height: 30px;
  font-weight: var(--font-weight-600);
  color: var(--color-primary-thames-green);
  margin-bottom: 12px;
}

.subscribe_form {
  position: relative;
  margin-top: 30px;
}

.subscribe_form .form-control {
  max-width: 850px;
  height: 80px;
  margin: 0 auto;
  padding: 15px 15px 15px 20px;
  border-radius: 3px;
  font-size: var(--font-size-18);
  color: var(--color-black2);
  border: 1px solid #d9d9d9;
}

.subscribe_form .form-control:focus {
  box-shadow: none;
  border: 1px solid #099d8c;
}

.subscribe_form .form-control::placeholder {
  color: #617798;
  opacity: 0.7;
}

.Subscribe_btn {
  height: 100%;
}

.Subscribe_btn {
  min-width: 200px;
  position: absolute;
  right: 85px;
  top: 0;
  text-transform: uppercase;
  border-radius: 0 3px 3px 0;
  border: 1px solid #099d8c;
}

.Subscribe_btn:hover {
  border: 1px solid #fdd01e;
}

/* ABOUT US PAGE CSS  */
.banner.aboutUs-banner,
.banner.whyThames-banner,
.banner.contact-banner,
.banner.requestQuote-banner,
.banner.whatWeDo-banner {
  background-repeat: no-repeat !important;
  background-size: cover !important ;
  min-height: 440px;
  padding: 150px 0 150px;
}

.banner.aboutUs-banner,
.banner.contact-banner,
.banner.requestQuote-banner {
  background-position: center center !important;
}

.aboutUs-video {
  margin-top: 40px;
  border-radius: 50px;
}
.aboutUs-video iframe {
  border-radius: 50px;
}
.about-our-story-section {
  padding: 60px 0 60px;
}
.our-story-section.aboutUs-ourStory::before,
.our-story-section.aboutUs-ourStory::after {
  display: none;
}
.what-we-do-support,
.about-why-thames-section {
  background: var(--color-bg-light);
  padding: 60px 0 60px;
}
.about-what-we-do-section {
  padding: 60px 0 30px;
}
.what-we-do-support-box p {
  text-align: left;
}
.what-we-do-support-box ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  -o-columns: 2;
  -ms-columns: 2;
  margin-bottom: 30px;
}
/* .what-we-do-service-box ul {
  columns: 1;
  -webkit-columns: 2;
  -moz-columns: 2;
  -o-columns: 2;
  -ms-columns: 2;
  margin-bottom: 30px;
} */
.our-process-card {
  padding: 65px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.our-process-title {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-600);
  text-transform: uppercase;
  line-height: 40px;
  text-align: center;
}
.what-our-process-row .our-process-card.Process-card1 {
  background-color: #d2dde5;
  border: 20px solid #e7edf1;
}
.what-our-process-row .our-process-card.Process-card1 .our-process-title {
  color: var(--color-secondary-thames-blue);
}
.what-our-process-row .our-process-card.Process-card2 {
  background-color: #f7ddd0;
  border: 20px solid #fbede6;
}
.what-our-process-row .our-process-card.Process-card2 .our-process-title {
  color: var(--color-secondary-thames-orange);
}
.what-our-process-row .our-process-card.Process-card3 {
  background-color: #d0ece9;
  border: 20px solid #e6f5f3;
}
.what-our-process-row .our-process-card.Process-card3 .our-process-title {
  color: var(--color-primary-thames-green);
}
.product-icon {
  display: inline-block;
  margin-bottom: 20px;
}
.product-icon img {
  width: 64px;
  height: 64px;
}
.product-icon.circle-yellow::before {
  left: 8px;
  top: 4px;
}
.our-product-row {
  margin-top: 30px;
}
.product-box {
  padding: 30px;
  box-shadow: 0 2px 4px rgba(48, 18, 84, 0.04), 0 4px 8px rgba(48, 18, 84, 0.04),
    0 4px 12px rgba(48, 18, 84, 0.02);
  margin: 0 0 20px;
  border-radius: 8px;
  border: 1px solid #d2f6f2;
  background: rgb(255 251 250);
}

.product-heading {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-500);
  line-height: 30px;
  color: var(--color-black1);
}

/* NEW CSS */
/* .our-story-image {
  margin: 25px 0 30px;
} */
/* Why Thames page CSS */
.banner.whyThames-banner,
.banner.whatWeDo-banner {
  background-position: top center !important;
}

/* CONTACT US PAGE CSS */

.conatact_form-box .sub-heading,
.requestQuote_form-box .sub-heading {
  text-align: left;
}
.contact-section,
.requestQuote-section {
  background-color: transparent;
  padding: 75px 0;
}
.contact-info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 50px;
}
.contact-info > div:first-child {
  margin-right: 30px;
}
.contact-info h5 {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-600);
  text-transform: capitalize;
  line-height: 38px;
  margin-bottom: 5px;
  color: var(--color-black2);
}
.contact-info p {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-500);
  line-height: 30px;
  color: var(--color-black2);
  margin-bottom: 0;
}
form .form-control,
form .form-select {
  font-size: var(--font-size-16);
  border: 1px solid #eff1f6;
  border-radius: 5px;
  padding: 20px;
  color: var(--color-black2);
}
form input.form-control {
  height: 60px;
}

form .form-field,
form .submitBtn-field {
  margin-bottom: 30px;
}
form .form-control::placeholder,
form .form-select::placeholder {
  color: #888b8e;
}
form .form-control:focus,
form .form-select:focus,
form .form-check-input:focus {
  box-shadow: none;
  outline: 0;
}
form .form-control:focus,
form .form-select:focus {
  border: 1px solid #099d8c;
}
form input::-webkit-outer-spin-button,
form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
form .form-check-input:checked {
  background-color: var(--color-primary-thames-green);
  border-color: var(--color-primary-thames-green);
}
form .form-check-label {
  font-size: var(--font-size-16);
  color: var(--color-black2);
  text-transform: capitalize;
}

/* Firefox */
form input[type="number"] {
  -moz-appearance: textfield;
}
/* REQUEST A QUOTE PAGE CSS */
.requestQuote-banner {
}
/* What We Do Page CSS */

.what-we-do-services,
.what-our-process {
  background-color: transparent;
  padding: 75px 0;
}
.lifecycle-img img {
  border: 5px solid #000000;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
}

.our-partener-box h4 {
  color: var(--color-secondary-thames-blue);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-600);
  margin-bottom: 15px;
}
.lifecycle-img-row {
  border: 5px solid #099d8c;
  border-radius: 5px;
  padding: 20px;
  margin: 20px 0 40px;
}
.lifecycle-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 20px;
}
.lifecycle-header h5,
.lifecycle-footer h5 {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-600);
  color: var(--color-secondary-thames-blue);
  text-transform: capitalize;
}
.lifecycle-header p {
  position: relative;
}
.lifecycle-header p {
  border: 1px solid #0d0d0d;
  font-size: 13px;
  font-weight: var(--font-weight-500);
  border-radius: 5px;
  padding: 8px 10px;
  margin-bottom: 0;
  line-height: normal;
}
.lifecycle-header h5 {
  text-align: left;
}
.lifecycle-header h5,
.lifecycle-footer h5 {
  margin-bottom: 0;
}
.lifecycle-footer h5 {
  text-align: right;
  padding-right: 300px;
  margin-top: 20px;
}
.lifecycle-box,
.lifecycle-combo-box {
  border-radius: 10px;
  font-size: var(--font-size-13);
  font-weight: var(--font-weight-500);
  padding: 30px 15px;
  text-align: center;
}
.lifecycle-box {
  min-height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
}
.lifecycle-combo-box {
  font-size: var(--font-size-14);
  background-color: var(--color-secondary-thames-blue);
  color: var(--color-white);
  border: 20px solid rgb(44 106 149 / 66%);
  border-style: outset;
  min-height: 260px;
}
.lifecycle-combo-box span {
  text-transform: uppercase;
  text-decoration: underline;
}
.lifecycle-box.one,
.lifecycle-body-left .row:first-child .col:first-child .lifecycle-outer::after {
  background-color: var(--color-primary-thames-green);
  color: var(--color-white);
}
.lifecycle-box.two,
.lifecycle-body-left
  .row:first-child
  .col:nth-child(2)
  .lifecycle-outer::after {
  background-color: var(--color-secondary-thames-orange);
  color: var(--color-white);
}
.lifecycle-box.three,
.lifecycle-body-left
  .row:first-child
  .col:nth-child(3)
  .lifecycle-outer::after {
  background-color: var(--color-secondary-thames-mehron);
  color: var(--color-white);
}
.lifecycle-box.four,
.lifecycle-body-left
  .row:first-child
  .col:nth-child(4)
  .lifecycle-outer::after {
  background-color: var(--color-primary-thames-yellow);
  color: var(--color-black1);
}
.lifecycle-box.five {
  background-color: var(--color-primary-thames-black);
  color: var(--color-white);
}
.lifecycle-box.ten {
  background-color: rgba(9, 157, 140, 20%);
  color: var(--color-black1);
}
.lifecycle-box.nine,
.lifecycle-body-left .row:last-child .col:nth-child(1) .lifecycle-outer::after {
  background-color: rgba(215, 78, 8, 0.2);
  color: var(--color-black1);
}
.lifecycle-box.eight,
.lifecycle-body-left .row:last-child .col:nth-child(2) .lifecycle-outer::after {
  background-color: rgba(110, 13, 11, 0.2);
  color: var(--color-black1);
}
.lifecycle-box.seven,
.lifecycle-body-left .row:last-child .col:nth-child(3) .lifecycle-outer::after {
  background-color: rgba(253, 208, 30, 0.2);
  color: var(--color-black1);
}
.lifecycle-box.six,
.lifecycle-body-left .row:last-child .col:nth-child(4) .lifecycle-outer::after {
  background-color: rgba(26, 26, 26, 0.5);
  color: var(--color-white);
}
.lifecycle-img-margin {
  margin-top: 30px;
}

.lifecycle-body-left .row:first-child .col .lifecycle-outer::after,
.lifecycle-body-left .row:last-child .col .lifecycle-outer::after {
  content: "";
  width: 22%;
  height: 30px;
  /* display: inline-flex; */
  background-color: black;
  clip-path: polygon(
    0 10px,
    calc(100% - 15px) 10px,
    calc(100% - 15px) 0,
    100% 50%,
    calc(100% - 15px) 100%,
    calc(100% - 15px) calc(100% - 10px),
    0 calc(100% - 10px)
  );
}
.lifecycle-body-left .row:first-child .col:last-child .lifecycle-outer::after,
.lifecycle-body-left .row:last-child .col:last-child .lifecycle-outer::after {
  display: none;
}

.lifecycle-body-left .row:first-child .col,
.lifecycle-body-left .row:last-child .col {
  padding: 0;
}
.lifecycle-body-left .row:first-child .col:first-child,
.lifecycle-body-left .row:last-child .col:first-child {
  padding-right: 0;
  padding-left: 15px;
}
.lifecycle-body-left .row:first-child .col:last-child,
.lifecycle-body-left .row:last-child .col:last-child {
  padding-left: 0;
  padding-right: 15px;
}
.lifecycle-body-left .row:first-child .col:last-child .lifecycle-outer,
.lifecycle-body-left .row:last-child .col:last-child .lifecycle-outer {
  justify-content: flex-start;
}
.lifecycle-outer {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* .lifecycle-body .row .col-md-2.lifecycle-body-right {
  padding: 0;
} */
.lifecycle-body .row .col-lg-10 {
  padding-right: 0;
}
.lifecycle-body .row .col-lg-2 {
  padding-left: 0;
}
.lifecycle-body-left .row:last-child .col .lifecycle-outer::after {
  transform: rotate(-180deg);
}
.lifecycle-header p::after {
  content: "";
  width: 35px;
  height: 15px;
  display: inline-block;
  text-align: end;
  transform: rotate(90deg);
  background-color: #114e78;
  clip-path: polygon(
    0 10px,
    calc(100% - 15px) 10px,
    calc(100% - 15px) 0,
    100% 50%,
    calc(100% - 15px) 100%,
    calc(100% - 15px) calc(100% - 10px),
    0 calc(100% - 10px)
  );
  position: absolute;
  right: 0;
  bottom: -30px;
}
.our-partners-row {
  margin-top: 30px;
}
.our-partner-img {
  background: var(--color-white);
  text-align: center;
  padding: 15px;
  /* border: 1px solid #099d8c; */
  border-radius: 5px;
  box-shadow: 0 0 5px rgb(0 0 0 / 32%);
  cursor: pointer;
}
.our-partner-img img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.our-partner-img:hover img {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}
.what-we-do-service-box .our-story-img,
.what-we-do-service-box .service-list {
  margin-bottom: 30px;
}
.what-we-do-support-box .support-list {
  list-style-type: none;
  columns: inherit;
  -webkit-columns: inherit;
  -moz-columns: inherit;
  -o-columns: inherit;
  -ms-columns: inherit;
  margin-bottom: 30px;
  padding-left: 0;
  display: grid;
  grid-template-columns: 3fr 3fr 3fr;
}
.what-we-do-support-box .support-list li {
  padding: 15px;
}
.support-card-number {
  font-size: 68px;
  font-weight: var(--font-weight-800);
  display: inline-block;
  margin-bottom: 5px;
}
.what-we-do-support-box .support-list p {
  margin-bottom: 0;
  font-size: var(--font-size-18);
}
.support-card-number.one {
  color: var(--color-secondary-thames-orange);
}
.support-card-number.two {
  color: var(--color-primary-thames-green);
}
.support-card-number.three {
  color: var(--color-blue);
}
.support-card-number.four {
  color: var(--color-primary-thames-yellow);
}
.support-card-number.five {
  color: var(--color-secondary-thames-mehron);
}
/* We Coverage section css */
.we-coverage-section {
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../assets/coverage-banner.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  text-align: center;
  min-height: 680px;
  width: 100%;
}
.we-coverage-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
}
.we-coverage-section h2.sub-heading,
.we-coverage-section p {
  color: var(--color-white);
}
.we-coverage-section h2.sub-heading {
  font-size: var(--font-size-80);
  margin-bottom: 50px;
  /* text-shadow: 0 0 15px #099d8c; */
}
.we-coverage-section p {
  font-size: var(--font-size-28);
  font-weight: var(--font-weight-500);
  letter-spacing: 1.5px;
  line-height: 40px;
}
/* FOOTER */
.footer {
  background-color: var(--color-black2);
  color: #fff;
}

.footer-top {
  border-bottom: 1px solid rgba(127, 127, 127, 0.1);
  padding: 55px 0 70px;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-top h5 {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-600);
  line-height: 23px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.social-media_list {
  padding-left: 0;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  list-style-type: none;
}

.social-media_list {
  justify-content: flex-end;
}

.social-media_list span,
.footer-bottom p {
  color: var(--color-grey);
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-500);
  line-height: 19px;
  text-align: left;
  text-transform: capitalize;
}

.social-media_list span {
  text-align: right;
}

.social-media_list li {
  margin-left: 18px;
}

.social-media_list li a.social-links {
  width: 36px;
  height: 36px;
  line-height: 38px;
  text-align: center;
  display: inline-block;
  background: #303030;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-20);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.social-media_list li a.social-links:hover {
  background-color: var(--color-primary-thames-yellow);
  color: var(--color-black1);
}

.footer-list {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  -o-columns: 2;
  -ms-columns: 2;
}

.footer-list li a.footer-links,
.contact-detail p,
address {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-400);
  line-height: 30px;
}

.footer-list li a.footer-links {
  text-transform: capitalize;
  line-height: 34px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.footer-list li a.footer-links:hover {
  color: var(--color-primary-thames-yellow);
}
.regulated-authority {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-600);
  text-transform: capitalize;
}
.regulated-authority a {
  text-decoration: none;
}
.regulated-authority a img {
  /* max-width: 240px; */
  max-height: 150px;
}

/* SERVICSES BX SLIDER START */
.what-we-do-section .bx-wrapper,
.our-values-row .bx-wrapper,
.our-partners-row .bx-wrapper {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  border: 5px solid #fff;
  background: transparent;
  box-shadow: none;
  border: none;
}
.what-we-do-section .bx-wrapper .card {
  background-color: transparent;
  border: none;
  border-right: 1px solid #ddd;
  border-radius: 0;
  min-height: 230px;
}
.what-we-do-section .bx-wrapper .card .card-body {
  padding: 0px 15px;
}

.what-we-do-section .card-title {
  margin: 20px 0 35px;
  line-height: 30px;
  min-height: 90px;
}
.what-we-do-section .what-we-do-slider a {
  text-decoration: none;
  font-size: 16px;
  color: #099d8c;
}
.what-we-do-section .what-we-do-slider a:hover {
  color: #fdd01e;
}
.what-we-do-section .what-we-do-slider a span {
  margin-right: 5px;
}
.what-we-do-slider-section {
  margin: 15px 0 0;
}
.what-we-do-slider-section .bx-wrapper .bx-pager,
.what-we-do-slider-section .bx-wrapper .bx-controls-auto,
.our-values-row .bx-wrapper .bx-pager,
.our-values-row .bx-wrapper .bx-controls-auto,
.our-partners-row .bx-wrapper .bx-pager,
.our-partners-row .bx-wrapper .bx-controls-auto {
  margin: 30px 0 0;
  position: inherit;
}
.what-we-do-slider-section .bx-wrapper .bx-pager.bx-default-pager a.active,
.our-values-row .bx-wrapper .bx-pager.bx-default-pager a.active,
.our-partners-row .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #099d8c;
}
.what-we-do-slider-section .bx-wrapper .bx-pager.bx-default-pager a,
.our-values-row .bx-wrapper .bx-pager.bx-default-pager a,
.our-partners-row .bx-wrapper .bx-pager.bx-default-pager a {
  background: #000;
}
/* SERVICSES BX SLIDER END */
.menu-rt .navBar_btn .riskAssement-Btn {
  display: none;
}

/* OUR VALUES SECTION  */
.what-ourvalue-section {
  padding: 80px 0;
  background-color: transparent;
}
.our-values-row {
  margin-top: 50px;
}
.card-number {
  font-size: var(--font-size-44);
  color: var(--color-primary-thames-green);
  font-weight: var(--font-weight-800);
  display: inline-block;
  margin-bottom: 15px;
}
.our-values-card h5 {
  font-size: var(--font-size-28);
  font-weight: var(--font-weight-600);
  color: var(--color-secondary-thames-blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.our-values-card p {
  font-size: var(--font-size-18);
  line-height: 36px;
  min-height: 180px;
}
.our-values-card .card {
  box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 7%);
  border: none;
}
.our-values-row .bx-wrapper .bx-viewport {
  height: auto !important;
  padding: 15px 10px;
}
.our-partners-row .bx-wrapper .bx-viewport {
  /* padding: 10px 10px; */
  min-height: 120px;
  padding: 10px 0;
}
.our-values-row .bx-wrapper,
.our-partners-row .bx-wrapper {
  margin-bottom: 0;
}
.our-partners-row .bx-wrapper img {
  max-width: 100%;
  display: block;
  height: 72px;
  object-fit: cover;
  text-align: center;
  margin: 0 auto;
}
.our-values-row
  .bx-wrapper
  .bx-controls.bx-has-controls-auto.bx-has-pager
  .bx-pager {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
/* WHY THAMES 10-10-2022 */
.whyThames-list ul {
  list-style-type: none;
  padding-left: 0;
}
.whyThames-list ul li {
  position: relative;
  padding-left: 30px;
}
.whyThames-list ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  color: #099d8c;
  position: absolute;
  left: 0;
  width: 25px;
  height: 25px;
  /* margin: 0 15px 0 0; */
}
