/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. How It Work Css
09. Our Features css
10. CTA Box css
11. Our Pricing css
12. Support Team css
13. Our FAQs css
14. Our Testiminial css
15. Our Blog Css
16. Footer css
17. About us Page css
18. Services Page css
19. Service Single css.dmrs
20. Blog Archive css
21. Blog Single css
22. Team Page css
23. Team Single css
24. Page Pricing css
25.	FAQs Page css
26. Contact us Page css
27. 404 Page css
28. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #017c80;
  --secondary-color: #EBEFF0;
  --text-color: #6F6F6F;
  --accent-color: #009da1;
  --white-color: #FFFFFF;
  --divider-color: #ECF2F0;
  --dark-divider-color: #FFFFFF33;
  --error-color: rgb(230, 87, 87);
  --default-font: "Roboto", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  font-family: var(--default-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background-color: var(--white-color);
}

p {
  line-height: 1.7em;
  margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  line-height: 1.2em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.dmrs-web-thm-100426-image-anime {
  position: relative;
  overflow: hidden;
}

.dmrs-web-thm-100426-image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.dmrs-web-thm-100426-image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.dmrs-web-thm-100426-reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.dmrs-web-thm-100426-reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row>* {
  padding-right: 15px;
  padding-left: 15px;
}

.row.dmrs-web-thm-100426-no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.dmrs-web-thm-100426-no-gutters>* {
  padding-right: 0px;
  padding-left: 0px;
}

.dmrs-web-thm-100426-btn-default {
  position: relative;
  display: inline-flex;
  line-height: 1.3em;
  font-weight: 600;
  background: var(--accent-color);
  color: var(--white-color);
  text-transform: capitalize;
  border-radius: 12px 12px 12px 0;
  padding: 16px 30px;
  border: none;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.dmrs-web-thm-100426-btn-default:hover {
  background-color: transparent;
}

.dmrs-web-thm-100426-btn-default::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  background: var(--primary-color);
  opacity: 0;
  z-index: -1;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-btn-default:hover::before {
  height: 350%;
  opacity: 1;
}

.dmrs-web-thm-100426-btn-default.dmrs-web-thm-100426-btn-highlighted {
  background-color: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  padding: 15px 30px;
}

#magic-cursor {
  position: absolute;
  width: 10px !important;
  height: 10px !important;
  pointer-events: none;
  z-index: 1000000;
}

#ball {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 8px !important;
  height: 8px !important;
  background: var(--accent-color);
  margin: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 1 !important;
}

.dmrs-web-thm-100426-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dmrs-web-thm-100426-loading-container,
.dmrs-web-thm-100426-loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.dmrs-web-thm-100426-loading-container {
  margin: 40px auto;
}

.dmrs-web-thm-100426-loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.dmrs-web-thm-100426-loading-container:hover .dmrs-web-thm-100426-loading,
.dmrs-web-thm-100426-loading-container .dmrs-web-thm-100426-loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.dmrs-web-thm-100426-section-row {
  text-align: center;
  margin-bottom: 80px;
}

.dmrs-web-thm-100426-section-row .dmrs-web-thm-100426-section-title {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
  margin-bottom: 0;
}

.dmrs-web-thm-100426-section-btn {
  text-align: end;
}

.dmrs-web-thm-100426-section-title {
  margin-bottom: 60px;
}

.dmrs-web-thm-100426-section-title h3 {
  display: inline-block;
  position: relative;
  font-family: var(--default-font);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8em;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-color);
  padding-left: 20px;
  margin-bottom: 10px;
}

.dmrs-web-thm-100426-section-title h3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.dmrs-web-thm-100426-section-title h1 {
  font-size: 56px;
  letter-spacing: -0.005em;
  margin-bottom: 0;
  cursor: none;
}

.dmrs-web-thm-100426-section-title h2 {
  font-size: 40px;
  letter-spacing: -0.005em;
  margin-bottom: 0;
  cursor: none;
}

.dmrs-web-thm-100426-section-title h1 span,
.dmrs-web-thm-100426-section-title h2 span {
  font-weight: 700;
}

.dmrs-web-thm-100426-section-title p {
  margin-top: 30px;
  margin-bottom: 0;
}

.dmrs-web-thm-100426-help-block.dmrs-web-thm-100426-with-errors ul {
  margin: 0;
  text-align: left;
}

.dmrs-web-thm-100426-help-block.dmrs-web-thm-100426-with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.dmrs-web-thm-100426-topbar {
  background-color: var(--secondary-color);
  padding: 10px 0;
}

.dmrs-web-thm-100426-topbar-info-content {
  text-align: left;
}

.dmrs-web-thm-100426-topbar-info-content p {
  margin: 0;
}

.dmrs-web-thm-100426-topbar-info-content p a {
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-topbar-info-content p a:hover {
  color: var(--accent-color);
}

/* .dmrs-web-thm-100426-topbar-contact-info{
	text-align: right;
}

.dmrs-web-thm-100426-topbar-contact-info ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.dmrs-web-thm-100426-topbar-contact-info ul li{
	position: relative;
	display: inline-block;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-topbar-contact-info ul li:hover{
	color: var(--accent-color);
}

.dmrs-web-thm-100426-topbar-contact-info ul li::after{
	content: '/';
    font-weight: 900;
    font-size: 14px;
    padding: 0 15px;
}

.dmrs-web-thm-100426-topbar-contact-info ul li:last-child::after{
	display: none;
}

.dmrs-web-thm-100426-topbar-contact-info ul li a{
	color: inherit;
} */

.dmrs-web-thm-100426-topbar-social-links {
  text-align: right;
}

.dmrs-web-thm-100426-topbar-social-links ul {
  list-style: none;
  line-height: 1em;
  padding: 0;
  margin: 0;
}

.dmrs-web-thm-100426-topbar-social-links ul li {
  display: inline-block;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-topbar-social-links ul li:last-child {
  margin-right: 0;
}

.dmrs-web-thm-100426-topbar-social-links ul li a {
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-topbar-social-links ul li a:hover {
  color: var(--accent-color);
}

.dmrs-web-thm-100426-topbar-social-links ul li a i {
  font-size: 20px;
  color: inherit
}

header.dmrs-web-thm-100426-main-header {
  background-color: var(--white-color);
  border-bottom: 1px solid var(--divider-color);
  position: relative;
  z-index: 100;
}

header.dmrs-web-thm-100426-main-header .dmrs-web-thm-100426-header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}

header.dmrs-web-thm-100426-main-header .dmrs-web-thm-100426-header-sticky.dmrs-web-thm-100426-hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.dmrs-web-thm-100426-main-header .dmrs-web-thm-100426-header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--secondary-color);
  border-bottom: 1px solid var(--dark-divider-color);
  backdrop-filter: blur(30px);
}

.navbar {
  padding: 20px 0;
  align-items: center;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.dmrs-web-thm-100426-main-menu .dmrs-web-thm-100426-nav-menu-wrapper {
  flex: 1;
  text-align: right;
}

.dmrs-web-thm-100426-main-menu .dmrs-web-thm-100426-nav-menu-wrapper>ul {
  align-items: center;
  display: inline-flex;
}

.dmrs-web-thm-100426-main-menu ul li {
  margin: 0 2px;
  position: relative;
}

.dmrs-web-thm-100426-main-menu ul li a {
  font-size: 15px;
  font-weight: 500;
  padding: 14px 15px !important;
  color: var(--primary-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-main-menu ul li.dmrs-web-thm-100426-submenu>a:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.dmrs-web-thm-100426-main-menu ul li a:hover,
.dmrs-web-thm-100426-main-menu ul li a:focus {
  color: var(--accent-color);
}

.dmrs-web-thm-100426-main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 220px;
  border-radius: 20px 20px 20px 0;
  position: absolute;
  left: 0;
  top: 100%;
  overflow: hidden;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.dmrs-web-thm-100426-main-menu ul li.dmrs-web-thm-100426-submenu:first-child ul {
  width: 220px;
}

.dmrs-web-thm-100426-main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.dmrs-web-thm-100426-main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.dmrs-web-thm-100426-main-menu ul ul li a {
  color: var(--white-color);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.dmrs-web-thm-100426-main-menu ul ul li a:hover,
.dmrs-web-thm-100426-main-menu ul ul li a:focus {
  color: var(--accent-color);
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}

.dmrs-web-thm-100426-header-btn {
  margin-left: 50px;
}

.dmrs-web-thm-100426-responsive-menu,
.dmrs-web-thm-100426-navbar-toggle {
  display: none;
}

.dmrs-web-thm-100426-responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: var(--primary-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 8px 8px 8px 0;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.dmrs-web-thm-100426-navbar-toggle a.slicknav_btn.dmrs-web-thm-100426-slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.dmrs-web-thm-100426-navbar-toggle a.slicknav_btn.dmrs-web-thm-100426-slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.dmrs-web-thm-100426-navbar-toggle a.slicknav_btn.dmrs-web-thm-100426-slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--primary-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.slicknav_menu ul ul li a {
  padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-color);
  position: absolute;
  right: 15px;
  top: 15px;
  transition: all 0.3s ease-out;
}

.dmrs-web-thm-100426-slicknav_open>a .slicknav_arrow:after {
  transform: rotate(-180deg);
  color: var(--accent-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.dmrs-web-thm-100426-hero {
  background: linear-gradient(270deg,
      rgba(0, 79, 76, 0) 10%,
      rgba(0, 79, 76, 0.00463538) 50%,
      rgb(0 0 0 / 85%) 90%), url('/images/index-video-gorsel.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 140px 0;
}

.dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video {
  position: relative;
  overflow: hidden;
}

.dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(270deg,
      rgba(0, 79, 76, 0) 10%,
      rgba(0, 79, 76, 0.00463538) 50%,
      rgb(0 0 0 / 85%) 90%);
  height: 100%;
  z-index: 1;
}

.dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video .dmrs-web-thm-100426-hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video .dmrs-web-thm-100426-hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video.dmrs-web-thm-100426-hero-slider-layout {
  background: none;
  padding: 0;
}

.dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video.dmrs-web-thm-100426-hero-slider-layout .dmrs-web-thm-100426-hero-slide {
  position: relative;
  padding: 140px 0;
}

.dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video.dmrs-web-thm-100426-hero-slider-layout .dmrs-web-thm-100426-hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(270deg, rgba(0, 79, 76, 0) 0.16%, rgba(0, 79, 76, 0.00463538) 0.16%, rgba(0, 79, 76, 0.9) 82.49%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video.dmrs-web-thm-100426-hero-slider-layout .dmrs-web-thm-100426-hero-slide .dmrs-web-thm-100426-hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video.dmrs-web-thm-100426-hero-slider-layout .dmrs-web-thm-100426-hero-slide .dmrs-web-thm-100426-hero-slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video.dmrs-web-thm-100426-hero-slider-layout .dmrs-web-thm-100426-hero-pagination {
  position: absolute;
  bottom: 40px;
  text-align: center;
  z-index: 2;
}

.dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video.dmrs-web-thm-100426-hero-slider-layout .dmrs-web-thm-100426-hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video.dmrs-web-thm-100426-hero-slider-layout .dmrs-web-thm-100426-hero-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.dmrs-web-thm-100426-hero-content {
  position: relative;
  z-index: 1;
}

.dmrs-web-thm-100426-hero-content .dmrs-web-thm-100426-section-title p,
.dmrs-web-thm-100426-hero-content .dmrs-web-thm-100426-section-title h1 {
  color: var(--white-color);
}

.dmrs-web-thm-100426-hero-btn {
  margin-bottom: 60px;
}

.dmrs-web-thm-100426-hero-btn .dmrs-web-thm-100426-btn-default.dmrs-web-thm-100426-btn-highlighted {
  margin-left: 40px;
}

.dmrs-web-thm-100426-hero-content-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.dmrs-web-thm-100426-company-support-item {
  width: calc(50% - 15px);
  display: flex;
  align-items: center;
}

.dmrs-web-thm-100426-company-support-item .dmrs-web-thm-100426-icon-box {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-company-support-item:hover .dmrs-web-thm-100426-icon-box {
  background-color: var(--primary-color);
}

.dmrs-web-thm-100426-company-support-item .dmrs-web-thm-100426-icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-company-support-item:hover .dmrs-web-thm-100426-icon-box::before {
  transform: scale(1);
}

.dmrs-web-thm-100426-company-support-item .dmrs-web-thm-100426-icon-box img {
  position: relative;
  max-width: 30px;
  z-index: 1;
}

.dmrs-web-thm-100426-company-support-content {
  text-align: left;
  width: calc(100% - 65px);
}

.dmrs-web-thm-100426-company-support-content p {
  color: var(--white-color);
  margin: 0;
}

.dmrs-web-thm-100426-company-support-content p span {
  font-weight: 600;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.dmrs-web-thm-100426-about-us {
  padding: 100px 0;
}

.dmrs-web-thm-100426-about-image {
  position: relative;
  overflow: hidden;
}

.dmrs-web-thm-100426-about-img figure {
  width: 100%;
  display: block;
}

.dmrs-web-thm-100426-about-img {
  padding-right: 80px;
}

.dmrs-web-thm-100426-about-img figure {
  position: relative;
  border-radius: 999px 999px 0px 0px;
  padding: 0 0 12px 12px;
}

.dmrs-web-thm-100426-about-img figure::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 12px;
  border: 1px solid var(--divider-color);
  border-radius: 999px 999px 0px 0px;
  width: 100%;
  height: 100%;
}

.dmrs-web-thm-100426-about-img img {
  width: 100%;
  aspect-ratio: 1 / 1.17;
  object-fit: cover;
  border-radius: 999px 999px 0px 0px;
}

.dmrs-web-thm-100426-company-processing-box {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(100%);
  background-color: var(--white-color);
  box-shadow: 0px 0px 30px 0px #0000000D;
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 8px;
  animation: processingmoveobject 3s infinite linear alternate;
}

@keyframes processingmoveobject {
  50% {
    right: 50px;
  }
}

.dmrs-web-thm-100426-company-processing-box .dmrs-web-thm-100426-icon-box {
  background-color: var(--accent-color);
  border-radius: 8px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.dmrs-web-thm-100426-company-processing-box .dmrs-web-thm-100426-icon-box img {
  max-width: 24px;
}

.dmrs-web-thm-100426-company-processing-content {
  width: calc(100% - 45px);
}

.dmrs-web-thm-100426-company-processing-content p {
  font-weight: 600;
  color: var(--primary-color);
  text-transform: capitalize;
  margin: 0;
}

.dmrs-web-thm-100426-about-company-testimonial {
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  transform: translateY(-100%);
}

.dmrs-web-thm-100426-about-testimonial-slider {
  background-color: var(--white-color);
  box-shadow: 0px 0px 30px 0px #0000000D;
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  padding: 15px 20px;
  width: 100%;
  max-width: 270px;
  overflow: hidden;
}

.dmrs-web-thm-100426-about-testimonial-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  background: var(--accent-color) url('../images/about-testimonial-quote.svg') no-repeat;
  background-position: center center;
  background-size: 20px auto;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.dmrs-web-thm-100426-about-testimonial-slider .swiper-wrapper {
  cursor: none;
}

.dmrs-web-thm-100426-about-testimonial-item p {
  margin: 0;
}

.dmrs-web-thm-100426-about-testimonial-item p span {
  font-weight: 600;
}

.dmrs-web-thm-100426-about-content {
  margin-left: 30px;
}

.dmrs-web-thm-100426-about-list-btn {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  height: 100%;
}

.dmrs-web-thm-100426-about-content-list {
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-about-content-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dmrs-web-thm-100426-about-content-list ul li {
  position: relative;
  font-weight: 500;
  color: var(--primary-color);
  padding-left: 35px;
  margin-bottom: 25px;
}

.dmrs-web-thm-100426-about-content-list ul li:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-about-content-list ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../images/icon-about-list.svg") no-repeat;
  background-position: left center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.dmrs-web-thm-100426-about-content-counter {
  background-color: var(--secondary-color);
  border-radius: 30px 30px 30px 0;
  padding: 40px;
}

.dmrs-web-thm-100426-about-counter-item {
  border-bottom: 1px solid var(--white-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-about-counter-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.dmrs-web-thm-100426-about-counter {
  margin-bottom: 10px;
}

.dmrs-web-thm-100426-about-counter h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--accent-color);
}

.dmrs-web-thm-100426-about-counter-content p {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0;
}

/************************************/
/***      06. Our Services css	  ***/
/************************************/

.dmrs-web-thm-100426-our-services {
  background: url('../images/section-bg-shape-2.svg'), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: bottom -1px center;
  background-size: 100% auto;
  padding: 100px 0 20px;
}

.dmrs-web-thm-100426-service-item {
  position: relative;
  background-color: var(--white-color);
  box-shadow: 0px 0px 30px 0px #0000000A;
  border: 1px solid var(--divider-color);
  border-radius: 30px 30px 30px 0;
  overflow: hidden;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

.dmrs-web-thm-100426-service-item:before {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: var(--primary-color);
  border-radius: 500px 500px 0 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-service-item:hover:before {
  top: 0;
  border-radius: 0;
  opacity: 1;
}

.dmrs-web-thm-100426-service-item .dmrs-web-thm-100426-icon-box {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.dmrs-web-thm-100426-service-item:hover .dmrs-web-thm-100426-icon-box {
  background-color: var(--white-color);
}

.dmrs-web-thm-100426-service-item .dmrs-web-thm-100426-icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-service-item:hover .dmrs-web-thm-100426-icon-box::before {
  transform: scale(1);
}

.dmrs-web-thm-100426-service-item .dmrs-web-thm-100426-icon-box img {
  position: relative;
  max-width: 36px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-service-item:hover .dmrs-web-thm-100426-icon-box img {
  filter: brightness(1) invert(1);
}

.dmrs-web-thm-100426-service-content {
  position: relative;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-service-item:hover .dmrs-web-thm-100426-service-content {
  border-color: var(--dark-divider-color);
}

.dmrs-web-thm-100426-service-content h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-service-item:hover .dmrs-web-thm-100426-service-content h3 {
  color: var(--white-color);
}

.dmrs-web-thm-100426-service-content p {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-service-item:hover .dmrs-web-thm-100426-service-content p {
  color: var(--white-color);
}

.dmrs-web-thm-100426-service-btn {
  position: relative;
  z-index: 1;
}

.dmrs-web-thm-100426-redmore-btn {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 30px;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-redmore-btn:hover {
  color: var(--white-color);
}

.dmrs-web-thm-100426-redmore-btn::before {
  content: '\f061';
  font-family: 'FontAwesome';
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 18px;
  color: var(--accent-color);
  line-height: normal;
  transform: translateY(-50%) rotate(-45deg);
  width: 18px;
  height: 18px;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-redmore-btn:hover::before {
  transform: translateY(-50%) rotate(0deg);
  color: var(--white-color);
}

/************************************/
/***     07. Why Choose Us css	  ***/
/************************************/

.dmrs-web-thm-100426-why-choose-us {
  padding: 50px 0 100px;
}

.dmrs-web-thm-100426-why-choose-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  margin-bottom: 60px;
}

.dmrs-web-thm-100426-why-choose-item {
  width: calc(50% - 15px);
  border-bottom: 1px solid var(--divider-color);
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}

.dmrs-web-thm-100426-why-choose-item:nth-last-child(-n + 2) {
  border-bottom: none;
  padding-bottom: 0;
}

.dmrs-web-thm-100426-why-choose-item .dmrs-web-thm-100426-icon-box {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 15px;
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-why-choose-item .dmrs-web-thm-100426-icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-why-choose-item:hover .dmrs-web-thm-100426-icon-box::before {
  transform: scale(1);
}

.dmrs-web-thm-100426-why-choose-item .dmrs-web-thm-100426-icon-box img {
  position: relative;
  max-width: 25px;
  z-index: 1;
}

.dmrs-web-thm-100426-why-choose-item-content {
  width: calc(100% - 65px);
}

.dmrs-web-thm-100426-why-choose-item-content h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.dmrs-web-thm-100426-why-choose-images {
  background: url('../images/why-choose-image-bg-shape.svg') no-repeat;
  background-position: bottom left;
  background-size: auto;
  padding: 0 0 45px 90px;
}

.dmrs-web-thm-100426-why-choose-img {
  position: relative;
  padding: 45px 45px 45px 0;
}

.dmrs-web-thm-100426-why-choose-img::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 20px 20px 20px 0;
  width: 220px;
  height: 100%;
  z-index: -1;
}

.dmrs-web-thm-100426-why-choose-img figure {
  border-radius: 30px 30px 30px 0;
  overflow: hidden;
}

.dmrs-web-thm-100426-why-choose-img img {
  width: 100%;
  border: 6px solid var(--white-color);
  aspect-ratio: 1 / 0.91;
  object-fit: cover;
  border-radius: 30px 30px 30px 0;
}

/************************************/
/***     08. How It Work css	  ***/
/************************************/

.dmrs-web-thm-100426-how-it-work {
  background: url('../images/section-bg-shape.svg'), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: bottom -1px center;
  background-size: 100% auto;
  padding: 100px 0 200px;
}

.dmrs-web-thm-100426-how-work-item {
  position: relative;
  background-color: var(--white-color);
  border-radius: 30px 30px 30px 0;
  padding: 30px 30px 60px 30px;
  z-index: 1;
}

.dmrs-web-thm-100426-how-work-item::before {
  content: '';
  position: absolute;
  bottom: -50%;
  right: 0;
  transform: translateY(20%);
  background: url('../images/how-work-box-arrow-1.svg');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto;
  width: 137px;
  height: 137px;
}

.dmrs-web-thm-100426-how-it-work .col-lg-3:last-child .dmrs-web-thm-100426-how-work-item::before {
  display: none;
}

.dmrs-web-thm-100426-how-it-work .col-lg-3:nth-child(even) .dmrs-web-thm-100426-how-work-item::before {
  bottom: auto;
  top: -50%;
  background: url('../images/how-work-box-arrow-2.svg');
  transform: translateY(-20%);
}

.dmrs-web-thm-100426-how-it-work .col-lg-3:nth-child(even) .dmrs-web-thm-100426-how-work-item {
  padding: 60px 30px 30px 30px;
  margin-top: 140px;
}

.dmrs-web-thm-100426-how-work-no {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: var(--accent-color);
  border: 8px solid var(--secondary-color);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-how-work-item:hover .dmrs-web-thm-100426-how-work-no {
  background-color: var(--primary-color);
}

.dmrs-web-thm-100426-how-it-work .col-lg-3:nth-child(even) .dmrs-web-thm-100426-how-work-no {
  bottom: auto;
  top: 0;
  transform: translate(-50%, -50%);
}

.dmrs-web-thm-100426-how-work-no h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  color: var(--white-color);
}

.dmrs-web-thm-100426-how-work-item .dmrs-web-thm-100426-icon-box {
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-how-work-item .dmrs-web-thm-100426-icon-box img {
  max-width: 40px;
}

.dmrs-web-thm-100426-how-work-content h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-how-work-content p {
  margin: 0;
}

/************************************/
/***     09. Our Features css	  ***/
/************************************/

.dmrs-web-thm-100426-our-features {
  padding: 50px 0 100px;
}

.dmrs-web-thm-100426-features-item {
  position: relative;
  text-align: center;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-features-item::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 140px;
  background: var(--divider-color);
}

.dmrs-web-thm-100426-our-features .col-lg-3:last-child .dmrs-web-thm-100426-features-item::before {
  display: none;
}

.dmrs-web-thm-100426-features-item .dmrs-web-thm-100426-icon-box {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-features-item .dmrs-web-thm-100426-icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-features-item:hover .dmrs-web-thm-100426-icon-box::before {
  transform: scale(1);
}

.dmrs-web-thm-100426-features-item .dmrs-web-thm-100426-icon-box img {
  position: relative;
  max-width: 36px;
  z-index: 1;
}

.dmrs-web-thm-100426-features-content h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-features-content p {
  margin: 0;
}

.dmrs-web-thm-100426-our-counter-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 120px;
  padding: 0;
  border-top: 1px solid var(--divider-color);
  margin-top: 20px;
  padding-top: 50px;
}

.dmrs-web-thm-100426-counter-item {
  position: relative;
  width: calc(20% - 96px);
  text-align: center;
}

.dmrs-web-thm-100426-counter-item::before {
  content: '';
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: var(--divider-color);
}

.dmrs-web-thm-100426-counter-item:last-child:before {
  display: none;
}

.dmrs-web-thm-100426-counter-item h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.dmrs-web-thm-100426-counter-item p {
  text-transform: capitalize;
  margin: 0;
}

/************************************/
/***       10. CTA Box css  	  ***/
/************************************/

.dmrs-web-thm-100426-cta-box {
  background: url('../images/section-bg-shape.svg'), var(--primary-color);
  background-repeat: no-repeat;
  background-position: bottom -1px center;
  background-size: auto;
  padding: 100px 0 200px;
}

.dmrs-web-thm-100426-cta-box-images {
  position: relative;
  padding: 0 20px 20px 0;
  margin-right: 50px;
}

.dmrs-web-thm-100426-cta-box-img {
  position: relative;
  padding: 20px;
}

.dmrs-web-thm-100426-cta-box-img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--dark-divider-color);
  border-radius: 30px 30px 30px 0;
  width: 280px;
  height: 270px;
}

.dmrs-web-thm-100426-cta-box-img figure {
  display: block;
  border-radius: 30px 30px 30px 0;
}

.dmrs-web-thm-100426-cta-box-img img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.81;
  object-fit: cover;
  border-radius: 30px 30px 30px 0;
  z-index: 1;
}

.dmrs-web-thm-100426-cta-contact-circle {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.dmrs-web-thm-100426-cta-contact-circle img {
  max-width: 133px;
  animation: rotate 30s infinite linear;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.dmrs-web-thm-100426-cta-box-content .dmrs-web-thm-100426-section-title p,
.dmrs-web-thm-100426-cta-box-content .dmrs-web-thm-100426-section-title h2 {
  color: var(--white-color);
}

.dmrs-web-thm-100426-cta-box-btn {
  position: relative;
}

.dmrs-web-thm-100426-cta-box-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  background: url('../images/arrow-cta-btn.svg') no-repeat;
  background-position: right center;
  background-size: cover;
  width: 130px;
  height: 50px;
  animation: ctamoveobject 3s infinite linear alternate;
}

@keyframes ctamoveobject {
  50% {
    right: 45%;
  }
}

.dmrs-web-thm-100426-cta-box-btn .dmrs-web-thm-100426-btn-default.dmrs-web-thm-100426-btn-highlighted {
  background: var(--white-color);
  color: var(--primary-color);
}

.dmrs-web-thm-100426-cta-box-btn .dmrs-web-thm-100426-btn-default.dmrs-web-thm-100426-btn-highlighted:hover {
  background-color: transparent;
  color: var(--white-color);
}

/************************************/
/***      11. Our Pricing css  	  ***/
/************************************/

.dmrs-web-thm-100426-our-pricing {
  padding: 50px 0 100px;
}

.dmrs-web-thm-100426-pricing-item {
  background: var(--white-color);
  box-shadow: 0px 0px 30px 0px #0000000A;
  border: 1px solid var(--divider-color);
  border-radius: 30px 30px 30px 0;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

.dmrs-web-thm-100426-pricing-item.dmrs-web-thm-100426-highlighted-box {
  position: relative;
  background: var(--primary-color);
  overflow: hidden;
}

.dmrs-web-thm-100426-pricing-item.dmrs-web-thm-100426-highlighted-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
  background: linear-gradient(180deg, rgba(40, 108, 94, 0) 0%, rgba(255, 255, 255, 0.12) 100%);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  z-index: 0;
}

.dmrs-web-thm-100426-pricing-header {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.dmrs-web-thm-100426-pricing-header h2 {
  background-color: var(--accent-color);
  border-radius: 15px 15px 15px 0;
  display: inline-block;
  font-size: 54px;
  font-weight: 600;
  line-height: 1em;
  color: var(--white-color);
  padding: 10px 20px;
}

.dmrs-web-thm-100426-pricing-header h2 sub {
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  bottom: 0;
}

.dmrs-web-thm-100426-pricing-body {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.dmrs-web-thm-100426-pricing-item.dmrs-web-thm-100426-highlighted-box .dmrs-web-thm-100426-pricing-body {
  border-color: var(--dark-divider-color);
}

.dmrs-web-thm-100426-pricing-title {
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-pricing-title h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.dmrs-web-thm-100426-pricing-item.dmrs-web-thm-100426-highlighted-box .dmrs-web-thm-100426-pricing-title h3 {
  color: var(--white-color);
}

.dmrs-web-thm-100426-pricing-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dmrs-web-thm-100426-pricing-list ul li {
  position: relative;
  font-weight: 500;
  color: var(--primary-color);
  padding-left: 35px;
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-pricing-item.dmrs-web-thm-100426-highlighted-box .dmrs-web-thm-100426-pricing-list ul li {
  color: var(--white-color);
}

.dmrs-web-thm-100426-pricing-list ul li:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-pricing-list ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/icon.png) no-repeat;
  background-position: left center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.dmrs-web-thm-100426-pricing-item.dmrs-web-thm-100426-highlighted-box .dmrs-web-thm-100426-pricing-list ul li::before {
  filter: brightness(0) invert(1);
}

.dmrs-web-thm-100426-pricing-btn .dmrs-web-thm-100426-btn-default.dmrs-web-thm-100426-btn-highlighted {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.dmrs-web-thm-100426-pricing-btn .dmrs-web-thm-100426-btn-default.dmrs-web-thm-100426-btn-highlighted:hover {
  border-color: var(--white-color);
}

/************************************/
/***     12. Support Team css  	  ***/
/************************************/

.dmrs-web-thm-100426-support-team {
  background: var(--secondary-color);
  padding: 100px 0;
}

.dmrs-web-thm-100426-support-team-images {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.dmrs-web-thm-100426-support-team-images figure {
  margin-left: -40px;
  border-radius: 50%;
  overflow: hidden;
}

.dmrs-web-thm-100426-support-team-images figure:first-child {
  margin-left: 0;
}

.dmrs-web-thm-100426-support-team-images figure::after {
  z-index: 0;
}

.dmrs-web-thm-100426-support-team-images img {
  max-width: 120px;
  border: 4px solid var(--secondary-color);
  border-radius: 50%;
}

.dmrs-web-thm-100426-support-team-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px 80px;
}

.dmrs-web-thm-100426-support-team-item {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(50% - 40px);
}

.dmrs-web-thm-100426-support-team-item::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -40px;
  border: 1px solid var(--white-color);
  width: 1px;
  height: 100%;
}

.dmrs-web-thm-100426-support-team-item:nth-child(2n + 2):before {
  display: none;
}

.dmrs-web-thm-100426-support-team-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.dmrs-web-thm-100426-support-team-item .dmrs-web-thm-100426-icon-box {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 20px;
}

.dmrs-web-thm-100426-support-team-item:nth-child(odd) .dmrs-web-thm-100426-icon-box {
  margin-left: 20px;
  margin-right: 0;
}

.dmrs-web-thm-100426-support-team-item .dmrs-web-thm-100426-icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-support-team-item:hover .dmrs-web-thm-100426-icon-box::before {
  transform: scale(1);
}

.dmrs-web-thm-100426-support-team-item .dmrs-web-thm-100426-icon-box img {
  position: relative;
  max-width: 30px;
  z-index: 1;
}

.dmrs-web-thm-100426-support-team-content {
  width: calc(100% - 80px);
}

.dmrs-web-thm-100426-support-team-content p {
  text-transform: capitalize;
  margin-bottom: 10px;
}

.dmrs-web-thm-100426-support-team-content h3 {
  font-size: 18px;
  font-weight: 600;
}

/************************************/
/***      13. Our FAQs css  	  ***/
/************************************/

.dmrs-web-thm-100426-our-faqs {
  padding: 100px 0;
}

.dmrs-web-thm-100426-our-faqs-content {
  margin-right: 20px;
}

.dmrs-web-thm-100426-faqs-content-list {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.dmrs-web-thm-100426-faqs-content-list:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0
}

.dmrs-web-thm-100426-faqs-content-list h3 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
  padding-left: 30px;
}

.dmrs-web-thm-100426-faqs-content-list h3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/icon-about-list.svg) no-repeat;
  background-position: left center;
  background-size: cover;
  width: 18px;
  height: 18px;
}

.dmrs-web-thm-100426-faqs-content-list p {
  margin: 0;
}

.dmrs-web-thm-100426-our-faq-section .accordion-item {
  border: 1px solid var(--divider-color);
  border-radius: 12px 12px 12px 0;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.dmrs-web-thm-100426-our-faq-section .accordion-item:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-our-faq-section .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
  background-color: transparent;
  color: var(--primary-color);
  padding: 20px 50px 20px 20px;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-our-faq-section .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-bottom: 1px solid var(--dark-divider-color);
}

.dmrs-web-thm-100426-our-faq-section .accordion-header .accordion-button.collapsed {
  background-color: transparent;
  color: var(--primary-color);
}

.dmrs-web-thm-100426-our-faq-section .accordion-item .accordion-button::after,
.dmrs-web-thm-100426-our-faq-section .accordion-item .accordion-button.collapsed::after {
  content: '\f077';
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 20px;
  top: 50%;
  bottom: auto;
  transform: translate(0px, -50%);
  background-color: var(--white-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  line-height: normal;
  width: 24px;
  height: 24px;
  padding: 5px;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-our-faq-section .accordion-item .accordion-button.collapsed::after {
  transform: translate(0px, -50%) rotate(-180deg);
  background-color: var(--primary-color);
  color: var(--white-color);
}

.dmrs-web-thm-100426-our-faq-section .accordion-header .accordion-button span {
  margin-right: 5px;
}

.dmrs-web-thm-100426-our-faq-section .accordion-item .accordion-body {
  background-color: var(--primary-color);
  padding: 20px 50px 20px 20px;
}

.dmrs-web-thm-100426-our-faq-section .accordion-item .accordion-body p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/***   14. Our Testimonial  css   ***/
/************************************/

.dmrs-web-thm-100426-our-testimonial {
  background: url(../images/section-bg-shape.svg), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: bottom -1px center;
  background-size: 100% auto;
  padding: 100px 0 200px;
}

.dmrs-web-thm-100426-our-testimonial-content {
  margin-right: 10px;
}

.dmrs-web-thm-100426-testimonial-slider {
  position: relative;
  padding: 130px 0;
}

.dmrs-web-thm-100426-testimonial-slider::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  border-radius: 30px 30px 30px 0;
  width: 470px;
  height: 100%;
  margin: 0 auto;
  z-index: 0;
}

.dmrs-web-thm-100426-testimonial-box {
  position: relative;
}

.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 30px 30px 30px 0;
  width: 98%;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}

.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-box::after {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 30px 30px 30px 0;
  width: 96%;
  height: 100%;
  margin: 0 auto;
  z-index: 0;
}

.dmrs-web-thm-100426-testimonial-slider .swiper {
  position: relative;
  background-color: var(--white-color);
  box-shadow: 0px 12px 37.1px 0px #0000000D;
  border: 1px solid var(--divider-color);
  border-radius: 30px 30px 30px 0;
  padding: 40px;
  overflow-y: visible;
  z-index: 2;
}

.dmrs-web-thm-100426-testimonial-header {
  margin-bottom: 50px;
}

.dmrs-web-thm-100426-testimonial-content p {
  margin: 0;
}

.dmrs-web-thm-100426-testimonial-body {
  display: inline-flex;
  align-items: center;
}

.dmrs-web-thm-100426-author-image {
  margin-right: 20px;
}

.dmrs-web-thm-100426-author-image img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.dmrs-web-thm-100426-author-content {
  text-align: left;
  width: calc(100% - 70px);
}

.dmrs-web-thm-100426-author-content h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.dmrs-web-thm-100426-author-content p {
  text-transform: capitalize;
  margin: 0;
}

.dmrs-web-thm-100426-testimonial-btn {
  position: absolute;
  top: -90px;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-next,
.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-prev {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: var(--white-color);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  z-index: 99;
}

.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-next {
  margin-left: 10px;
}

.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-next:hover,
.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-prev:hover {
  background-color: var(--primary-color);
}

.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-next::before,
.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-prev::before {
  content: '\f062';
  font-family: 'FontAwesome';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: rotate(90deg);
  font-size: 20px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-prev::before {
  transform: rotate(270deg);
}

.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-next:hover::before,
.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-prev:hover::before {
  color: var(--white-color);
}

.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-pagination {
  position: absolute;
  bottom: -80px;
  text-align: center;
  z-index: 1;
}

.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/************************************/
/***      15. Our Blog  css       ***/
/************************************/

.dmrs-web-thm-100426-our-blog {
  padding: 50px 0 100px;
}

.dmrs-web-thm-100426-highlighted-blog-post {
  position: relative;
}

.dmrs-web-thm-100426-highlighted-blog-featured-img a {
  position: relative;
  display: block;
  border-radius: 30px 30px 30px 0;
  cursor: none;
  overflow: hidden;
}

.dmrs-web-thm-100426-highlighted-blog-featured-img a:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.97%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 0;
}

.dmrs-web-thm-100426-highlighted-blog-featured-img img {
  width: 100%;
  aspect-ratio: 1/ 0.93;
  object-fit: cover;
}

.dmrs-web-thm-100426-highlighted-blog-body {
  max-width: 480px;
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 20px;
  z-index: 1;
}

.dmrs-web-thm-100426-article-post-meta {
  margin-bottom: 10px;
}

.dmrs-web-thm-100426-article-post-meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dmrs-web-thm-100426-article-post-meta ul li a i {
  margin-right: 10px;
}

.dmrs-web-thm-100426-article-post-meta ul li a {
  color: var(--white-color);
  text-transform: capitalize;
}

.dmrs-web-thm-100426-highlighted-blog-content {
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-highlighted-blog-content h3 {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5em;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.dmrs-web-thm-100426-highlighted-blog-content h3 a {
  color: inherit;
}

.dmrs-web-thm-100426-highlighted-blog-content p {
  color: var(--white-color);
  margin: 0;
}

.dmrs-web-thm-100426-highlighted-blog-btn .dmrs-web-thm-100426-redmore-btn {
  color: var(--white-color);
}

.dmrs-web-thm-100426-highlighted-blog-btn .dmrs-web-thm-100426-redmore-btn:hover {
  color: var(--accent-color);
}

.dmrs-web-thm-100426-highlighted-blog-btn .dmrs-web-thm-100426-redmore-btn::before {
  color: var(--white-color);
}

.dmrs-web-thm-100426-highlighted-blog-btn .dmrs-web-thm-100426-redmore-btn:hover:before {
  color: var(--accent-color);
}

.dmrs-web-thm-100426-article-post-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.dmrs-web-thm-100426-article-post {
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  box-shadow: 0px 10px 30px 0px #00000008;
  border-radius: 30px 30px 30px 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.dmrs-web-thm-100426-article-post .dmrs-web-thm-100426-article-featured-image {
  width: 50%;
  height: 100%;
}

.dmrs-web-thm-100426-article-post .dmrs-web-thm-100426-article-featured-image figure {
  height: 100%;
}

.dmrs-web-thm-100426-article-post .dmrs-web-thm-100426-article-featured-image a {
  height: 100%;
  cursor: none;
  display: block;
  border-radius: 30px 0 0 0;
  overflow: hidden;
}

.dmrs-web-thm-100426-article-post .dmrs-web-thm-100426-article-featured-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  border-radius: 30px 0 0 0;
  transition: all 0.5s ease-in-out;
}

.dmrs-web-thm-100426-article-post:hover .dmrs-web-thm-100426-article-featured-image img {
  transform: scale(1.1);
}

.dmrs-web-thm-100426-article-post-body {
  display: flex;
  width: 50%;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
}

.dmrs-web-thm-100426-article-post-body .dmrs-web-thm-100426-article-post-meta ul li a i,
.dmrs-web-thm-100426-article-post-body .dmrs-web-thm-100426-article-post-meta ul li a {
  color: var(--text-color);
}

.dmrs-web-thm-100426-article-post-content {
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-article-post-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.dmrs-web-thm-100426-article-post-content h3 a {
  color: inherit;
}

.dmrs-web-thm-100426-article-post-content p {
  margin: 0;
}

.dmrs-web-thm-100426-article-post-btn .dmrs-web-thm-100426-redmore-btn:hover {
  color: var(--primary-color);
}

.dmrs-web-thm-100426-article-post-btn .dmrs-web-thm-100426-redmore-btn:hover:before {
  color: var(--primary-color);
}

/************************************/
/***   		16. Footer css        ***/
/************************************/

.dmrs-web-thm-100426-main-footer {
  background: var(--primary-color);
  padding: 60px 0 0;
}

.dmrs-web-thm-100426-footer-newsletter-box {
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.dmrs-web-thm-100426-footer-newsletter-item {
  display: flex;
  align-items: center;
}

.dmrs-web-thm-100426-footer-newsletter-item .dmrs-web-thm-100426-icon-box {
  margin-right: 30px;
}

.dmrs-web-thm-100426-footer-newsletter-item .dmrs-web-thm-100426-icon-box img {
  max-width: 40px;
}

.dmrs-web-thm-100426-footer-newsletter-item-content {
  width: calc(100% - -70px);
}

.dmrs-web-thm-100426-footer-newsletter-item-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white-color);
}

.dmrs-web-thm-100426-footer-newsletter-form .dmrs-web-thm-100426-form-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dmrs-web-thm-100426-footer-newsletter-form .dmrs-web-thm-100426-form-group .form-control {
  width: 70%;
  padding: 13px 20px;
  border: 1px solid var(--divider-color);
  background: var(--white-color);
  color: var(--text-color);
  border-radius: 12px 12px 12px 0;
  box-shadow: none;
}

.dmrs-web-thm-100426-footer-newsletter-form .dmrs-web-thm-100426-form-group .form-control::placeholder {
  color: var(--text-color);
}

.dmrs-web-thm-100426-footer-newsletter-form .dmrs-web-thm-100426-form-group .dmrs-web-thm-100426-btn-default.dmrs-web-thm-100426-btn-highlighted {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.dmrs-web-thm-100426-footer-newsletter-form .dmrs-web-thm-100426-form-group .dmrs-web-thm-100426-btn-default.dmrs-web-thm-100426-btn-highlighted:hover {
  border-color: var(--white-color);
}

.dmrs-web-thm-100426-footer-logo {
  margin-bottom: 40px;
}

.dmrs-web-thm-100426-footer-logo img {
  max-width: 180px;
}

.dmrs-web-thm-100426-about-footer-content p {
  color: var(--white-color);
  margin: 0;
}

.dmrs-web-thm-100426-footer-links h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-footer-links ul {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}

.dmrs-web-thm-100426-footer-links ul li {
  text-transform: capitalize;
  margin-bottom: 15px;
}

.dmrs-web-thm-100426-footer-links ul li:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-footer-links ul li::marker {
  color: var(--accent-color);
}

.dmrs-web-thm-100426-footer-links ul li a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-footer-links ul li:hover a {
  color: var(--accent-color);
}

.dmrs-web-thm-100426-footer-contact-details .dmrs-web-thm-100426-footer-info-box {
  position: relative;
  padding-left: 40px;
  margin-bottom: 25px;
}

.dmrs-web-thm-100426-footer-contact-details .dmrs-web-thm-100426-footer-info-box:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-footer-info-box .dmrs-web-thm-100426-icon-box {
  position: absolute;
  top: -2px;
  left: 0;
}

.dmrs-web-thm-100426-footer-info-box .dmrs-web-thm-100426-icon-box img {
  max-width: 24px;
}

.dmrs-web-thm-100426-footer-info-box-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.dmrs-web-thm-100426-footer-copyright {
  border-top: 1px solid var(--dark-divider-color);
  padding: 40px 0;
  margin-top: 60px;
}

.dmrs-web-thm-100426-footer-copyright-text p {
  color: var(--white-color);
  margin: 0;
}

.dmrs-web-thm-100426-footer-social-links {
  text-align: right;
}

.dmrs-web-thm-100426-footer-social-links ul {
  list-style: none;
  line-height: 1em;
  padding: 0;
  margin: 0;
}

.dmrs-web-thm-100426-footer-social-links ul li {
  display: inline-block;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-footer-social-links ul li:last-child {
  margin-right: 0;
}

.dmrs-web-thm-100426-footer-social-links ul li a {
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-footer-social-links ul li a:hover {
  color: var(--accent-color);
}

.dmrs-web-thm-100426-footer-social-links ul li a i {
  font-size: 20px;
  color: inherit
}

/************************************/
/***     17. About us Page css	  ***/
/************************************/

.dmrs-web-thm-100426-page-header {
  background: linear-gradient(270deg, rgba(0, 79, 76, 0) 12.16%, rgba(0, 79, 76, 0.00463538) 12.16%, rgba(0, 79, 76, 0.9) 82.49%), url(../images/page-header-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 160px 0;
}

.dmrs-web-thm-100426-page-header-box {
  text-align: left;
}

.dmrs-web-thm-100426-page-header-box h1 {
  display: inline-block;
  font-size: 56px;
  letter-spacing: -0.005em;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 20px;
  cursor: none;
}

.dmrs-web-thm-100426-page-header-box h1 span {
  font-weight: 500;
}

.dmrs-web-thm-100426-page-header-box ol {
  margin: 0;
  display: inline-flex;
  justify-content: left;
}

.dmrs-web-thm-100426-page-header-box ol {
  margin: 0;
  padding: 0;
  justify-content: center;
}

.dmrs-web-thm-100426-page-header-box ol li.breadcrumb-item {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--white-color);
  text-transform: capitalize;
  padding-right: 15px;
}

.dmrs-web-thm-100426-page-header-box ol li.breadcrumb-item:last-child {
  padding-right: 0;
}

.dmrs-web-thm-100426-page-header-box ol li.breadcrumb-item::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.dmrs-web-thm-100426-page-header-box ol .breadcrumb-item:last-child:before {
  display: none;
}

.dmrs-web-thm-100426-page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.dmrs-web-thm-100426-vision-mission {
  background: url(../images/section-bg-shape-2.svg), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: bottom -1px center;
  background-size: auto;
  padding: 100px 0 50px;
}

.dmrs-web-thm-100426-vision-mission-box {
  background: var(--white-color);
  box-shadow: 0px 0px 30px 0px #0000000A;
  border: 1px solid var(--divider-color);
  border-radius: 30px 30px 30px 0;
  padding: 80px;
}

.dmrs-web-thm-100426-vision-mission-nav {
  margin-bottom: 60px;
  text-align: center;
}

.dmrs-web-thm-100426-vision-mission-nav .nav-tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-flex;
  border: none;
}

.dmrs-web-thm-100426-vision-mission-nav ul li {
  margin-right: 40px;
}

.dmrs-web-thm-100426-vision-mission-nav ul li:last-child {
  margin-right: 0;
}

.dmrs-web-thm-100426-vision-mission-nav ul li .nav-link {
  background-color: var(--white-color);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 12px 12px 12px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 13px 30px;
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-vision-mission-nav ul li:hover .nav-link,
.dmrs-web-thm-100426-vision-mission-nav ul li .nav-link.active {
  background-color: var(--accent-color);
  color: var(--white-color);
  border-color: var(--accent-color);
}

.dmrs-web-thm-100426-vision-image figure {
  display: block;
  border-radius: 40px;
}

.dmrs-web-thm-100426-vision-image img {
  width: 100%;
  aspect-ratio: 1 / 0.6;
  object-fit: cover;
  border-radius: 40px;
}

.dmrs-web-thm-100426-vision-mission-content {
  margin-left: 30px;
}

.dmrs-web-thm-100426-vision-mission-content-title {
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-vision-mission-content-title h3 {
  font-size: 18px;
  font-weight: 600;
}

.dmrs-web-thm-100426-vision-mission-content-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dmrs-web-thm-100426-vision-mission-content-list ul li {
  position: relative;
  font-weight: 500;
  color: var(--primary-color);
  padding-left: 35px;
  margin-bottom: 25px;
}

.dmrs-web-thm-100426-vision-mission-content-list ul li:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-vision-mission-content-list ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../images/icon-about-list.svg") no-repeat;
  background-position: left center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.dmrs-web-thm-100426-our-team {
  background: url(../images/section-bg-shape-2.svg), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: bottom -1px center;
  background-size: contain;
  padding: 100px 0 20px;
}

.dmrs-web-thm-100426-team-member-item {
  background: var(--white-color);
  box-shadow: 0px 0px 30px 0px #0000000A;
  border: 1px solid var(--divider-color);
  border-radius: 30px 30px 30px 0;
  overflow: hidden;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-team-image {
  position: relative;
}

.dmrs-web-thm-100426-team-image img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  object-position: top center;
  transition: all 0.5s ease-out;
}

.dmrs-web-thm-100426-team-member-item:hover .dmrs-web-thm-100426-team-image img {
  transform: scale(1.1);
}

.dmrs-web-thm-100426-team-social-list {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  z-index: 1;
}

.dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-icon ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-icon ul li {
  display: inline-block;
  margin-right: 10px;
}

.dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-icon ul li:last-child {
  margin-right: 0px;
}

.dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-icon a,
.dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-link a {
  display: block;
  width: 30px;
  height: 30px;
  background: var(--white-color);
  border-radius: 4px 4px 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-icon a:hover,
.dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-link a:hover {
  background: var(--accent-color);
}

.dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-icon a i,
.dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-link a i {
  font-size: 16px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-icon a:hover i,
.dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-link a:hover i {
  color: var(--white-color);
}

.dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-icon {
  width: calc(100% - 50px);
  margin: 0;
  transform: translateX(30px);
  opacity: 0;
  transition: all 0.4s ease-out;
  margin-left: 10px;
}

.dmrs-web-thm-100426-team-member-item:hover .dmrs-web-thm-100426-team-social-list .dmrs-web-thm-100426-team-social-icon {
  transform: translateX(0);
  opacity: 1;
}

.dmrs-web-thm-100426-team-content {
  padding: 20px;
  text-align: center;
}

.dmrs-web-thm-100426-team-content h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.dmrs-web-thm-100426-team-content p {
  text-transform: capitalize;
  margin: 0;
}

.dmrs-web-thm-100426-our-testimonial.dmrs-web-thm-100426-about-testimonial {
  background: var(--white-color);
  padding: 50px 0 100px;
}

/************************************/
/***     18. Services Page css	  ***/
/************************************/

.dmrs-web-thm-100426-page-services {
  padding: 100px 0 70px;
}

.dmrs-web-thm-100426-our-faqs.dmrs-web-thm-100426-service-faqs {
  padding: 50px 0 100px;
}

/************************************/
/***   19. Service Single css	  ***/
/************************************/

.dmrs-web-thm-100426-page-service-single {
  padding: 100px 0;
}

.dmrs-web-thm-100426-service-sidebar {
  position: sticky;
  top: 20px;
  margin-right: 20px;
}

.dmrs-web-thm-100426-service-catagery-list {
  background-color: var(--secondary-color);
  border-radius: 30px 30px 30px 0;
  padding: 40px;
  margin-bottom: 40px;
}

.dmrs-web-thm-100426-service-catagery-list h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-service-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dmrs-web-thm-100426-service-catagery-list ul li {
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-service-catagery-list ul li:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-service-catagery-list ul li a {
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: normal;
  background-color: var(--white-color);
  color: var(--text-color);
  border-radius: 10px;
  padding: 16px 40px 16px 16px;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-service-catagery-list ul li:hover a {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.dmrs-web-thm-100426-service-catagery-list ul li a::after {
  content: '\f061';
  font-family: 'FontAwesome';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: normal;
  color: var(--accent-color);
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-service-catagery-list ul li:hover a::after {
  color: var(--white-color);
}

.dmrs-web-thm-100426-sidebar-cta-box {
  background-color: var(--primary-color);
  border-radius: 30px 30px 30px 0;
  padding: 40px;
}

.dmrs-web-thm-100426-cta-content {
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-cta-content h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 15px;
}

.dmrs-web-thm-100426-cta-content p {
  color: var(--white-color);
  margin: 0;
}

.dmrs-web-thm-100426-sidebar-cta-item {
  display: flex;
  align-items: center;
  background-color: var(--dark-divider-color);
  border-radius: 10px 10px 10px 0;
  padding: 10px 20px;
}

.dmrs-web-thm-100426-sidebar-cta-item .dmrs-web-thm-100426-icon-box {
  position: relative;
  background-color: var(--white-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 15px;
  transition: all 0.5s ease-in-out;
}

.dmrs-web-thm-100426-sidebar-cta-item:hover .dmrs-web-thm-100426-icon-box {
  background-color: transparent;
}

.dmrs-web-thm-100426-sidebar-cta-item .dmrs-web-thm-100426-icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-sidebar-cta-item:hover .dmrs-web-thm-100426-icon-box::before {
  transform: scale(1);
}

.dmrs-web-thm-100426-sidebar-cta-item .dmrs-web-thm-100426-icon-box img {
  position: relative;
  max-width: 36px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-sidebar-cta-item:hover .dmrs-web-thm-100426-icon-box img {
  filter: brightness(0) invert(1);
}

.dmrs-web-thm-100426-sidebar-cta-item-content {
  width: calc(100% - 75px);
}

.dmrs-web-thm-100426-sidebar-cta-item-content p {
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 5px;
}

.dmrs-web-thm-100426-sidebar-cta-item-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
}

.dmrs-web-thm-100426-service-featured-image {
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-service-featured-image figure {
  display: block;
}

.dmrs-web-thm-100426-service-featured-image img {
  aspect-ratio: 1 / 0.55;
  object-fit: cover;
  border-radius: 30px 30px 30px 0;
}

.dmrs-web-thm-100426-service-entry {
  margin-bottom: 60px;
}

.dmrs-web-thm-100426-service-entry .dmrs-web-thm-100426-section-title h2 {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-service-entry h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-service-entry h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-service-entry p {
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-service-entry p:last-child {
  margin-bottom: 0px;
}

.dmrs-web-thm-100426-service-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.dmrs-web-thm-100426-service-entry ul li {
  position: relative;
  width: 100%;
  color: var(--primary-color);
  font-weight: 500;
  text-transform: capitalize;
  padding-left: 30px;
}

.dmrs-web-thm-100426-service-entry ul li:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/icon-about-list.svg) no-repeat;
  background-position: left center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.dmrs-web-thm-100426-service-entry-image figure {
  display: block;
}

.dmrs-web-thm-100426-service-entry-image img {
  aspect-ratio: 1 / 0.42;
  object-fit: cover;
  border-radius: 20px 20px 20px 0;
}

.dmrs-web-thm-100426-service-features {
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-service-features .dmrs-web-thm-100426-section-title {
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-service-features .dmrs-web-thm-100426-section-title p {
  margin-top: 20px;
}

.dmrs-web-thm-100426-service-policy {
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-service-policy-title {
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-service-policy-box {
  display: flex;
  flex-wrap: wrap;
}

.dmrs-web-thm-100426-service-policy-item {
  position: relative;
  width: 50%;
}

.dmrs-web-thm-100426-service-policy-item.dmrs-web-thm-100426-policy-box-1 {
  border-right: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
  padding: 0 30px 30px 0;
}

.dmrs-web-thm-100426-service-policy-item.dmrs-web-thm-100426-policy-box-2 {
  border-bottom: 1px solid var(--divider-color);
  padding: 0 0 30px 30px;
}

.dmrs-web-thm-100426-service-policy-item.dmrs-web-thm-100426-policy-box-3 {
  border-right: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
  padding: 30px 30px 30px 0;
}

.dmrs-web-thm-100426-service-policy-item.dmrs-web-thm-100426-policy-box-4 {
  border-bottom: 1px solid var(--divider-color);
  padding: 30px 0 30px 30px;
}

.dmrs-web-thm-100426-service-policy-item:nth-last-of-type(-n + 2) {
  border-bottom: none;
  padding-bottom: 0;
}

.dmrs-web-thm-100426-policy-item-title {
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
}

.dmrs-web-thm-100426-policy-item-no {
  position: absolute;
  top: 0;
  left: 0;
}

.dmrs-web-thm-100426-policy-item-title h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
}

.dmrs-web-thm-100426-policy-item-content p {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-service-features-box {
  background-color: var(--secondary-color);
  border-radius: 20px 20px 20px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 40px;
}

.dmrs-web-thm-100426-service-features-item {
  width: calc(50% - 15px);
  display: flex;
  align-items: center;
}

.dmrs-web-thm-100426-service-features-item .dmrs-web-thm-100426-icon-box {
  position: relative;
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 15px;
  transition: all 0.5s ease-in-out;
}

.dmrs-web-thm-100426-service-features-item:hover .dmrs-web-thm-100426-icon-box {
  background-color: transparent;
}

.dmrs-web-thm-100426-service-features-item .dmrs-web-thm-100426-icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-service-features-item:hover .dmrs-web-thm-100426-icon-box::before {
  transform: scale(1);
}

.dmrs-web-thm-100426-service-features-item .dmrs-web-thm-100426-icon-box img {
  position: relative;
  max-width: 33px;
  z-index: 1;
}

.dmrs-web-thm-100426-service-features-content {
  width: calc(100% - 83px);
}

.dmrs-web-thm-100426-service-features-content h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.dmrs-web-thm-100426-service-features-content p {
  margin-bottom: 0;
}

/************************************/
/***      20. Blog Archive css	  ***/
/************************************/

.dmrs-web-thm-100426-page-blog {
  padding: 100px 0;
}

.dmrs-web-thm-100426-blog-item {
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  box-shadow: 0px 10px 30px 0px #00000008;
  border-radius: 30px 30px 30px 0;
  height: calc(100% - 40px);
  margin-bottom: 40px;
}

.dmrs-web-thm-100426-blog-item .dmrs-web-thm-100426-blog-featured-image {
  position: relative;
}

.dmrs-web-thm-100426-blog-item .dmrs-web-thm-100426-blog-featured-image figure a {
  cursor: none;
  display: block;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}

.dmrs-web-thm-100426-blog-item .dmrs-web-thm-100426-blog-featured-image img {
  aspect-ratio: 1 / 0.74;
  object-fit: cover;
  border-radius: 30px 30px 0 0;
  transition: all 0.5s ease-in-out;
}

.dmrs-web-thm-100426-blog-item:hover .dmrs-web-thm-100426-blog-featured-image img {
  transform: scale(1.1);
}

.dmrs-web-thm-100426-blog-item-meta {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: var(--accent-color);
  border-radius: 10px 10px 10px 0;
  width: 50px;
  height: 50px;
  text-align: center;
  padding: 5px;
  z-index: 1;
  cursor: none;
}

.dmrs-web-thm-100426-blog-item-meta h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  color: var(--white-color);
}

.dmrs-web-thm-100426-blog-item-meta p {
  color: var(--white-color);
  text-transform: capitalize;
  line-height: 1em;
  margin: 0;
}

.dmrs-web-thm-100426-blog-item-body {
  padding: 30px;
}

.dmrs-web-thm-100426-blog-item-content {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.dmrs-web-thm-100426-blog-item-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.dmrs-web-thm-100426-blog-item-content h3 a {
  color: inherit;
}

.dmrs-web-thm-100426-blog-item-content p {
  margin: 0;
}

.dmrs-web-thm-100426-blog-item-btn .dmrs-web-thm-100426-redmore-btn:hover {
  color: var(--primary-color);
}

.dmrs-web-thm-100426-blog-item-btn .dmrs-web-thm-100426-redmore-btn:hover:before {
  color: var(--primary-color);
}

.dmrs-web-thm-100426-page-pagination {
  margin-top: 20px;
  text-align: center;
}

.dmrs-web-thm-100426-page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.dmrs-web-thm-100426-page-pagination ul li a,
.dmrs-web-thm-100426-page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--accent-color);
  border-radius: 10px 10px 10px 0;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 700;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-page-pagination ul li.active a,
.dmrs-web-thm-100426-page-pagination ul li a:hover {
  background: var(--accent-color);
  color: var(--white-color);
}

/************************************/
/***      21. Blog Single css	  ***/
/************************************/

.dmrs-web-thm-100426-page-single-post {
  padding: 100px 0;
}

.dmrs-web-thm-100426-post-single-meta ol li.breadcrumb-item {
  font-size: 18px;
}

.dmrs-web-thm-100426-post-single-meta ol li i {
  font-size: 16px;
  color: var(--white-color);
  margin-right: 5px;
}

.dmrs-web-thm-100426-post-image {
  position: relative;
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-post-image figure {
  display: block;
}

.dmrs-web-thm-100426-post-image figure,
.dmrs-web-thm-100426-post-image img {
  aspect-ratio: 1 / 0.50;
  object-fit: cover;
  border-radius: 30px 30px 30px 0;
}

.dmrs-web-thm-100426-post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.dmrs-web-thm-100426-post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-post-entry:after {
  content: '';
  display: block;
  clear: both;
}

.dmrs-web-thm-100426-post-entry a {
  color: var(--accent-color);
}

.dmrs-web-thm-100426-post-entry h1,
.dmrs-web-thm-100426-post-entry h2,
.dmrs-web-thm-100426-post-entry h3,
.dmrs-web-thm-100426-post-entry h4,
.dmrs-web-thm-100426-post-entry h5,
.dmrs-web-thm-100426-post-entry h6 {
  margin: 0 0 0.6em;
}

.dmrs-web-thm-100426-post-entry h1 span,
.dmrs-web-thm-100426-post-entry h2 span {
  font-weight: 400;
}

.dmrs-web-thm-100426-post-entry h1 {
  font-size: 56px;
}

.dmrs-web-thm-100426-post-entry h2 {
  font-size: 40px;
}

.dmrs-web-thm-100426-post-entry h3 {
  font-size: 40px;
}

.dmrs-web-thm-100426-post-entry h4 {
  font-size: 30px;
}

.dmrs-web-thm-100426-post-entry h5 {
  font-size: 24px;
}

.dmrs-web-thm-100426-post-entry h6 {
  font-size: 18px;
}

.dmrs-web-thm-100426-post-entry p {
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-post-entry p:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.dmrs-web-thm-100426-post-entry ol {
  margin: 0 0 30px;
}

.dmrs-web-thm-100426-post-entry ol li {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}

.dmrs-web-thm-100426-post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.dmrs-web-thm-100426-post-entry ul li {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
  margin-bottom: 15px;
}

.dmrs-web-thm-100426-post-entry ul li:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-post-entry ul ul,
.dmrs-web-thm-100426-post-entry ul ol,
.dmrs-web-thm-100426-post-entry ol ol,
.dmrs-web-thm-100426-post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.dmrs-web-thm-100426-post-entry ul ul li:last-child,
.dmrs-web-thm-100426-post-entry ul ol li:last-child,
.dmrs-web-thm-100426-post-entry ol ol li:last-child,
.dmrs-web-thm-100426-post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-post-entry blockquote {
  background: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat;
  background-position: 35px 30px;
  background-size: 60px;
  border-radius: 30px 30px 30px 0;
  padding: 30px 30px 30px 120px;
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-post-entry blockquote p {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
}

.dmrs-web-thm-100426-post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-tag-links {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-block;
}

.dmrs-web-thm-100426-post-tags .dmrs-web-thm-100426-tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 10px 10px 10px 0;
  padding: 10px 20px;
  margin-left: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-post-tags .dmrs-web-thm-100426-tag-links a:hover {
  background: var(--primary-color);
}

.dmrs-web-thm-100426-post-social-sharing {
  text-align: right;
}

.dmrs-web-thm-100426-post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dmrs-web-thm-100426-post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.dmrs-web-thm-100426-post-social-sharing ul li:last-child {
  margin-right: 0;
}

.dmrs-web-thm-100426-post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 6px 6px 6px 0;
  width: 38px;
  height: 38px;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-post-social-sharing ul li:hover a {
  background-color: var(--primary-color);
}

.dmrs-web-thm-100426-post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-post-social-sharing ul li:hover a i {
  color: var(--secondry-color);
}

/************************************/
/***      22. Team Page css 	  ***/
/************************************/

.dmrs-web-thm-100426-page-team {
  padding: 100px 0 70px;
}

/************************************/
/***    23. Team Single css 	  ***/
/************************************/

.dmrs-web-thm-100426-page-team-single {
  padding: 100px 0;
}

.dmrs-web-thm-100426-team-member-details-box {
  background-color: var(--secondary-color);
  border-radius: 30px 30px 30px 0;
  padding: 50px;
  margin-bottom: 60px;
}

.dmrs-web-thm-100426-team-member-image figure {
  display: block;
  border-radius: 30px 30px 30px 0;
}

.dmrs-web-thm-100426-team-member-image img {
  width: 100%;
  border-radius: 30px 30px 30px 0;
  aspect-ratio: 1 / 1.09;
  object-fit: cover;
}

.dmrs-web-thm-100426-team-member-details {
  height: 100%;
  margin-left: 30px;
}

.dmrs-web-thm-100426-member-detail-header {
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-member-detail-header h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}

.dmrs-web-thm-100426-member-detail-header h2 span {
  font-weight: 400;
}

.dmrs-web-thm-100426-member-detail-header p {
  text-transform: capitalize;
  color: var(--accent-color);
  margin: 0;
}

.dmrs-web-thm-100426-member-detail-content {
  margin-bottom: 40px;
}

.dmrs-web-thm-100426-member-detail-content p {
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-member-detail-content p:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-member-detail-body {
  margin-bottom: 40px;
}

.dmrs-web-thm-100426-member-detail-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dmrs-web-thm-100426-member-detail-body ul li {
  display: flex;
  margin-bottom: 25px;
}

.dmrs-web-thm-100426-member-detail-body ul li:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-member-detail-body ul li span {
  width: 25%;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.dmrs-web-thm-100426-member-social-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dmrs-web-thm-100426-member-social-list ul li {
  display: inline-block;
  margin-right: 15px;
}

.dmrs-web-thm-100426-member-social-list ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 6px 6px 6px 0;
  width: 38px;
  height: 38px;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-member-social-list ul li:hover a {
  background-color: var(--primary-color);
}

.dmrs-web-thm-100426-member-social-list ul li a i {
  font-size: 18px;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-team-member-skills {
  border: 1px solid var(--divider-color);
  border-radius: 30px 30px 30px 0;
  padding: 50px;
}

.dmrs-web-thm-100426-member-solution-title,
.dmrs-web-thm-100426-member-skills-title {
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-member-solution-title h2,
.dmrs-web-thm-100426-member-skills-title h2 {
  font-size: 40px;
}

.dmrs-web-thm-100426-team-member-skills .dmrs-web-thm-100426-skills-progress-bar {
  margin-bottom: 35px;
}

.dmrs-web-thm-100426-team-member-skills .dmrs-web-thm-100426-skills-progress-bar:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-skillbar .dmrs-web-thm-100426-skill-data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.dmrs-web-thm-100426-skillbar .dmrs-web-thm-100426-skill-data .dmrs-web-thm-100426-skill-title {
  font-weight: 500;
  color: var(--primary-color);
  text-transform: capitalize;
}

.dmrs-web-thm-100426-skillbar .dmrs-web-thm-100426-skill-data .dmrs-web-thm-100426-skill-no {
  color: var(--primary-color);
  margin-left: 20px;
}

.dmrs-web-thm-100426-skillbar .dmrs-web-thm-100426-skill-progress {
  width: 100%;
  height: 10px;
  background: var(--secondary-color);
  border-radius: 99px;
  position: relative;
}

.dmrs-web-thm-100426-skillbar .dmrs-web-thm-100426-skill-progress .dmrs-web-thm-100426-count-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--accent-color);
  border-radius: 99px;
}

.dmrs-web-thm-100426-about-member-solution {
  border: 1px solid var(--divider-color);
  border-radius: 30px 30px 30px 0;
  padding: 50px;
}

.dmrs-web-thm-100426-member-solution-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.dmrs-web-thm-100426-member-solution-list ul li {
  position: relative;
  width: 100%;
  color: var(--primary-color);
  font-weight: 500;
  text-transform: capitalize;
  padding-left: 30px;
}

.dmrs-web-thm-100426-member-solution-list ul li:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/icon-about-list.svg) no-repeat;
  background-position: left center;
  background-size: cover;
  width: 22px;
  height: 22px;
}

.dmrs-web-thm-100426-about-member-details-content {
  margin-top: 60px;
}

.dmrs-web-thm-100426-about-member-details-content p {
  margin: 0;
}

/************************************/
/***      24. Page Pricing css 	  ***/
/************************************/

.dmrs-web-thm-100426-page-pricing {
  padding: 100px 0 70px;
}

/************************************/
/***       25. FAQs Page css      ***/
/************************************/

.dmrs-web-thm-100426-page-faqs {
  padding: 100px 0;
}

.dmrs-web-thm-100426-faq-sidebar {
  position: sticky;
  top: 20px;
}

.dmrs-web-thm-100426-faq-catagery-list {
  background-color: var(--secondary-color);
  border-radius: 30px 30px 30px 0;
  padding: 30px;
  margin-bottom: 40px;
}

.dmrs-web-thm-100426-faq-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dmrs-web-thm-100426-faq-catagery-list ul li {
  margin-bottom: 20px;
}

.dmrs-web-thm-100426-faq-catagery-list ul li:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-faq-catagery-list ul li a {
  display: block;
  position: relative;
  background-color: var(--white-color);
  color: var(--text-color);
  border-radius: 14px;
  text-transform: capitalize;
  padding: 15px;
  transition: all 0.3s ease-in-out
}

.dmrs-web-thm-100426-faq-catagery-list ul li:hover a {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.dmrs-web-thm-100426-faq-catagery-list ul li a::after {
  content: '\f061';
  font-family: 'FontAwesome';
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: normal;
  color: var(--primary-color);
  width: 18px;
  height: 18px;
  transition: all 0.3s ease-in-out;
}

.dmrs-web-thm-100426-faq-catagery-list ul li:hover a::after {
  color: var(--white-color);
}

.dmrs-web-thm-100426-page-faqs-catagery {
  margin-left: 30px;
}

.dmrs-web-thm-100426-page-faqs .dmrs-web-thm-100426-page-faq-accordion {
  margin-bottom: 60px;
}

.dmrs-web-thm-100426-page-faqs .dmrs-web-thm-100426-page-faq-accordion:last-child {
  margin-bottom: 0;
}

.dmrs-web-thm-100426-page-faqs .dmrs-web-thm-100426-faq-accordion-title {
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-page-faqs .dmrs-web-thm-100426-faq-accordion-title h2 {
  font-size: 40px;
}

/************************************/
/***    26. Contact us Page css   ***/
/************************************/

.dmrs-web-thm-100426-page-contact-us {
  padding: 100px 0;
}

.dmrs-web-thm-100426-contact-information .dmrs-web-thm-100426-section-title {
  margin-bottom: 40px;
}

.dmrs-web-thm-100426-contact-info-list {
  margin-bottom: 40px;
}

.dmrs-web-thm-100426-contact-list-item {
  display: flex;
  align-items: center;
}

.dmrs-web-thm-100426-contact-info-list .dmrs-web-thm-100426-contact-list-item .dmrs-web-thm-100426-icon-box img {
  max-width: 24px;
}

.dmrs-web-thm-100426-contact-info-list .dmrs-web-thm-100426-contact-list-item .dmrs-web-thm-100426-icon-box {
  margin-right: 16px;
}

.dmrs-web-thm-100426-contact-list-content {
  width: calc(100% - 40px);
}

.dmrs-web-thm-100426-contact-list-item .dmrs-web-thm-100426-contact-list-content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  margin: 0;
}

.dmrs-web-thm-100426-contact-cta-box {
  position: relative;
}

.dmrs-web-thm-100426-contact-cta-image {
  position: relative;
  border-radius: 20px 20px 20px 0;
  overflow: hidden;
}

.dmrs-web-thm-100426-contact-cta-image::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 79, 76, 0) 40.47%, rgba(0, 79, 76, 0.009) 40.47%, rgba(0, 79, 76, 0.9) 91.67%);
  z-index: 1;
}

.dmrs-web-thm-100426-contact-cta-image img {
  aspect-ratio: 1 / 0.56;
  object-fit: cover;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-contact-info-box {
  position: absolute;
  top: 60px;
  left: 60px;
  right: 60px;
  display: inline-block;
  max-width: 280px;
  z-index: 2;
}

.dmrs-web-thm-100426-contact-cta-box:hover figure img {
  transform: scale(1.05);
}

.dmrs-web-thm-100426-contact-info-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.dmrs-web-thm-100426-contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dmrs-web-thm-100426-contact-info-item .dmrs-web-thm-100426-icon-box img {
  max-width: 40px;
}

.dmrs-web-thm-100426-contact-info-item .dmrs-web-thm-100426-icon-box {
  margin-right: 20px;
}

.dmrs-web-thm-100426-contact-info-item .dmrs-web-thm-100426-contact-info-content {
  width: calc(100% - 60px);
}

.dmrs-web-thm-100426-contact-info-item .dmrs-web-thm-100426-contact-info-content p {
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 5px;
}

.dmrs-web-thm-100426-contact-info-item .dmrs-web-thm-100426-contact-info-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
}

.dmrs-web-thm-100426-contact-us-form {
  background-color: var(--secondary-color);
  padding: 50px;
  border-radius: 30px 30px 30px 0;
  margin-left: 30px;
}

.dmrs-web-thm-100426-contact-us-form form .form-control {
  font-size: 15px;
  line-height: normal;
  background-color: var(--white-color);
  color: var(--text-color);
  border-radius: 15px 15px 15px 0;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 20px;
}

.dmrs-web-thm-100426-contact-us-form form .form-control::placeholder {
  color: var(--text-color);
  text-transform: capitalize;
}

.dmrs-web-thm-100426-contact-us-form form .dmrs-web-thm-100426-contact-form-btn .dmrs-web-thm-100426-btn-default {
  width: 100%;
  justify-content: center;
}

.dmrs-web-thm-100426-contact-form-btn .dmrs-web-thm-100426-btn-default:hover {
  background-color: var(--primary-color);
}

.dmrs-web-thm-100426-contact-us-form form .dmrs-web-thm-100426-contact-form-btn .dmrs-web-thm-100426-btn-default::before {
  display: none;
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-google-map .container-fluid {
  padding: 0;
}

.dmrs-web-thm-100426-google-map-iframe {
  height: 600px;
}

.dmrs-web-thm-100426-google-map-iframe iframe {
  width: 100%;
  height: 600px;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
}

.dmrs-web-thm-100426-google-map-iframe:hover iframe {
  filter: grayscale(0);
}

/************************************/
/*** 	   27. 404 Page css       ***/
/************************************/

.dmrs-web-thm-100426-error-page {
  padding: 100px 0;
}

.dmrs-web-thm-100426-error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-error-page-image img {
  max-width: 50%;
}

.dmrs-web-thm-100426-error-page .dmrs-web-thm-100426-error-page-content {
  text-align: center;
}

.dmrs-web-thm-100426-error-page-content-heading {
  margin-bottom: 30px;
}

.dmrs-web-thm-100426-error-page-content-heading h2 {
  font-size: 40px;
  cursor: none;
}

.dmrs-web-thm-100426-error-page-content-heading h2 span {
  font-weight: 700;
  color: var(--accent-color);
}

.dmrs-web-thm-100426-error-page-content-body p {
  margin-bottom: 30px;
}

/************************************/
/***      28. Responsive css	  ***/
/************************************/

@media only screen and (max-width: 1024px) {

  .dmrs-web-thm-100426-main-menu ul li {
    margin: 0;
  }
}

@media only screen and (max-width: 991px) {

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .dmrs-web-thm-100426-responsive-menu,
  .dmrs-web-thm-100426-navbar-toggle {
    display: block;
  }

  .dmrs-web-thm-100426-section-row {
    margin-bottom: 60px;
  }

  .dmrs-web-thm-100426-section-row .dmrs-web-thm-100426-section-title {
    max-width: 100%;
  }

  .dmrs-web-thm-100426-section-title {
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-section-title p {
    margin-top: 15px;
  }

  .dmrs-web-thm-100426-section-title h1 {
    font-size: 44px;
  }

  .dmrs-web-thm-100426-section-title h2 {
    font-size: 34px;
  }

  .dmrs-web-thm-100426-hero {
    padding: 90px 0;
  }

  .dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video.dmrs-web-thm-100426-hero-slider-layout .dmrs-web-thm-100426-hero-slide {
    padding: 90px 0;
  }

  .dmrs-web-thm-100426-hero.dmrs-web-thm-100426-hero-video.dmrs-web-thm-100426-hero-slider-layout .dmrs-web-thm-100426-hero-pagination {
    bottom: 30px;
  }

  .dmrs-web-thm-100426-hero-btn {
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-about-us {
    padding: 50px 0;
  }

  .dmrs-web-thm-100426-about-image {
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-about-img {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding-right: 0px;
  }

  .dmrs-web-thm-100426-about-content {
    margin-left: 0px;
  }

  .dmrs-web-thm-100426-about-content-list ul li {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-about-content-counter {
    padding: 30px;
  }

  .dmrs-web-thm-100426-about-counter {
    margin-bottom: 5px;
  }

  .dmrs-web-thm-100426-about-counter h2 {
    font-size: 26px;
  }

  .dmrs-web-thm-100426-our-services {
    padding: 50px 0 0px;
    background-size: auto;
  }

  .dmrs-web-thm-100426-service-item {
    padding: 30px;
  }

  .dmrs-web-thm-100426-service-item .dmrs-web-thm-100426-icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-service-item .dmrs-web-thm-100426-icon-box img {
    max-width: 32px;
  }

  .dmrs-web-thm-100426-service-content {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-why-choose-us {
    padding: 25px 0 50px;
  }

  .dmrs-web-thm-100426-why-choose-content {
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-why-choose-body {
    gap: 15px 30px;
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-why-choose-item {
    padding-bottom: 15px;
  }

  .dmrs-web-thm-100426-why-choose-images {
    background-size: 25% auto;
    padding: 0 0 50px 80px;
  }

  .dmrs-web-thm-100426-why-choose-img {
    position: relative;
    padding: 30px 30px 30px 0;
  }

  .dmrs-web-thm-100426-how-it-work {
    padding: 50px 0 110px;
  }

  .dmrs-web-thm-100426-how-work-item {
    padding: 20px 20px 50px 20px;
  }

  .dmrs-web-thm-100426-how-it-work .col-lg-3:nth-child(even) .dmrs-web-thm-100426-how-work-item {
    padding: 50px 20px 20px 20px;
  }

  .dmrs-web-thm-100426-how-it-work .col-lg-3:nth-child(even) .dmrs-web-thm-100426-how-work-item::before {
    top: auto;
    left: 0;
    bottom: -50%;
    background: url(../images/how-work-box-arrow-2.svg);
    transform: translateY(10%) rotate(160deg);
  }

  .dmrs-web-thm-100426-our-features {
    padding: 25px 0 50px;
  }

  .dmrs-web-thm-100426-our-features .col-lg-3:nth-child(2n + 2) .dmrs-web-thm-100426-features-item::before {
    display: none;
  }

  .dmrs-web-thm-100426-features-content h3 {
    margin-bottom: 15px;
  }

  .dmrs-web-thm-100426-our-counter .row {
    padding: 0 15px;
  }

  .dmrs-web-thm-100426-our-counter-box {
    gap: 30px;
    margin-top: 0px;
    padding-top: 30px;
  }

  .dmrs-web-thm-100426-counter-item {
    width: calc(20% - 24px);
  }

  .dmrs-web-thm-100426-counter-item::before {
    right: -15px;
  }

  .dmrs-web-thm-100426-counter-item h2 {
    font-size: 26px;
    margin-bottom: 5px;
  }

  .dmrs-web-thm-100426-counter-item p {
    font-size: 13px;
  }

  .dmrs-web-thm-100426-cta-box {
    padding: 50px 0 160px;
  }

  .dmrs-web-thm-100426-cta-box-images {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-cta-box-img img {
    aspect-ratio: 1 / 0.7;
  }

  .dmrs-web-thm-100426-cta-box-btn::before {
    transform: translateX(20%);
  }

  .dmrs-web-thm-100426-our-pricing {
    padding: 25px 0 25px;
  }

  .dmrs-web-thm-100426-pricing-item {
    padding: 30px;
  }

  .dmrs-web-thm-100426-pricing-header {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-pricing-header h2 {
    font-size: 42px;
    padding: 10px 20px;
  }

  .dmrs-web-thm-100426-pricing-header h2 sub {
    font-size: 16px;
  }

  .dmrs-web-thm-100426-pricing-body {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .dmrs-web-thm-100426-pricing-title {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-support-team {
    padding: 50px 0;
  }

  .dmrs-web-thm-100426-support-team-images {
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-support-team-image img {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
  }

  .dmrs-web-thm-100426-our-faqs {
    padding: 50px 0;
  }

  .dmrs-web-thm-100426-our-faqs-content {
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-faqs-content-list {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .dmrs-web-thm-100426-faqs-content-list h3 {
    margin-bottom: 10px;
  }

  .dmrs-web-thm-100426-our-faq-section .accordion-header .accordion-button {
    padding: 15px 45px 15px 15px;
  }

  .dmrs-web-thm-100426-our-faq-section .accordion-item .accordion-body {
    padding: 15px 45px 15px 15px;
  }

  .dmrs-web-thm-100426-our-faq-section .accordion-item .accordion-button::after,
  .dmrs-web-thm-100426-our-faq-section .accordion-item .accordion-button.collapsed::after {
    right: 15px;
  }

  .dmrs-web-thm-100426-our-testimonial {
    padding: 50px 0 110px;
  }

  .dmrs-web-thm-100426-our-testimonial-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-testimonial-slider {
    padding: 100px 0;
  }

  .dmrs-web-thm-100426-testimonial-slider .swiper {
    padding: 30px;
  }

  .dmrs-web-thm-100426-testimonial-header {
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-testimonial-btn {
    top: -70px;
  }

  .dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-next,
  .dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-prev {
    width: 40px;
    height: 40px;
  }

  .dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-next::before,
  .dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-button-prev::before {
    font-size: 16px;
  }

  .dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-pagination {
    bottom: -80px;
  }

  .dmrs-web-thm-100426-our-blog {
    padding: 25px 0 50px;
  }

  .dmrs-web-thm-100426-highlighted-blog-post {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-highlighted-blog-featured-img img {
    aspect-ratio: 1 / 0.7;
  }

  .dmrs-web-thm-100426-highlighted-blog-body {
    max-width: 100%;
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  .dmrs-web-thm-100426-article-post .dmrs-web-thm-100426-article-featured-image img {
    aspect-ratio: 1 / 0.7;
  }

  .dmrs-web-thm-100426-main-footer {
    padding: 40px 0 0;
  }

  .dmrs-web-thm-100426-footer-newsletter-box {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .dmrs-web-thm-100426-footer-newsletter-item {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-footer-newsletter-item-content h3 {
    font-size: 22px;
  }

  .dmrs-web-thm-100426-footer-newsletter-form .dmrs-web-thm-100426-form-group .form-control {
    width: 75%;
  }

  .dmrs-web-thm-100426-about-footer {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-footer-logo {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-footer-links {
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-footer-links h3 {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-footer-copyright {
    padding: 20px 0;
    margin-top: 0px;
  }

  .dmrs-web-thm-100426-page-header {
    padding: 100px 0;
  }

  .dmrs-web-thm-100426-page-header-box h1 {
    font-size: 44px;
    margin-bottom: 10px;
  }

  .dmrs-web-thm-100426-vision-mission {
    padding: 50px 0 25px;
  }

  .dmrs-web-thm-100426-vision-mission-box {
    padding: 50px;
  }

  .dmrs-web-thm-100426-vision-mission-nav {
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-vision-mission-nav ul li .nav-link {
    padding: 12px 25px;
  }

  .dmrs-web-thm-100426-vision-image {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-vision-mission-content {
    margin-left: 0px;
  }

  .dmrs-web-thm-100426-vision-mission-content-title {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-vision-mission-content-list ul li {
    margin-bottom: 20px;
    padding-left: 30px;
  }

  .dmrs-web-thm-100426-vision-mission-content-list ul li::before {
    width: 20px;
    height: 20px;
  }

  .dmrs-web-thm-100426-our-team {
    padding: 50px 0 0px;
    background-size: auto;
  }

  .dmrs-web-thm-100426-team-image img {
    aspect-ratio: 1 / 0.9;
  }

  .dmrs-web-thm-100426-team-content {
    padding: 15px;
  }

  .dmrs-web-thm-100426-our-testimonial.dmrs-web-thm-100426-about-testimonial {
    padding: 25px 0 50px;
  }

  .dmrs-web-thm-100426-page-services {
    padding: 50px 0 20px;
  }

  .dmrs-web-thm-100426-our-faqs.dmrs-web-thm-100426-service-faqs {
    padding: 25px 0 50px;
  }

  .dmrs-web-thm-100426-page-service-single {
    padding: 50px 0;
  }

  .dmrs-web-thm-100426-service-sidebar {
    position: initial;
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-service-catagery-list {
    padding: 30px;
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-service-catagery-list h3 {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-sidebar-cta-box {
    padding: 30px;
  }

  .dmrs-web-thm-100426-cta-content {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-cta-content h3 {
    margin-bottom: 10px;
  }

  .dmrs-web-thm-100426-service-featured-image {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-service-entry {
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-service-entry h2 {
    font-size: 34px;
  }

  .dmrs-web-thm-100426-service-policy {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-service-policy-item.dmrs-web-thm-100426-policy-box-1 {
    padding: 0 20px 20px 0;
  }

  .dmrs-web-thm-100426-service-policy-item.dmrs-web-thm-100426-policy-box-2 {
    padding: 0 0 20px 20px;
  }

  .dmrs-web-thm-100426-service-policy-item.dmrs-web-thm-100426-policy-box-3 {
    padding: 20px 20px 20px 0;
  }

  .dmrs-web-thm-100426-service-policy-item.dmrs-web-thm-100426-policy-box-4 {
    padding: 20px 0 20px 20px;
  }

  .dmrs-web-thm-100426-service-policy-item:nth-last-of-type(-n + 2) {
    padding-bottom: 0;
  }

  .dmrs-web-thm-100426-service-features {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-policy-item-title {
    margin-bottom: 10px;
  }

  .dmrs-web-thm-100426-service-features-box {
    padding: 30px;
  }

  .dmrs-web-thm-100426-service-features-content h3 {
    margin-bottom: 5px;
  }

  .dmrs-web-thm-100426-service-entry ul {
    gap: 15px;
  }

  .dmrs-web-thm-100426-service-entry ul li:before {
    width: 20px;
    height: 20px;
  }

  .dmrs-web-thm-100426-page-blog {
    padding: 50px 0;
  }

  .dmrs-web-thm-100426-blog-item {
    height: calc(100% - 30px);
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-blog-item-meta {
    top: 20px;
    left: 20px;
  }

  .dmrs-web-thm-100426-blog-item-body {
    padding: 20px;
  }

  .dmrs-web-thm-100426-blog-item-content {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .dmrs-web-thm-100426-page-pagination {
    margin-top: 10px;
  }

  .dmrs-web-thm-100426-page-single-post {
    padding: 50px 0;
  }

  .dmrs-web-thm-100426-post-image {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-post-entry blockquote {
    background-position: 30px 25px;
    background-size: 50px;
    padding: 25px 25px 25px 90px;
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-post-entry blockquote p {
    font-size: 18px;
  }

  .dmrs-web-thm-100426-post-entry h2 {
    font-size: 34px;
  }

  .dmrs-web-thm-100426-post-entry ul li {
    font-size: 16px;
  }

  .dmrs-web-thm-100426-post-tag-links {
    padding: 0 0px;
  }

  .dmrs-web-thm-100426-post-tags {
    margin-bottom: 10px;
  }

  .dmrs-web-thm-100426-post-social-sharing ul {
    text-align: left;
  }

  .dmrs-web-thm-100426-post-tags .dmrs-web-thm-100426-tag-links a {
    font-size: 16px;
    padding: 8px 15px;
  }

  .dmrs-web-thm-100426-page-team {
    padding: 50px 0 20px;
  }

  .dmrs-web-thm-100426-page-team-single {
    padding: 50px 0;
  }

  .dmrs-web-thm-100426-team-member-details-box {
    padding: 30px;
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-team-member-image {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-team-member-image img {
    aspect-ratio: 1 / 0.9;
  }

  .dmrs-web-thm-100426-team-member-details {
    margin-left: 0px;
  }

  .dmrs-web-thm-100426-member-detail-header h2 {
    font-size: 34px;
  }

  .dmrs-web-thm-100426-member-detail-content {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-member-detail-body {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-member-detail-body ul li {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-team-member-skills {
    padding: 30px;
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-member-solution-title,
  .dmrs-web-thm-100426-member-skills-title {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-member-solution-title h2,
  .dmrs-web-thm-100426-member-skills-title h2 {
    font-size: 34px;
  }

  .dmrs-web-thm-100426-team-member-skills .dmrs-web-thm-100426-skills-progress-bar {
    margin-bottom: 25px;
  }

  .dmrs-web-thm-100426-about-member-solution {
    padding: 30px;
  }

  .dmrs-web-thm-100426-member-solution-list ul {
    gap: 20px;
  }

  .dmrs-web-thm-100426-about-member-details-content {
    margin-top: 40px;
  }

  .dmrs-web-thm-100426-page-pricing {
    padding: 50px 0 20px;
  }

  .dmrs-web-thm-100426-page-faqs {
    padding: 50px 0;
  }

  .dmrs-web-thm-100426-faq-sidebar {
    position: initial;
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-faq-catagery-list {
    padding: 30px;
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-page-faqs-catagery {
    margin-left: 0px;
  }

  .dmrs-web-thm-100426-page-faqs .dmrs-web-thm-100426-page-faq-accordion {
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-page-faqs .dmrs-web-thm-100426-faq-accordion-title {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-page-faqs .dmrs-web-thm-100426-faq-accordion-title h2 {
    font-size: 34px;
  }

  .dmrs-web-thm-100426-page-contact-us {
    padding: 50px 0;
  }

  .dmrs-web-thm-100426-contact-information {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-contact-us-form {
    padding: 30px;
    margin-left: 0px;
  }

  .dmrs-web-thm-100426-contact-info-box {
    top: 40px;
    left: 40px;
    right: 40px;
  }

  .dmrs-web-thm-100426-contact-info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .dmrs-web-thm-100426-google-map-iframe,
  .dmrs-web-thm-100426-google-map-iframe iframe {
    height: 400px;
  }

  .dmrs-web-thm-100426-error-page {
    padding: 50px 0;
  }

  .dmrs-web-thm-100426-error-page-image {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-error-page-image img {
    max-width: 80%;
  }

  .dmrs-web-thm-100426-error-page-content-heading {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-error-page-content-heading h2 {
    font-size: 34px;
  }

  .dmrs-web-thm-100426-error-page-content-body p {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {

  .dmrs-web-thm-100426-topbar-info-content {
    display: none;
  }

  .dmrs-web-thm-100426-topbar-social-links {
    text-align: center;
  }

  .dmrs-web-thm-100426-topbar-social-links ul li {
    margin-right: 10px;
  }

  .dmrs-web-thm-100426-topbar-social-links ul li a i {
    font-size: 18px;
  }

  .dmrs-web-thm-100426-section-row {
    margin-bottom: 40px;
  }

  .dmrs-web-thm-100426-section-title {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-section-title p {
    margin-top: 15px;
  }

  .dmrs-web-thm-100426-section-title h1 {
    font-size: 30px;
  }

  .dmrs-web-thm-100426-section-title h2 {
    font-size: 28px;
  }

  .dmrs-web-thm-100426-hero-btn {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-hero-btn .dmrs-web-thm-100426-btn-default {
    margin-right: 5px;
    margin-bottom: 15px;
  }

  .dmrs-web-thm-100426-hero-btn .dmrs-web-thm-100426-btn-default.dmrs-web-thm-100426-btn-highlighted {
    margin: 0px;
  }

  .dmrs-web-thm-100426-company-support-item {
    width: 100%;
  }

  .dmrs-web-thm-100426-about-list-btn {
    display: block;
    height: auto;
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-about-content-counter {
    padding: 20px;
  }

  .dmrs-web-thm-100426-about-counter-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .dmrs-web-thm-100426-about-counter h2 {
    font-size: 22px;
  }

  .dmrs-web-thm-100426-about-counter-content p {
    font-size: 16px;
  }

  .dmrs-web-thm-100426-about-image {
    padding-bottom: 30px;
  }

  .dmrs-web-thm-100426-about-img {
    max-width: 100%;
  }

  .dmrs-web-thm-100426-company-processing-box {
    right: 90px;
  }

  .dmrs-web-thm-100426-company-processing-box .dmrs-web-thm-100426-icon-box {
    width: 30px;
    height: 30px;
  }

  .dmrs-web-thm-100426-company-processing-box .dmrs-web-thm-100426-icon-box img {
    max-width: 20px;
  }

  .dmrs-web-thm-100426-company-processing-content {
    width: calc(100% - 40px);
  }

  .dmrs-web-thm-100426-about-company-testimonial {
    right: 50%;
    transform: translate(50%, 0%);
  }

  .dmrs-web-thm-100426-about-testimonial-slider {
    padding: 10px 15px;
    max-width: 270px;
  }

  .dmrs-web-thm-100426-about-testimonial-item p {
    font-size: 13px;
  }

  .dmrs-web-thm-100426-service-item {
    padding: 20px;
  }

  .dmrs-web-thm-100426-why-choose-body {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-why-choose-item .dmrs-web-thm-100426-icon-box {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .dmrs-web-thm-100426-why-choose-item-content {
    width: calc(100% - 50px);
  }

  .dmrs-web-thm-100426-why-choose-images {
    background-size: 35% auto;
    padding: 0 0 35px 0px;
  }

  .dmrs-web-thm-100426-why-choose-img {
    padding: 20px 20px 20px 0;
  }

  .dmrs-web-thm-100426-why-choose-img::before {
    width: 140px;
  }

  .dmrs-web-thm-100426-why-choose-item-content h3 {
    font-size: 16px;
  }

  .dmrs-web-thm-100426-how-it-work {
    background-size: 100% auto;
    padding: 50px 0;
  }

  .dmrs-web-thm-100426-how-work-item {
    margin-bottom: 50px;
  }

  .dmrs-web-thm-100426-how-work-item::before {
    display: none;
  }

  .dmrs-web-thm-100426-how-it-work .col-lg-3:nth-child(even) .dmrs-web-thm-100426-how-work-item {
    padding: 20px 20px 50px 20px;
    margin-top: 0px;
  }

  .dmrs-web-thm-100426-how-it-work .col-lg-3:nth-child(even) .dmrs-web-thm-100426-how-work-no {
    bottom: 0;
    top: auto;
    transform: translate(-50%, 50%);
  }

  .dmrs-web-thm-100426-features-item .dmrs-web-thm-100426-icon-box {
    width: 60px;
    height: 60px;
  }

  .dmrs-web-thm-100426-features-item .dmrs-web-thm-100426-icon-box img {
    max-width: 32px;
  }

  .dmrs-web-thm-100426-our-counter-box {
    justify-content: center;
  }

  .dmrs-web-thm-100426-counter-item {
    width: calc(33.33% - 20px);
  }

  .dmrs-web-thm-100426-counter-item:nth-child(3n + 3):before {
    display: none;
  }

  .dmrs-web-thm-100426-cta-box {
    padding: 50px 0 70px;
    background-size: 100% auto;
  }

  .dmrs-web-thm-100426-cta-box-images {
    padding: 0 0 50px 0;
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-cta-box-img {
    padding: 15px 0 0 15px;
  }

  .dmrs-web-thm-100426-cta-box-img::before {
    width: 200px;
    height: 180px;
  }

  .dmrs-web-thm-100426-cta-contact-circle {
    right: 50%;
    transform: translateX(50%);
  }

  .dmrs-web-thm-100426-cta-contact-circle img {
    max-width: 100px;
  }

  .dmrs-web-thm-100426-cta-box-btn::before {
    right: 0;
    transform: translateX(0%);
    width: 100px;
  }

  @keyframes ctamoveobject {
    50% {
      right: 20px;
    }
  }

  .dmrs-web-thm-100426-pricing-item {
    padding: 20px;
  }

  .dmrs-web-thm-100426-pricing-header h2 {
    font-size: 30px;
  }

  .dmrs-web-thm-100426-support-team-image {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-support-team-images figure {
    margin-left: -20px;
  }

  .dmrs-web-thm-100426-support-team-contact {
    gap: 30px;
  }

  .dmrs-web-thm-100426-support-team-item {
    width: 100%;
  }

  .dmrs-web-thm-100426-support-team-item:nth-child(odd) {
    flex-direction: initial;
    text-align: left;
  }

  .dmrs-web-thm-100426-support-team-item .dmrs-web-thm-100426-icon-box {
    width: 50px;
    height: 50px;
  }

  .dmrs-web-thm-100426-support-team-item:nth-child(odd) .dmrs-web-thm-100426-icon-box {
    margin-left: 0px;
    margin-right: 20px;
  }

  .dmrs-web-thm-100426-support-team-content {
    width: calc(100% - 70px);
  }

  .dmrs-web-thm-100426-support-team-content p {
    margin-bottom: 5px;
  }

  .dmrs-web-thm-100426-our-faq-section .accordion-header .accordion-button {
    font-size: 16px;
  }

  .dmrs-web-thm-100426-our-faq-section .accordion-item .accordion-button::after,
  .dmrs-web-thm-100426-our-faq-section .accordion-item .accordion-button.collapsed::after {
    font-size: 12px;
    width: 20px;
    height: 20px;
  }

  .dmrs-web-thm-100426-our-faq-section .accordion-item .accordion-body {
    padding: 15px;
  }

  .dmrs-web-thm-100426-testimonial-slider::before {
    width: 80%;
  }

  .dmrs-web-thm-100426-testimonial-slider .swiper {
    padding: 20px;
  }

  .dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-box::before {
    top: 10px;
  }

  .dmrs-web-thm-100426-testimonial-slider .dmrs-web-thm-100426-testimonial-box::after {
    top: 20px;
  }

  .dmrs-web-thm-100426-testimonial-header {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-highlighted-blog-featured-img img {
    aspect-ratio: 1 / 1.1;
  }

  .dmrs-web-thm-100426-highlighted-blog-content {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .dmrs-web-thm-100426-article-post {
    display: block;
  }

  .dmrs-web-thm-100426-article-post .dmrs-web-thm-100426-article-featured-image {
    width: 100%;
    height: auto;
  }

  .dmrs-web-thm-100426-article-post .dmrs-web-thm-100426-article-featured-image a {
    border-radius: 30px 30px 0 0px;
  }

  .dmrs-web-thm-100426-article-post .dmrs-web-thm-100426-article-featured-image img {
    height: auto;
    border-radius: 30px 30px 0 0px;
  }

  .dmrs-web-thm-100426-article-post-body {
    width: 100%;
    display: block;
  }

  .dmrs-web-thm-100426-main-footer {
    padding: 30px 0 0;
  }

  .dmrs-web-thm-100426-footer-newsletter-box {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .dmrs-web-thm-100426-footer-newsletter-item .dmrs-web-thm-100426-icon-box {
    margin-right: 20px;
  }

  .dmrs-web-thm-100426-footer-newsletter-item-content {
    width: calc(100% - 60px);
  }

  .dmrs-web-thm-100426-footer-newsletter-item-content h3 {
    font-size: 20px;
  }

  .dmrs-web-thm-100426-footer-newsletter-form .dmrs-web-thm-100426-form-group .dmrs-web-thm-100426-btn-default.dmrs-web-thm-100426-btn-highlighted {
    padding: 15px 20px;
  }

  .dmrs-web-thm-100426-footer-newsletter-form .dmrs-web-thm-100426-form-group .form-control {
    width: 60%;
  }

  .dmrs-web-thm-100426-footer-links {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-footer-links h3 {
    margin-bottom: 15px;
  }

  .dmrs-web-thm-100426-footer-copyright {
    padding: 15px 0;
  }

  .dmrs-web-thm-100426-footer-copyright-text {
    text-align: center;
    margin-bottom: 10px;
  }

  .dmrs-web-thm-100426-footer-social-links {
    text-align: center;
  }

  .dmrs-web-thm-100426-page-header {
    padding: 80px 0;
  }

  .dmrs-web-thm-100426-page-header-box h1 {
    font-size: 30px;
  }

  .dmrs-web-thm-100426-vision-mission-box {
    padding: 30px 15px;
  }

  .dmrs-web-thm-100426-vision-mission-nav {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-vision-mission-nav ul li {
    margin-right: 10px;
  }

  .dmrs-web-thm-100426-vision-mission-nav ul li .nav-link {
    font-size: 14px;
    padding: 8px 15px;
  }

  .dmrs-web-thm-100426-vision-mission-content-title h3 {
    font-size: 16px;
  }

  .dmrs-web-thm-100426-service-catagery-list {
    padding: 20px;
  }

  .dmrs-web-thm-100426-sidebar-cta-box {
    padding: 20px;
  }

  .dmrs-web-thm-100426-service-featured-image img {
    aspect-ratio: 1 / 0.7;
  }

  .dmrs-web-thm-100426-service-entry {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-service-entry h2 {
    font-size: 28px;
  }

  .dmrs-web-thm-100426-service-entry-list {
    margin-bottom: 20px;
  }

  .dmrs-web-thm-100426-service-policy-item {
    width: 100%;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .dmrs-web-thm-100426-service-policy-item:nth-last-of-type(-n + 2) {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--divider-color);
  }

  .dmrs-web-thm-100426-service-policy-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .dmrs-web-thm-100426-service-policy-item.dmrs-web-thm-100426-policy-box-1 {
    border-right: none;
    padding-right: 0;
  }

  .dmrs-web-thm-100426-service-policy-item.dmrs-web-thm-100426-policy-box-2 {
    padding-left: 0;
  }

  .dmrs-web-thm-100426-service-policy-item.dmrs-web-thm-100426-policy-box-3 {
    padding-top: 0;
    padding-right: 0;
    border-right: none;
  }

  .dmrs-web-thm-100426-service-policy-item.dmrs-web-thm-100426-policy-box-4 {
    padding-top: 0;
    padding-left: 0;
  }

  .dmrs-web-thm-100426-service-features-box {
    padding: 20px;
    gap: 20px;
  }

  .dmrs-web-thm-100426-service-features-item {
    width: 100%;
  }

  .dmrs-web-thm-100426-post-image figure,
  .dmrs-web-thm-100426-post-image img {
    aspect-ratio: 1 / 0.70;
  }

  .dmrs-web-thm-100426-post-entry blockquote {
    background-position: 20px 20px;
    background-size: 35px;
    padding: 55px 20px 20px 20px;
  }

  .dmrs-web-thm-100426-post-entry h2 {
    font-size: 28px;
  }

  .dmrs-web-thm-100426-tag-links {
    font-size: 20px;
  }

  .dmrs-web-thm-100426-team-member-details-box {
    padding: 20px;
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-team-member-image img {
    aspect-ratio: 1 / 1.09;
  }

  .dmrs-web-thm-100426-member-detail-header {
    margin-bottom: 15px;
  }

  .dmrs-web-thm-100426-member-detail-header h2 {
    font-size: 28px;
  }

  .dmrs-web-thm-100426-member-detail-body ul li {
    display: block;
  }

  .dmrs-web-thm-100426-member-detail-body ul li span {
    font-size: 16px;
  }

  .dmrs-web-thm-100426-team-member-skills {
    padding: 20px;
  }

  .dmrs-web-thm-100426-member-solution-title h2,
  .dmrs-web-thm-100426-member-skills-title h2 {
    font-size: 28px;
  }

  .dmrs-web-thm-100426-about-member-solution {
    padding: 20px;
  }

  .dmrs-web-thm-100426-member-solution-list ul li:before {
    width: 20px;
    height: 20px;
  }

  .dmrs-web-thm-100426-about-member-details-content {
    margin-top: 30px;
  }

  .dmrs-web-thm-100426-faq-catagery-list {
    padding: 20px;
  }

  .dmrs-web-thm-100426-page-faqs .dmrs-web-thm-100426-page-faq-accordion {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-page-faqs .dmrs-web-thm-100426-faq-accordion-title h2 {
    font-size: 28px;
  }

  .dmrs-web-thm-100426-contact-information .dmrs-web-thm-100426-section-title {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-contact-info-list {
    margin-bottom: 30px;
  }

  .dmrs-web-thm-100426-contact-cta-image img {
    aspect-ratio: 1 / 0.8;
  }

  .dmrs-web-thm-100426-contact-info-box {
    top: 20px;
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .dmrs-web-thm-100426-contact-info-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .dmrs-web-thm-100426-contact-info-item .dmrs-web-thm-100426-icon-box {
    margin-right: 16px;
  }

  .dmrs-web-thm-100426-contact-info-item .dmrs-web-thm-100426-icon-box img {
    max-width: 34px;
  }

  .dmrs-web-thm-100426-contact-info-item .dmrs-web-thm-100426-contact-info-content {
    width: calc(100% - 50px);
  }

  .dmrs-web-thm-100426-contact-us-form {
    padding: 20px;
  }

  .dmrs-web-thm-100426-contact-us-form form .form-control {
    padding: 15px;
  }

  .dmrs-web-thm-100426-google-map-iframe,
  .dmrs-web-thm-100426-google-map-iframe iframe {
    height: 350px;
  }

  .dmrs-web-thm-100426-error-page-content-heading h2 {
    font-size: 28px;
  }
}
