@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  outline: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::-moz-selection {
  background-color: var(--theme-secondary);
  color: var(--theme-dark);
}

*::selection {
  background-color: var(--theme-secondary);
  color: var(--theme-dark);
}

:root {
  --box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);

  --theme-primary: #063c6e;
  --theme-secondary: #f0a910;
  --theme-dark: #1b1e21;
  --theme-gray: #3f4242;
  --theme-white: #ffffff;
  --theme-white-opacity-50: rgba(255 255 255 / 50%);
  --theme-white-opacity-40: rgba(255 255 255 / 40%);
  --theme-white-opacity-30: rgba(255 255 255 / 30%);
  --theme-white-opacity-25: rgba(255 255 255 / 25%);

  --theme-heading-font: 'playfair Display', times, Serif;
  --theme-body-font: 'inter' arial, sans-serif;
  --theme-site-width: 1200px;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--theme-body-font);
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--theme-heading-font);
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

.header {
  position: absolute;
  width: 100%;
  z-index: 7;
  background-color: var(--theme-primary);
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  max-width: var(--theme-site-width);
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.header .inner .logo,
.header .inner .cta {
  width: 25%;
}

.header .inner .logo img {
  width: 3.525rem;
}

.header .inner .nav {
  width: 80%;
  display: flex;
  justify-content: center;
}

.header .inner .nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
}

.header .inner .nav ul > * + * {
  margin-left: 2rem;
}

.header .inner .nav ul li {
  margin-top: -1.5rem;
  list-style: none;
  padding: 0;
}

header .inner .nav ul li a {
  color: var(--theme-white-opacity-50);
}

.header .inner .nav ul li a:focus,
.header .inner .nav ul li a:hover {
  color: var(--theme-secondary);
}

.header .inner .nav ul li.active a {
  color: var(--theme-white);
  position: relative;
}

/* .header .inner .nav ul li.active a:before {
  content: '';
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url('../Images/arrow.png');
  background-repeat: no-repeat;
  background-size: contain;
} */

.header .inner .cta {
  display: flex;
  justify-content: end;
}

.header .inner .cta .cta-btn {
  color: var(--theme-white);
  display: inline-block;
  padding: 0.7rem 1.25rem;
  border-radius: 30px;
  border: 1px solid var(--theme-white-opacity-25);
  margin-top: -2rem;
}

.header .inner .cta .cta-btn:hover {
  border-color: var(--theme-white);
}

.header .inner .cta .mobile-menu-toggle {
  display: none;
  color: var(--theme-white);
  font-size: 1.75rem;
  margin-right: -15rem;
  margin-top: -6rem;
}

/* Start Mobile Menu  */
.mobile-menu {
  padding: 30px 0;
  background-color: var(--theme-white);
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  z-index: 9997;
  height: 100vh;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.5s all cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: 0.5s all cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.5s all cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  transform: translateX(100%);
}

.mobile-menu .mobile-menu-inner {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 50px;
  height: calc(100vh - 78px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu .mobile-top {
  padding: 0 30px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu .mobile-top .mobile-text-label {
  font-size: 1rem;
}

.mobile-menu .mobile-top .mobile-close {
  font-size: 2rem;
  cursor: pointer;
}

.mobile-menu ul,
.mobile-menu ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  padding: 6px 0;
  display: block;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #666666;
}

.mobile-menu ul li a:hover {
  color: var(--theme-primary);
}

/* Start Mobile Menu Active  */
body.mobile-menu-active {
  position: relative;
}

body.mobile-menu-active:before {
  opacity: 1;
  visibility: visible;
}

body.mobile-menu-active .mobile-menu .menu-toggle i {
  font-size: 32px;
  color: var(--theme-dark);
}

body.mobile-menu-active .mobile-menu {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  transform: translateX(0%);
}

/* Start Hero */

.hero {
  padding: 2rem 0 0rem 0;
  background-color: var(--theme-primary);
  position: relative;
}

.hero .hero-inner {
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.hero .hero-inner .text-wrap {
  width: 100%;
  z-index: 1;
  background-color: var(--theme-primary);
  padding-top: 12.5rem;
  height: 130vh;
  opacity: 0.8;
}

.hero .hero-inner .text-wrap h1 {
  font-size: 3.75rem;
  color: var(--theme-white);
  line-height: 1.2;
  text-align: center;
}

.hero .hero-inner .text-wrap h3 {
  color: var(--theme-secondary);
  font-size: 1.5rem;
  opacity: 0.3;
  text-align: center;
}

.hero .hero-inner .text-wrap .intro {
  margin-bottom: 2rem;
  text-align: center;
}

.hero-inner .text-wrap .intro p {
  color: var(--theme-white-opacity-50);
  font-size: 1.3rem;
  margin-top: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-inner .text-wrap .cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-inner .text-wrap .cta-btns > * + * {
  margin-left: 1.875rem;
}

.hero .hero-inner .text-wrap .cta-btns .btn-primary {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  border-radius: 30px;
  color: var(--theme-dark);
  background-color: var(--theme-secondary);
  border: 1px solid transparent;
}

.hero .hero-inner .text-wrap .cta-btns .btn-primary:hover {
  background: transparent;
  border: 1px solid var(--theme-white);
  color: var(--theme-white);
}

.hero .hero-inner .text-wrap .cta-btns .btn-link {
  color: var(--theme-white);
  border-bottom: 1px solid transparent;
  display: inline-block;
}

.hero .hero-inner .text-wrap .cta-btns .btn-link:hover {
  opacity: 0.7;
  border-bottom: 1px solid var(--theme-white);
}

/* Slide Hero */
.hero .hero-inner .slideshow {
  position: absolute;
  width: 100%;
  padding-bottom: 10px;
  box-shadow: var(--box-shadow);
}
.hero .hero-inner .slideshow > div {
  position: absolute;

  width: 100%;
}

.hero .hero-inner .slideshow > div img {
  width: 100%;

  object-fit: cover;
  -o-object-fit: cover;
  /* height: 100vh; */
  height: 130vh;
}

/** What we Offer **/
.offer {
  padding: 0 0 10rem 0;
  position: relative;
}

.offer:before,
.offer:after {
  content: '';
  position: absolute;
  z-index: -1;
}

.offer:before {
  width: 25%;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--theme-white);
}

.offer:after {
  width: 75%;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--theme-primary);
}

.offer .inner {
  display: flex;
  flex-direction: row;
  max-width: var(--theme-site-width);
  margin: 0 auto;
  padding-top: 5rem;
  justify-content: end;
  align-items: center;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.offer .inner .img-wrap {
  width: 45%;
  left: 0;
  position: absolute;
}

.offer .inner .img-wrap:before {
  content: '';
  position: absolute;
  width: 75%;
  height: 10.625rem;
  bottom: -5rem;
  left: 0;
  background-color: var(--theme-secondary);
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.offer .inner .img-wrap img {
  width: 100%;
  height: 588px;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: top;
  -o-object-position: top;
  border-radius: 10px;
}

.offer .inner .text-wrap {
  width: 45%;
  z-index: 2;
  position: relative;
}

.offer .inner .text-wrap .text-wrap-inner h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--theme-white);
  margin-bottom: 2rem;
}

.offer .inner .text-wrap .text-wrap-inner p {
  color: var(--theme-white-opacity-40);
  margin-bottom: 2rem;
  text-align: justify;
}

.offer .inner .text-wrap .text-wrap-inner ul {
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
  list-style: none;
}

.offer .inner .text-wrap .text-wrap-inner ul li {
  position: relative;
  color: var(--theme-white);
  padding-left: 2rem;
}

.offer .inner .text-wrap .text-wrap-inner ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  background-image: url('../Images/star.svg');
  background-size: contain;
  width: 13px;
  height: 13px;
}

.offer .inner .text-wrap .text-wrap-inner .cta-btns {
  display: flex;
  align-items: center;
}

.offer .inner .text-wrap .text-wrap-inner .cta-btns > * + * {
  margin-left: 1.875rem;
}

.offer .inner .text-wrap .text-wrap-inner .cta-btns .btn-primary {
  display: inline-block;
  padding: 1rem 1.25rem;
  border-radius: 30px;
  color: var(--theme-dark);
  background-color: var(--theme-secondary);
  border: 1px solid transparent;
}

.offer .inner .text-wrap .text-wrap-inner .cta-btns .btn-primary:hover {
  background-color: transparent;
  border: 1px solid var(--theme-white);
  color: var(--theme-white);
}

.offer .inner .text-wrap .text-wrap-inner .cta-btns .btn-link {
  color: var(--theme-white);
  border-bottom: 1px solid transparent;
}

.offer .inner .text-wrap .text-wrap-inner .cta-btns .btn-link:hover {
  opacity: 0.7;
  border-bottom: 1px solid var(--theme-white);
}

/*! Start of services */
.services {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.services .services-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.services .services-inner .heading-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.125rem;
}

.services .services-inner .heading-wrap .heading-text {
  max-width: 38rem;
}

.services .services-inner .heading-wrap .heading-text h2 {
  font-size: 2.5rem;
  line-height: 1.3rem;
  color: var(--theme-dark);
  margin-bottom: 1.5rem;
}

.services .services-inner .heading-wrap .heading-text p {
  color: var(--theme-gray);
  margin-bottom: 2rem;
}

.services .services-inner .heading-wrap .cta {
  display: flex;
  justify-content: end;
}

.services .services-inner .heading-wrap .cta .btn-dark {
  display: inline-block;
  padding: 1rem 1.25rem;
  border-radius: 30px;
  color: var(--theme-white);
  background-color: var(--theme-dark);
}

.services .services-inner .heading-wrap .cta .btn-dark:hover {
  background-color: var(--theme-secondary);
  color: var(--theme-dark);
}

.services .services-inner .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem;
}

.services .services-inner .services-grid div .icon {
  margin-bottom: 0.875rem;
  position: relative;
  display: inline-block;
  box-shadow: none;
  transform: none;
}

.services .services-inner .services-grid div {
  box-shadow: var(--box-shadow);
  padding: 1.25rem;
}

.services .services-inner .services-grid div:hover {
  transform: translateY(-2px);
  box-shadow: 0.5rem 0.5rem 0.3rem rgba(0, 0, 0, 0.2);
}

.services .services-inner .services-grid div .icon img {
  box-shadow: none;
  transform: none;
  width: 4.6rem;
}

.services .services-inner .services-grid div .icon:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  z-index: -1;
  background-color: var(--theme-secondary);
}

.services .services-inner .services-grid div .icon {
  box-shadow: none;
  transform: none;
}

.services .services-inner .services-grid div h2 {
  font-size: 1.125rem;
  margin-bottom: 1.125rem;
}

.services .services-inner .services-grid div p {
  color: var(--theme-gray);
}

/* ! Why Us */
.why {
  padding-top: 2rem;
  padding-bottom: 8rem;
  position: relative;
  z-index: 1;
  background: #ddd;
}
.why .why-inner {
  max-width: var(--theme-site-width);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.why .why-inner .img-wrap {
  width: 38%;
  position: relative;
}

.why .why-inner .img-wrap > div {
  position: relative;
}

.why .why-inner .img-wrap > div .years-experience {
  position: absolute;
  top: 70px;
  transform: translateX(-50%);
  z-index: 9;
  display: inline-block;
  padding: 15px;
  border-radius: 20px;
  background-color: var(--theme-primary);
  color: var(--theme-white);
  line-height: 1;
  box-shadow: 0 50px 25px -15px rgba(0, 0, 0, 0.3);
}

.why .why-inner .img-wrap > div .years-experience > span {
  display: block;
  font-size: 20px;
}

.why .why-inner .img-wrap > div .years-experience strong {
  font-size: 30px;
}

.why .why-inner .img-wrap > div .rate-Success {
  position: absolute;
  bottom: 70px;
  right: 0;
  transform: translateX(50%);
  z-index: 9;
  display: inline-block;
  padding: 15px;
  border-radius: 20px;
  background-color: var(--theme-secondary);
  color: var(--theme-gray);
  line-height: 1;
  box-shadow: 0 50px 25px -15px rgba(0, 0, 0, 0.3);
}

.why .why-inner .img-wrap > div .rate-Success > span {
  display: block;
  font-size: 20px;
}

.why .why-inner .img-wrap > div .rate-Success > span strong {
  font-size: 30px;
}

.why .why-inner .img-wrap .img-inner {
  position: relative;
}

.why .why-inner .img-wrap .img-inner:before,
.why .why-inner .img-wrap .img-inner:after {
  content: '';
  position: absolute;
  border-bottom-right-radius: 300px;
  border-bottom-left-radius: 300px;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.why .why-inner .img-wrap .img-inner:before {
  bottom: -20px;
  left: -20px;
  border: 1px solid var(--theme-primary);
}

.why .why-inner .img-wrap .img-inner:after {
  top: -20px;
  right: -20px;
  border: 1px solid#ccc;
}

.why .why-inner .img-wrap .img-inner img {
  max-width: 100%;
  height: 530px;
  border-bottom-right-radius: 300px;
  border-bottom-left-radius: 300px;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: top;
  -o-object-position: top;
}

.why .why-inner .text-wrap {
  width: 45%;
}

.why .why-inner .text-wrap h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--theme-dark);
  margin-bottom: 1.5rem;
}

.why .why-inner .text-wrap p {
  color: var(--theme-gray);
  margin-bottom: 2rem;
  text-align: justify;
}

.why .why-inner .text-wrap ul {
  margin-bottom: 2.5rem;
  display: grid;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

.why .why-inner .text-wrap ul li {
  position: relative;
  color: var(--theme-dark);
  padding-left: 2rem;
}

.why .why-inner .text-wrap ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1rem;
  background-image: url('../Images/check.png');
  background-size: contain;
  width: 20px;
  height: 20px;
}

.why .why-inner .text-wrap .cta-btns {
  display: flex;
  align-items: center;
}

.why .why-inner .text-wrap .cta-btns > * + * {
  margin-left: 1.875rem;
}

.why .why-inner .text-wrap .cta-btns .btn-dark {
  display: inline-block;
  padding: 1rem 1.25rem;
  border-radius: 30px;
  background-color: var(--theme-dark);
  color: var(--theme-white);
}

.why .why-inner .text-wrap .cta-btns .btn-dark:hover {
  background-color: var(--theme-secondary);
  color: var(--theme-dark);
}

.why .why-inner .text-wrap .cta-btns .btn-link {
  color: var(--theme-dark);
  border-bottom: 1px solid transparent;
}

.why .why-inner .text-wrap .cta-btns .btn-link:hover {
  opacity: 0.7;
  border-bottom: 1px solid var(--theme-dark);
}

/* Start Faq Items */
.faq {
  padding: 5rem 0;
}

.faq .faq-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.faq .faq-inner h2 {
  font-size: 2rem;
  line-height: 1.3;
  color: var(--theme-dark);
  text-align: center;
  max-width: 400px;
  margin: 0 auto 5.5rem auto !important;
}

.faq .faq-inner p {
  color: var(--theme-gray);
  margin-bottom: 2rem;
}

.faq .faq-inner .faq-items {
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.faq .faq-inner .faq-items .faq-item {
  display: flex;
}

.faq .faq-inner .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0.5rem 0.5rem 0.3rem rgba(0, 0, 0, 0.2);
}

.faq .faq-inner .faq-items .faq-item > span {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  background-color: var(--theme-primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}

.faq .faq-inner .faq-items .faq-item > span i {
  font-size: 2rem;
  color: var(--theme-secondary);
}

.faq .faq-inner .faq-items .faq-item > div h3 {
  margin-bottom: 1.25rem;
}

/* CTA Starts */
.cta-section {
  padding: 5rem 0 30rem 0;
  position: relative;
  z-index: 1;
  background-color: var(--theme-secondary);
}

.cta-section .cta-inner {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.cta-section .cta-inner .contact-person-wrap {
  width: 40%;
}

.cta-section .cta-inner .contact-person-wrap .card {
  position: relative;
  max-width: 350px;
  border-bottom-right-radius: 300px;
  border-bottom-left-radius: 300px;
  z-index: 1;
}

.cta-section .cta-inner .contact-person-wrap .card:before {
  content: '';
  position: absolute;
  border-bottom-right-radius: 300px;
  border-bottom-left-radius: 300px;
  z-index: -1;
  width: 100%;
  height: 100%;
  right: -20px;
  top: 20px;
  border: 1px solid var(--theme-dark);
}

.cta-section .cta-inner .contact-person-wrap .card .person-info {
  padding: 2rem;
  background-color: var(--theme-white);
  display: flex;
  flex-direction: row;
  align-items: center;
}

.cta-section .cta-inner .contact-person-wrap .card .person-info * + * {
  margin-left: 1.5rem;
}

.cta-section .cta-inner .contact-person-wrap .card .person-info img {
  width: 120px;
  height: 120px;
  flex: 0 0 70px;
  border-radius: 50%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

.cta-section .cta-inner .contact-person-wrap .card .person-info span strong {
  display: block;
  font-family: var(--theme-heading-font);
  font-size: 1rem;
  color: var(--theme-dark);
}

.cta-section .cta-inner .contact-person-wrap .card .person-info span span {
  color: var(--theme-gray);
}

.cta-section .cta-inner .contact-person-wrap .card .person-contact-info {
  background-color: var(--theme-primary);
  padding: 3rem 3rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom-right-radius: 300px;
  border-bottom-left-radius: 300px;
}

.cta-section
  .cta-inner
  .contact-person-wrap
  .card
  .person-contact-info
  .contact-item {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: start;
}

.cta-section
  .cta-inner
  .contact-person-wrap
  .card
  .person-contact-info
  .contact-item
  > *
  + * {
  margin-left: 20px;
}

.cta-section
  .cta-inner
  .contact-person-wrap
  .card
  .person-contact-info
  .contact-item
  > span {
  flex: 0 0 30px;
  font-size: 1.7rem;
  color: var(--theme-secondary);
  position: relative;
  top: -0.4rem;
}

.cta-section
  .cta-inner
  .contact-person-wrap
  .card
  .person-contact-info
  .contact-item
  > div
  span {
  color: var(--theme-white-opacity-40);
}

.cta-section
  .cta-inner
  .contact-person-wrap
  .card
  .person-contact-info
  .contact-item
  > div
  strong {
  display: block;
  color: var(--theme-white);
  font-size: 1.1rem;
  font-family: var(--theme-body-font);
}

.cta-section .cta-inner .cta-text-wrap {
  width: 60%;
  padding-left: 3rem;
}

.cta-section .cta-inner .cta-text-wrap h2 {
  font-size: 2rem;
  line-height: 1.3;
  color: var(--theme-dark);
  margin-bottom: 1.25rem;
}

.cta-section .cta-inner .cta-text-wrap p {
  margin-bottom: 1.75rem;
}

.cta-section .cta-inner .cta-text-wrap .btn-dark {
  display: inline-block;
  padding: 1rem 1.25rem;
  border-radius: 30px;
  background-color: var(--theme-dark);
  color: var(--theme-white);
}

/* Contact Us Section */
.cont-us .try {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: var(--theme-primary);
  background-image: url('../Images/gavel-2492011_1280.jpg');
  /* background-repeat: no-repeat;
  background-size: contain; */
  opacity: 90;
}

.cont-us .try span h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  color: var(--theme-dark);
  text-align: center;
}
/* .cont-us .try span i {
  color: var(--theme-gray);
  font-size: 8rem;
  margin-top: 6rem;
  margin-left: 3rem;
} */

.cont-us .contact-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: var(--theme-white);
  margin-bottom: 3.5rem;
}

/* .cont-us .contact-page::before {
  /* content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  /* height: 100%; */
/* background-color: var(--theme-white); */
/* } */

.cont-us .contact-page .container {
  position: relative;
  min-width: 1100px;
  min-height: 550px;
  display: flex;
  z-index: 1000;
  /* background-color: var(--theme-gray); */
  margin-top: 4.5rem;
  margin-bottom: 22rem;
}

.cont-us .contact-page .container .contactInfo {
  position: absolute;
  top: 40px;
  width: 350px;
  height: calc(100% - 80px);
  background-color: var(--theme-primary);
  z-index: 1;
  padding: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--box-shadow);
}

.cont-us .contact-page .container .contactInfo h2 {
  color: var(--theme-white);
  font-size: 24px;
  font-weight: 500;
}

.cont-us .contact-page .container .contactInfo ul.info {
  position: relative;
  margin: 20px 0;
}

.cont-us .contact-page .container .contactInfo ul.info li {
  position: relative;
  list-style: none;
  display: flex;
  margin: 20px 0;
  cursor: pointer;
  align-items: flex-start;
}

.cont-us .contact-page .container .contactInfo ul.info li #loc {
  width: 200px;
  min-width: 30px;
}

.cont-us .contact-page .container .contactInfo ul.info li #loc1 {
  margin-top: 1.3rem;
}

.cont-us .contact-page .container .contactInfo ul.info .loc i {
  font-size: 1.5rem;
  max-width: 100%;
  padding: 1.5rem 1rem;
  /* filter: invert(1); */
}

.cont-us .contact-page .container .contactInfo ul.info .loc1 i {
  font-size: 1.5rem;
  max-width: 100%;
  padding: 1.5rem 1rem;
  /* filter: invert(1); */
}

.cont-us .contact-page .container .contactInfo ul.info li a {
  text-decoration: none;
  color: var(--theme-white-opacity-50);
}

.cont-us .contact-page .container .contactInfo ul.info li span {
  color: var(--theme-white);
}

.cont-us .contact-page .container .contactInfo ul.social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cont-us .contact-page .container .contactInfo ul.social li {
  list-style: none;
  margin-right: 1.5rem;
}

.cont-us .contact-page .container .contactInfo ul.social li a {
  text-decoration: none;
  color: var(--theme-white);
  font-size: 1.5rem;
}

.cont-us .contact-page .container .contactForm {
  position: absolute;
  padding: 70px 50px;
  padding-left: 250px;
  margin-left: 150px;
  width: calc(100% - 150px);
  height: 100%;
  background: var(--theme-secondary);
  box-shadow: var(--box-shadow);
}

.cont-us .contact-page .container .contactForm h2 {
  color: var(--theme-primary);
  font-size: 24px;
  font-weight: 500;
}

.cont-us .contact-page .container .contactForm .formBox {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;
}

.cont-us .contact-page .container .contactForm .formBox .inputBox {
  position: relative;
  margin-bottom: 35px;
}

.cont-us .contact-page .container .contactForm .formBox .inputBox.w50 {
  width: 47%;
}

.cont-us .contact-page .container .contactForm .formBox .inputBox.w100 {
  width: 100%;
}

.cont-us .contact-page .container .contactForm .formBox .inputBox input,
.cont-us .contact-page .container .contactForm .formBox .inputBox textarea {
  width: 100%;
  resize: none;
  padding: 5px 0;
  font-size: 18px;
  font-weight: 300;
  color: var(--theme-gray);
  border: none;
  outline: none;
  background-color: var(--theme-secondary);
  border-bottom: 1px solid var(--theme-dark);
}

.cont-us .contact-page .container .contactForm .formBox .inputBox textarea {
  height: 120px;
}

.cont-us .contact-page .container .contactForm .formBox .inputBox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  pointer-events: none;
  font-size: 18px;
  font-weight: 300;
  transition: 0.3s;
}

.cont-us
  .contact-page
  .container
  .contactForm
  .formBox
  .inputBox
  input:focus
  ~ span,
.cont-us
  .contact-page
  .container
  .contactForm
  .formBox
  .inputBox
  input:valid
  ~ span,
.cont-us
  .contact-page
  .container
  .contactForm
  .formBox
  .inputBox
  textarea:focus
  ~ span,
.cont-us
  .contact-page
  .container
  .contactForm
  .formBox
  .inputBox
  textarea:valid
  ~ span {
  transform: translateY(-20px);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--theme-primary);
  font-weight: 500;
}

.cont-us
  .contact-page
  .container
  .contactForm
  .formBox
  .inputBox
  input[type='submit'] {
  position: relative;
  cursor: pointer;
  background: var(--theme-dark);
  color: var(--theme-white);
  border: none;
  min-width: 150px;
  padding: 12px;
  width: 2rem;
  border-radius: 10px;
}

.cont-us
  .contact-page
  .container
  .contactForm
  .formBox
  .inputBox
  input[type='submit']:hover {
  background: var(--theme-primary);
}

/* Our Services */
.our-services {
  padding-top: 7rem;
  padding-bottom: 4rem;
  margin-bottom: 1rem;
}
.our-services .services-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.our-services .heading-wrap {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.125rem;
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url('../Images/gavel-2492011_1280.jpg');
  margin-top: -2.5rem;
}

.our-services .heading-wrap .heading-text {
  max-width: 38rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--theme-dark);
  text-align: center;
}

.our-services .heading-wrap .heading-text h2 {
  font-size: 3.5rem;
  line-height: 1.3rem;
  color: var(--theme-dark);
  margin-bottom: 1.5rem;
}

.our-services .heading-wrap .heading-text p {
  color: var(--theme-gray);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.our-services .services-inner .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem;
}

.our-services .services-inner .services-grid div {
  box-shadow: var(--box-shadow);
  /* padding: 1.1rem; */
  width: 20rem;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
}

.our-services .services-inner .services-grid div:hover {
  transform: translateY(-2px);
  box-shadow: 0.5rem 0.5rem 0.3rem rgba(0, 0, 0, 0.2);
}

.our-services .services-inner .services-grid div .icon {
  margin-bottom: 0.875rem;
  position: relative;
  display: inline-block;
  box-shadow: none;
  background: none;
}

.our-services .services-inner .services-grid div .icon img {
  padding: 0;
  border-radius: 5px;
  width: 100%;
  height: 15rem;
  object-fit: cover;
  -o-object-fit: cover;
}

.our-services .services-inner .services-grid div .icon:before {
  content: '';
  position: absolute;
  right: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  z-index: -1;
  background-color: var(--theme-secondary);
}

.our-services .services-inner .services-grid div h2 {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  font-size: 1.125rem;
  margin-bottom: 1.125rem;
}

.our-services .services-inner .services-grid div p {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  color: var(--theme-gray);
}

/* Start Community Social Resposibility */
.csr {
  /* width: 100%;
  min-height: 100vh;
  /* background-color: #ddd; */
  margin-bottom: 80rem;
  width: 100%;
  min-height: 100vh;
}

.csr .container {
  width: 80%;
  display: block;
  margin: auto;
  padding-top: 50px;
}

.csr .container .content {
  float: left;
  width: 55%;
  line-height: 1.7;
}

.csr .container .content p {
  font-size: 1.2rem;
}

.csr .container .content ul.csr-ul,
.csr .container .content .csr-ul p {
  box-shadow: var(--box-shadow);
  padding: 2.5rem;
  font-size: 1.1rem;
}

.csr .container .content .csr-ul p {
  margin-bottom: 1rem;
}

.csr .container .content .csr-ul p:hover {
  transform: translateY(-2px);
  box-shadow: 0.5rem 0.5rem 0.3rem rgba(0, 0, 0, 0.2);
}

.csr .container .content ul.csr-ul {
  padding-left: 3rem;
}

.csr .container .content ul.csr-ul li {
  list-style: none;
  background-color: var(--theme-primary);
  color: var(--theme-white);
}
.csr .container .content ul.csr-ul li:hover {
  background-color: var(--theme-secondary);
  color: var(--theme-primary);
}

.csr .container .img-section {
  float: right;
  width: 40%;
}

.csr .container .img-section img {
  width: 100%;
  height: auto;
  margin-top: 20rem;
}

.csr .csr-header {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: var(--theme-primary);
  background-image: url('../Images/gavel-2492011_1280.jpg');
}

.csr .csr-header span h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  color: var(--theme-dark);
  text-align: center;
  margin-top: 3rem;
}

.csr .container .s-media {
  box-shadow: none;
}

.csr .container .s-media ul.social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csr .container .s-media ul.social li {
  list-style: none;
  margin-right: 1.5rem;
  margin-bottom: 5rem;
  /* margin-top: 1rem; */
}
.csr .container .s-media ul.social li a:hover {
  color: var(--theme-secondary);
  font-size: 1.8rem;
  box-shadow: var(--box-shadow);
}

.csr .container .s-media ul.social li a {
  text-decoration: none;
  color: var(--theme-primary);
  font-size: 1.5rem;
}

/* Our Team */
.team-section {
  width: 100%;
  min-height: 100vh;
  background-color: #ddd;
  padding: 5rem 0 30rem 0;
  margin-bottom: 1rem;
}

.team-section .team-header {
  position: relative;
  width: 100%;
  height: 300px;
  background-color: var(--theme-primary);
  background-image: url('../Images/gavel-2492011_1280.jpg');
  /* box-shadow: var(--box-shadow);
  margin-right: -10rem; */
  /* padding-right: -3rem; */
}

.team-section .team-header span h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  color: var(--theme-dark);
  text-align: center;
}
.team-section .team-header span p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: var(--theme-dark);
  text-align: center;
}

.team-section .card-wrapper {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.team-section .card-wrapper .team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem;
  /* margin-top: 6rem; */
}

.team-section .card-wrapper .card {
  width: 20rem;
  background-color: var(--theme-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  box-shadow: 0.5rem 0.5rem 0.3rem rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.team-section .card-wrapper .card .card-img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  -webkit-clip-path: polygon(0 1%, 100% 0, 100% 78%, 0% 100%);
  clip-path: polygon(0 1%, 100% 0, 100% 78%, 0% 100%);
}

.team-section .card-wrapper .card .profile-img {
  width: 15rem;
  height: 15rem;
  object-fit: cover;
  border-radius: 50%;
  margin-top: -10rem;
  z-index: 1000;
  border: 1rem solid #ebeef8;
}

.team-section .card-wrapper .card h1 {
  font-size: 1.5rem;
  color: var(--theme-dark);
  margin: 1.5rem 0;
}

.team-section .card-wrapper .card .job-title {
  color: var(--theme-gray);
  font-size: 1.3rem;
  font-weight: 300;
}

.team-section .card-wrapper .card .about {
  font-size: 15px;
  margin: 1rem 1rem;
  font-style: italic;
  text-align: center;
  color: var(--theme-dark);
}

/* .team-section .card-wrapper .card .btn {
  padding: 0.8rem 1.3rem;
  background-color: var(--theme-primary);
  border-radius: 25px;
  margin-top: 0;
  /* text-transform: uppercase; */
/* color: var(--theme-white);
  font-size: 1.3rem;
  transition: all 0.5s; */
/* } */

/* .team-section .card-wrapper .card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0.5rem 0.5rem 0.3rem rgba(0, 0, 0, 0.2);
} */

/* .team-section .card-wrapper .card .btn:active {
  transform: translateY(0px);
  box-shadow: none; */
/* } */

.team-section .card-wrapper .card .social {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  padding: 0.5rem 0;
  margin-top: 1rem;
  border-top: 1.3px solid rgba(0, 0, 0, 0.2);
}

.team-section .card-wrapper .card .social i {
  font-size: 1.6rem;
  color: var(--theme-primary);
}

.team-section .card-wrapper .card .social i:hover {
  background: none;
  color: var(--theme-secondary);
  transform: translateY(-2px);
  box-shadow: 0.5rem 0.5rem 0.3rem rgba(0, 0, 0, 0.2);
}

/* Blogs & Insight */
.blogs-insights {
  /* width: 100%;
  min-height: 100vh;
  
  padding: 5rem 0 30rem 0;
  margin-bottom: 1rem; */

  background-color: #ddd;
  padding-top: 7rem;
  padding-bottom: 30rem;
  margin-bottom: 1rem;
}

.blogs-insights .heading-wrap {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.125rem;
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url('../Images/gavel-2492011_1280.jpg');
  /* margin-top: -2.5rem; */
}

.blogs-insights .heading-wrap .heading-text {
  max-width: 38rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--theme-dark);
  text-align: center;
}

.blogs-insights .heading-wrap .heading-text h2 {
  font-size: 3.5rem;
  line-height: 1.3rem;
  color: var(--theme-dark);
  margin-bottom: 1.5rem;
}

.blogs-insights .heading-wrap .heading-text p {
  color: var(--theme-gray);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.blogs-insights .blog-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.blogs-insights .blog-container .blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem;
}

.blogs-insights .blog-container .blogs-grid img {
  width: 100%;
  border-radius: 15px;
  height: 350px;
  object-fit: cover;
  -o-object-fit: cover;
}

.blogs-insights .blog-container .blogs-grid .post {
  box-shadow: var(--box-shadow);
  width: 20rem;
  border-radius: 15px;
  /* border-radius: 5px; */
  justify-content: center;
  align-items: center;
  padding-bottom: 3.5rem;
}

.blogs-insights .blog-container .blogs-grid .post h3 {
  color: var(--theme-dark);
  padding: 15px 1.25rem 10px 1.25rem;
}

.blogs-insights .blog-container .blogs-grid .post p {
  color: var(--theme-gray);
  padding-bottom: 30px;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.blogs-insights .blog-container .blogs-grid .post a {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: var(--theme-primary);
  color: var(--theme-white);
  border-radius: 6px;
  font-weight: 600;
  margin-left: 6rem;
}

.blogs-insights .blog-container .blog-post img {
  margin-top: 5rem;
  width: 100%;
  border-radius: 19px;
  height: 350px;
  object-fit: cover;
  -o-object-fit: cover;
}

/* Start Post */
.blogs-insights .blog-container .blog-post {
  width: 70%;
  margin: 0 auto;
}

.blogs-insights .blog-container .blog-post .post h3 {
  color: var(--theme-dark);
  padding: 15px 0 10px 0;
}

.blogs-insights .blog-container .blog-post .post p {
  color: var(--theme-gray);
  padding-bottom: 10px;
  text-align: justify;
}

.blogs-insights .blog-container .blog-post .post a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: var(--theme-primary);
  color: var(--theme-white);
  border-radius: 6px;
  font-weight: 600;
}

/* About Us */

.about-us {
  /* padding-top: 7rem;
  padding-bottom: 4rem; */
  margin-bottom: 1rem;
  background-color: #ddd;
  padding: 5rem 0 30rem 0;
}

.about-us .heading-wrap {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.125rem;
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url('../Images/gavel-2492011_1280.jpg');
  margin-top: -2.5rem;
}

.about-us .heading-wrap .heading-text {
  max-width: 38rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--theme-dark);
  text-align: center;
}

.about-us .heading-wrap .heading-text h2 {
  font-size: 3.5rem;
  line-height: 1.3rem;
  color: var(--theme-dark);
  margin-bottom: 1.5rem;
}

.about-us .about-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.about-us .about-inner .about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem;
}

.about-us .about-inner .about-grid div {
  box-shadow: var(--box-shadow);
  padding: 1.1rem;
  width: 20rem;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-primary);
}

.about-us .about-inner .text p {
  margin-bottom: 3.25rem;
  line-height: 2;
}

.about-us .about-inner .about-grid div:hover {
  transform: translateY(-2px);
  box-shadow: 0.5rem 0.5rem 0.3rem rgba(0, 0, 0, 0.2);
  background: var(--theme-dark);
  opacity: 0.8;
}

.about-us .about-inner .about-grid div .icon {
  margin-bottom: 0.875rem;
  position: relative;
  display: inline-block;
  box-shadow: none;
  background: none;
}

.about-us .about-inner .about-grid div .icon img {
  width: 4.6rem;
  margin-left: 4.8rem;
  filter: invert(1);
}

.about-us .about-inner .about-grid div h2 {
  font-size: 1.125rem;
  margin-bottom: 1.125rem;
  text-align: center;
  color: var(--theme-white);
}

.about-us .about-inner .about-grid div p {
  color: var(--theme-white-opacity-50);
}

/* Gallery */

.gallery {
  margin-bottom: 1rem;
  padding: 5rem 0 30rem 0;
  background: #ddd;
}

.gallery .gallery-inner {
  padding-top: 2rem;
}

.gallery .heading-wrap {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.125rem;
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url('../Images/gavel-2492011_1280.jpg');
  margin-top: -2.5rem;
}

.gallery .heading-wrap .heading-text {
  max-width: 38rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--theme-dark);
  text-align: center;
}

.gallery .heading-wrap .heading-text h2 {
  font-size: 3.5rem;
  line-height: 1.3rem;
  color: var(--theme-dark);
  margin-bottom: 1.5rem;
}

.gallery .gallery-inner .gallery-grid {
  width: 80%;
  margin: 0 auto;
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery .gallery-inner .gallery-grid div {
  width: 100%;
  position: relative;
}

.gallery .gallery-inner .gallery-grid div .image-section {
  width: 100%;
}

.gallery .gallery-inner .gallery-grid div .image-section img {
  width: 100%;
  height: auto;
  padding: 5px;
  display: block;
  border-radius: 15px;
}

.gallery .gallery-inner .gallery-grid div .caption {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 15px;
  top: 0;
  left: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  color: var(--theme-white);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery .gallery-inner .gallery-grid div .caption:hover {
  opacity: 1;
}

.gallery .gallery-inner .gallery-grid div .caption p {
  font-size: 13px;
}

/* Start Footer */
.footer {
  background-color: var(--theme-primary);
  padding: 7rem 0 7rem 0;
  position: relative;
  z-index: 2;
  margin-top: -350px;
  border-top-right-radius: 300px;
}

.footer .footer-inner {
  max-width: var(--theme-site-width);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.footer .footer-inner .footer-about {
  width: 30%;
}

.footer .footer-inner .footer-about .footer-logo {
  margin-bottom: 1rem;
  display: inline-block;
  margin-top: -15rem;
}

.footer .footer-inner .footer-about .footer-logo img {
  width: 4.25rem;
}

.footer .footer-inner .footer-about p {
  color: var(--theme-white-opacity-40);
  margin-bottom: 1.25rem;
  margin-top: -2.5rem;
  text-align: justify;
}

.footer .footer-inner .footer-about .social {
  display: flex;
  list-style: none;
}

.footer .footer-inner .footer-about .social > * + * {
  margin-left: 1rem;
}

.footer .footer-inner .footer-about .social li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--theme-white-opacity-25);
  border-radius: 50%;
}

.footer .footer-inner .footer-about .social li a {
  color: var(--theme-white);
}

.footer .footer-inner .footer-about .social li a:hover {
  border-color: var(--theme-white);
}

.footer .footer-inner .footer-links {
  width: 60%;
}

.footer .footer-inner .footer-links .grid-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.625rem;
  margin-top: -5rem;
}

.footer .footer-inner .footer-links .grid-links > div h3 {
  font-size: 1rem;
  color: var(--theme-white);
  margin-bottom: 1.5rem;
}

.footer .footer-inner .footer-links .grid-links > div ul {
  list-style: none;
}

.footer .footer-inner .footer-links .grid-links > div ul li {
  margin-bottom: 1rem;
}

.footer .footer-inner .footer-links .grid-links > div ul li a {
  color: var(--theme-white-opacity-40);
}

.footer .footer-inner .footer-links .grid-links > div ul li a:hover {
  color: var(--theme-white);
}

.footer .footer-inner hr {
  color: var(--theme-secondary);
}

.footer .footer-inner .copyright-wrap {
  padding-top: 5rem;
}

.footer .copyright-wrap .copyright-text,
.footer .copyright-wrap .legal-links {
  width: 50%;
}

.footer .copyright-wrap .copyright-text {
  color: var(--theme-white-opacity-40);
}

.footer .copyright-wrap .copyright-text span a {
  color: var(--theme-secondary);
  opacity: 0.7;
}

.footer .copyright-wrap .copyright-text span a:hover {
  color: var(--theme-white);
}

.footer .copyright-wrap .legal-links {
  display: flex;
  justify-content: end;
}

.footer .copyright-wrap .legal-links > div {
  display: flex;
}

.footer .copyright-wrap .legal-links > div > * + * {
  margin-left: 1rem;
}

.footer .copyright-wrap .legal-links a {
  color: var(--theme-white-opacity-40);
}

.footer .copyright-wrap .legal-links a:hover {
  color: var(--theme-white);
}

/* Media Query */

@media screen and (max-width: 1024px) {
  .hero {
    padding-bottom: 7rem;
  }
  .services .services-inner .heading-wrap .heading-text {
    max-width: 28rem;
  }

  .our-services .heading-wrap .heading-text {
    max-width: 28rem;
  }
  .why .why-inner .img-wrap > div .years-experience {
    margin-left: 3.5rem;
  }
  .footer {
    border-top-right-radius: 200px;
  }
  .footer .footer-inner .footer-about {
    width: 47%;
  }
  .footer .footer-inner .footer-links .grid-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cont-us .contact-page .container {
    width: 90%;
    min-width: auto;
    margin: 20px;
    margin-bottom: 20rem;
  }

  .cont-us .contact-page .container .contactInfo {
    top: 0;
    height: 550px;
    position: relative;
    box-shadow: none;
  }

  .cont-us .contact-page .container .contactForm {
    position: relative;
    width: calc(100% - 350px);
    padding-left: 0;
    margin-left: 0;
    padding: 40px;
    height: 550px;
    box-shadow: none;
  }
  .team-section .card-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .team-section .team-header {
    display: block;
  }

  .team-section .team-header span {
    min-width: 100%;
  }

  .team-section .card-wrapper .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5rem;
  }
  .blogs-insights .blog-container .blog-post {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .header .inner .nav {
    display: none;
  }

  .header .inner .cta .cta-btn {
    display: none;
  }

  .header .inner .cta .mobile-menu-toggle {
    display: block;
  }
  .header .inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: block;
  }
  .hero .hero-inner .text-wrap {
    width: 100%;
  }
  .hero .hero-inner .text-wrap h1 {
    text-align: center;
    font-size: 3rem;
  }
  .hero .hero-inner .text-wrap .intro {
    min-width: 100%;
    text-align: center;
  }
  .hero .hero-inner .text-wrap .cta-btns {
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
  }

  .hero .hero-inner .img-wrap {
    min-width: 380px;
    margin: 0 auto;
  }
  .hero .hero-inner .img-wrap > div {
    left: 0%;
  }
  .offer {
    padding-bottom: 6rem;
  }
  .offer:after {
    width: 100%;
  }
  .offer .inner {
    display: block;
    padding-top: 0;
  }
  .offer .inner .img-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 6.5rem;
  }
  .offer .inner .img-wrap:before {
    left: -1.5rem;
  }
  .offer .inner .text-wrap {
    width: 100%;
  }

  .offer .inner .text-wrap .text-wrap-inner h2 {
    font-size: 2rem;
  }

  .services .services-inner .heading-wrap {
    display: block;
  }

  .services .services-inner .heading-wrap .heading-text {
    min-width: 100%;
  }
  .services .services-inner .heading-wrap .cta {
    justify-content: start;
  }
  .services .services-inner .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  /*  */
  .our-services .heading-wrap {
    display: block;
  }

  .our-services .heading-wrap .heading-text {
    min-width: 100%;
  }

  .our-services .services-inner .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .why {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .why .why-inner {
    display: block;
  }
  .why .why-inner .img-wrap {
    width: 100%;
    min-width: 400px;
    margin: 0 auto;
    margin-bottom: 4rem;
  }
  .why .why-inner .text-wrap {
    width: 100%;
  }

  .testimonial {
    padding: 4rem 0;
  }
  .testimonial .testimonial-inner h2 {
    font-size: 2rem;
  }
  .faq {
    padding: 4rem 0;
  }
  .faq .faq-inner h2 {
    font-size: 2rem;
  }
  .faq .faq-inner .faq-items {
    display: block;
  }
  .cta-section .cta-inner {
    display: block;
  }

  .cta-section .cta-inner .contact-person-wrap {
    width: 100%;
    margin-bottom: 3rem;
  }

  .cta-section .cta-inner .contact-person-wrap .card {
    margin: 0 auto;
  }
  .cta-section .cta-inner .cta-text-wrap {
    padding-left: 0;
    width: 100%;
  }
  .footer .footer-inner {
    display: block;
  }
  .footer .footer-inner .footer-about {
    width: 100%;
    margin-bottom: 3.5rem;
  }

  .footer .footer-inner .footer-links {
    width: 100%;
  }
  .footer .footer-inner.copyright-wrap {
    display: block;
  }
  .footer .footer-inner.copyright-wrap .copyright-text,
  .footer .footer-inner.copyright-wrap .legal-links {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .footer .footer-inner.copyright-wrap .legal-links {
    justify-content: center;
  }
  .cont-us {
    background: var(--theme-white);
  }

  .cont-us .try span h1 {
    font-size: 1.6rem;
  }
  .cont-us .contact-page .container {
    display: flex;
    flex-direction: column-reverse;
  }

  .cont-us .contact-page .container .contactForm {
    width: 100%;
    height: auto;
  }

  .cont-us .contact-page .container .contactInfo {
    width: 100%;
    height: auto;
  }
  .cont-us .contact-page .container .contactInfo ul.social {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.csr {
    margin-bottom: 23rem;
  }
  .csr .container {
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 50px;
  }

  .csr .container .content {
    float: none;
    width: 100%;
    display: block;
    margin: auto;
  }

  .csr .container .img-section {
    float: none;
    width: 100%;
    display: block;
    margin: auto;
    margin-top: -22rem;
  }

  .csr .csr-header span h1 {
    padding-top: 3rem;
    font-size: 1.5rem;
  }

  .csr .container .content ul.csr-ul,
  .csr .container .content .csr-ul p {
    box-shadow: var(--box-shadow);
    padding: 0.5rem;
  }
  /*  */
  .team-section .card-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .team-section .team-header {
    display: block;
  }

  .team-section .team-header span {
    min-width: 100%;
  }

  .team-section .card-wrapper .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5rem;
  }

  /*  */

  .blogs-insights .blog-container {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .blogs-insights .heading-wrap {
    display: block;
  }

  .blogs-insights .heading-wrap .heading-text {
    min-width: 100%;
  }

  blogs-insights .blog-container .blogs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5rem;
  }

  .blogs-insights .blog-container .blog-post {
    width: 100%;
    margin: 0 auto;
  }

  /* About Us */

  .about-us .heading-wrap {
    display: block;
  }

  .about-us .heading-wrap.heading-text {
    min-width: 100%;
  }

  .about-us .about-inner .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

/* @media screen and (maxwidth: 640px) */
@media screen and (max-width: 640px) {
  .hero .hero-inner .text-wrap h1 {
    font-size: 2rem;
  }

  .hero .hero-inner .text-wrap .cta-btns {
    display: block;
  }
  .hero .hero-inner .text-wrap .cta-btns a {
    width: 100%;
    text-align: center;
    display: inline-block;
  }
  .hero .hero-inner .text-wrap .cta-btns > * + * {
    margin-left: auto;
  }

  .hero .hero-inner .text-wrap .cta-btns .btn-primary {
    margin-bottom: 2rem;
  }
  .offer .inner .img-wrap {
    height: 388px;
  }
  .offer .inner .text-wrap .text-wrap-inner h2 {
    font-size: 1.5rem;
  }
  .offer .inner .text-wrap .text-wrap-inner ul {
    display: block;
  }
  .offer .inner .text-wrap .text-wrap-inner ul li {
    margin-bottom: 0.3rem;
  }

  .offer .inner .text-wrap .text-wrap-inner ul li:before {
    top: 0.4rem;
  }
  .offer .inner .text-wrap .text-wrap-inner .cta-btns {
    display: block;
  }
  .offer .inner .text-wrap .text-wrap-inner .cta-btns a {
    width: 100%;
    display: inline-block;
    text-align: center;
  }
  .offer .inner .text-wrap .text-wrap-inner .cta-btns > * + * {
    margin-left: 0;
  }
  .offer .inner .text-wrap .text-wrap-inner .cta-btns .btn-primary {
    margin-bottom: 2rem;
  }
  .services .services-inner .heading-wrap .cta {
    display: block;
  }
  .services .services-inner .heading-wrap .cta .btn-dark {
    text-align: center;
    display: block;
  }

  .services .services-inner .heading-wrap .heading-text h2 {
    font-size: 1.5rem;
  }

  .services .services-inner .services-grid {
    display: block;
  }
  .services .services-inner .services-grid div {
    margin-bottom: 2rem;
  }

  /*  */

  .our-services .heading-wrap .heading-text h2 {
    font-size: 1.5rem;
  }

  .our-services .heading-wrap .heading-text {
    margin-top: 2rem;
    padding: 1rem;
  }
  .our-services .services-inner .services-grid {
    display: block;
  }
  .our-services .services-inner .services-grid div {
    margin-bottom: 2rem;
  }

  .why .why-inner .img-wrap > div .years-experience {
    top: 0;
    transform: translateX(0);
  }
  .why .why-inner .img-wrap > div .rate-Success {
    bottom: 0;
    transform: translateX(0);
    margin-right: 3.5rem;
  }
  .why .why-inner .text-wrap ul {
    display: block;
  }
  .why .why-inner .text-wrap ul li {
    margin-bottom: 0.7rem;
  }
  .why .why-inner .text-wrap ul li:before {
    top: 0.05rem;
  }
  .why .why-inner .text-wrap .cta-btns {
    display: block;
  }
  .why .why-inner .text-wrap .cta-btns a {
    display: block;
    width: 100%;
    text-align: center;
  }
  .why .why-inner .text-wrap .cta-btns > * + * {
    margin-left: 0;
  }

  .why .why-inner .text-wrap .cta-btns .btn-dark {
    margin-bottom: 2rem;
  }

  /*  */
  .testimonial .testimonialSwiper .custom-swiper-button-prev,
  .testimonial .testimonialSwiper .custom-swiper-button-next {
    display: none;
  }

  .cta-section .cta-inner .cta-text-wrap h2 {
    font-size: 1.5rem;
  }
  .cta-section .cta-inner .cta-text-wrap .btn-dark {
    display: block;
    width: 100%;
    text-align: center;
  }
  /*  */
  .footer .footer-inner .footer-links .grid-links {
    display: block;
  }

  .cont-us .try span h1 {
    font-size: 1.2rem;
    margin-top: 2rem;
  }
  .cont-us .contact-page .container .contactForm {
    padding: 25px;
  }
  .cont-us .contact-page .container .contactInfo {
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cont-us .contact-page .container .contactInfo ul.social {
    margin-top: 40px;
  }

  .cont-us .contact-page .container .contactForm .formBox .inputBox.w50 {
    width: 100%;
  }
  /*  */

  .team-section .team-header span {
    width: 100%;
  }
  .team-section .team-header span h1 {
    font-size: 1.7rem;
  }

  .team-section .card-wrapper .team-grid {
    display: block;
  }
  .team-section .card-wrapper .card {
    margin-bottom: 2rem;
  }
  .blogs-insights .heading-wrap {
    width: 100%;
  }
  .blogs-insights .heading-wrap .heading-text {
    font-size: 1.7rem;
  }

  .blogs-insights .blog-container .blogs-grid {
    display: block;
  }
  .blogs-insights .blog-container .blogs-grid .post {
    margin-bottom: 2rem;
  }

  /* About US */
  .about-us .heading-wrap .heading-text h2 {
    font-size: 1.5rem;
  }

  .about-us .heading-wrap .heading-text {
    margin-top: 2rem;
    padding: 1rem;
  }
  .about-us .about-inner .about-grid {
    display: block;
  }
  .about-us .about-inner .about-grid div {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 468px) {
  .blogs-insights .heading-wrap {
    width: 100%;
  }
  .blogs-insights .heading-wrap .heading-text h2 {
    margin-top: 1rem;
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 1.5;
  }

  .blogs-insights .heading-wrap .heading-text p {
    margin-bottom: 0;
    margin-top: -1rem;
    font-size: 0.8rem;
  }

  .blogs-insights .blog-container .blogs-grid {
    display: block;
  }
  .blogs-insights .blog-container {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .blogs-insights .blog-container .blogs-grid .post {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 640px) {
  .blogs-insights .blog-container .blog-post {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 810px) {
  .blogs-insights {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .blogs-insights .blog-container {
    margin-left: 0rem;
    margin-right: 7.25rem;
  }

  .blogs-insights .heading-wrap {
    display: block;
  }

  .blogs-insights .heading-wrap .heading-text {
    min-width: 100%;
  }

  .blogs-insights .blog-container .blogs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5rem;
  }

  .footer .footer-inner {
    display: block;
  }
  .footer .footer-inner .footer-about {
    width: 100%;
    margin-bottom: 3.5rem;
  }

  .footer {
    border-top-right-radius: 200px;
  }
  .footer .footer-inner .footer-about {
    width: 47%;
  }
  .footer .footer-inner .footer-links .grid-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-us .about-inner .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media screen and (max-width: 992px) {
  .gallery .heading-wrap .heading-text h2 {
    font-size: 3rem;
    line-height: 1.3rem;
  }
  .gallery .gallery-inner .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 538px) {
  .gallery .gallery-inner .gallery-grid {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0 1rem 0 1rem;
  }
  .gallery .heading-wrap .heading-text h2 {
    padding-top: 2.5rem;
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
