/* google fonts */
/* Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
/* Philosopher */
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* urbanist */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* google fonts */

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #ffffff;
  color: #363636;
}

:root {
  --white: #ffffff;
  --black: #16161d;
  --light-black: #333;
  --primary: #08292f;
  --grey: #4f4f4f;
}

/*======== FONT STYLES ========*/

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/*======== COLOR STYLES ========*/

.color-white {
  color: var(--white);
}

.color-black {
  color: var(--black);
}

.color-lightblack {
  color: var(--light-black);
}

.bg-green {
  background: var(--primary);
}

/* common css */
.plr {
  padding-left: 17px;
  padding-right: 17px;
}

.common-padding {
  padding: 100px 8%;
}

.content-inner {
  background-color: #fff;
  max-width: 1160px;
  margin: 0 auto;
}

.page-title {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 39px;
  font-weight: 700;
  font-family: 'Raleway';
  font-size: 2.8em;
  line-height: 1em;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 7px;
  font-weight: 400;
  font-style: normal;
  max-width: 100%;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  color: #171717;
  position: relative;
  z-index: inherit;
  text-align: start;
}

.sub-title {
  font-family: 'Source Sans Pro', sans-serif;
  font-family: 'Raleway';
  font-size: 2em;
  line-height: 1.2em;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 600;
  font-style: normal;
}

.tm-common-para {
  font-family: 'Raleway';
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  color: #363636;
}

.mb-80 {
  margin-bottom: 80px;
}

/* common css */

/* common style start */
.show {
  left: 0px;
  width: 20%;
}

body.no-scroll {
  overflow: hidden;
}

/* page top title */
.page-top-title {
  background: #08292f;
  padding: 70px 0px;
}

.page-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* common style end */

/* header starts */

.header {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 999;
}

.header svg {
  stroke: rgb(26, 22, 22);
}

.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sidebar-trigger {
  cursor: pointer;
}

.sidebar-icon {
  width: 56px;
  height: 56px;
}

/* header ends */

/* sidebar starts */

aside {
  padding: 25px 80px;
  position: absolute;
  top: 0;
  width: 320px;
  z-index: 999;
  left: -350px;
  -webkit-transition: left 0.3s ease-in-out;
  -o-transition: left 0.3s ease-in-out;
  transition: left 0.3s ease-in-out;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  background-color: #fff;
  height: 100%;
}

.sidebar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
  gap: 50px;
}

.sidebar-logo {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  z-index: 8002;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 80%;
}

.sidebar-close {
  position: absolute;
  right: 13px;
  cursor: pointer;
}

.navlinks {
  display: flex;
  flex-direction: column;
  gap: 50px;
  z-index: 10;
}

.navlinks a {
  color: #121212;
  text-align: left;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  font-family: 'Source Sans Pro', sans-serif;
  font-family: 'Raleway' !important;
  letter-spacing: 1px;
}

.navlinks a::after,
.navlinks a::before {
  content: '';
  position: absolute;
  height: 2px;
  width: 0;
  background-color: transparent;
  bottom: -3px;
  left: 0;
  border-radius: 4px;
  transition: width 0.5s ease-in-out, background-color 0.3s ease-in-out;
}

.navlinks a::before {
  top: -3px;
}

.navlinks a:hover::after,
.navlinks a:hover::before {
  width: 100%;
  background-color: #8A9475 !important;
  border: none;
}

.sidebar-trigger {
  align-self: self-start;
}

/* Sidebar ends */

/* parallax css start */
.common-section {
  background-color: #fff;
}

.parallax {
  /* height: 100vh;
  background-size: cover;
  -webkit-overflow-scrolling: touch; */
}

/* Base styling for sections */
.parallax-1,
.parallax-2,
.parallax-3,
.parallax-4,
.parallax-5 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  /* Prevent pseudo-elements from leaking */
}

/* Shared styles for the parallax effect */
.parallax-1::before,
.parallax-2::before,
.parallax-3::before,
.parallax-4::before,
.parallax-5::before {
  content: '';
  position: fixed;
  /* Required for the parallax effect */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateZ(0);
  /* Optimize rendering */
  will-change: transform;
  pointer-events: none;
  /* Prevent interference with clicks */
}

/* Unique background images for each section */
.parallax-1::before {
  background-image: url('../images/section-bg-1.jpg');
}

.parallax-2::before {
  background-image: url('../images/section-bg-2.jpg');
}

.parallax-3::before {
  background-image: url('../images/section-bg-3.jpg');
}

.parallax-4::before {
  background-image: url('../images/section-bg-4.jpg');
}

.parallax-5::before {
  background-image: url('../images/section-bg-5.jpg');
}

/* Fix visibility with pseudo-element scoping */
.parallax-1,
.parallax-2,
.parallax-3,
.parallax-4,
.parallax-5 {
  clip-path: inset(0);
  /* Confines the visible area of each pseudo-element */
}

/* parallax css css end */

.scroll-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  bottom: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
  color: #fff;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  min-height: 35px;
}

.scroll-arrow svg {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.scroll-arrow:hover svg {
  display: none;
}

.scroll-arrow span {
  display: none;
  /* Initially hidden */
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.scroll-arrow:hover span {
  display: block;
  /* Displays text on hover */
}

/* main design start */

.Philosophy-content-wrapper-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Philosophy-content-wrapper-top-left {
  width: 66%;
  height: 430px;
  padding-right: 17px;
}

.Philosophy-content-wrapper-top-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.Philosophy-content-wrapper-top-right {
  width: 34%;
  padding-left: 17px;
}

.tm-common-para-comment {
  margin: 14px 40px 0px;
  font-style: italic;
}

.comment-author {
  padding-top: 20px;
  padding-left: 20px;
}

.Philosophy-content-wrapper-bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.Philosophy-content-wrapper-bottom-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.Philosophy-content-wrapper-bottom-item-img-area {
  padding: 30px 0px 17px;
  width: 100%;
  height: 228px;
}

.Philosophy-content-wrapper-bottom-item-img-area img {
  width: 100%;
  height: 100%;
}

.Philosophy-content-wrapper-bottom-item-content h3 {
  font-family: 'Source Sans Pro', sans-serif;
  font-family: 'Raleway';
  font-size: 1.4em;
  line-height: 1.2em;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  margin: 20px 0px;
}

.Philosophy-content-wrapper-bottom-item-content h4 {
  font-family: 'Source Sans Pro', sans-serif;
  font-family: 'Raleway';
  font-size: 18px;
  line-height: 1.2em;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
}

.Philosophy-content-wrapper-bottom-item-content p {
  text-align: center;
  margin-bottom: 4rem;
}

.the-team-section .Philosophy-content-wrapper-bottom-item-img-area {
  padding: 0px 0px 17px;
  height: 280px;
}

/* main design end */

/* contact area start */
.tm-form-container {
  width: 100%;
}

#tm-contactForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.tm-form-group {
  margin-bottom: 20px;
  width: 100%;
}

.tm-form-group label,
.tm-name-area {
  color: #363636;
  font-family: 'Raleway';
  font-size: 14px;
  line-height: 1.6em;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 8px;
  line-height: normal;
}

.tm-name-fields label {
  margin-bottom: 0px;
}

.tm-form-group label span {
  font-size: 12px;
  color: #666;
}

.tm-name-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.tm-name-fields input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

input,
textarea,
.tm-submit-btn {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  background-color: #fafafa;
  border: 1px solid #a9a9a9;
  font-family: 'Raleway';
  color: #1e291f;
}

textarea {
  resize: vertical;
}

.tm-submit-btn {
  font-family: 'proxima-nova', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-style: normal;
  cursor: pointer;
  color: #fff;
  background-color: #272727;
  border-color: #272727;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 35px;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.tm-submit-btn:hover {
  background-color: #4b4949;
}

.tm-submit-btn:hover {
  background: #555;
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
  .tm-name-fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  /* .parallax{
    height: 85vh !important;
  } */
  /* .scroll-arrow {
    bottom: 145px;
} */
}

@media (max-width: 480px) {
  .tm-form-container {
    padding: 15px;
  }

  .tm-form-group label {
    font-size: 13px;
  }

  input,
  textarea,
  .tm-submit-btn {
    font-size: 12px;
    padding: 8px;
  }

  .tm-submit-btn {
    padding: 10px;
    font-size: 14px;
  }
}

/* contact area end */

/* footer area start */
footer {
  position: relative;
}

footer,
footer .content-inner {
  background-color: #1e291f !important;
}

footer .content-inner {
  background-color: #1e291f !important;
  padding: 5%;
}

.footer-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 35px;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

.footer-top a {
  height: 48px;
  width: 48px;
  background-color: #fff;
  border-radius: 50%;
  padding: 8px;
}

.footer-top a img {
  height: 100%;
  width: 100%;
}

.footer-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  color: #fff !important;
}

.footer-middle-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff !important;
}

.footer-middle .tm-common-para {
  color: #fff;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-bottom-item,
.footer-bottom-item-2 {
  width: 45%;
}

.footer-bottom-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 35px 1fr 35px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-bottom-item-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 35px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.footer-bottom-item-img-area {
  width: 80px;
  height: 80px;
}

.footer-bottom-item-img-area img {
  width: 100%;
  height: 100%;
}

.back-to-top-link {
  display: block;
  z-index: 10;
  background-color: #fff;
  width: 50px;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-left: -25px;
  top: -25px;
  padding-top: 2px;
}

.back-to-top-link a {
  display: block;
  font-family: 'refrigerator-deluxe';
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  color: #363636;
  padding-left: 2px;
  padding-top: 4px;
}

.back-to-top-link a .arrow {
  display: block;
  text-align: center;
}

.back-to-top-link a .arrow:before {
  width: auto;
  height: auto;
  line-height: 1;
  font-size: 16px;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  cursor: pointer;
  color: #363636;
  display: block;
  margin-left: -2px;
}

/* footer area end */

/* portfolio section css start */

.portfolio {
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}

/* portfolio sub section common css start */
.portfolio-sub-title {
  padding: 0 17px 17px 17px;
}

.portfolio-sub-content {
  padding: 17px 17px 17px 17px;
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 540px;
  width: 100%;
}

.mySwiper {
  height: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0;
  cursor: pointer;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 60px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: auto;
}

.swiper-button-prev {
  left: 1px;
}

.swiper-button-next {
  right: 1px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  color: white;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* portfolio sub section common css end */

/* portfolio sub section design & build css start */
.portfolio-sub-title-margin {
  margin-top: 44px;
}

/* portfolio sub section design & build css end */

/* portfolio section css end */

/* Testmonials section css start */

/* Testmonials common section css start common */
/* .testmonial-swiper{
  width: 960px;
  height: 640px;
  padding: 0;
}

.testSwiper{
  height: 100%;
}

.test-swiper_slide{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 960px;
  height: 640px;
}

.test-swiper-slide img{
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}
.desc{
  background-color: #1717177a;
  color: #fff;
  z-index: 30;
  max-width: 50%;
  max-height: fit-content;
  padding: 25px;
}

.desc .comment{
  font-size: 14px;
  line-height: 1.5rem;
}

.desc .client-name{
  color: rgba(255, 255, 255, .95);
  font-size: 14px;
  line-height: 1.5em;
  margin-top: 14px;
}

.testimonial-section {
  position: relative;
  width: 100%;
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-image img{
  width: 100%;
  height: 100%;
}

.testimonial-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  background-color: rgb(54, 54, 54);
  border-radius: 10px;
  width: 60%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-text p {
  margin: 10px 0;
}

.testimonial-container button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 3;
}

button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 1px;
}

.next-btn {
  right: 1px;
} */

/* Testmonials section css start */

.testmonial-swiper {
  /* width: 960px; */
  height: 640px;
  min-width: 360px;
  padding: 0;
}

.testSwiper {
  height: 100%;
}

.test-swiper_slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 960px;
  height: 640px;
}

.test-swiper-slide img {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
}

.desc {
  background-color: #1717177a;
  color: #fff;
  z-index: 30;
  max-width: 50%;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  padding: 25px;
}

.desc .comment {
  font-size: 14px;
  line-height: 1.5rem;
}

.desc .client-name {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 1.5em;
  margin-top: 14px;
}

/* Testmonials section css end */

/* Testmonials common section css end */

/* Testmonials section css end */

/* dots */

.tm-nav-dot {
  position: fixed;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  z-index: 888;
}

.tm-nav-dot a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease, border 0.3s ease;
  -o-transition: background-color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, border 0.3s ease;
}

.color-weight-dark a {
  background-color: #000;
  border: 2px solid #000;
  color: #000;
}

.color-weight-light a {
  background-color: #fff;
  border: 2px solid #fff;
  color: #fff;
}

.tm-nav-dot a.active {
  background-color: transparent;
  border: 2px solid #222;
}

.tm-nav-dot a span {
  position: absolute;
  right: 20px;
  top: -12px;
  font-size: 13px;
  text-transform: lowercase;
  white-space: nowrap;
  font-family: 'refrigerator-deluxe';
  letter-spacing: 7px;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  line-height: 32px;
  visibility: hidden;
}

.tm-nav-dot a:hover span {
  visibility: visible;
}

/* The section below the active one: black background */
.tm-nav-dot a.active + a {
  background-color: #000;
  border: 2px solid #000;
}

/* contact form success and failed message shown css start*/
.warning-message {
  background-color: #ff9800;
  color: white;
  font-size: 15px;
}

/* Style for the error message below the input */

/* contact success and failed message shown css end */
.alert-wrapper {
  position: fixed;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: none;
  z-index: 9999;
  border-radius: 5px;
}

.alert {
  padding: 8px;
  font-size: 15px;
  color: white;
  font-weight: 500;
  margin-bottom: 0px;
  gap: 10px;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.alert-success {
  background-color: #4caf50;
}

.alert-error {
  background-color: #f44336;
}

.alert-btn {
  background: none;
  border: none;
  color: #f6f5fa;
  cursor: pointer;
}

/* new css for sidebar menu start */

/* new css for sidebar menu end */

/* responsive code start : */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .common-padding {
    padding: 71px 8%;
  }

  .mb-80 {
    margin-bottom: 50px;
  }

  .page-title {
    font-size: 2.4em;
  }

  .mySwiper2 {
    height: 500px;
  }

  /* header starts */

  .header-logo {
    width: 40%;
  
  }

  .sidebar-icon {
    width: 40px;
    height: 40px;
  }

  .show {
    width: 50%;
  }

  /* header ends */
}

@media only screen and (max-width: 767px) {
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-bottom-item,
  .footer-bottom-item-2 {
    width: 100%;
    justify-items: center;
  }

  .Philosophy-content-wrapper-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .Philosophy-content-wrapper-top-left,
  .Philosophy-content-wrapper-top-right {
    width: 100%;
  }

  .portfolio-sub-title-margin {
    margin-top: 0px;
  }

  .the-team-section .Philosophy-content-wrapper-bottom-item-img-area {
    padding: 0px 0px 0px;
  }

  .Philosophy-content-wrapper-top-left {
    padding-right: 0px;
  }

  .Philosophy-content-wrapper-bottom-item-img-area img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media only screen and (min-width: 501px) and (max-width: 767px) {
  /* common css starts */
  .common-padding {
    padding: 60px 8%;
  }

  .mb-80 {
    margin-bottom: 30px;
  }

  .page-title {
    font-size: 28px;
  }

  .sub-title {
    line-height: normal;
    font-size: 22px;
  }

  /* common css ends */

  /* header starts */

  .header-logo {
    width: 40%;

  }
  .sidebar-icon {
    width: 30px;
    height: 30px;
  }

  /*  header ends */

  .footer-bottom {
    gap: 50px;
  }

  .footer-top {
    padding-top: 20px;
  }

  .tm-form-group {
    margin-bottom: 10px;
  }

  .tm-name-fields {
    gap: 0px !important;
  }

  .Philosophy-content-wrapper-top {
    gap: 30px;
  }

  .Philosophy-content-wrapper-bottom-item-content h3 {
    font-size: 18px;
    margin: 15px 0px;
  }

  .mySwiper2 {
    height: 381px !important;
  }

  .desc {
    max-width: 75% !important;
  }

  .desc .comment {
    font-size: 14px;
    line-height: 1.3rem;
  }

  .Philosophy-content-wrapper-bottom-item-content h4 {
    font-size: 16px;
    line-height: 1em;
    margin-bottom: 8px;
  }

  .show {
    left: 0px;
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .Philosophy-content-wrapper-bottom {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  /* header starts */

  .navlinks a {
    font-size: 30px;
  }

  /* header ends */
}

@media only screen and (max-width: 500px) {
  /* common css */
  .common-padding {
    padding: 40px 5%;
  }

  .mb-80 {
    margin-bottom: 20px;
  }

  .page-title {
    font-size: 20px;
  }

  .sub-title {
    line-height: normal;
    font-size: 18px;
  }

  .tm-common-para {
    font-size: 13px;
  }

  /* common css */

  /* header starts */

  .header {
    padding: 10px !important;
  }

  .header-logo {
    width: 40%;
  }

  .sidebar-icon {
    width: 28px;
    height: 28px;
  }

  /* header ends */

  /* footer starts */

  .footer-bottom {
    gap: 40px;
  }

  .footer-top {
    padding-top: 25px;
  }

  .footer-middle {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom-item,
  .footer-bottom-item-2 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .tm-form-group {
    margin-bottom: 7px;
  }

  .tm-name-fields {
    gap: 0px !important;
  }

  .Philosophy-content-wrapper-top {
    gap: 20px;
  }

  .Philosophy-content-wrapper-bottom-item-content h3 {
    font-size: 17px;
    margin: 10px 0px;
  }

  .mySwiper2 {
    height: 281px !important;
  }

  .desc {
    max-width: 95% !important;
  }

  .desc .comment {
    font-size: 14px;
    line-height: 1.3rem;
  }

  .testmonial-swiper {
    height: 540px;
    min-width: 100%;
    padding: 0;
  }

  .desc .comment {
    font-size: 12px;
    line-height: 16px;
  }

  .Philosophy-content-wrapper-bottom-item-content h4 {
    font-size: 15px;
    line-height: 1em;
    margin-bottom: 8px;
  }

  .footer-middle-item {
    gap: 5px;
  }

  .footer-middle h4 {
    font-size: 18px;
  }

  .Philosophy-content-wrapper-top-left {
    height: 290px;
    padding-right: 0px;
  }

  .Philosophy-content-wrapper-bottom-item-img-area {
    padding: 15px 0px 5px;
    height: 200px;
  }

  .portfolio-sub-title {
    padding: 0 17px 0px 17px;
  }

  .tm-nav-dot {
    right: 10px;
  }

  .show {
    left: 0px;
    width: 100%;
  }
}
