@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/***** General CSS *****/

body {
  word-break: break-word;
  font-family: "Poppins", sans-serif;
  color: #615d59;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  position: relative;
}

@font-face {
  font-family: "diransita";
  src: url("../fonts/Diranista.otf");
}

/***** Headings *****/

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222222;
  font-family: "diransita";
}

h1 {
  font-size: 130px;
  line-height: 0.9;
}

h2 {
  font-size: 90px;
  line-height: 0.9;
  margin: 0;
}

h3 {
  font-size: 34px;
  line-height: 40px;
}

h4 {
  font-size: 24px;
  line-height: 29px;
}

h5 {
  font-size: 20px;
  line-height: 25px;
}

h6 {
  font-size: 18px;
  line-height: 22px;
}

p {
  font-size: 14px;
  line-height: 24px;
}

/***** Gradient Text *****/

/***** Utilities *****/

.padd {
  padding: 100px 0;
  position: relative;
}

.paddTop {
  padding-top: 100px;
}

.paddBottom {
  padding-bottom: 100px;
}

.margTop {
  margin-top: 100px;
}

.margBottom {
  margin-bottom: 100px;
}

.flx {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bt {
  display: inline-block;
}

.pbtn {
  background-color: #222222;
  border-radius: 45px;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  display: inline-block;
  font-weight: 500;
  padding: 10px 40px;
  box-shadow: 0px 0px 15px 0px #555555b5;
  transition: 0.3s;
}

.maxWidth {
  max-width: 1440px;
}

/* general btn css start  */

a {
  text-decoration: none;
  color: #fff;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #fff;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ffffff69;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #fff;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

/*banner css end*/

img.body-img {
  object-fit: fill;
  z-index: -1;
}

/* ==================== Header ============================= */

/* home banner  */

.banner {
  position: relative;
  padding: 90px 0px 40px;
}

.banner-top p {
  font-size: 17px;
  line-height: 32px;
  padding-top: 10px;
  color: #fff;
}

.banner-bottom {
  padding: 0px 40px;
}

.bannerSlider .slick-slide {
  opacity: 0;
  width: 400px;
}

.bannerSlider .slick-slide.slick-current.slick-active.slick-center {
  width: 580px;
}

.ban_slide_img {
  margin: 24px 0px 24px;
}

.ban_slide_img img {
  border-radius: 30px;
  filter: drop-shadow(-1px 7px 9px #00000038);
  height: 360px;
  object-fit: cover;
}

.bannerSlider
  .slick-slide.slick-current.slick-active.slick-center
  .ban_slide_img {
  padding: 0px 20px;
}

.bannerSlider
  .slick-slide.slick-current.slick-active.slick-center
  .ban_slide_img
  img {
  height: 450px;
}

.bannerSlider .slick-slide.slick-active.left .ban_slide_img {
  transform: rotate(11deg);
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 20px;
}

.bannerSlider .slick-slide.slick-active.right .ban_slide_img {
  transform: rotate(-11deg);
  padding-top: 20px;
  padding-right: 40px;
  padding-left: 10px;
}

header {
  position: absolute;
  top: 0;
  z-index: 12;
  width: 100%;
}

img.section-shape {
  position: absolute;
  width: 87%;
  left: 0;
  right: 0;
  margin: 0px auto;
  height: 100%;
  object-fit: fill;
  top: -32%;
}

.banner-top {
  position: relative;
}

.banner-top h1 {
  color: #fff;
}

.banner-top .pbtn {
  box-shadow: unset;
}

.menuSec .row.border-bottom-c {
  border-bottom: 1px solid #ffffff2e;
  padding: 12px 0px 8px;
}

.cart-bnt {
  display: flex;
  justify-content: flex-end;
}

.cart-bnt a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 45px;
  background: #f8e8d8;
  color: #3f221d;
  transition: 0.2s;
}

.cart-bnt a:hover {
  background: #fff;
  color: #3f221d;
}
/* home banner  */

/* about us  start  */
.abtwrap {
  width: 88%;
  margin-left: 40px;
}

img.ab1-img {
  height: 530px;
  border-radius: 20px;
  object-fit: cover;
  transform: rotate(-3deg);
}

.abt-img {
  position: relative;
  padding: 10px 30px 0px 60px;
}

.ab-right {
  position: relative;
  padding-left: 20px;
}

.ab-right p {
  font-size: 16px;
  line-height: 28px;
}

.abt-img:before {
  position: absolute;
  border-radius: 20px;
  background: #3f221d;
  content: "";
  left: 40px;
  top: -5px;
  height: 520px;
  width: 540px;
  transform: rotate(-9deg);
}

img.about-img2 {
  position: absolute;
  top: 110px;
  right: -30px;
  height: 510px;
  border-radius: 20px;
  object-fit: cover;
  transform: rotate(3deg);
  width: 150px;
}

h3.mission-title {
  font-family: "Poppins";
  color: #3f221d;
  font-size: 27px;
  font-weight: 600;
  line-height: 30px;
  margin: 0px;
}

/* about us  start  */

/* Longram outling  */

img.longram-outling-img {
  width: 90%;
  height: 90px;
  object-fit: cover;
  margin: 0px auto;
  display: table;
  object-position: 70% 10%;
}

.outling-heading h2 {
  color: #461109;
  font-size: 52px;
  line-height: 60px;
  text-align: center;
}

section.outling {
  border-top: 1px solid #461109;
  border-bottom: 1px solid #461109;
  transform: rotate(4deg);
  margin-left: -8px;
}

.chose-sec .profes-heading p {
  padding-bottom: 10px;
  font-size: 17px;
  line-height: 30px;
}

.chose-sec .profes-heading h2 {
  line-height: 1.1;
}

/* Longram outling  */

.profes-heading {
  border-bottom: 1px solid #cdc4b9;
  margin: 10px 0 24px;
}

img.profes-head {
  width: 100%;
  height: 180px;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.profes-head-img {
  position: relative;
}

.profes-head-img:before {
  position: absolute;
  border-radius: 20px;
  background: #3f221d;
  content: "";
  left: -7px;
  top: -20px;
  height: 170px;
  width: 100%;
  transform: rotate(-4deg);
}

.srvs-card {
  position: relative;
  padding: 0px 20px 0px;

  margin: 0px 10px;
}

.srvs-card:hover:before {
  height: 100%;
  bottom: 0;
}

.srvs-img {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3f221d;
  border-radius: 45px;
  position: relative;
}

.srvs-img img {
  width: 40px;
}

.srvs-card p {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  position: relative;
}

h3.srvs-title {
  margin: 20px 0 10px;
  position: relative;
}

.svs-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.svs-link a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3f221d;
  border-radius: 45px;
  transition: 0.2s;
}

.srvs-card:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  border-radius: 17px;
  background: #fff;
  left: 0;
  right: 0;
  margin: 0px auto;
  bottom: 14px;
  filter: drop-shadow(-1px 7px 9px #00000029);
  transition: 0.2s;
}

.svs-link a:hover {
  transform: scale(1.1);
}

/* ============================ Modern Design ======================= */

img.modern-card-img {
  height: 440px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.2s;
  position: relative;
  filter: drop-shadow(-1px 7px 9px #0000001f);
}

.modern-sec-wp {
  padding: 0 40px;
}

h3.modern-title {
  text-align: center;
}

h3.modern-title {
  font-family: "Poppins";
  color: #461109;
  font-size: 28px;
  line-height: 34px;
  margin-top: 18px;
}

.md-left-cart {
  transform: rotate(-8deg);
}

.md-right-cart {
  transform: rotate(11deg);
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

section.modern-sec .heading {
  padding: 60px 0 80px;
}

img.modern-shape {
  position: absolute;
  top: 0;
  width: 86%;
  right: 0;
  left: 0;
  margin: 0px auto;
  height: 82%;
  object-fit: fill;
}
/* ============================ Modern Design ======================= */

/* ======================================= Desing chose =================== */

h3.design-title {
  font-family: "Poppins";
  color: #3f221d;
  margin: 0;
  font-weight: 600;
}

.design-row {
  border-bottom: 2px solid #cdc4b9;
  padding: 32px 0;
}

img.design-list-img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  height: 190px;
}

.design-list-wrp {
  position: relative;
  width: 90%;
  margin-left: 10px;
}

.design-list-wrp:before {
  position: absolute;
  border-radius: 20px;
  background: #3f221d;
  content: "";
  left: -3px;
  top: 0px;
  height: 181px;
  width: 100%;
  transform: rotate(4deg);
}

.design-list-wrp.rotate-right:before {
  transform: rotate(-4deg);
}

section.outling.outling-two {
  transform: rotate(-4deg);
  margin-right: -8px;
}

/* ======================================= Desing chose =================== */

/* ======================= Reviews sec =============================== */

section.revs-sec .heading {
  padding: 70px 0 40px;
}

img.rev-img1 {
  height: 570px;
  width: 100%;
  object-fit: cover;
  border-radius: 40px;
  object-position: 100% 0%;
  position: relative;
}

.rev-left-col {
  position: relative;
  transform: rotate(-5deg);
}

.cli-info-box {
  background: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  position: absolute;
  width: 80%;
  left: 30px;
  bottom: 40px;
}

.cli-icon {
  width: 60px;
  height: 60px;
  background: #3f221d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 45px;
}

p.cli-name.m-0 {
  color: #060709;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

p.cli-name span {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

img.quote-img {
  width: 100px;
}

.rev-crd {
  position: relative;
  background: #222222;
  padding: 32px;
  border-radius: 40px;
  margin-top: 20px;
}

.quote-img {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}

.rev-crd .descrip p {
  font-size: 16px;
  line-height: 26px;
  color: #cecece;
  padding-bottom: 10px;
}

img.test-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 45px;
}

p.cli-s-name {
  color: #ffff;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
}

p.cli-s-name span {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.cli-info {
  margin-top: 20px;
}

.rev-right-card {
  height: 565px;
  background: #fff;
  border-radius: 50px;
}

img.rev-img2 {
  width: 100%;
  object-fit: cover;
}

.rev-right-txt {
  padding: 30px 40px 14px;
}

.rev-right-txt p {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  width: 80%;
}

.rev-right-txt p.rev-tit-2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  width: auto;
}

.rev-right-col {
  transform: rotate(5deg);
}

section.revs-sec img.modern-shape {
  height: 75%;
}

/* ======================= Reviews sec =============================== */

/* ----------------------------- Footer Start  ------------------------*/

.home-contact-form input,
.home-contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #baa593;
  padding: 10px 0;
  margin: 0 0 20px;
  background: transparent;
  color: #4c2607;
}

.home-contact-form textarea {
  resize: none;
  height: 150px;
}

.home-contact-form input::placeholder,
.home-contact-form textarea::placeholder {
  text-transform: uppercase;
  font-weight: 500;
}

section.home-contact-sec form {
  padding: 70px 0;
  position: relative;
  margin-right: 30px;
}

.home-contact-head h3 {
  writing-mode: tb;
  color: #fff;
  font-size: 56px;
  line-height: 0.9;
  margin: 0;
  transform: rotate(180deg);
  text-transform: uppercase;
  font-family: "Poppins";
  letter-spacing: 7px;
}

.home-contact-head {
  text-align: center;
  background: #3f221d;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-left: -18px;
  margin-right: 94px;
  border-radius: 0px 20px 20px 0px;
}

section.home-contact-sec form:before {
  content: "";
  position: absolute;
  background: #eadccf;
  width: 77vw;
  height: 100%;
  z-index: -1;
  top: 0;
  right: -15%;
  border-radius: 0 20px 20px 0;
}

.contact-page {
  padding-top: 150px;
}

footer {
  background: #222222;
  padding: 340px 0 60px;
  position: relative;
  overflow: hidden;
}

h3.footer-title {
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 24px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Poppins";
  color: #fff;
}

.f-address ul {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.f-address ul i {
  font-size: 18px;
  color: #fff;
}

.f-address ul li a {
  color: #fff;
  font-weight: 300;
  display: block;
  line-height: 20px;
}

.home-contact-form textarea::placeholder {
  position: absolute;
  bottom: 20px;
}

.f-address {
  position: relative;
  padding: 0 0px 0 40px;
}

.f-address:before {
  content: "";
  position: absolute;
  background: #fff;
  width: 1px;
  height: 320px;
  bottom: -117px;
  left: 0px;
  opacity: 8%;
}

section.home-contact-sec {
  margin-bottom: -250px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.copy-right p {
  background: #eadccf;
  border-radius: 5px;
  color: #000;
  margin: 0;
  writing-mode: sideways-rl;
  font-size: 14px;
  position: relative;
  padding: 23px 14px;
  font-weight: 600;
}

.copy-right {
  transform: rotate(180deg);
  position: absolute;
  right: 240px;
  bottom: 5px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  display: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}

.f-newletter {
  margin-top: 20px;
}

section.home-contact-sec .bt button.pbtn {
  font-size: 17px;
  line-height: 24px;
  background: #3f221d;
  padding: 16px 50px;
}

.bannerSlider .slick-slide.slick-active {
  opacity: 1 !important;
}

/* ----------------------------- Footer End  ------------------------*/
