
/* @import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap"); */
/* @import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300&family=Laila:wght@300&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300&family=Laila:wght@300;500&display=swap');

        

        
body{
    padding: 0;
    margin: 0;
    /* font-family: "Rubik", sans-serif; */
    font-family: 'Kalam', cursive;
font-family: 'Laila', sans-serif;
  box-sizing: border-box;
  background: rgb(238, 233, 228);
}


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
background-image: linear-gradient(to right top, #baa45c, #ab6020);



}

/* @import url("https://fonts.googleapis.com/css?family=Muli:900"); */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}


.heading-container{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 15px ;
	margin-bottom: 15px ;
}
/* .heading-container span{
	width: 45px;
	height: 2px;
	background: rgba(25, 25, 24, 0.622);
	margin: 5px 0;
} */
.heading {
  letter-spacing: 3px;
  font-size: 1.2vw;
  font-weight: bold;
  /* background-color: #ffffff; */
  background: linear-gradient(to right top, #baa45c, #ab6020);

  -webkit-text-fill-color: transparent;
  color:transparent;
  -webkit-background-clip:text;
  text-align: center;
  text-transform: uppercase;
  }

.container-text h1 {
  text-transform: uppercase;

  background-image: linear-gradient(to right top, #b6b69c, #baa45c, #ab6020, #650b06, #683c69);
  background-size: 50% auto;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  font-size: 6vw;
  animation: gradientAnim 7.5s ease alternate infinite;
}


@keyframes gradientAnim {
  to {
    background-position: 100% top;
  }
}

/* Landing Animation */


/**responsive box contsiner***/
.responsive-two-box-container-container {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-rows: 650px;
  justify-content: center;
  padding: 1rem 0;
  margin: 0 auto;
}


.left-div,
.right-div {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

}

.right-div {
  padding-right: 1rem;
}

.paragraph {
  /* line-height: 1.7rem; */
  line-height: 155%;
    font-size: 1vw;
  text-align: justify;
  letter-spacing: .1em;
  /* font-weight: 500; */
}


.left-div-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: red; */
  /* background-color: rgba(0, 0, 0, 0.6); */

  display: flex;
  align-items: center;
  justify-content: center;
}

/**responsive box contsiner***/

@media only screen and (max-width: 915px) {
  img {
    /* width: 100%; */
    /* margin: 0 auto; */
  }

  .paragraph {
    font-size: 3vw;
  }

  .responsive-two-box-container-container {
    width: 95%;
    display: grid;
    grid-template-rows:auto;

  }

  .heading {
    font-size: 4vw;
  }

  .right-div {
    /* padding: 1rem; */
  }

  .square-button {
    text-transform: uppercase;
    font-size: 3.2vw !important;

  }

  

  .counter-overl-offer-text {
    width: 90% !important;
  }

  .stats h3 {
    font-size: 3.3vw !important;
  }
}

@media only screen and (max-width: 1000px) and (orientation: landscape) {
  .paragraph {
    font-size: 1.5vw;
  }

  .heading {

    font-size: 2vw;
  }

  .text-blod-upper {
    text-transform: uppercase;
    font-size: 1.8vw !important;
  }
}

/****/
.button {
  display: inline-block;
  min-width: 100px;
  background-color: rgba(186, 106, 41, 0.715);
  text-align: center;
  cursor: pointer;
  padding: 10px 15px;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  border: 1px solid white;
  margin-top: 10px;

}

.button:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.button:hover span {
  background-color: transparent;
  color: rgb(240, 233, 227);
}

.button span {
  color: #fff;
  /* font-weight: bold; */
  font-size: 1.5rem;
  text-transform: uppercase;
}

.button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  /* background-color: #fff; */
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
  animation: pulse 1.5s infinite;
}

.button:hover::after {
  opacity: 1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/****/
.heading-title {
  text-align: center;
  font-size: 2.5rem;
  padding: 0 5px;
  border-radius: 5px;
  margin: 5px 0;
  /* background:rgba(236, 230, 230, 0.356); */
  color: rgb(207 133 89);
  text-shadow: 0 1px 0 #ccc,
    0 2px 0 #c9c9c9,
    0 3px 0 #bbb,
    0 4px 0 #b9b9b9,
    0 5px 0 #aaa,
    0 6px 1px rgba(0, 0, 0, .1),
    0 1px 3px rgba(0, 0, 0, .3),
    0 3px 5px rgba(0, 0, 0, .2),
    0 5px 10px rgba(0, 0, 0, .25),
    0 10px 10px rgba(0, 0, 0, .2),
    0 20px 20px rgba(0, 0, 0, .15),
    0 30px 20px rgba(0, 0, 0, .1);
}

.responsive-div {
  max-width: 60%;
  margin-top: 90px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

@media(max-width:915px){
  .responsive-div {
    max-width: 95%;
    margin-top: 90px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
}


/****Heading***/
.heading-div {
  /* background: #333; */
  display: flex;
  color: rgb(226, 169, 71);
}

.heading-div:before,
.heading-div:after {
  content: '';
  margin: auto 1em;
  border-bottom: solid 1px;
  flex: 1;
}

.heading-div h1 {
  position: relative;
  padding: 0.25em 1em;
  overflow: hidden;
  background: linear-gradient(currentcolor, currentcolor) no-repeat top center, linear-gradient(currentcolor, currentcolor) no-repeat bottom center;
  background-size: calc(100% - 1.65em) 1px;
}

.heading-div h1:before,
.heading-div h1:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: solid 1px;
  border-top: none;
  border-bottom: none;
  transform: skew(45deg)
}

.heading-div h1:after {
  transform: skew(-45deg)
}
.heading-div + .heading-div {
  color:pink;
}
.heading-div + .heading-div + .heading-div {
  color:gold;
}
/****Heading***/



/*****/
/* === HEADING STYLE #2 === */
/* === HEADING STYLE #1 === */
