@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
*,:before,:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --theme__color1: #A66C49;
  --theme__light__text: #7e7e7e;
  --them__dark__text: #202020;
}
body {
  font-size: 16px;
  line-height: 1.2;
  background-color: #fff;
  z-index: 10;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: #3f4569;
  font-family: 'Poppins', sans-serif;
}

a, a:active, a:focus, a:active {
  text-decoration:none !important;
  color: #3f4569;
}
input{
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
a:hover,
a:focus,
input:focus,
input:hover,
select:focus,
select:hover,
select:active,
textarea:focus,
textarea:hover,
button:focus {
  outline: none;
}
input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
textarea {

}
/* dl {
  margin-bottom: 1.6em;
}
dt {
  font-weight: bold;
}
dd {
  margin-bottom: 1.6em;
} */
table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed; /* Prevents HTML tables from becoming too wide */
  width: 100%;
}
img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

iframe {
  width: 100%;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
  font-weight: 700;
}
h1,
.h1{

}

h2,
.h2{
  font-size: 25px;
  color: var(--theme__color1);
  margin-top: 0;
  margin-bottom: 27px;
}

h3,
.h3{
  font-size: 20px;
  color: var(--theme__color2);
  margin-bottom: 0;
}

h4,
.h4{
}

h5,
.h5{

}

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

p{
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 15px;
}
p:last-child{
  margin: 0;
}
button {
  border: none;
  background: transparent;
}
.default-button:hover {
  border-color: var(--theme__color1);
  color: #fff;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1130px;
  }
}
.link {
  color: #272727;
  display: inline-block;
  position: relative;
  transition: 0.2s;
}
.link::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #B1B1B1;
}
.link:hover::after{
  background: #2057aa;
}


.main-wrapper {
  overflow: hidden;
  width: 100%;
  background: #fff;
}

/*---------------------------------------------------
HEADER SECTION
----------------------------------------------------*/
.header-section {
  background: #fff;
  position: relative;
  z-index: 200;
  box-shadow: 0 0 27px rgba(0, 0, 0, 0.30);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header-section::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -1;
}
.header-section::after {
  content: '';
  display: block;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  height: 61px;
  width: 183px;
  position: absolute;
  background: url('../images/logo-bg.png') no-repeat center top/contain;
  z-index: -2;
  filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.30));
}
.logo {
	display: block;
	position: absolute;
	top: 20px;
	left: calc(50% - -1px);
	transform: translateX(-50%);
}
.header-section .container {
  display: flex;
  align-items: center;
}
.OffcanvasOpen {
  display: none;
  font-size: 22px;
  color: var(--them__dark__text);
  transition: 0.3s;
}
.OffcanvasOpen:hover {
  color: var(--theme__color1);
}
.main-menu  .menu-left{
    margin-right: auto;
}
.main-menu.menu-right {
  margin-left: auto;
}
.main-menu ul {
  display: flex;
  font-size: 18px;
}
.main-menu ul li a {
  font-size: 18px;
  color: #373737;
  font-weight: 500;
  padding: 30px 27px;
  position: relative;
  display: block;
  overflow: hidden;
}
.submenuz {
  padding: 15px 27px !important;
}
.main-menu ul li a::before {
  content: '';
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-100%);
  border-top: 8px solid var(--theme__color1);
  border-left: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid transparent;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.main-menu ul li a::after  {
  content: '';
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,100%);
  border-bottom: 8px solid var(--theme__color1);
  border-left: 8px solid transparent;
  border-top: 8px solid transparent;
  border-right: 8px solid transparent;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.main-menu ul li a:hover::before,
.main-menu ul li a:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%,0);
}
.lan-select {
  display: flex;
  align-items: center;
  padding: 0 0 0 22px;
}
.lan-select .select  {
  height: initial;
  padding: 0;
  background: transparent;
  border: none;
  float: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--them__dark__text);
  padding: 0 20px 0 7px;
}
.nice-select .list {
  display: block !important;
}


/* offcanvas-menu */
.offcanvas-menu {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 500;
  transform: translateX(-102%);
  transition: 0.3s;
}
.offcanvas-menu.active {
  transform: translate(0);
}
.offcanvas-menu .offcanvas-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}
.off-menu li a  {
	font-size: 18px;
	color: #373737;
	font-weight: 500;
	padding: 17px 27px;
	position: relative;
	display: block;
	overflow: hidden;
  text-align: center;
  transition: 0.3s;
}
.off-menu li a:hover {
  color: var(--theme__color1);
}
.offcanvas-close {
  position: absolute;
  font-size: 22px;
  top: 15px;
  right: 20px;
  transition: 0.3s;
}
.offcanvas-close:hover {
  color: var(--theme__color1);
}






/*--------------------------------------------------
HERO SLIDER SECTION
----------------------------------------------------*/


.hero-slide {
  padding-top: clamp(400px, 53.84% , 800px);
  background-size: cover !important;
  background-repeat: no-repeat !important;
  max-height: 200px;
  position: relative;
}
.hero-slide .slide-content {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.hero-slide .slide-content .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.hero-slide .slide-content h2 {
  font-size: 43.83px;
  color: #FEFEFE;
  text-align: center;
  text-shadow: 2px 2px 5px rgb(0, 0, 0);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 30px;
}
.hero-slide .slide-content h2 span {
  color: #FFECD5;
}
.hero-slide .slide-content .button {
  font-size: 21.2px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 13px 30px;
  border-radius: 50px;
  background: linear-gradient(#D8B68C,#A9785E);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.445);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.445);
  transition: 0.3s;
}
.hero-slide .slide-content .button:hover {
  transform: translateY(-4px);
}
/* hero-owl */
.hero-slider-section .owl-nav {
  position: absolute;
  height: 0;
  width: 100%;
  max-width: 1140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-slider-section .owl-nav button i {
  font-size: 74px;
  color: #fff;
}
.hero-slider-section .owl-dots {
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  bottom: 17px;
}
.hero-slider-section .owl-dots .owl-dot {
  height: 3px;
  width: 47px;
  background: #fff;
  opacity: 0.6;
  transition: 0.3s;
}
.hero-slider-section .owl-dots .owl-dot.active {
  opacity: 1;
}



/*--------------------------------------------------
ABOUT-US-SECTION
----------------------------------------------------*/
.about-us-section {
  padding: 115px 0 100px;
}
.about-us-section .single-row {
  margin-bottom: 100px;
}
.about-us-section .single-row:last-child {
  margin-bottom: 0;
}
.about-us-section .single-row .image {
  border-radius: 20px;
  position: relative;
  z-index: 10;
}
.about-us-section .single-row .image img {
  border-radius: 20px;
}
.about-us-section .single-row .image::before {
	position: absolute;
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	background: #EEEEEE;
	top: 0;
	left: 0;
	transition: 0.4s;
  transition-delay: 1s;
	border-radius: inherit;
	z-index: -2;
}
.about-us-section .single-row .image.active::before {
  transform: rotate(6deg);
}

.about-us-section .single-row .image img {
  width: 100%;
}
.about-us-section .single-row .content {
  --padding: 60px;
  padding-left: var(--padding);
}
.about-us-section .single-row.flip .content {
  padding-left: 0;
  padding-right: var(--padding);
}
.about-us-section .single-row .content h4 {
  font-size: 22px;
  font-weight: 400;
  color: #7e7e7e;
  margin: 0;
}
.about-us-section .single-row .content h3 {
  font-size: 28px;
  color: var(--theme__color1);
  line-height: 1;
  margin: 0 0 24px;
}
.about-us-section .single-row .content p {
  font-size: 16px;
  color: #202020;
  line-height: 1.4;
  text-align: justify;
  margin: 0;
}
.about-us-section .single-row .content .about-button {
  padding: 8px 15px;
  margin-top: 18px;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(#D8B68C,#A9785E);
  border-radius: 5px;
  transition: 0.3s;
}
.about-us-section .single-row .content .about-button:hover {
  transform: translateY(-3px);
}




/*--------------------------------------------------
FOR-PEOPLE SECTION
----------------------------------------------------*/
.for-people-section {
  padding: 62px 0 58px;
  background: url('../images/bg/for-people.jpg') no-repeat center center/cover;
  overflow: hidden;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head h3 {
  font-size: 28px;
  color: var(--theme__color1);
  margin: 0;
}
.section-head p {
  font-size: 18px;
  color: #7e7e7e;
  margin: 2px 0 0;
}
.for-people-section .section-main {
  --inner-space: 15px;
  --item: 4;
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--inner-space) * -0.5);
  margin-top: 40px;
}
.for-people-section .section-main .single-item {
  width: calc((100% / var(--item)) - var(--inner-space));
  margin: 0 calc(var(--inner-space) * 0.5);

}
.for-people-section .section-main .single-item-inner {
  background: #fff;
  border-radius: 15px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.158);
  padding: 13px;
  transition: 0.3s;
}
.for-people-section .section-main .single-item:hover .single-item-inner {
  background: var(--theme__color1);
}
.for-people-section .section-main .single-item .image {

}
.for-people-section .section-main .single-item .image img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.for-people-section .section-main .single-item .text p {
  font-size: 22px;
  font-weight: 600;
  color: var(--them__dark__text);
  text-align: center;
  margin: 12px 0 3px;
  transition: 0.3s;
}
.for-people-section .section-main .single-item:hover .text p {
  color: #fff;
}




/*--------------------------------------------------
SELECTED PRODUCT SECTION
----------------------------------------------------*/
.selected-product-section {
  padding: 100px 0 80px;
}
.selected-product-section .section-main {
  --shadow-space: 7px;
  margin: 0 calc(var(--shadow-space) * -1);
  width: calc(100% + (var(--shadow-space) * 2));
  margin-top: 36px;
}
.selected-product-section .section-main .single-product-outer {
  padding: var(--shadow-space);
}
.selected-product-section .section-main .single-product {

}
.selected-product-section .section-main .single-product .image {

  position: relative;
  border-radius: 10px;
}
.selected-product-section .section-main .single-product .image::before {
	position: absolute;
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	background: #EEEEEE;
	top: 0;
	left: 0;
	transform: rotate(5deg);
  transition: 0.4s;
	border-radius: inherit;
	z-index: -2;
}
.selected-product-section .section-main .single-product:hover .image::before {
  transform: rotate(-5deg);
}
.selected-product-section .section-main .single-product .img-inner {
  border: 1px solid #DDD2C8;
  overflow: hidden;
  border-radius: 10px;
}

.selected-product-section .section-main .single-product img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}
.selected-product-section .section-main .single-product:hover img {
  transform: scale(1.03);
}
.selected-product-section .section-main .single-product .content {
  text-align: center;
}
.selected-product-section .section-main .single-product .content h4 {
  font-size: 18px;
  color: var(--them__dark__text);
  font-weight: 600;
  margin: 22px 0 0;
}
.selected-product-section .section-main .single-product .content p {
  font-size: 15px;
  font-weight: 400;
  color: var(--them__dark__text);
  margin: 0;
}
.selected-product-section .section-main .single-product .content .price {
  font-size: 15px;
  font-weight: 600;
  display: block;
  color: var(--them__dark__text);
}
/* owl */
.selected-product-section .owl-nav {
  position: absolute;
  height: 0;
  width: calc(100% + 100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.selected-product-section .owl-nav button span {
  font-size: 54px !important;
  color: #DEB894;
}





/*--------------------------------------------------
ALBUM SECTION
----------------------------------------------------*/
.album-section {
  background: url('../images/bg/album-bg.jpg') no-repeat center center/cover;
  padding: 75px 0 60px;
}

.album-img-wrap {
  margin-top: 42px;
}
.single-album-img {
  overflow: hidden;
  border-radius: 15px;
}
.single-album-img img {
  transition: 0.5s;
}
.single-album-img:hover img {
  transform: scale(1.04);
}
.album-img-wrap .owl-nav {
  position: absolute;
  height: 0;
  width: calc(100% + 100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.album-img-wrap .owl-nav button span {
  font-size: 42px !important;
  color: var(--them__dark__text);
}





/*--------------------------------------------------
PAGE TITLE SECTION
----------------------------------------------------*/
.page-title-section {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  text-align: center;
  padding: 130px 0 80px;
  position: relative;
  z-index: 10;
}
.page-title-section::before {
  content: '';
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #222222;
  opacity: 0.4;
  z-index: -2;
}
.page-title-section h2 {
  font-size: 33.8px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
}
.page-title-section p {
  font-size: 21.72px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}




/*--------------------------------------------------
PRODUCT-COLLECTION SECTION
----------------------------------------------------*/
.product-collection-section {
  padding: 100px 0 15px;
}
.product-collection {
  --inner-space: 70px;
  --item: 3;
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--inner-space) * -0.5);
  margin-top: 85px;
}
.product-collection-card {
  width: calc((100% / var(--item)) - var(--inner-space));
  margin: 0 calc(var(--inner-space) * 0.5) calc(var(--inner-space) * 0.9);
  background: linear-gradient(#F9EEE4,#F1E0D0);
  padding: 8px 8px 26px;
  border-radius: 12px;
  border: 1px solid #E4D9CF;
  height: 100%;
}
.product-collection-card .image-box {
  width: 100%;
  border: 1px solid #E4D9CF;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.product-collection-card .image-box .main-img-wrap {
  width: 100%;
  transition: 0.3s;
  display: block;
}
.product-collection-card:hover .image-box .main-img-wrap {
  transform: scale(1.05);
}
.product-collection-card .image-box .main-img {
  width: 100%;
  border-radius: 12px;
}
.product-collection-card .image-box .button {
  position: absolute;
  right: 8px;
  bottom: 8px;
}
.product-collection-card .content h3 {
  font-size: 20px;
  margin: 22px 0 10px;
  font-weight: 600;
  color: var(--them__dark__text);
  text-align: center;
}
.product-collection-card .content .sku {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  display: block;
  text-align: center;
  color: var(--them__dark__text);
}
.product-collection-card .content .sku span {
  font-weight: 400;
}
.product-collection-card .content .price {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  display: block;
  text-align: center;
  color: var(--them__dark__text);
}
.product-collection-card .content .price span {
  font-weight: 400;
}






/*--------------------------------------------------
QUOTE SECTION
----------------------------------------------------*/
.quote-section {
  background: url('../images/bg/quote-bg.jpg') no-repeat center center/cover;
  padding: 60px 0 55px;
}
.quote-form {
  margin-top: 34px;
}
.inner-quote-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.inner-quote-form .part1 {
  width: 50%;
  padding-right: 32px;
}
.inner-quote-form .part2 {
  width: 50%;
}
.quote-form .text-fill {

}
.quote-form .text-fill .input-group {
  width: 100%;
  margin-bottom: 12px;
}
::placeholder {
  opacity: 1;
}
.quote-form .text-fill .input-group input[type="text"] {
  font-size: 18px;
  color: #777777;
  height: 60px;
  border: 1px solid #B2B2B2;
  padding: 20px 21px;
  border-radius: 10px !important;
  width: 100%;
}
.quote-form .text-fill .input-group textarea {
  font-size: 18px;
  color: #777777;
  height: 195px;
  border: 1px solid #B2B2B2;
  padding: 20px 21px;
  border-radius: 10px !important;
  resize: none;
  width: 100%;
}
.quote-form .number-select-wrap {
  --inner-space: 17px;
  --item: 5;
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--inner-space) * -0.5);
}
.quote-form .number-select-wrap .input-group {
  width: calc((100% / var(--item)) - var(--inner-space));
  margin: 0 calc(var(--inner-space) * 0.5) calc(var(--inner-space) * 0.9);
  background: linear-gradient(#F9EEE4,#F1E0D0);
  padding: 8px 8px 9px;
  border-radius: 12px;
  border: 1px solid #E4D9CF;
  margin-bottom: 38px;
}
.quote-form .number-select-wrap .input-group label {
	font-size: 17.7px;
	font-weight: 600;
	text-align: center;
	width: 100%;
	color: var(--them__dark__text);
	margin: 8px 0 8px;
}
.quote-form .number-select-wrap .input-group .wrap {
  position: relative;
}
.quote-form .number-select-wrap .input-group input {
 width: 100% !important;
 font-size: 31.21px;
 text-align: right;
 padding: 0;
 height: 42px;
 border-radius: 13px;
 border: 1px solid #A1A1A1;
 padding: 0 10px;
}

.quote-form .number-select-wrap .input-group button:nth-of-type(1) {
  position: absolute;
  top: 6px;
  left: 4px;
  padding: 0;
  height: 13px;
  width: 20px;
}
.quote-form .number-select-wrap .input-group button {

}
.quote-form .number-select-wrap .input-group button img {
  width: 100%;
}
.quote-form .number-select-wrap .input-group button:nth-of-type(2) {
  left: 4px;
  bottom: 14px;
  position: absolute;
  padding: 0;
  height: 11px;
  width: 20px;
}
.quote-form .note.margin-1 {
	margin: -15px 0 13px;
}
.quote-form .note p {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--them__dark__text);
}
.quote-form .submit {
  background: linear-gradient(#D9B78D,#A8775D);
  width: 100%;
  padding: 32px 0 27px;
  border-radius: 15px;
  transition: 0.3s;
}
.quote-form .submit:hover span {
  color: var(--them__dark__text);
}
.quote-form .submit span {
  font-size: 22px;
  font-weight: 600;
  display: block;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.quote-form .submit span.sub {
  font-size: 13px;
  font-weight: 400;
  margin-top: 3px;
}









/*--------------------------------------------------
FOOTER SECTION
----------------------------------------------------*/
.footer-section {
  background: #20201F;
}

/* footer-bottom */
.footer-bottom {
  text-align: center;
  color: #fff;
}
.footer-bottom .container {
  padding: 42px 0 52px;
}
.footer-bottom .text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.6;
}
.footer-bottom .founder {
  margin-top: 18px;
  background: #fff ;
  font-size: 14px;
  display: inline-block;
  color: #272727;
  padding: 10px 36px;
  border-radius: 40px;
  box-shadow: -4px 6px #373736;
}
.footer-bottom .founder .left-line {
  position: relative;
  margin-left: 14px;
}
.footer-bottom .founder .left-line::before {
  content: '';
  position: absolute;
  display: block;
  height: 80%;
  width: 2px;
  background: #686868;
  left: -10px;
  top: 3px;
}










/* preloader */
#loading{
	background-color: #F9E9DC;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1000;
	margin-top: 0px;
	top: 0px;
}
#loading-center{
	width: 100%;
	height: 100%;
	position: relative;
	}
#loading-center-absolute {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 200px;
	width: 200px;
	margin-top: -100px;
	margin-left: -100px;

}
.object{
    -moz-border-radius: 50% 50% 50% 50%;
	-webkit-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%;
	position: absolute;
	border-left: 5px solid #FFF;
	border-right: 5px solid #FFF;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	-webkit-animation: animate 2s infinite;
	animation: animate 2s infinite;
	}

#object_one{
	left: 75px;
	top: 75px;
	width: 50px;
	height: 50px;
	}

#object_two{
	left: 65px;
	top: 65px;
	width: 70px;
	height: 70px;
	-webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
	}

#object_three{
	left: 55px;
	top: 55px;
	width: 90px;
	height: 90px;
	-webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
	}
#object_four{
	left: 45px;
	top: 45px;
	width: 110px;
	height: 110px;
	-webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;

	}

@-webkit-keyframes animate {


50% {
	-ms-transform: rotate(180deg);
   	-webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

100% {
	-ms-transform: rotate(0deg);
   	-webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

}

@keyframes animate {

50% {
	-ms-transform: rotate(180deg);
   	-webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

100% {
	-ms-transform: rotate(0deg);
   	-webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }


}



.footer-content {
  padding-top: 50px;
  padding-bottom: 50px;
}
.footer-content a {
  text-decoration: underline;
}
.copyright_area {
margin-bottom: 70px;
}
.copyright-text {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
margin-bottom:10px;
}
.credits-text, .credits-text a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
text-decoration: none;
}
.heartz{animation:.8s infinite beatHeart}
@keyframes beatHeart{0%{transform:scale(1)}25%{transform:scale(1.1)}40%{transform:scale(1)}60%{transform:scale(1.1)}100%{transform:scale(1)}}


.Form_Locked_Section {
    background: linear-gradient(#F9EEE4,#F1E0D0);
    padding: 20px;
    border-radius: 12px;
    margin-top: 50px;
    margin-bottom: 50px;
    border: 1px solid #E4D9CF;
    text-align:center;
}
.Form_Locked_Section label {
  margin-bottom:10px;
  font-weight: 600;
}
