@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@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");

/***** General CSS *****/
body {
  word-break: break-word;
  font: 15px / 25px "Poppins", sans-serif;
  color: #000;
  overflow-x: hidden;
}


a {
  text-decoration: none;
  font-family: "Poppins";
  color: #000;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #fff;
}

a:hover {
  transition: all 0.2s ease-in-out;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  transition: all 0.5s ease;
  outline: none;
}

select,
input,
textarea {
  font-family: "Poppins";
  appearance: auto;
}

/***** Font Files *****/
@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noodle";
  src: url(../fonts/Noodle.ttf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

/***** Custom Classes *****/
select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #575757;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
  padding: 80px 0;
}

.flexRow,
.flexCol {
  display: flex;
  align-items: center;
}

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

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noodle";
  text-transform: uppercase;
  margin: 0 0 10px;
}

h1 {
  font-size: 75px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h2 {
  font-size: 62px;
  line-height: 1;
  color: #000;
  font-weight: 500;
}

h3 {
  font-size: 50px;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
}

h4 {
  font-size: 30px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
}

h5 {
  font-size: 24px;
  line-height: 1.2;
  color: #000;
  font-family: "Poppins";
  font-weight: 800;
}

h6 {
  font-size: 20px;
  color: #000;
  font-weight: 500;
}

p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  font-family: "Poppins";
}

.para-upper {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  width: 100% !important;
}

.pink {
  color: #7b1b39;
}

.green {
  color: #195641;
}

.black {
  color: #000;
}

.white {
  color: #fff !important;
}

.poppins {
  font-family: "Poppins";
}

.noodle {
  font-family: "Noodle";
}

.gradient {
  background: linear-gradient(90deg, rgb(123, 27, 57) 0%, rgb(25, 86, 65) 100%);
}

.subheading {
  color: #7b1b39;
  font-size: 18px;
  font-family: "Poppins";
}

/* Menu */
.nav ul {
  list-style: none;
  text-align: center;
  justify-content: end;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

.nav ul li a {
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  color: #ffff;
  font-family: 'Poppins';
  font-weight: 300;
  font-size: 16px;
  padding: 10px 20px;
  display: block;
}

section.header .nav.stroke {
  display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  width: 0%;
  content: ".";
  color: transparent;
  background: #fff;
  height: 2px;
  transform: translateX(-50%);
}

.nav.stroke ul li a:hover:after {
  width: 100%;
}

.nav.stroke ul li a.active:after {
  width: 100%;
}

.nav.stroke ul li a.active::before {
  height: 100%;
}

.nav.stroke ul li a.active {
  color: #fff !important;
}

/* Buttons Css Start*/
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 15px 40px;
  font-size: 17px;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
  color: #ffff;
  text-transform: uppercase;
  font-weight: 300;
  border-radius: 30px;
  border: 1px solid;
}

.theme-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  content: "";
  transition: 0.3s ease-in-out;
  background: linear-gradient(90deg, rgb(123, 27, 57) 0%, rgb(25, 86, 65) 100%);
  border-radius: 30px;
}

.theme-btn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: -1;
  content: "";
  transition: 0.3s ease-in-out;
  background: #4e3038;
  border-radius: 30px;
  transform: translate(-50%, -50%);
}

.theme-btn:hover::after {
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}

/* Buttons Css End*/

/* Loader start */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 1s ease;
  flex-direction: column;
  gap: 5px;
}

#loader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

img.loader {
  width: 10vw;
}

/* Loader end */

/* Custom Scrollbar  */
#style-6::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar-thumb {
  background-color: #f48a12;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}

.scrollbar {
  overflow-y: scroll;
}

/* Custom Scrollbar  */

/* Home Page start*/

/* Header */
.hdr_logo a img {
  object-fit: scale-down;
  padding: 0px 0;
  display: block;
  width: 80%;
}

section.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

/* Header end*/

/* Banner */
.banner_sec {
  position: relative;
  z-index: 1;
  height: auto;
}

.banner_sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  content: '';
  background-image: url(../images/banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner_sec::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: '';
  background-color: #fff;
  opacity: 0.97;
}

.banner-slider .slick-list {
  height: 100%;
}

.banner-slider .slick-track {
  height: 100%;
}

.banner_text ul.list {
  column-count: 2;
}

p.tagline {
  width: fit-content !important;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.banner_image {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 100%;
  margin: 0 0px 20px 20px;
  z-index: 1;
}

.banner_image img {
  width: 100%;
  height: 100%;
  object-position: left top;
  object-fit: cover;
}

.banner_text {
  position: relative;
  z-index: 99;
}

.banner_text p {
  width: 80%;
}

/* .banner_image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  content: '';
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 20%, rgba(123, 27, 57, 1) 110%);
} */

.banner-box {
  height: 100vh;
  display: flex;
  align-items: end;
  justify-content: start;
  position: relative;
  z-index: 1;
}

.banner-box::before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 61%;
  height: 100%;
  z-index: 1;
  content: '';
  background: linear-gradient(0deg, rgb(123, 27, 57) 0%, rgb(25, 86, 65) 60%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.banner-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner-social {
  position: relative;
  z-index: 0;
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 100px 0 0 0;
}

.banner-social p {
  width: fit-content !important;
  margin: 0;
}

ul.banner-social-list {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

ul.banner-social-list li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff75;
  border: 1px solid;
  opacity: 1.1;
  border-radius: 50%;
  background: #225641;
  transition: 0.3s ease-in-out;
}

.banner-social::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
  content: '';
  background: #195641;
}

ul.banner-social-list::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
  content: '';
  background: #ffffff75;
}

ul.banner-social-list li a:hover {
  background: #ffffff;
  color: #0000009e;
}

.design-image {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.design-image::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
  width: 92%;
  height: 92%;
  z-index: -1;
  content: '';
  background: linear-gradient(0deg, rgb(123, 27, 57) 0%, rgb(25, 86, 65) 60%);
  border-radius: 40px;
}

.design-image img {
  border-radius: 40px;
}

.about_image.design-image {
  height: 100%;
  width: 94%;
}

img.about-img {
  height: 105%;
}

.about_text p {
  margin: 0 0 40px 0;
}

/* Banner end*/

/* section start */
.problem-quote {
  padding: 30px 0 30px 40px;
  position: relative;
  z-index: 1;
  margin: 50px 0 0 0;
}

.problem-quote::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  z-index: -1;
  content: '';
  background: #7b1b39;
  border-radius: 30px;
}

.problem-quote p {
  color: #fff;
  margin: 0;
}

/* section end */

/* section start */

.two-color-box {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 60px 30px 40px 30px;
}

.two-color-box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  content: '';
  background: #195641;
  border-radius: 30px;
}

.two-color-box::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  content: '';
  background: #7b1b39;
  border-radius: 30px;
}



.service-card {
  padding: 40px 19px 20px 19px;
  background: #fff;
  border-radius: 30px;
  margin: 20px 0;
}

img.service-img {
  height: 250px;
  margin: 20px 0 0 0;
  border-radius: 30px;
}

a.underline {
  color: #195641;
  font-weight: 500;
  text-decoration: underline;
}

.service-bar * {
  margin: 0;
}

.service-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px 0;
}

span.service-num {
  font-size: 50px;
  font-weight: 600;
  text-align: right;
  margin: -40px 0 0 0;
  position: relative;
  z-index: 1;
  opacity: 0.4;
  white-space: nowrap;
  display: block;
  line-height: 1;
}

span.service-num::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120%;
  content: '';
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 90%);
}

.service-card-text p {
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* section end */

/* section start */
.gallery-box img {
  margin: 15px 0;
  border-radius: 30px;
  display: block;
}

img.gallery-img1 {
  height: 220px;
}

img.gallery-img2 {
  width: 50%;
  height: 300px;
  margin-left: auto;
}

img.gallery-img4 {
  width: 40%;
  height: 250px;
}

img.gallery-img5 {
  height: 250px;
}

img.gallery-img6 {
  width: 90%;
  height: 200px;
  margin-left: auto;
}

img.gallery-img3 {
  height: 730px;
}

/* section end */

/* section start */

img.why-img {
    margin: 15px 0;
    border-radius: 30px;
    display: block;
    height: 80%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.why-box {
    position: relative;
    z-index: 1;
    height: 750px;
}

.why-text {
    padding: 80px 30px;
    margin: 30px 60px;
    position: relative;
    z-index: 1;
}

.why-text::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fcf8f8;
    content: '';
    z-index: -1;
    border-radius: 30px;

}
.why-text::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 90%;
    background: #fff;
    content: '';
    z-index: -2;
    border-radius: 30px;

}

.dot-hover-heading h6 {
    font-size: 18px;
    font-family: "Poppins";
    text-transform: capitalize;
    color: #195641;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    margin: 0;
}

.dot-hover-list {
    border-left: 2px solid #7b1b3975;
    margin: 20px 0 0 0;
}

.dot-hover-heading {
    padding: 0px 0 0 30px;
    position: relative;
    z-index: 1;
    margin: -10px 0 0 0;
}

.dot-hover-item::before {
    position: absolute;
    top: 0px;
    left: -7px;
    width: 13px;
    height: 13px;
    background: #7b1b39;
    border-radius: 50%;
    content: '';
}

.dot-hover-text {
    padding: 0 0 0 30px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.dot-hover-item:hover .dot-hover-text {
    max-height: 500px;
    opacity: 1;
}

.dot-hover-item:hover .dot-hover-heading h6 {
    color: #7b1b39;
}

.dot-hover-item {
    margin: 30px 0;
    position: relative;
    cursor: pointer;
}

.dot-hover-item:last-child::before {
    position: absolute;
    top: unset;
    bottom: 0;
   
}
section.why-sec {
    padding-top: 80px;
}
/* section end */

/* section start */

ul.testi-name {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.testi-name * {
    margin: 0;
}

img.testi-quote {
    object-fit: scale-down;
    width: auto;
}

.testi-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

img.testi-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.testi-card p {
    margin: 10px 0;
}

ul.testi-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #ffa200;
    font-size: 18px;
}

.testi-card {
    padding: 40px 40px;
    border-radius: 40px;
    position: relative;
    z-index: 1;
    margin: 30px;
}
.testi-card::after{
  position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    border-radius: 40px;
}

.testi-card::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  width: 102%;
  height: 102%;
  z-index: -2;
  content: '';
  background: #7b1b39;
  border-radius: 40px;
}
.testi-heading {
    padding: 40px 0 0 0;
}


/* section end */

/* section start */

footer {
    background: #000000;
}

.footer-top {
    padding: 20px 0;
}


.footer-top ul.banner-social-list {
    justify-content: end;
    position: unset;
}


.footer-top ul.banner-social-list li a{
  background-color: transparent;
}

.footer-top ul.banner-social-list li a:hover {
    background: linear-gradient(90deg, rgb(123, 27, 57) 0%, rgb(25, 86, 65) 100%);
    color: #fff;
    border: none;
}
.ftr-logo img {
    width: 30%;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid #ffffff1c;
    border-bottom: 1px solid #ffffff1c;
}

.footer-about p {
    font-size: 14px;
}

.footer-about {
    padding: 25px;
    background: #ffff;
    border-radius: 15px;
    width: 85%;
}

footer h4 {
    font-family: 'Poppins';
    margin: 10px 0 20px 0;
}

.footer-quick a {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 2.5;
    font-family: 'Poppins';
}

h4.pink {
    margin: 0;
}

.footer-contact a {
    color: #fff;
    opacity: 0.7;
}

.footer-contact li i {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 30px 0;
}

.footer-xopy {
    padding: 20px 0;
}

.footer-xopy {
    color: #fff;
    text-align: center;
}
/* section end */

/* section start */
/* section end */

/* Home Page end*/