/* CSS Index
============================
1. Theme default css
2. header
3. slider
4. about-area
5. features-box
6. department
7. team
8. video-area
9. counter
10. footer
============================
*/
/*=============================
    1. Google Fonts
===============================*/
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");
/***
====================================================================
    Css Files
====================================================================
***/
/* Module Css */
@import url("module-css/header.css");
@import url("module-css/footer.css");
@import url("module-css/services.css");
@import url("module-css/about.css");
@import url("module-css/banner.css");
@import url("module-css/blog.css");
@import url("module-css/breadcrumb.css");
@import url("module-css/contact.css");
@import url("module-css/fact-counter.css");
@import url("module-css/partner.css");
@import url("module-css/testimonial.css");
@import url("module-css/team.css");
/*=============================
    1. Variable CSS
===============================*/
:root {
  --thm-body-font: "Rubik", sans-serif;
  --thm-heading-font: "Rajdhani", sans-serif;
  --thm-primary: #F68B21;
  --thm-primary-rgb: 246, 139, 33;
  --thm-secondary: #1037B6;
  --thm-secondary-rgb: 16, 55, 182;
  --thm-body-font-color: #616670;
  --thm-body-font-size: 16px;
  --thm-body-font-line-height: 30px;
  --thm-body-font-weight: 400;
  --thm-heading-font-color: #121212;
  --thm-heading-font-weight: 700;
  --thm-body-background: #F4F4F4;
  --thm-black-bg: #212121;
  --thm-white: #ffffff;
  --thm-black: #121212;
  --thm-blue: #0d6efd;
  --thm-indigo: #6610f2;
  --thm-purple: #6f42c1;
  --thm-pink: #d63384;
  --thm-red: #dc3545;
  --thm-orange: #fd7e14;
  --thm-yellow: #ffc107;
  --thm-green: #198754;
  --thm-teal: #20c997;
  --thm-cyan: #0dcaf0;
}

.body-gray-bg {
  background-color: var(--thm-body-background);
}

body {
  color: var(--thm-body-font-color);
  font-size: var(--thm-body-font-size);
  line-height: var(--thm-body-font-line-height);
  font-weight: var(--thm-body-font-weight);
  font-family: var(--thm-body-font);
  font-style: normal;
}

p {
  color: var(--thm-body-font-color);
  font-size: var(--thm-body-font-size);
  line-height: var(--thm-body-font-line-height);
  font-weight: var(--thm-body-font-weight);
  font-family: var(--thm-body-font);
  margin-bottom: 0;
}

.auto-container {
  position: static;
  max-width: 1320px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}

.container {
  max-width: 1320px;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

section {
  position: relative;
  display: block;
  z-index: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

a,
button {
  color: var(--thm-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
  outline: medium none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:hover {
  color: var(--thm-primary);
  text-decoration: none;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol,
li {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--thm-heading-font);
  color: var(--thm-heading-font-color);
  margin-top: 0px;
  margin-bottom: 0;
  font-style: normal;
  line-height: 1.2em;
  font-weight: var(--thm-heading-font-weight);
  text-transform: inherit;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

/*== Swiper Nav Style1 Css ======*/
.swiper-nav-style1 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  top: 162px;
  left: 0;
  right: 0;
  max-width: 1320px;
  width: 100%;
  padding: 0px 15px 0px;
  margin: 0 auto;
  height: 40px;
}

.swiper-nav-style1 .swiper-button-next,
.swiper-nav-style1 .swiper-button-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  border-radius: 20px;
  background-color: transparent;
  color: var(--thm-white);
  font-size: 20px;
  font-weight: 400;
  border: 1px solid var(--thm-white);
  outline: none;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.swiper-nav-style1 .swiper-button-next {
  margin-left: 10px;
}

.swiper-nav-style1 .swiper-button-next i,
.swiper-nav-style1 .swiper-button-prev i {
  font-weight: 400;
}

.swiper-nav-style1 .swiper-button-next:hover,
.swiper-nav-style1 .swiper-button-prev:hover {
  background: var(--thm-primary);
  border-color: var(--thm-primary);
  color: #ffffff;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 0px;
  left: auto;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 0px;
  right: auto;
}

.swiper-nav-style1 .swiper-button-next::after,
.swiper-nav-style1 .swiper-button-prev::after {
  display: none;
}

/*== Swiper Nav Style1 Css ======*/
#swiper-dot-style1 {
  position: relative;
  z-index: 55;
  line-height: 0;
  background-color: transparent;
  bottom: 0;
  padding-bottom: 17px;
}

#swiper-dot-style1 .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0px 10px;
  background: #004AAD;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

#swiper-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

#swiper-dot-style1 .swiper-pagination-bullet::before {
  position: absolute;
  top: -7px;
  left: -7px;
  bottom: -7px;
  right: -7px;
  border: 2px solid #004AAD;
  border-radius: 50%;
  transform: scale(0);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
}

#swiper-dot-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
#swiper-dot-style1 .swiper-pagination-bullet:hover {
  transform: scale(1);
}

/*== Swiper Scroll pagination progressbar Css ======*/
.scroll-pagination {
  position: relative;
  height: 6px;
  width: 300px;
  margin: 85px auto 0;
}

.scroll-pagination .swiper-pagination {
  position: absolute;
  top: 0;
  left: 0;
  background: #e3e3e3;
  height: 6px;
  width: 100%;
  border-radius: 3px;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

.scroll-pagination .swiper-pagination-progressbar-fill {
  background: #ff9600 !important;
  border-radius: 10px;
  cursor: pointer;
}

/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.styled-pagination li {
  position: relative;
  display: block;
  float: left;
  margin-right: 20px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  border: 1px solid #E3E3E3;
  background: transparent;
  color: var(--thm-black);
  font-size: 24px;
  line-height: 60px;
  font-weight: 700;
  font-family: var(--thm-heading-font);
  transition: all 500ms ease;
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li a.active,
.styled-pagination li.active a {
  color: var(--thm-black);
  background: var(--thm-primary);
  border-color: var(--thm-primary);
}

.styled-pagination li a:hover,
.styled-pagination li a.active,
.styled-pagination li.active a {
  color: var(--thm-white);
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--thm-white);
}

/*=============================
    Sec Title CSS
===============================*/
.sec-title {
  position: relative;
  display: block;
  margin-top: -7px;
  padding-bottom: 55px;
}

.sec-title .sub-title {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.sec-title .sub-title h4 {
  color: #004AAD;
  font-size: 18px;
  line-height: 37px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.sec-title h2 {
  font-size: 40px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: capitalize;
}

/*=============================
    Thm Btn
===============================*/
.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
  background-color: transparent;
  color: var(--thm-white);
  font-size: 16px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  font-family: var(--thm-heading-font);
  border-radius: 5px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 2;
}

.thm-btn:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 1;
  transform: scaleY(1);
  background-color: var(--thm-primary);
  transition-duration: 500ms;
  z-index: -1;
}

.thm-btn:hover:after {
  transform: scaleY(0);
  transition-duration: 900ms;
}

.thm-btn:before {
  position: absolute;
  top: 0%;
  left: 0;
  right: 0px;
  content: "";
  background: #004AAD;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition-duration: 700ms;
  z-index: 1;
  bottom: 0;
}

.thm-btn:hover:before {
  top: -30px;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.thm-btn .txt {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 1;
}

.thm-btn:hover,
.thm-btn:focus {
  color: var(--thm-white);
  -webkit-box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
  -moz-box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
  box-shadow: 2px 2px 20px 0px rgba(var(--thm-black-rgb), 0.1);
}

.thm-btn i {
  position: relative;
  top: 0px;
  display: inline-block;
  margin-left: 7px;
  font-size: 16px;
  z-index: 1;
}

.list-wrap {
  margin: 0px;
  padding: 0px;
}

.list-wrap li {
  list-style: none;
}

hr {
  border-bottom: 1px solid var(--thm-primary-color);
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: var(--thm-body-font-color);
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}

*::-moz-selection {
  background: var(--thm-primary);
  color: var(--thm-black);
  text-shadow: none;
}

::-moz-selection {
  background: var(--thm-primary);
  color: var(--thm-black);
  text-shadow: none;
}

::selection {
  background: var(--thm-primary);
  color: var(--thm-black);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--thm-body-font-color);
  font-size: var(--thm-body-font-size);
  opacity: 1;
}

*::placeholder {
  color: var(--thm-body-font-color);
  font-size: var(--thm-body-font-size);
  opacity: 1;
}

/***
=============================================
   Search Popup
=============================================
***/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  padding-top: 130px;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  background-color: var(--thm-black);
  opacity: 1;
  cursor: pointer;
}

.search-close-btn {
  position: absolute;
  top: 10px;
  right: 27px;
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
  transform: inherit;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  width: 60px;
  height: 60px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-close-btn:hover {
  background-color: var(--thm-primary);
}

.search-close-btn i {
  position: relative;
  display: inline-block;
  transform: rotate(45deg);
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: var(--thm-white);
  border-radius: 10px;
  overflow: hidden;
}

.search-popup__content form input[type=search],
.search-popup__content form input[type=text] {
  width: 100%;
  background-color: var(--thm-white);
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
  padding-right: 75px;
}

.search-popup__content .btn-one {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0px;
  border-radius: 0;
  background-color: var(--thm-primary);
  border: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.search-popup__content .btn-one::before {
  border-radius: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--thm-black);
}

.search-popup__content .btn-one i::before {
  position: relative;
  display: inline-block;
  color: var(--thm-white);
  font-size: 20px;
  font-weight: 700;
  background-color: transparent;
  margin-left: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 5;
}

.search-popup__content .btn-one:hover i::before {
  color: var(--thm-white);
}

.search-popup__content .btn-one i {
  margin-left: 0px;
}

/*=============================
    Extra Info Css
===============================*/
.extra-info {
  background: #004AAD none repeat scroll 0 0;
  height: 100%;
  padding: 50px;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.7s ease 0s;
  width: 450px;
  z-index: 999;
  overflow-y: scroll;
  transform: translateX(100%);
}

.extra-info.active {
  transform: translateX(0);
}

.offcanvas-overly {
  position: fixed;
  background: #000000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.offcanvas-overly.active {
  opacity: 0.9;
  visibility: visible;
}

.close-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.close-icon:hover {
  background-color: #fff;
}

.close-icon > button {
  position: relative;
  display: inline-block;
  color: var(--thm-white);
  cursor: pointer;
  font-size: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.close-icon > button:hover {
  color: var(--thm-primary);
}

.logo-side {
  position: relative;
  display: block;
}

.logo-side a {
  position: relative;
  display: inline-block;
}

.logo-side img {
  width: auto;
}

.side-info {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  margin-top: 25px;
}

.side-info .content-box {
  position: relative;
  display: block;
}

.side-info .content-box h3 {
  color: var(--thm-white);
  font-size: 30px;
  line-height: 40px;
}

.side-info .content-box .text {
  position: relative;
  display: block;
  padding-top: 20px;
}

.side-info .content-box .text p {
  color: rgba(255, 255, 255, 0.9);
}

.sidebar-contact-info {
  position: relative;
  display: block;
}

.sidebar-contact-info h3 {
  color: var(--thm-white);
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin: 0 0 27px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  padding-left: 25px;
}

.sidebar-contact-info ul li + li {
  margin-top: 11px;
}

.sidebar-contact-info ul li .icon {
  position: absolute;
  top: 6px;
  left: 0;
  line-height: 0;
}

.sidebar-contact-info ul li .icon span {
  position: relative;
  display: inline-block;
  color: var(--thm-white);
  font-size: 16px;
}

.sidebar-contact-info ul li .text {
  position: relative;
  display: block;
}

.sidebar-contact-info ul li .text p {
  color: rgba(255, 255, 255, 0.9);
}

.sidebar-contact-info ul li .text p a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.sidebar-contact-info ul li .text p a:hover {
  color: var(--thm-primary);
}

.side-content-newsletter-box {
  position: relative;
  display: block;
  padding-top: 29px;
}

.side-content-newsletter-box h3 {
  color: var(--thm-white);
  font-size: 25px;
  line-height: 30px;
  margin: 0 0 24px;
}

.side-content-newsletter-box .form-group {
  position: relative;
  display: block;
}

.side-content-newsletter-box .form-group input[type=email] {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  color: #444444;
  font-size: 18px;
  font-family: var(--thm-body-font);
  font-weight: 400;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 25px;
  padding-right: 70px;
}

.side-content-newsletter-box .form-group input[type=email]:focus {
  color: var(--thm-white);
}

.side-content-newsletter-box .form-group input[type=email]::-webkit-input-placeholder {
  color: #ffffff;
}

.side-content-newsletter-box .form-group input[type=email]:-moz-placeholder {
  color: #ffffff;
}

.side-content-newsletter-box .form-group input[type=email]::-moz-placeholder {
  color: #ffffff;
}

.side-content-newsletter-box .form-group input[type=email]:-ms-input-placeholder {
  color: #ffffff;
}

.side-content-newsletter-box .form-group button {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-content-newsletter-box .form-group .thm-btn {
  color: var(--thm-white);
  font-size: 20px;
  border-radius: 5px;
  border: none;
}

.side-content-newsletter-box .form-group .thm-btn i {
  margin-left: 0px;
  font-size: 20px;
}

.side-content-newsletter-box .form-group .thm-btn:before {
  background: var(--thm-black);
}

.side-social-links {
  position: relative;
  display: block;
  padding-top: 40px;
}

.side-social-links ul {
  position: relative;
  display: flex;
  align-items: center;
}

.side-social-links ul li {
  position: relative;
  display: flex;
  align-items: center;
}

.side-social-links ul li + li {
  margin-left: 10px;
}

.side-social-links ul li a {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-white);
  font-size: 20px;
  font-weight: 900;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.side-social-links ul li a:hover {
  color: var(--thm-white);
}

.side-social-links ul li a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 0;
  border-radius: 50%;
  background-color: var(--thm-primary);
  transform: scale(0.5);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.side-social-links ul li:hover a::before {
  opacity: 1;
  transform: scale(1);
}

/*== Accordion Box Style 1 Css ======*/
.accordion-box-one {
  position: relative;
  display: block;
}

.accordion-box-one .accordion {
  position: relative;
  display: block;
}

.accordion-box-one .accordion .accord-btn {
  position: relative;
  display: block;
  cursor: pointer;
  padding-top: 28px;
  padding-bottom: 27px;
  border-bottom: 2px solid #333F4D;
  transition: all 500ms ease;
  z-index: 1;
}

.accordion-box-one .accordion .accord-btn::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--thm-primary);
  transition: all 600ms ease 100ms;
  z-index: 1;
}

.accordion-box-one .accordion .accord-btn.active::before {
  width: 100%;
}

.accordion-box-one .accordion .accord-btn::after {
  font-family: "icomoon" !important;
  position: absolute;
  content: "\e963";
  top: 50%;
  right: 0;
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-black);
  font-size: 20px;
  line-height: 20px;
  font-weight: 900;
  transform: translateY(-50%);
  transition: all 500ms ease 0s;
}

.accordion-box-one .accordion .accord-btn.active {
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.accordion-box-one .accordion .accord-btn.active:after {
  color: var(--thm-primary);
  font-size: 20px;
  content: "\e965";
}

.accordion-box-one .accordion .accord-btn h3 {
  color: var(--thm-black);
  font-size: 24px;
  line-height: 34px;
  font-family: var(--thm-heading-font);
  transition: all 500ms ease;
}

.accordion-box-one .accordion .accord-btn.active h3 {
  color: var(--thm-primary);
}

.accordion-box-one .accordion .accord-btn h3 span {
  color: transparent;
  -webkit-text-stroke: 1px var(--thm-black);
  font-size: 32px;
  font-weight: 700;
  margin-right: 8px;
}

.accordion-box-one .accordion .accord-content {
  position: relative;
  padding-top: 0px;
  padding-left: 0px;
  padding-bottom: 3px;
  padding-right: 0px;
  display: none;
  margin-top: 21px;
}

.accordion-box-one .accordion .accord-content.collapsed {
  display: block;
}

.accordion-box-one .accordion .accord-content p {
  margin: 0;
}

/*=============================
    25. Preloader
===============================*/
#preloader {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 999;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 75px;
  display: inline-block;
  vertical-align: middle;
}

.loader .loader-outter {
  position: absolute;
  border: 4px solid var(--thm-primary);
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.loader .loader-inner {
  position: absolute;
  border: 4px solid var(--thm-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.preloader-two .loader .loader-outter {
  position: absolute;
  border: 4px solid var(--thm-primary-color-two);
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader-two .loader .loader-inner {
  position: absolute;
  border: 4px solid var(--thm-primary-color-two);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader-three .loader .loader-outter {
  position: absolute;
  border: 4px solid var(--thm-primary-color-three);
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader-three .loader .loader-inner {
  position: absolute;
  border: 4px solid var(--thm-primary-color-three);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

/* scrollUp */
.scroll-top {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: var(--thm-body-font-size);
  border-radius: 6px;
  z-index: 99;
  color: var(--thm-white);
  text-align: center;
  cursor: pointer;
  background: var(--thm-primary);
  transition: 1s ease;
  border: none;
}

.scroll-top.open {
  bottom: 30px;
}

.scroll-top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll-top:hover {
  background: #004AAD;
}

.custom-container {
  max-width: 1320px;
}

.body-dark-bg {
  background-color: var(--thm-body-background);
}

/***
=============================================
   Rating Box
=============================================
***/
.rating-box {
  position: relative;
  display: block;
}

.rating-box a {
  position: relative;
  color: #fcaf3b;
  font-size: 15px;
  line-height: 15px;
}

/***
=============================================
    xs Sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  cursor: url(../img/icon/cross-out.png), pointer;
  z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.6;
  visibility: visible;
  transition-delay: 0s;
  right: 100%;
  background-color: #000000;
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 365px;
  background-color: #000000;
  overflow: hidden;
  overflow-y: auto;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 1;
  z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  left: 0;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: -150px;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all 600ms ease 800ms;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
  background-color: #000000;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  border: 2px solid var(--thm-white);
  border-radius: 50%;
  color: var(--thm-white);
  font-size: 16px;
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--thm-white);
  border-color: var(--thm-white);
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
  position: relative;
  display: inline-block;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: var(--thm-white);
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--thm-white);
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
  position: relative;
  display: block;
  padding-top: 2px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type=text],
.xs-sidebar-group .content-inner .form-inner .form-group input[type=email],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: var(--thm-body-font-color);
  transition: all 500ms ease;
  outline: none;
  border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: transparent;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn {
  position: relative;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn button {
  border: none;
}

.xs-sidebar-group .content-inner .form-inner .form-group.message-btn .btn-one {
  position: relative;
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: var(--thm-body-font-color);
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.sidebar-contact-info ul li a {
  color: var(--thm-body-font-color);
}

.sidebar-contact-info ul li a:hover {
  color: var(--thm-primary-color);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: var(--thm-white);
  border-radius: 50%;
  color: var(--thm-black);
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--thm-primary-color);
  border-radius: 50%;
  transition: 0.5s;
  transform: scale(0.5);
  opacity: 0;
  content: "";
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--thm-white);
}

/*=============================
    Project One CSS
===============================*/
.project-one {
  position: relative;
  display: block;
  padding: 70px 0 40px;
  z-index: 1;
}

.project-one__content-box {
  position: relative;
  display: block;
}

.project-one__content-box .sec-title {
  padding-bottom: 20px;
}

.project-one__content-box .text {
  position: relative;
  display: block;
}

.project-one__content-box .text p {
  margin: 0;
}

.project-one__single {
  position: relative;
  display: block;
  border-bottom: 3px solid var(--thm-black);
  border-radius: 5px;
  margin-bottom: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-one__single:hover {
  border-color: #004AAD;
  transform: translateY(-5px);
}

.project-one__single-img {
  position: relative;
  display: block;
}

.project-one__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.project-one__single-img .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  opacity: 0;
  border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  background: linear-gradient(0deg, #000000 40%, rgba(var(--thm-secondary-rgb), 0.9) 70%);
  transition: opacity 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.project-one__single:hover .project-one__single-img .inner::before {
  opacity: 0.7;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.project-one__single-img .inner img {
  width: 100%;
  transform: scale(1);
}

.project-one__single:hover .project-one__single-img .inner img {
  transform: scale(1.05) rotate(1deg);
}

.project-one__single-img .overlay-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(-50px);
  transform-origin: top;
  transition: all 500ms ease;
  z-index: 5;
}

.project-one__single:hover .project-one__single-img .overlay-icon {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 200ms;
}

.project-one__single .project-one__single-img .overlay-icon a {
  position: relative;
  display: inline-block;
  color: var(--thm-white);
  font-size: 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-one__single .project-one__single-img .overlay-icon a:hover {
  color: var(--thm-primary);
}

.project-one__single-content {
  position: relative;
  display: block;
  background-color: var(--thm-white);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 23px 64px 32px;
}

.project-one__single-content .title-box {
  position: relative;
  display: block;
}

.project-one__single-content .title-box h3 {
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 13px;
}

.project-one__single-content .title-box h3 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-one__single-content .title-box h3 a:hover {
  color: #004AAD;
}

.project-one__single-content .title-box p {
  margin: 0;
}

.project-one__single-content .btn-box {
  position: relative;
  display: block;
  padding-top: 23px;
  line-height: 0;
}

.project-one__single-content .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-black);
  font-size: 16px;
  line-height: 25px;
  font-family: var(--thm-heading-font);
  font-weight: 700;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-one__single-content .btn-box a:hover {
  color: #004AAD;
  letter-spacing: 1.15px;
}

.project-one__single-content .btn-box a span {
  position: relative;
  display: flex;
  align-items: center;
  color: #004AAD;
  font-size: 16px;
  font-weight: 900;
  margin-left: 6px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-one__single-content .btn-box a:hover span {
  color: var(--thm-primary);
}

/*=============================
    Project Two CSS
===============================*/
.project-two {
  position: relative;
  display: block;
  background-color: #f2f6f9;
  padding: 140px 0 110px;
  z-index: 1;
}

.project-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.project-two__single-img {
  position: relative;
  display: block;
}

.project-two__single-img .inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.project-two__single-img .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: linear-gradient(0deg, #000000 -1.22%, rgba(0, 0, 0, 0.7) 60.99%);
  transition: opacity 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.project-two__single:hover .project-two__single-img .inner::before {
  left: 30px;
  border-top-left-radius: 5px;
  opacity: 1;
}

.project-two__single-img .inner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 108px;
  right: 0;
  height: 50px;
  background-color: var(--thm-primary);
  border-top-left-radius: 5px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.1s ease-in-out 0.2s;
  z-index: -1;
}

.project-two__single:hover .project-two__single-img .inner::after {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.5s ease-in-out 0.5s;
}

.project-two__single .project-two__single-img .inner img {
  width: 100%;
  transform: scale(1) rotate(0deg) translateX(0px);
  transition: opacity 0.5s ease;
  transition: all 0.5s ease;
}

.project-two__single:hover .project-two__single-img .inner img {
  transform: scale(1) rotate(0deg) translateX(30px);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.project-two__single-overlay-content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: var(--thm-primary);
  padding: 23px 30px 20px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.1s ease-in-out 0.2s;
  z-index: 3;
}

.project-two__single:hover .project-two__single-overlay-content {
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.5s ease-in-out 0.5s;
}

.project-two__single-overlay-content-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-two__single-overlay-content-inner .title-box {
  position: relative;
  display: block;
}

.project-two__single-overlay-content-inner .title-box h3 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 5px;
}

.project-two__single-overlay-content-inner .title-box h3 a {
  color: var(--thm-white);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-two__single-overlay-content-inner .title-box h3 a:hover {
  color: #004AAD;
}

.project-two__single-overlay-content-inner .title-box p {
  color: var(--thm-white);
}

.project-two__single-overlay-content-inner .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.project-two__single-overlay-content-inner .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background-color: #004AAD;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-two__single-overlay-content-inner .btn-box a:hover {
  background-color: var(--thm-black);
}

.project-two__single-overlay-content-inner .btn-box a span {
  position: relative;
  display: inline-block;
  color: var(--thm-white);
  font-size: 24px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-two__single-overlay-content-inner .btn-box a:hover span {
  color: var(--thm-white);
}

/*=============================
    Project Three CSS
===============================*/
.project-three {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  padding: 130px 0 94px;
  z-index: 1;
}

.project-three__top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 60px;
}

.project-three__top .sec-title {
  max-width: 650px;
  width: 100%;
  padding-bottom: 0;
}

.project-three__top .sub-title h4 {
  color: var(--thm-primary);
}

.project-three__top .sec-title h2 {
  color: var(--thm-white);
}

.project-three__top .btn-box {
  position: relative;
  display: inline-block;
  line-height: 0;
  top: -15px;
}

.project-three__top .btn-box .thm-btn {
  color: var(--thm-white);
  font-family: var(--thm-heading-font);
  letter-spacing: 1.28px;
  text-transform: uppercase;
  border-radius: 5px;
}

.project-three__top .btn-box .thm-btn::after {
  border-radius: 5px;
  border: 1px solid var(--thm-primary);
  background-color: transparent;
}

.project-three__top .btn-box .thm-btn::before {
  background-color: var(--thm-primary);
}

.project-three__top .btn-box .thm-btn i {
  font-size: 16px;
  font-weight: 700;
  top: -1px;
}

.project-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-three__single-img {
  position: relative;
  display: block;
}

.project-three__single-img .inner {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.project-three__single-img .inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.9;
  background: linear-gradient(0deg, #000000 1.22%, rgba(255, 255, 255, 0) 80.99%);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

.project-three__single:hover .project-three__single-img .inner::before {
  transform: scaleY(1);
}

.project-three__single .project-three__single-img .inner img {
  width: 100%;
}

.project-three__single-overlay-content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: var(--thm-primary);
  padding: 30px 30px 30px;
  opacity: 0;
  transform: translateY(-30px);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 3;
}

.project-three__single:hover .project-three__single-overlay-content {
  opacity: 1;
  transform: translateY(0);
}

.project-three__single-overlay-content-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-three__single-overlay-content-inner .title-box {
  position: relative;
  display: block;
}

.project-three__single-overlay-content-inner .title-box h3 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
}

.project-three__single-overlay-content-inner .title-box h3 a {
  color: var(--thm-white);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-three__single-overlay-content-inner .title-box h3 a:hover {
  color: #004AAD;
}

.project-three__single-overlay-content-inner .title-box p {
  color: var(--thm-white);
}

.project-three__single-overlay-content-inner .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.project-three__single-overlay-content-inner .btn-box a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background-color: #004AAD;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-three__single-overlay-content-inner .btn-box a:hover {
  background-color: var(--thm-black);
}

.project-three__single-overlay-content-inner .btn-box a span {
  position: relative;
  display: inline-block;
  color: var(--thm-white);
  font-size: 24px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-three__single-overlay-content-inner .btn-box a:hover span {
  color: var(--thm-white);
}

/*=============================
    Video One Css
===============================*/
.video-one {
  position: relative;
  display: block;
  padding: 245px 0px 245px;
  z-index: 3;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  z-index: -1;
}

.video-one__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(16, 55, 182, 0.65) 0%, rgba(16, 55, 182, 0) 100%);
  z-index: 1;
}

.video-one .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 160px;
  height: 160px;
  background: var(--thm-primary);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 2;
}

.video-one .icon:hover {
  background-color: #004AAD;
}

.video-one .icon:after,
.video-one .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.video-one .icon:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.video-one .icon .video-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.video-one .icon .video-popup span::before {
  position: relative;
  color: var(--thm-white);
  font-size: 40px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-one .icon:hover .video-popup span::before {
  color: var(--thm-primary);
}

/*=============================
    Video two Css
===============================*/
.video-two {
  position: relative;
  display: block;
  padding: 312px 0px 312px;
  z-index: 3;
}

.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  z-index: -1;
}

.video-two__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #12121266;
  z-index: 1;
}

.video-two .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: var(--thm-primary);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 2;
}

.video-two .icon:hover {
  background-color: #004AAD;
}

.video-two .icon:after,
.video-two .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.video-two .icon:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.video-two .icon .video-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.video-two .icon .video-popup span::before {
  position: relative;
  color: var(--thm-white);
  font-size: 30px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.video-two .icon:hover .video-popup span::before {
  color: var(--thm-white);
}

/*=============================
    Cta One Css
===============================*/
.cta-one {
  background-color: #004AAD;
  padding: 70px 0px 70px;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
}

.cta-one__inner-box {
  position: relative;
  display: block;
  max-width: 610px;
  width: 100%;
}

.cta-one__inner-box .title-box {
  position: relative;
  display: block;
}

.cta-one__inner-box .title-box h2 {
  color: var(--thm-white);
  font-size: 48px;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.cta-one__inner-box .title-box p {
  color: var(--thm-white);
}

.cta-one__newsletter-box {
  position: relative;
  display: block;
  top: 10px;
}

.cta-one__newsletter-box .cta-one__form-group {
  position: relative;
  display: block;
  width: 590px;
  margin-left: 89px;
}

.cta-one__newsletter-box .cta-one__form-group input[type=email] {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  border: none;
  color: var(--thm-white);
  font-size: 17px;
  font-weight: 400;
  border-radius: 5px;
  background-color: #ffffff1a;
  padding-left: 40px;
  padding-right: 250px;
}

.cta-one__newsletter-box form input[type=text]::-webkit-input-placeholder {
  color: var(--thm-white);
}

.cta-one__newsletter-box form input[type=text]:-moz-placeholder {
  color: var(--thm-white);
}

.cta-one__newsletter-box form input[type=text]::-moz-placeholder {
  color: var(--thm-white);
}

.cta-one__newsletter-box form input[type=text]:-ms-input-placeholder {
  color: var(--thm-white);
}

.cta-one__newsletter-box form input[type=email]::-webkit-input-placeholder {
  color: var(--thm-white);
}

.cta-one__newsletter-box form input[type=email]:-moz-placeholder {
  color: var(--thm-white);
}

.cta-one__newsletter-box form input[type=email]::-moz-placeholder {
  color: var(--thm-white);
}

.cta-one__newsletter-box form input[type=email]:-ms-input-placeholder {
  color: var(--thm-white);
}

.cta-one__newsletter-box form textarea::-webkit-input-placeholder {
  color: var(--thm-white);
}

.cta-one__newsletter-box form textarea:-moz-placeholder {
  color: var(--thm-white);
}

.cta-one__newsletter-box form textarea::-moz-placeholder {
  color: var(--thm-white);
}

.cta-one__newsletter-box form textarea:-ms-input-placeholder {
  color: var(--thm-white);
}

.cta-one__newsletter-box .cta-one__form-group button {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  border: none;
  color: var(--thm-white);
  font-family: var(--thm-heading-font);
  letter-spacing: 1.28px;
  text-transform: uppercase;
  background: var(--thm-base);
  line-height: 60px;
  border-radius: 5px;
  transition: all 300ms ease 100ms;
}

.cta-one__newsletter-box .cta-one__form-group button i {
  color: #ffffff;
  margin-right: 12px;
}

.cta-one--style2 {
  background-color: var(--thm-primary);
  padding: 73px 0px 65px;
}

.cta-one__inner--style2 {
  justify-content: space-between;
}

.cta-one__inner-box--style2 {
  max-width: 750px;
}

.cta-one__inner-box--style2 .title-box h2 {
  line-height: 1.3em;
  margin-bottom: 0;
}

.cta-one__btn--style2 .thm-btn {
  color: var(--thm-black);
}

.cta-one__btn--style2 .thm-btn:hover {
  color: var(--thm-white);
}

.cta-one__btn--style2 .thm-btn::after {
  background-color: var(--thm-white);
}

/*=============================
    Cta Two Css
===============================*/
.cta-two {
  position: relative;
  display: block;
  background-color: var(--thm-white);
  z-index: 11;
}

.cta-two__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 82px;
  padding-left: 275px;
  padding-bottom: 80px;
}

.cta-two__img {
  position: absolute;
  top: -50px;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.cta-two__img:before {
  content: "";
  position: absolute;
  top: 50px;
  left: -130px;
  bottom: 0;
  width: 392px;
  background-color: #004AAD;
  clip-path: polygon(40% 0, 100% 0, 60% 100%, 0% 100%);
  z-index: -1;
}

.cta-two__inner-box {
  position: relative;
  display: block;
}

.cta-two__inner-box .title-box {
  position: relative;
  display: block;
  max-width: 370px;
  width: 100%;
}

.cta-two__inner-box .title-box h2 {
  font-size: 48px;
  line-height: 1.2em;
  margin-bottom: 20px;
}

.cta-two__inner-box .title-box p {
  margin: 0;
}

.cta-two__newsletter-box {
  position: relative;
  display: block;
  max-width: 510px;
  width: 100%;
}

.cta-two__form-group {
  position: relative;
  display: flex;
  align-items: center;
}

.cta-two__form-group input[type=email] {
  position: relative;
  display: block;
  width: 300px;
  height: 65px;
  border: 1px solid #E3E3E3;
  color: var(--thm-body-font-color);
  font-size: 16px;
  font-family: var(--thm-body-font);
  font-weight: 400;
  border-radius: 5px;
  background-color: transparent;
  padding-left: 20px;
  padding-right: 0px;
}

.cta-two__form-group form input[type=text]::-webkit-input-placeholder {
  color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type=text]:-moz-placeholder {
  color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type=text]::-moz-placeholder {
  color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type=text]:-ms-input-placeholder {
  color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type=email]::-webkit-input-placeholder {
  color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type=email]:-moz-placeholder {
  color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type=email]::-moz-placeholder {
  color: var(--thm-body-font-color);
}

.cta-two__form-group form input[type=email]:-ms-input-placeholder {
  color: var(--thm-body-font-color);
}

.cta-two__form-group button {
  position: relative;
  display: block;
  border: none;
  color: var(--thm-white);
  line-height: 45px;
  font-family: var(--thm-heading-font);
  letter-spacing: 1.28px;
  text-transform: uppercase;
  border-radius: 5px;
  background: var(--thm-base);
  margin-left: 20px;
  transition: all 300ms ease 100ms;
}

.cta-two__form-group button.thm-btn:before {
  background: var(--thm-primary);
}

.cta-two__form-group button.thm-btn::after {
  background: #004AAD;
}

/*=============================
    Cta Three Css
===============================*/
.cta-three {
  position: relative;
  display: block;
  background-color: transparent;
  overflow: hidden;
  z-index: 5;
}

.cta-three::before {
  content: "";
  position: absolute;
  top: 137px;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--thm-black);
}

.cta-three__bg {
  position: absolute;
  top: 0;
  left: 0px;
  right: 0px;
  bottom: 0;
  border-radius: 5px;
  max-width: 1290px;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.cta-three__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  right: 0px;
  bottom: 0;
  border-radius: 5px;
  background-color: #004AAD;
  mix-blend-mode: hard-light;
}

.cta-three__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 84px 81px 64px;
  z-index: 8;
}

.cta-three__content .title {
  position: relative;
  display: block;
  max-width: 470px;
}

.cta-three__content .title h2 {
  color: var(--thm-white);
  font-size: 48px;
  line-height: 1.2em;
}

.cta-three__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.cta-three__content .btn-box .thm-btn {
  line-height: 40px;
}

/*==========================================
    Scrolling Text One Css
==========================================*/
.scrolling-text-one {
  position: relative;
  display: block;
}

.scrolling-text-one .inner {
  position: relative;
  display: block;
}

.scrolling-text-one .inner ul {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: fit-content;
}

.scrolling-text-one .inner ul li {
  position: relative;
  display: inline-flex;
  align-items: center;
  float: left;
  color: var(--thm-black);
  font-size: 48px;
  line-height: 1.2em;
  font-family: var(--thm-heading-font);
  font-weight: 700;
  text-transform: capitalize;
  margin-left: 40px;
}

.scrolling-text-one .inner ul li .stroke {
  color: transparent;
  -webkit-text-stroke: 1px var(--thm-black);
  margin-right: 40px;
}

.scrolling-text-one .inner ul li .icon {
  position: relative;
  display: block;
  line-height: 0;
  margin-left: 40px;
}

.scrolling-text-one .inner ul li .icon span {
  position: relative;
  display: inline-block;
  color: #004AAD;
  font-size: 64px;
}

/*==========================================
    Scrolling Text Two Css
==========================================*/
.scrolling-text-two {
  padding-top: 130px;
}

.scrolling-text-two .inner ul + ul {
  margin-top: 21px;
}

/*==========================================
    Scrolling Text Three Css
==========================================*/
.scrolling-text-three {
  padding-top: 60px;
}

.scrolling-text-three .inner ul li {
  color: var(--thm-white);
}

.scrolling-text-three .inner ul li .stroke {
  -webkit-text-stroke: 1px var(--thm-white);
}

/*=============================
    Who we Are Css
===============================*/
.who-we-are-one {
  position: relative;
  display: block;
  background-color: #f2f6f9;
  padding: 120px 0px 83px;
  z-index: 1;
}

.who-we-are-one__content-box {
  position: relative;
  display: block;
}

.who-we-are-one .sec-title {
  padding-bottom: 20px;
}

.who-we-are-one__content-box .text {
  position: relative;
  display: block;
}

.who-we-are-one__content-box .text p {
  margin: 0;
}

.who-we-are-one__img-box {
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  margin-left: 33px;
}

.who-we-are-one__img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: var(--thm-black);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.who-we-are-one__img-box:hover::before {
  opacity: 0.7;
  transition: all 500ms linear;
}

.who-we-are-one__img-box img {
  width: 100%;
}

/*=============================
    FAQ One Css
===============================*/
.faq-one {
  position: relative;
  display: block;
  padding: 97px 0px 0px;
  z-index: 1;
}

.faq-one__bg {
  position: absolute;
  left: 0;
  bottom: -117px;
  opacity: 0.07;
}

.faq-one__title {
  position: relative;
  display: block;
  padding-top: 58px;
}

.faq-one__title .sec-title {
  padding-bottom: 31px;
}

.faq-one__title .text {
  position: relative;
  display: block;
}

.faq-one__title .text p {
  margin: 0;
}

.faq-one__content {
  position: relative;
  display: block;
}

/*==========================================
    Project Details Page Css
==========================================*/
.project-details-page {
  position: relative;
  display: block;
  background-color: var(--thm-white);
  padding: 70px 0px 70px;
  z-index: 1;
}

.project-details-page__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-details-page__img img {
  width: 100%;
}

.project-details__info-box {
  position: relative;
  display: block;
}

.project-details__info-box-inner {
  position: relative;
  display: block;
  border: 1px solid #E3E3E3;
  padding: 32px 40px 29px;
}

.project-details__info-box-inner .title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 23px;
}

.project-details__info-box-inner .title h3 {
  font-size: 24px;
  line-height: 30px;
}

.project-details__info-box-inner .title .line {
  position: relative;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #004AAD;
  top: 1px;
}

.project-details__info-box-inner .text {
  position: relative;
  display: block;
}

.project-details__info-box-inner .text p {
  margin: 0;
}

.project-details__info-box-inner .list-info-box {
  position: relative;
  display: block;
  padding-top: 31px;
}

.project-details__info-box-inner .list-info-box > ul {
  position: relative;
  display: block;
}

.project-details__info-box-inner .list-info-box > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E3E3E3;
  padding-bottom: 20px;
  margin-bottom: 21px;
}

.project-details__info-box-inner .list-info-box > ul > li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.project-details__info-box-inner .list-info-box > ul > li h4 {
  font-size: 18px;
  line-height: 30px;
}

.project-details__info-box-inner .list-info-box > ul > li p {
  margin-left: 25px;
}

.project-details__info-box-inner .list-info-box > ul > li .reting-box {
  position: relative;
  display: block;
  margin-left: 25px;
}

.project-details__info-box-inner .list-info-box > ul > li .reting-box > ul {
  position: relative;
  display: flex;
  align-items: center;
}

.project-details__info-box-inner .list-info-box > ul > li .reting-box > ul > li {
  position: relative;
  display: block;
}

.project-details__info-box-inner .list-info-box > ul > li .reting-box > ul > li + li {
  margin-left: 5px;
}

.project-details__info-box-inner .list-info-box > ul > li .reting-box > ul > li .icon {
  position: relative;
  display: block;
  line-height: 0;
}

.project-details__info-box-inner .list-info-box > ul > li .reting-box > ul > li .icon span {
  position: relative;
  display: inline-block;
  color: #f68b21;
  font-size: 14px;
}
.project-details__info-box-inner .list-info-box > ul > li .reting-box > ul > li .icon span.hid {
  color: #ccc !important;
}

.project-details__info-box .social-links {
  position: relative;
  display: block;
  padding-top: 40px;
}

.project-details__info-box .social-links ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-details__info-box .social-links ul li {
  position: relative;
  display: block;
}

.project-details__info-box .social-links ul li + li {
  margin-left: 10px;
}

.project-details__info-box .social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3c59ff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.project-details__info-box .social-links ul li a.color2 {
  background-color: #2d3fad;
}

.project-details__info-box .social-links ul li a.color3 {
  background-color: #9727ef;
}

.project-details__info-box .social-links ul li a.color3 {
  background-color: #17c1ff;
}

.project-details__info-box .social-links ul li a:hover {
  color: var(--thm-white);
}

.project-details__info-box .social-links ul li a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 0;
  background-color: var(--thm-primary);
  transform: scale(0.5);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.project-details__info-box .social-links ul li:hover a::before {
  opacity: 1;
  transform: scale(1);
  border-radius: 50%;
}

.project-details__content {
  position: relative;
  display: block;
  padding-top: 33px;
}

.project-details__content .title {
  position: relative;
  display: block;
}

.project-details__content .title h3 {
  font-size: 32px;
  line-height: 1.1em;
}

.project-details__content .text {
  position: relative;
  display: block;
  padding-top: 22px;
}

.project-details__content .text p {
  margin: 0;
}

.project-details__content .text p + p {
  margin-top: 21px;
}

.project-details-inner {
  position: relative;
  display: block;
  padding-top: 60px;
}

.project-details-inner-list-item {
  position: relative;
  display: block;
}

.project-details-inner__list-item ul {
  position: relative;
  display: block;
}

.project-details-inner__list-item ul li {
  position: relative;
  display: flex;
  align-items: center;
}

.project-details-inner__list-item ul li + li {
  margin-top: 10px;
}

.project-details-inner__list-item ul li .circle {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #004AAD;
  background-color: transparent;
  margin-right: 20px;
}

.project-details-inner__list-item ul li p {
  margin: 0;
}

.project-details-inner__img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.project-details-inner__img-box img {
  width: 100%;
}

.project-details-inner__img-box-video {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.project-details-inner__img-box-video .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: var(--thm-white);
  border-radius: 50%;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 2;
}

.project-details-inner__img-box-video .icon:hover {
  background-color: #004AAD;
}

.project-details-inner__img-box-video .icon:after,
.project-details-inner__img-box-video .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.project-details-inner__img-box-video .icon:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.project-details-inner__img-box-video .icon .video-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.project-details-inner__img-box-video .icon .video-popup span::before {
  position: relative;
  color: #004AAD;
  font-size: 15px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.project-details-inner__img-box-video .icon:hover .video-popup span::before {
  color: var(--thm-primary);
}

/*=============================
    Who we Are About Css
===============================*/
.who-we-are-one--about {
  position: relative;
  display: block;
  background: var(--thm-white);
  padding: 0px 0px 60px;
}

/*=============================
    Fact Counter Two About Css
===============================*/
.fact-counter-two--about {
  position: relative;
  display: block;
  background: var(--thm-white);
}

/*=============================
    Scrolling Text One About Css
===============================*/
.scrolling-text-one.about {
  position: relative;
  display: block;
  background: var(--thm-white);
  padding-top: 20px;
}

/*=============================
    Testimonials Two About Css
===============================*/
.testimonials-two--about {
  position: relative;
  display: block;
}

.testimonials-two--about .scroll-pagination .swiper-pagination-progressbar-fill {
  background: #004AAD !important;
}

/*=============================
    Service Two Service Css
===============================*/
.service-two--service {
  position: relative;
  display: block;
  padding: 70px 0 50px;
}

/*=============================
    FAQ One Service Css
===============================*/
.faq-one--service {
  position: relative;
  display: block;
  padding: 0px 0px 140px;
}

/*=============================
    Project Three Project Css
===============================*/
.project-three--project {
  position: relative;
  display: block;
  padding: 140px 0px 140px;
  background: var(--thm-white);
}

.project-three--project .project-three__top .sub-title h4 {
  color: #004AAD;
}

.project-three--project .project-three__top .sec-title h2 {
  color: var(--thm-black);
}

.project-three--project .project-three__top .btn-box .thm-btn {
  color: #004AAD;
}

.project-three--project .project-three__top .btn-box .thm-btn:hover {
  color: var(--thm-white);
}

.project-three--project .project-three__top .btn-box .thm-btn::before {
  background-color: var(--thm-primary);
}

.project-three--project .project-three__top .btn-box .thm-btn::after {
  border: 1px solid #004AAD;
}

.project-three--project .scrolling-text-three .inner ul li .stroke {
  -webkit-text-stroke: 1px var(--thm-black);
}

.project-three--project .scrolling-text-three .inner ul li {
  color: var(--thm-black);
}

.project-three--project .scrolling-text-three {
  padding-top: 110px;
}

.project-three--project .project-three__single-overlay-content {
  background-color: var(--thm-body-background);
}

.project-three--project .project-three__single-overlay-content-inner .title-box h3 a {
  color: var(--thm-black);
}

.project-three--project .project-three__single-overlay-content-inner .title-box p {
  color: var(--thm-body-font-color);
}

/*=============================
    Faq One Faq Css
===============================*/
.faq-one--faq {
  position: relative;
  display: block;
  padding: 140px 0px 140px;
}

.faq-one--faq .accordion-box-one .accordion .accord-btn h3 {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  font-family: var(--thm-heading-font);
  transition: all 500ms ease;
}

.faq-one--faq .accordion-box-one .accordion .accord-btn {
  padding-top: 17px;
  padding-bottom: 16px;
  border-top: 1px solid #e3e3e3;
  border-bottom: none;
}

.faq-one--faq .accordion-box-one .accordion .accord-btn.bdrb {
  border-bottom: 1px solid #e3e3e3;
}

.faq-one--faq .accordion-box-one .accordion .accord-btn::before {
  display: none;
}

.faq-one--faq .accordion-box-one .accordion .accord-content {
  padding-bottom: 30px;
  margin-top: 1px;
  padding-right: 45px;
}

.faq-one--faq .accordion-box-one .accordion .accord-btn::after {
  content: "\e94d";
  color: #004AAD;
  font-size: 15px;
  line-height: 15px;
  font-weight: 900;
}

.faq-one--faq .accordion-box-one .accordion .accord-btn.active:after {
  color: #004AAD;
  content: "\e94f";
}

/*# sourceMappingURL=style.css.map */
