/*
=========== 01. General CSS ===========
*/
@font-face {
  font-family: myFont;
  src: url(fonts\AvenirNext-UltraLight.ttf);
}

body {
  font-family: 'Muli', sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #1c1c1c;
  background: #ffffff;
  overflow-x: hidden;
  /* position: relative; */
}

/* Custom Container */
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Common CSS */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Muli, sans-serif;
  color: #1c1c1c;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 10px;
  padding: 0;
  text-transform: capitalize;
}

h1 {
  font-size: 40px;
  line-height: 60px;
}

h2 {
  font-size: 36px;
  line-height: 54px;
}

h3 {
  font-size: 28px;
  line-height: 42px;
}

h4 {
  font-size: 24px;
  line-height: 36px;
}

h5 {
  font-size: 20px;
  line-height: 30px;
}

h6 {
  font-size: 16px;
  line-height: 24px;
}

p {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:focus,
a:hover {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}




/* Placeholder CSS */
::-moz-placeholder {
  color: #676767 !important;
}

::-o-placeholder {
  color: #676767 !important;
}

:-ms-input-placeholder {
  color: #676767 !important;
}

input:-moz-placeholder {
  color: #676767 !important;
}


/*.subscribe-col::-moz-placeholder {
     color: #ffffff !important;
}
.subscribe-col::-o-placeholder {
     color: #ffffff !important;
}
.subscribe-col:-ms-input-placeholder {
     color: #ffffff !important;
}
.subscribe-col input:-moz-placeholder {
     color: #ffffff !important;
}*/

/* Selection CSS */
::-moz-selection {
  color: #ffffff;
  background: #FE93A2;
}

::selection {
  color: #ffffff;
  background: #FE93A2;
}

::-webkit-input-placeholder {
  color: #676767 !important;
}



/* Form CSS */
.form-control {
  height: 45px;
  margin-bottom: 30px;
  box-shadow: none;
  border: 1px solid #e4e4e4;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
}

.form-control:focus {
  border-color: #666666;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

/* Overlay CSS */
.overlay-black {
  position: relative;
}

.overlay-black:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(34, 34, 34, 0.8);
}

.overlay-white {
  position: relative;
}

.overlay-white:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.8);
}




/* Theme btn CSS */
.my-btn {
  display: inline-block;
  position: relative;
  padding: 12px 50px 15px;
  background: transparent;
  font-size: 16px;
  color: #fe93a2;
  font-weight: 400;
  text-transform: capitalize;
  height: 52px;
  overflow: hidden;
  border: 1px solid #fe93a2;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  z-index: 0;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.my-btn:hover {
  border: 1px solid #fe93a2;
  background: transparent;
  color: #ffffff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.my-btn i {
  font-size: 24px;
  position: relative;
  bottom: -5px;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.my-btn:hover i {
  color: #ffffff;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.my-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background: #FE93A2;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.my-btn:hover:before {
  width: 100%;
  opacity: 1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.btn-primary.focus,
.btn-primary:focus {
  box-shadow: none;
}


/* Preloader CSS */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #ffffff url("../images/preloader.gif") no-repeat center center;
}

/* Pagination CSS */
.my-pagination {
  text-align: center;
  display: block;
}

.my-pagination {
  margin-top: 20px;
  margin-bottom: 30px;
}

.my-pagination .page-link {
  color: #FE93A2;
}

.my-pagination .page-link:hover {
  background: #FE93A2;
  border-color: #FE93A2;
  color: #ffffff;
}

.my-pagination .page-item.active .page-link {
  background: #FE93A2;
  border-color: #FE93A2;
}

/* Title CSS */
.my-title {
  text-align: center;
  margin-bottom: 40px;
}

.my-title h2 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 0;
}

.my-title h6 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 5px;
}


/* 
=========== 02. Header CSS ===========
*/
.header-area {
  min-height: 100px;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #ADACAD;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* box-shadow: -2px -2px 7px black; */
}

.site-logo {
  padding-top: 30px;
  width: 300px;
}

/* Menu CSS Start */
.stellarnav {
  /*zxid for changing height of logo*/
  margin-top: 30px;
}

.stellarnav ul {
  text-align: right;
}

.stellarnav>ul>li {
  background-color: transparent;
  border: none;
  display: inline-block;
  text-align: left;
  border-bottom: 2px solid transparent;
  margin: 0 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}

.stellarnav>ul>li:hover {
  border-bottom: 2px solid black;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.stellarnav>ul>li>a {
  padding: 10px 0;
  color: white !important;
  /*zxid*/
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* background-color: black; */
}

.stellarnav>ul>li:last-child a {
  padding-right: 0;

}

.stellarnav.light {
  background: transparent;
}

.stellarnav>ul>li>a:hover {
  color: #FFFFFF !important;
}

.stellarnav>ul>li.active>a {

  border-bottom-color: #FE93A2 !important;
}

.stellarnav ul ul {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, .15);
  border-top: 2px solid #FE93A2;
}

.stellarnav ul li ul li a {
  padding: 12px 15px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  text-transform: capitalize;

}

.stellarnav ul li ul li a:hover {
  padding-left: 20px;
  color: #FE93A2;
  background: #f6f6f6;

}

.stellarnav ul li ul li:last-child a {
  border-bottom: none;
}

.stellarnav.light a,
.stellarnav.light li a {
  color: #333333;
}







/* Fixed Header CSS */
/*zaid*/
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.logo-1 {
  overflow: hidden;
  z-index: 1;
  /* padding-bottom: 10px; */
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 220px;
  margin-top: -1%;

}

.logo-2 {
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.fixed .logo-1 {
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}

.fixed .logo-2 {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 220px;
  margin-top: -1%;
  /* margin-left: 30px; */

}

.fixed .stellarnav>ul>li>a {
  color: #1c1c1c !important;
}

.fixed .header-social-col ul li a i {
  color: #1c1c1c;
}

/* .fixed .header-social-col .header-btn a { 
  color: black;
  text-transform: uppercase;
  padding: 16px 30px;
  background-color:#f4f6e0;
  background: #FE93A2; 
  border-radius: 12px;
   margin-top: -25px; 
  margin-left: -20px;
  color: black;
  text-transform: uppercase;
  padding: 16px 30px;
  background:#f8e4e4;
  background: #f0c9be;
  margin-left: 30px;
  border-radius: 12px;

  
} */



/* Header Social CSS */
.header-social-col {
  margin-top: 25px;
  text-align: end;
}

.header-social-col ul {
  /* margin-top: 35px; */
  display: inline-block;
}

.header-social-col ul li {
  display: inline-block;
  margin: 0 5px;
}

.header-social-col ul li a i {
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-social-col ul li a i:hover {
  color: #FE93A2;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-social-col .header-btn {
  display: inline-block;

}

/* .header-social-col .header-btn a { 
  color: black;
  text-transform: uppercase;
  padding: 16px 30px;
  background-color:#f8e4e4;
  background: #f0c9be;
  margin-left: 30px;
  border-radius: 12px;

} */


.header-two-area .stellarnav>ul>li>a {
  color: black !important;
  font-weight: 900;
  font-family: 'Livvic';
  font-weight: 400;
  font-size: 18px;
}

.header-two-area .header-social-col ul li a i {
  color: #333333;
}



/* 
=========== 03. Slider CSS ===========
*/
.overlap {
  /* background-color: rgba(244, 246, 224,0.3);  /*zxid
  height: 742.4px; */
  /* z-index: 0; */
}

.main-slider-section {
  height: 100vh;
}

.main-slider-section .bgimage {
  /*zxid*/
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 71px;
  /*zxid*/
}

.pogoSlider {
  height: 100vh;
}

.pogoSlider-dir-btn {
  z-index: 1;
  width: 30px;
  height: 30px;
}

.pogoSlider--dirBottomRight .pogoSlider-dir-btn--next,
.pogoSlider--dirCenterHorizontal .pogoSlider-dir-btn--next,
.pogoSlider--dirTopRight .pogoSlider-dir-btn--next {
  right: 20px;
}

.pogoSlider--dirBottomLeft .pogoSlider-dir-btn--prev,
.pogoSlider--dirCenterHorizontal .pogoSlider-dir-btn--prev,
.pogoSlider--dirTopLeft .pogoSlider-dir-btn--prev {
  left: 20px;
}

.pogoSlider-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pogoSlider-slide:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: rgba(21, 10, 46, 0.38);
}

.silder-elements {
  /*zxid*/
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1000;
  padding: 0;

}

.slider-para {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: 15px !important;
  margin-bottom: 25px !important;
  z-index: 1001;
  /*zxid*/

}

.slider-main-title {
  font-size: 70px !important;
  line-height: 75px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: -30px;
  text-transform: inherit;
  line-height: 1.1;
  display: inline-block;
  z-index: 1001;
  /*zxid*/
  font-family: 'myFonts';
  /*zxid*/
}

.silder-elements h3 {
  color: #ffffff;
  font-size: 30px !important;
  line-height: 92px;
  font-weight: 500;
  margin-bottom: 0;
  z-index: 1001;
  /*zxid*/
}

.silder-elements .my-btn {
  margin-top: 20px;
  color: #ffffff;
  text-transform: uppercase;
  background: #D4B0A5;
  padding: 15px 30px 15px;
  height: 56px;
  border: none;
  border-radius: 12px;
  z-index: 1001;
  /*zxid*/
}

.silder-elements .my-btn:before {
  /*zxid*/
  /* background: #f88091; */
  /* background:#895b4b; */
  border-radius: 12px;

}

.pogoSlider--navBottom .pogoSlider-nav {
  margin-bottom: 35px;
}

.pogoSlider-nav-btn {
  width: 6px;
  height: 15px;
  border: 2px solid transparent;
  background: #ffffff;
  box-shadow: none;
}

.pogoSlider-nav-btn.pogoSlider-nav-btn--selected {
  width: 12px;
  height: 16px;
  background: #FE93A2;
  border-color: #ffffff;
}

.pogoSlider--navBottom .pogoSlider-nav li {
  margin: 0 5px;
}




/* 
=========== 04. About CSS ===========
*/
.about-area {
  padding: 130px 0 130px;
}

.about-col {
  position: relative;
}

.about-col img {
  padding-right: 80px;
}

.about-box {
  width: 605px;
  /* background: #FE93A2; */
  /* background: #c2958c; zxid */
  background: #f4f6e0;
  padding: 70px 80px;
  position: absolute;
  right: -305px;
  top: 80px;
  z-index: 0;
}

.about-box h5 {
  /* color: #ffffff; */
  /*zxid*/
  color: black;
  font-weight: normal;
  font-size: 20px;
  margin-bottom: 0;
  text-transform: inherit;
}

.about-box h2 {
  /* color: #ffffff; */
  /*zxid*/
  color: black;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 10px;
  text-transform: inherit;
}

.about-box p {
  /* color: #ffffff; */
  /*zxid*/
  color: black;
  margin-bottom: 25px;
}

.about-box .my-btn {
  /* color: #ffffff; */
  /*zxid*/
  color: black;
  border-color: black;
  font-weight: 600;
}

.about-box .my-btn:hover {
  /*zxid*/
  /* color: #FE93A2; */
  color: #c2958c;
}

.about-box .my-btn:before {
  background: #ffffff;
}


/* About Two CSS */
.about-two-area {
  padding: 0 0;
}

.about-two-col {
  width: 100%;
  height: auto;
}

.about-two-col p {
  font-size: 20px;
}

.subtext {
  margin: 30px 0;
  border-left: 10px solid #FBE7EA;
  padding-left: 10px;
}

.subtext p {
  font-size: 16px;
}






/* 
=========== 05. Service CSS ===========
*/
.service-area {
  padding: 0 0 50px;

}

.service-col {
  /*zxid*/
  position: relative;
  /* background: #d5b8b2; */
  /* background: #c2958c; */
  background: #f4f6e0;
  padding: 40px 30px 40px 190px;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: black;
  border-radius: 12px;
}

.service-col:hover {
  /*zxid*/
  background: #8f6456;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-col img {
  position: absolute;
  left: 40px;
  top: 50%;
  z-index: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.service-col h4 {
  font-size: 24px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: black;
}

.service-col:hover h4 {
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-col p {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.service-col:hover p {
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


/* Service Two Start */
.service-two-area {
  padding: 125px 0 110px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.service-two-area .custom-col {
  padding-right: 10px;
  padding-left: 10px;
}

.service-two-col h2 {
  color: black;
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  text-transform: inherit;
  margin-bottom: 15px;
  /* margin-top: 30px; */
  font-family: 'ZCOOL XiaoWei', serif;
  /*heading text*/

}

.service-two-col p {
  color: black;
  font-size: 16px;
  margin-bottom: 3rem;
}

.service-two-box {
  /* background:  #f8e8e7; */
  text-align: center;
  /* width: 390px; */
  padding: 90px 70px;
  /* margin-bottom: 20px; */
}

.service-two-box.f-right {
  float: right;
  margin-bottom: 0;
}

.service-two-box .service-two-icon {
  position: relative;
}

.service-two-box .service-two-icon img {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  max-height: 70px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.service-two-box:hover .service-two-icon img {
  -webkit-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  transform: rotateY(360deg);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.service-two-box h4 {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 24px;
  font-weight: normal;
  /* margin-bottom: 10px; */
  margin-top: 10px;
}

.service-two-box p {
  color: #1c1c1c;
  margin-bottom: 0;
  font-size: 16px;
}

.service-two-box.to-top {
  margin-top: -50px;
}

.custom-col .service-two-box {
  width: 100%;
}

/* Service Three CSS */
.service-three-area {
  padding: 120px 0 100px;
}

.service-three-area .service-col {
  margin-bottom: 30px;
}



/* 
=========== 06. We are CSS ===========
*/
.we-are-area {
  padding: 0 0 50px;
  position: relative;
}

.we-are-area .we-are-img img {
  position: absolute;
  right: 190px;
  top: 0;
  z-index: 0;
}

.we-are-col {
  padding-top: 100px;
}

.we-are-col h4 {
  font-size: 20px;
  line-height: 26px;
  font-weight: normal;
  margin-bottom: 0;
}

.we-are-col h2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 500;
}

.we-are-col p {
  margin-top: 10px;
  margin-bottom: 20px;
}


/* We are Two CSS */
.we-are-two-area {
  padding: 205px 0 220px;
}

.we-are-two-area .we-are-img img {
  top: 112px;
  left: 240px;
  right: auto;
}

.we-are-two-area .we-are-col {
  padding-top: 0;
}

.we-are-two-area .we-are-col h2 {
  text-transform: inherit;
}

/* We are Three CSS */
.we-are-three-area {
  padding: 100px 0;
}

.we-are-three-area .we-are-col {
  padding: 90px 0 220px;
}

.hightlight-text {
  text-align: center;
}

.hightlight-text h4 {
  margin-bottom: 40px;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
}


/* We are four CSS */
.we-are-four-area {
  padding: 205px 0 170px;
}

.we-are-four-area .we-are-col {
  padding: 0;
}

.we-are-four-area .we-are-col ul {
  margin-top: 10px;
  margin-bottom: 15px;
}

.we-are-four-area .we-are-col ul li {
  margin-bottom: 2px;
}

/* We are five CSS */
.we-are-five-area {
  padding: 205px 0 300px;
}

.we-are-five-area .we-are-img img {
  top: 80px;
  right: 265px;
}




/* 
=========== 07. Project CSS ===========
*/
.project-area {
  padding: 180px 0 100px;
  /* overflow: hidden; */
}

.project-area .my-title {
  text-align: left;
  margin-bottom: 50px;
}

.project-area .my-title h5 {
  font-size: 20px;
  /* font-weight: normal; */
}

.project-area .my-title h2 {
  font-size: 38px;
  margin: 0;
}

.nav-col {
  margin-bottom: 50px;
  padding-top: 100px;
}

.project-area .load-more-btn {
  margin-top: 10px;
}

/* Gallery Css Start */
.gallery-nav ul li {
  display: inline-block;
  margin-left: 15px;
}

.gallery-nav ul li a {
  color: #1c1c1c;
}

.gallery-nav ul li a:hover,
.gallery-nav ul li a.active {
  color: #d5b8b2;
  text-decoration: underline;
}

.project-area .my-gallery .item {
  width: 31.5%;
  float: left;
  /*padding: 0 15px;*/
  padding-bottom: 30px;
}

/* Gallery Lightbox CSS */
#html5-watermark {
  display: none !important;
}

.project-item {
  position: relative;
}

.project-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/*.project-item img:hover {
  cursor: crosshair;
  cursor: url('../images/zoom.png'), auto; 
  background: #ffffff;
}*/
.project-overlay {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(28, 18, 20, 0.7);
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
}

.project-item:hover .project-overlay {
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project-overlay ul {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.project-overlay ul li {
  display: inline-block;
  margin: 0 5px;
  width: 80px;
  height: 80px;
  background: #d5b8b2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}

.project-overlay ul li a img {
  width: auto !important;
  height: auto !important;
  margin-top: 20px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}





/* Project Two CSS */
.project-two-area {
  padding: 90px 0;
}

.project-two-area .my-title {
  text-align: center;
  margin-bottom: 20px;
}

.project-two-area .nav-col {
  text-align: center;
  padding-top: 0;
}

.project-two-area .load-more-btn {
  margin-top: 30px;

}

.load-more-btn .my-btn {
  /*zxid*/
  background-color: #f4f6e0;
  border: none;
  border-radius: 12px;
  color: black;
  font-size: 20px;
  font-weight: 200;
}


/* Project Three CSS */
.project-three-area {}

.project-three-area .my-gallery .item {
  width: 25%;
  float: left;
  /*padding: 0 15px;*/
  padding-bottom: 0;
}


/* Project Single CSS */
.project-single-area {
  padding: 140px 0 0;
  position: relative;
}

.shape-right {
  position: absolute;
  right: 0;
  top: 100px;
  z-index: 0;
}

.shape-left {
  position: absolute;
  left: 0;
  bottom: 200px;
  z-index: 0;
}

.project-slider .item img {
  width: 100%;
  height: auto;
}

.project-single-area .owl-theme .owl-nav {
  margin-top: 0;
}

.project-single-area .owl-theme .owl-nav [class*=owl-] {
  padding: 0;
  color: #ffffff;
  font-size: 50px;
  background: transparent;
}

.project-single-area .owl-carousel .owl-nav .owl-next {
  position: absolute;
  right: 20px;
  bottom: 12px;
}

.project-single-area .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  left: 20px;
  bottom: 12px;
}

.single-img-row {
  margin-top: 75px;
}

.single-img-col {
  margin-bottom: 30px;
}

.project-single-text {
  margin-top: 10px;
}

.project-single-text h2 {
  font-size: 43px;
  line-height: 43px;
  margin-bottom: 20px;
  font-weight: 500;
}

.project-single-text p {
  margin-bottom: 25px;
}

.project-sub-box p {
  margin-bottom: 10px;
  color: #5b5a5a;
}

.project-sub-box p span {
  color: #000000;
}

.bottom-social {
  margin-top: 100px;
}

.bottom-social-col {
  text-align: center;
  margin-bottom: 60px;
}

.bottom-social-col ul li {
  display: inline-block;
  margin: 0 20px;
}

.bottom-social-col ul li a i {
  font-size: 25px;
  color: #909090;
}

.bottom-social-col ul li a i:hover {
  color: #fe93a2;
}

.link-btn .btn {
  border-radius: 0;
  color: #fe93a2;
  text-transform: capitalize;
  height: 75px;
  line-height: 60px;
  background: #FFF8F9;
  border: none;
}

.link-btn .btn:hover {
  background: #FE93A2;
  color: #ffffff;
}

.previous-icon {
  text-align: center;
}

.previous-icon p {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  margin-top: 10px;
  border: 1px solid #FFE9EC;
  margin-bottom: 0;
}

.previous-icon p a {}

.previous-icon p a i {
  line-height: 55px;
  color: #FE93A2;
  width: 100%;
  height: 100%;
}

.previous-icon p a i:hover {
  color: #ffffff;
  background: #FE93A2;
}




/* 
=========== 08. Works CSS ===========
*/
.works-area {
  padding: 60px 0 50px;
  background: rgba(244, 246, 224, 0.4);
  /* width: 100%; */


}

.works-col {
  padding: 40px 30px 40px;
  margin-bottom: 30px;
  background: #ffffff;
  text-align: center;
  border-radius: 12px;


}

.works-col h6 {
  font-size: 20px;
  line-height: 60px;
  font-weight: normal;
  margin-bottom: 0;
}

.works-col h5 {
  font-size: 20px;
  line-height: 60px;
  font-weight: normal;
  text-transform: inherit;
  margin-bottom: 0;
}

.my-icon {
  position: relative;
}

.my-icon img {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.works-col:hover .my-icon img {
  -webkit-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  transform: rotateY(360deg);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}



/* 
=========== 09. Testimonial CSS ===========
*/
.testimonial-area {
  padding: 100px 0 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial-area .my-title {
  text-align: left;
  margin-bottom: 170px;
}

.testimonial-area .my-title h5 {
  font-size: 20px;
  font-weight: normal;
}

.testimonial-area .carousel-item {
  text-align: center;
}

.testimonial-area .carousel-item p {
  font-size: 20px;
  line-height: 30px;
}

.testimonial-area .carousel-indicators {
  margin-bottom: 0;
  bottom: -150px;
}

.testimonial-area .carousel-indicators li {
  background: #FE93A2;
  border: none;
  width: 50px;
  height: 50px;
  margin: 0 8px;
  position: relative;
  text-indent: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.testimonial-area .carousel-indicators li p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  z-index: 999;
  text-align: center;
  font-weight: 600;
  display: none;
}

.testimonial-area .carousel-indicators li.active p {
  display: block;
}

.testimonial-area .carousel-indicators li.active {
  width: 105px;
  height: 105px;
  margin-top: -30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.testimonial-area .carousel-indicators li.first-one {
  background: url(../images/testimonial-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial-area .carousel-indicators li.second-one {
  background: url(../images/testimonial-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial-area .carousel-indicators li.third-one {
  background: url(../images/testimonial-3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/* Testimonial Two Start */
.testimonial-two-area {
  padding: 100px 0 0;
  /* margin-top: 7%; */
}

.testimonial-two-area .my-title {
  text-align: left;
  margin-bottom: 0;
}

.testimonial-two-area .owl-carousel .owl-item {
  padding: 40px 0 10px;
}

.testimonial-item {
  text-align: center;
  background: #fee7e7;
  padding: 40px 30px;
  position: relative;
  -webkit-box-shadow: 0px 28px 38px -20px rgba(209, 209, 209, 0.4);
  -moz-box-shadow: 0px 28px 38px -20px rgba(209, 209, 209, 0.4);
  box-shadow: 0px 28px 38px -20px rgba(209, 209, 209, 0.4);
}

.testimonial-item p {
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-two-img {
  position: absolute;
  left: 50%;
  bottom: -75px;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.testimonial-two-img img {
  margin-bottom: 0;
  width: 110px !important;
  height: 110px !important;
  width: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.testimonial-item span {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-pattrn {
  width: auto !important;
  height: auto !important;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.quotation-img {
  width: auto !important;
  height: auto !important;
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 1;
}

.testimonial-two-area .owl-theme .owl-dots .owl-dot span {
  background: #F4EEEE;
  margin: 0px 5px;
}

.testimonial-two-area .owl-theme .owl-dots .owl-dot.active span,
.testimonial-two-area .owl-theme .owl-dots .owl-dot:hover span {
  background: #FE93A2;
}

.testimonial-two-area .owl-controls {
  /* position: absolute; */
  margin-top: 2rem;
}






/* 
=========== 10. Pricing CSS ===========
*/
.pricing-area {
  padding: 50px 0 220px;
  overflow: hidden;
}

.pricing-col {
  background: url(../images/pricing-bg.png);
  background-position: 50% 18%;
  background-repeat: no-repeat;
  text-align: center;
  padding: 45px 60px 55px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.10);
  -moz-box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.10);
  box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.10);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pricing-col:hover {
  position: relative;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
  /*-ms-transform: scale(1.03); 
  -webkit-transform: scale(1.03); 
  transform: scale(1.03);*/
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pricing-col .pricing-header img {
  margin-bottom: 15px;
}

.pricing-col .pricing-header h6 {
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px dashed #E1E1E1;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.pricing-col .pricing-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #fe93a2;
  margin-bottom: 15px;
  font-family: 'Muli', sans-serif;
}

.pricing-col .pricing-content {
  background: rgba(254, 147, 162, 0.10);
  padding: 50px 20px 30px;
  margin-bottom: 40px;
}

.pricing-col .pricing-content ul li {
  color: #4f4f4f;
  font-size: 18px;
  margin-bottom: 10px;
}

.pricing-col .pricing-content ul li:last-child {
  margin-bottom: 0;
}

.pricing-col .my-btn {
  background: #FFF9F9;
  border-color: #FFF9F9;
}

/* Pricing Two Start */
.pricing-two-area {
  padding: 90px 0 90px;
}

.up-section {
  margin-top: ;
}



/* 
=========== 11. Contact Separator CSS ===========
*/
.contact-separator-area {
  padding: 0 0 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.contact-separator-area.overlay-black:before {
  background: linear-gradient(to bottom, black, #d88f7770);
}

.contact-info-box {
  background: #ffffff;
  width: 90%;
  margin: 0 auto;
  padding: 30px;
  /* position: absolute;
  left: 0;
  right: 0;
  top: 5rem;
  z-index: 0; */
  -webkit-box-shadow: 0px 50px 32px 25px rgba(0, 0, 0, 0.10);
  -moz-box-shadow: 0px 50px 32px 25px rgba(0, 0, 0, 0.10);
  box-shadow: 0px 50px 32px 25px rgba(0, 0, 0, 0.10);
}

.contact-info-box:before {
  /*zxid dotted line*/
  content: "";
  position: absolute;
  left: 40%;
  top: -8%;
  z-index: -1;
  width: 90%;
  height: 112%;
  border: 1px dashed #FFCEE2;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.contact-info-box h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
}

.contact-info-box h5 {
  /* margin-top: 20px; */
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
}

.contact-separator-col {
  padding-top: 100px;
  padding-left: 30px;
}

.contact-separator-col h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 500;
  line-height: 48px;
  text-transform: inherit;
}

.contact-separator-col p {
  color: #ffffff;
  /* margin-bottom: 40px; */
}

.contact-separator-col .my-btn {
  color: #ffffff;
  border-color: #ffffff;
}

.contact-separator-col .my-btn:hover {
  color: #FE93A2;
}

.contact-separator-col .my-btn:before {
  background: #ffffff;
}

.card {
  margin-bottom: 1rem;
  /* border-radius: 15px; */
}

.card-header {
  padding: 0;
}

.faq-btn {
  width: 100%;
  text-align: start;
  background: #f8e8e7;
  padding: 0.6rem;
  /* margin-bottom: 1rem; */
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-btn:hover,
.faq-btn:focus {
  text-decoration: none;
  background: #f0c8bd;
  color: #000000;
}

.contact-info-box .my-title {
  margin-bottom: 20px;
}


/* 
=========== 12. Banner CSS ===========
*/
.banner-area {
  padding: 185px 0 100px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner-area .container-fluid {
  padding: 0 135px;
}

.banner-col {
  /* padding-top: 150px; */
  padding-left: 160px;
}

.banner-col h6 {
  font-size: 16px;
  font-weight: normal;
  text-transform: capitalize;
}

.banner-col h1 {
  font-size: 70px;
  line-height: 75px;
  font-weight: bold;
  text-transform: inherit;
  margin-bottom: 30px;
}

.banner-col h1 span {
  display: block;
}

.banner-col h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-transform: inherit;
  margin-bottom: 0;
  background: #f7e7e6;
  display: inline-block;
  padding: 10px;
}

.banner-slider {
  padding-left: 50px;
  position: relative;
}

.banner-slider .carousel-item {
  border: px solid #ffffff;
  /*zxid bannaer img border*/
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
}

.banner-slider .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
}

.banner-slider .carousel-indicators li.active {
  background: #FE93A2;
  background-clip: padding-box;
}

.banner-slider .carousel-indicators {
  margin: 0;
  margin-bottom: -50px;
}

.onslider-link {
  width: 125px;
  height: 125px;
  background: #FE93A2;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 10px;
  bottom: -25px;
  z-index: 1;
  padding-top: 50px;
  -webkit-box-shadow: 16px 0 30px rgba(193, 132, 140, 0.6);
  box-shadow: 16px 0 30px rgba(193, 132, 140, 0.6);
}

.onslider-link a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 45px;
}




/* 
=========== 13. Banner CSS ===========
*/
.separator-area {
  padding: 130px 0 0;
  position: relative;
}

.separator-col .banner-img {
  margin: 30px 0;
  position: relative;
  z-index: 1;
  margin-bottom: -50px;
  /* -webkit-box-shadow: -5px 10px 23px 0px rgba(0,0,0,0.4); */
  -webkit-box-shadow: -5px 10px 23px 0px rgba(0, 0, 0, 0.4);
  /* -moz-box-shadow: -5px 10px 23px 0px rgba(0,0,0,0.4); */
  /* box-shadow: -5px 10px 23px 0px rgba(0,0,0,0.4); */
}

.separator-col .left-pattren {
  position: absolute;
  left: -125px;
  top: -160px;
  z-index: 0
}

.separator-col .right-pattren {
  position: absolute;
  right: -115px;
  bottom: 0;
  z-index: 0
}

.camaraman-img {
  position: absolute;
  left: 120px;
  bottom: 0;
  z-index: 0;
}

.banner-box {
  width: 605px;
  background: #f7e7e6;
  padding: 70px 80px;
  position: absolute;
  right: 150px;
  top: 80px;
  z-index: 0;
  color: black;
}

.banner-box h5 {
  color: black;
  font-weight: normal;
  font-size: 20px;
  margin-bottom: 0;
  text-transform: inherit;
}

.banner-box h2 {
  color: black;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 10px;
  text-transform: inherit;
}

.banner-box p {
  color: black;
  margin-bottom: 25px;
}

.banner-box .my-btn {
  color: black;
  border-color: black;
  font-weight: 600;
}

.banner-box .my-btn:hover {
  color: #FE93A2;
}

.banner-box .my-btn:before {
  background: #ffffff;
}



/* 
=========== 14. Page Name CSS ===========
*/
.page-name-area {
  padding: 210px 0 120px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-name-area.overlay-white:before {
  background-color: rgba(255, 255, 255, 0.9);
}

.page-name-col h6 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-name-col h2 {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 0;
}

.page-name-two-area h6 {
  color: #ffffff;
}

.page-name-two-area h2 {
  color: #ffffff;
}

.page-name-two-area.overlay-white:before {
  background: rgba(47, 35, 35, 0.5);
}


/* 
=========== 15. Team CSS ===========
*/
.team-area {
  padding: 100px 0 0;
}

.team-col {
  text-align: center;
  margin-bottom: 30px;
}

.team-col img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
}

.team-col h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 0;
}

/* Team two CSS */
.team-two-area {
  padding: 150px 0 70px;
}




/* 
=========== 16. Blog CSS ===========
*/
.blog-area {
  padding: 140px 0 0;
}

.blog-col {
  padding-right: 0;
  margin-bottom: 30px;
}

.blog-col img {
  width: 100%;
  height: auto;
}

.blog-col-content {
  padding: 30px 25px;
  border: 1px solid #F4F4F4;
}

.blog-col-content ul li {
  display: inline-block;
  margin-right: 15px;
}

.blog-col-content ul li i {
  margin-right: 5px;
  color: #8b8b8b;
}

.blog-col-content ul li a {
  color: #1c1c1c;
}

.blog-col-content h2 {
  font-size: 29px;
  font-weight: 500;
  line-height: 36px;
  margin: 10px 0;
}

.blog-col-content h2 a {
  color: #1c1c1c;
}

.blog-col-content p {
  margin-bottom: 20px;
}

.blog-col-content .my-btn {
  color: #1c1c1c;
  border-color: #F4F4F4;
}

.blog-col-content .my-btn:hover {
  color: #ffffff;
}

.blog-col-content .my-btn i {
  font-size: 13px;
  color: #848282;
  font-weight: normal;
  position: relative;
  bottom: 0;
  margin-left: 8px;
}

.blog-col-content .my-btn:hover i {
  color: #ffffff;
}

.blog-col-content .fa-share-alt-square {
  margin-left: 10px;
  color: #848282;
  font-size: 28px;
  position: relative;
  bottom: -5px;
}

.my-pagination {
  text-align: left;
}

.my-pagination ul li {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-left: 0;
  text-align: center;
  background: transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.my-pagination ul li:hover {
  background: #FE93A2;
  -webkit-box-shadow: -5px 10px 20px 0px rgba(79, 79, 79, 0.35);
  -moz-box-shadow: -5px 10px 20px 0px rgba(79, 79, 79, 0.35);
  box-shadow: -5px 10px 20px 0px rgba(79, 79, 79, 0.35);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.my-pagination ul li a {
  color: #272626;
  line-height: 50px;
  width: 100%;
  height: 100%;
  display: block;
}

.my-pagination ul li a:hover {
  color: #ffffff;
}

/* Sidebar CSS Start  */
.sidebar-col {
  padding: 30px 30px 60px;
  margin-left: 30px;
  -webkit-box-shadow: -5px 0px 19px 0px rgba(215, 215, 215, 0.35);
  -moz-box-shadow: -5px 0px 19px 0px rgba(215, 215, 215, 0.35);
  box-shadow: -5px 0px 19px 0px rgba(215, 215, 215, 0.35);
}

.sidebar-search-widget {
  margin-bottom: 50px;
}

.sidebar-search-widget .input-group {
  border-radius: 20px;
  -webkit-box-shadow: -5px 15px 28px 0px rgba(188, 188, 188, 0.35);
  -moz-box-shadow: -5px 15px 28px 0px rgba(188, 188, 188, 0.35);
  box-shadow: -5px 15px 28px 0px rgba(188, 188, 188, 0.35);
}

.sidebar-search-widget .input-group .input-group-btn i {
  color: #fe93a2;
  font-size: 16px;
  line-height: 40px;
  padding-left: 10px;
}

.sidebar-search-widget .input-group .form-control {
  border-radius: 20px;
  border: none;
  color: #c1c1c1;
  height: 55px;
}

.categories-widget {
  margin-bottom: 50px;
}

.sidebar-title {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 5px;
  margin-bottom: 35px;
  border-bottom: 2px dashed #F4F4F4;
  margin-right: 50px;
  margin-bottom: 35px;
}

.categories-widget ul li {
  margin-bottom: 5px;
}

.categories-widget ul li a {
  color: #6d6c6c;
}

.categories-widget ul li a:hover {
  color: #fe93a2;
}

.categories-widget ul li a span {
  margin-left: 10px;
}

.categories-widget ul li i {
  margin-right: 15px;
  color: #999999;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.categories-widget ul li:hover i {
  color: #fe93a2;
  margin-left: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.post-widget {
  margin-bottom: 50px;
}

.post-item {
  position: relative;
  padding-left: 85px;
  min-height: 75px;
  margin-bottom: 25px;
}

.post-item img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.post-item p {
  line-height: 22px;
}

.post-item p a {
  color: #1c1c1c;
}

.post-item p a:hover {
  color: #FE93A2;
}

.post-item span {
  color: #626161;
  font-size: 14px;
}

.archives-widget {}

.archives-widget ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.archives-widget ul li:hover {
  padding-left: 40px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.archives-widget ul li:before {
  content: "\f067";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  color: #6d6c6c;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.archives-widget ul li:hover:before {
  content: "\f105";
  color: #FE93A2;
  left: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.archives-widget ul li a {
  color: #6d6c6c;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.archives-widget ul li a:hover {
  color: #FE93A2;
}



/* Blog Single CSS */
.blog-single-area {}

.blog-col-img {
  position: relative;
}

.my-date {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 0;
  background: #ffffff;
  width: 142px;
  height: 85px;
  text-align: center;
}

.my-date h2 {
  font-size: 40px;
  line-height: 40px;
  color: #fe93a2;
  margin-bottom: 0;
  margin-top: 10px;
}

.my-date p {
  margin-top: 0 !important;
}

.blog-single-area .blog-col-content p {
  margin: 0;
}

.blog-single-col p {
  margin-top: 30px;
}

.blog-hilight-text {
  padding: 50px 40px;
  margin-top: 40px;
  -webkit-box-shadow: -5px 0px 22px 0px rgba(238, 211, 215, 0.35);
  -moz-box-shadow: -5px 0px 22px 0px rgba(238, 211, 215, 0.35);
  box-shadow: -5px 0px 22px 0px rgba(238, 211, 215, 0.35);
}

.blog-hilight-text h6 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0;
  font-weight: normal;
  text-transform: inherit;
}

.share-icns {
  margin: 50px 0 100px;
}

.share-icns ul li {
  display: inline-block;
  margin-right: 5px;
}

.share-icns ul li i {
  width: 40px;
  height: 40px;
  text-align: center;
  color: #ffffff;
  border-radius: 50%;
  line-height: 40px;
}

.color-1 {
  background: #3B5999;
}

.color-2 {
  background: #FC5F70;
}

.color-3 {
  background: #55ACEE;
}

.color-4 {
  background: #DD4B39;
}

.color-5 {
  background: #0077B5;
}

.post-change-col a {
  color: #101010;
}

.post-change-col a:hover {
  color: #fe93a2;
}

.post-change-col p {
  margin-top: 25px;
}

.change-left {
  margin-bottom: 30px;
}

.change-left a i {
  margin-right: 5px;
}

.change-right {
  text-align: right;
  margin-bottom: 30px;
}

.change-right a i {
  margin-left: 5px;
}

.blog-comments {
  margin-top: 40px;
}

.blog-comments h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: inherit;
}

.blog-comment-box {
  position: relative;
  margin-bottom: 40px;
  padding: 40px 40px 40px 150px;
  -webkit-box-shadow: -5px 0px 16px 4px rgba(226, 226, 226, 0.30);
  -moz-box-shadow: -5px 0px 16px 4px rgba(226, 226, 226, 0.30);
  box-shadow: -5px 0px 16px 4px rgba(226, 226, 226, 0.30);
}

.blog-comment-box img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  left: 30px;
  top: 40px;
  z-index: 1;
}

.blog-comment-box ul li {
  display: inline-block;
  margin-right: 15px;
  color: #101010;
  font-size: 14px;
}

.blog-comment-box ul li h6 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 0;
}

.blog-comment-box ul li:last-child a i {
  width: 35px;
  height: 35px;
  background: #FE93A2;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
}

.blog-comment-box p {
  margin-top: 0;
}

.blog-comment-box.left-space {
  margin-left: 40px;
}

.comment-form {}

.comment-form h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: inherit;
}

.comment-form textarea {
  min-height: 190px;
  border-color: #F4F4F4;
}

.comment-form .form-control {
  margin-bottom: 40px;
  height: 48px;
}



/* 
=========== 17. Contact Us CSS ===========
*/
.contact-area {
  padding: 0 0 100px;
  margin-top: 300px;
  -webkit-box-shadow: -5px 0px 22px 0px rgba(205, 205, 205, 0.35);
  -moz-box-shadow: -5px 0px 22px 0px rgba(205, 205, 205, 0.35);
  box-shadow: -5px 0px 22px 0px rgba(205, 205, 205, 0.35);
}

.information-box {
  text-align: center;
  background: #ffffff;
  padding: 120px 70px 70px;
  position: relative;
  margin-top: -135px;
  margin-bottom: 30px;
  -webkit-box-shadow: -5px 0px 37px 0px rgba(243, 216, 255, 0.35);
  -moz-box-shadow: -5px 0px 37px 0px rgba(243, 216, 255, 0.35);
  box-shadow: -5px 0px 37px 0px rgba(243, 216, 255, 0.35);
}

.information-box .box-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 60px;
  position: absolute;
  top: -60px;
  right: 0;
  left: 0;
  z-index: 0;
  background: #ffffff;
  -webkit-box-shadow: -5px 18px 28px 0px rgba(205, 205, 205, 0.35);
  -moz-box-shadow: -5px 18px 28px 0px rgba(205, 205, 205, 0.35);
  box-shadow: -5px 18px 28px 0px rgba(205, 205, 205, 0.35);
}

.information-box .box-icon img {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 0;
  display: block;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.information-box p {
  font-size: 16px;
  color: #a3a1a1;
}

.information-box p span {
  font-size: 18px;
  font-weight: 600;
  color: #503c57;
}

.ph-number {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
  color: #272626 !important;
}

.ph-number i {
  color: #fe93a2;
  margin-right: 10px;
}

.contact-form-row {
  margin-top: 90px;
  background: url(../images/map.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.contact-form-row .form-control {
  border: none;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 40px;
  background: transparent;
}

.contact-form-row textarea {
  min-height: 180px;
}




/* 
=========== 18. Footer CSS ===========
*/
.footer-area {
  padding: 70px 0 60px;
  background: #F3F3F3;
}

.logo-col img {
  margin-bottom: 0;
}

.logo-col p {
  color: #3c3746;
  margin-bottom: 45px;
}

.logo-col ul li {
  display: inline-block;
  margin-right: 10px;
}

.logo-col ul li a i {
  width: 55px;
  height: 55px;
  background: #ffffff;
  text-align: center;
  font-size: 18px;
  color: #ccc9c9;
  line-height: 55px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.logo-col ul li a i:hover {
  color: #ffffff;
  background: #FE93A2;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.subscribe-col {
  padding: 0 100px 0 110px;
}

.subscribe-col h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  padding-top: 45px;
}

.subscribe-col .form-control {
  height: 65px;
  border: none;
  margin-bottom: 20px;
}

.subscribe-col .my-btn {
  background: #FE93A2;
  color: #ffffff;
}

.subscribe-col .my-btn:before {
  background: #F88091;
}

.footer-menu {
  padding-left: 50px;
}

.footer-menu h5 {
  margin-top: 45px;
  margin-bottom: 50px;
  font-size: 20px;
  color: #393939;
}

.footer-menu ul li a {
  color: #393939;
}

.footer-menu ul li a:hover {
  color: #FE93A2;
}

.copy-right {
  margin-top: 10px;
  color: #393939;
}

/* Black Footer CSS */
.footer-black {
  background: #0E0F13;
  padding-top: 100px;
  position: relative;
}

.footer-black .logo-col p {
  color: #ffffff;
}

.footer-black .logo-col ul li a i {
  background: #161624;
  color: #ffffff;
}

.footer-black .logo-col ul li a i:hover {
  background: #F491A1;
}

.footer-black .subscribe-col h4 {
  color: #ffffff;
}

.footer-black .subscribe-col .form-control {
  background: #13131B;
  color: #ffffff;
}

.footer-black .footer-menu h5 {
  color: #ffffff;
}

.footer-black .footer-menu ul li a {
  color: #ffffff;
}

.footer-black .copy-right {
  color: #ffffff;
}

.cameraman-two-img {
  position: absolute;
  left: 200px;
  bottom: 0;
  z-index: 0;
}

.cameraman-three-img {
  position: absolute;
  right: 160px;
  bottom: 0;
  z-index: 0;
}

/*made by admin*/
.process {
  margin-top: 12px;
  background-color: #f7e7e6;
  /* font-size: 30px; */
}

.process .heading {
  padding-top: 105px;
}

.process .heading p {
  font-size: 15px;
  font-family: 'Muli';

}

.process .heading h2 {
  font-size: 40px;
  font-family: 'ZCOOL XiaoWei', serif;
}

.process .process-container {
  margin-top: 3%;
  display: flex;
  justify-content: center;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 110px;
  padding-right: 10%;
  padding-left: 10%;
  font-family: 'Muli', sans-serif;


}

.process .process-container .box h6 {
  font-size: 20px;
  padding-bottom: 3%;
}

.process .process-container .box h5 {
  font-size: 20px;
  padding-top: 12%;
  font-weight: 900;
}

.process .process-container .box {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 12px;
  width: 20%;
  height: 250px;
  /* font-weight: 900; */
}

/*footer made by admin*/
footer {
  background-color: #f4f6e0;
  height: 50px
}

footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .container p {
  padding-top: 7px;
}

.delay {
  background-color: black;
  position: absolute;
  height: 100%;
  width: 100%;
  animation-name: move;
  animation-duration: 2s;
  animation-iteration-count: unset;
  animation-delay: 10s;
  margin-left: 20%;
  z-index: 2;
  margin-top: -700px;

}

@keyframes move {
  50% {
    margin-top: 20%;
  }

  100% {
    margin-top: 20%;
  }

}



.mobbuttn {
  position: fixed;
  right: 2%;
  top: 35px;
  width: 120%;
  max-width: 110px;
  z-index: 99999999;
  display: block;
  color: #000000;
}

.home .mobbuttn {
  top: 6%
}


.mobbuttn:hover .menulinklines .menulineone:after,
.mobbuttn:hover .menulinklines .menulineone:before {
  width: 100%;
  max-width: 100%;
  -webkit-transition: width .2s ease-in-out;
  -moz-transition: width .2s ease-in-out;
  -o-transition: width .2s ease-in-out;
  transition: width .2s ease-in-out;
  color: pink;
}

.mobbuttn {
  right: 30px
}

.page-template-page-meet .mobbuttn {
  z-index: 9998
}

.transitionall {
  -webkit-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out
}

.mobbtnwrap {
  display: flex;
  justify-content: space-between;
  /* background-color: black; */
  color: pink;
}

.mobbtnwrap .menulink {
  color: #fff;
  font-family: fira-sans, sans-serif;
  font-weight: 400;
  font-style: lighter;
  font-size: 15px;
  letter-spacing: .2em;
  line-height: 25px;
  text-transform: uppercase
}

.mobbtnwrap .menulink {
  color: #819096
}

.home .mobbtnwrap .menulink {
  color: #fff
}

.colormenubtn .menulink {
  color: #fff !important;
  border-color: #fff !important
}

.home .colormenubtn .menulink {
  color: #707070 !important;
  border-color: #707070 !important
}

.menulinklines .menulineone:after,
.menulinklines .menulineone:before {
  -webkit-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out
}

.mobbuttn:hover .menulinklines .menulineone:after,
.mobbuttn:hover .menulinklines .menulineone:before {
  width: 100%;
  max-width: 100%;
  -webkit-transition: width .2s ease-in-out;
  -moz-transition: width .2s ease-in-out;
  -o-transition: width .2s ease-in-out;
  transition: width .2s ease-in-out
}

.active .menulinklines .menulineone:before {
  width: 50%;
  -webkit-transition: width .2s ease-in-out;
  -moz-transition: width .2s ease-in-out;
  -o-transition: width .2s ease-in-out;
  transition: width .2s ease-in-out
}

.active .menulinklines .menulineone:after {
  width: 100%;
  max-width: 100%;
  -webkit-transition: width 1s ease-in-out;
  -moz-transition: width 1s ease-in-out;
  -o-transition: width 1s ease-in-out;
  transition: width 1s ease-in-out
}

.menulinklines {
  width: 100%;
  max-width: 50px;
  height: 10px;
  padding-top: 12px
}

.menulinklines .menulineone:before {
  height: 1px;
  border-top: solid thin #fff;
  position: relative;
  width: 100%;
  display: block;
  margin-top: -2px;
  content: ""
}

.menulinklines .menulineone:after {
  height: 1px;
  display: block;
  content: "";
  border-top: solid thin #fff;
  position: relative;
  margin: 5px 0 0;
  width: 50%;
  float: right
}

.menulinklines .menulineone:before,
.menulinklines .menulineone:after {
  border-color: #819096
}

.home .menulinklines .menulineone:before,
.home .menulinklines .menulineone:after {
  border-color: #fff
}

.home .menulinklines .menulineone:before,
.home .menulinklines .menulineone:after {
  border-color: #fff
}

.colormenubtn .menulinklines .menulineone:before,
.colormenubtn .menulinklines .menulineone:after {
  color: #fff !important;
  border-color: #fff !important
}

.home .colormenubtn .menulinklines .menulineone:before,
.home .colormenubtn .menulinklines .menulineone:after {
  color: #707070 !important;
  border-color: #707070 !important
}

.mobmenufullwrap {
  width: 100%;
  max-width: 1140px;
  margin: auto
}

.mobmenufullwrap {
  padding: 45px 0 0;
  display: flex;
  justify-content: space-between
}

.mobmenufullwrap {
  flex-wrap: wrap
}

.mobmenufull {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #c5d1dc;
  z-index: 9999;
  right: -100%;
  top: 0
}

.mobleftblock {
  width: 100%;
  max-width: 420px
}

.mobtitle {
  margin: 50px 0 100px
}

.mobtitle {
  margin: 30px auto;
  max-width: 330px
}

.mobtitle svg {
  max-width: 100%;
  width: 100%;
  height: auto
}

.mobtitle {
  margin: 50px auto 30px;
  max-width: 280px
}

#et-top-navigation .nav li.menu-item,
.navigation-top .main-navigation li {
  display: inline-block
}



/***********/
.nav.top-nav,
.nav.top-nav li {
  display: block;
  float: none
}

.nav.top-nav li,
.nav.top-nav li a {
  text-align: left;
  color: #fff;
  font-family: kudryashev-d-contrast, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  letter-spacing: .025em;
  line-height: 48px;
  text-transform: capitalize;
  border: none;
  outline: none
}

.nav.top-nav li:focus,
.nav.top-nav li a:focus,
.nav.top-nav li:active,
.nav.top-nav li a:active {
  border: none;
  outline: none
}

.nav.top-nav ul.sub-menu li a {
  padding-right: 0;
  padding-left: 0
}

.nav.top-nav ul.sub-menu li:first-of-type a {
  padding-left: 30px
}

.nav.top-nav ul.sub-menu li a:after {
  content: "/";
  display: content;
  margin: 0;
  font-size: 35px;
  position: relative;
  padding: 0 25px
}

.nav.top-nav ul.sub-menu li:last-of-type a:after {
  display: none
}

.nav.top-nav li,
.nav.top-nav li a {
  text-align: center !important;
  font-size: 18px !important;
  line-height: 22px !important
}

.nav.top-nav ul.sub-menu li a:after {
  padding: 0 5px;
  font-size: 18px
}

.nav.top-nav ul.sub-menu li:first-of-type a {
  padding-left: 0 !important
}

.nav.top-nav li,
.nav.top-nav li a {
  font-size: 22px !important;
  line-height: 28px !important
}

.clearfix,
.cf,
.comment-respond {
  zoom: 1
}

.clearfix:before,
.clearfix:after,
.cf:before,
.comment-respond:before,
.cf:after,
.comment-respond:after {
  content: "";
  display: table
}

.clearfix:after,
.cf:after,
.comment-respond:after {
  clear: both
}

.menu-item a img,
img.menu-image-title-after,
img.menu-image-title-before,
img.menu-image-title-above,
img.menu-image-title-below,
.menu-image-hover-wrapper .menu-image-title-above {
  border: none;
  box-shadow: none;
  vertical-align: middle;
  width: auto;
  display: inline
}

.menu-image-hover-wrapper img.hovered-image,
.menu-item:hover .menu-image-hover-wrapper img.menu-image {
  opacity: 0;
  transition: opacity .25s ease-in-out 0s
}

.menu-item:hover img.hovered-image {
  opacity: 1
}

.menu-image-title.menu-image-title-above,
.menu-image-title.menu-image-title-below,
.menu-image-title-below,
.menu-image-title-above,
.menu-item a.menu-image-title-above,
.menu-item a.menu-image-title-below,
.menu-image-title.menu-image-title-above,
.menu-image-title.menu-image-title-below {
  text-align: center;
  display: block
}

#et-top-navigation .nav li.menu-item,
.navigation-top .main-navigation li {
  display: inline-block
}

ul li.menu-item>.menu-image-title-above.menu-link,
ul li.menu-item>.menu-image-title-below.menu-link {
  display: block
}

.menu-item:hover .sub-menu .menu-image-hover-wrapper img.menu-image {
  opacity: 1
}

.menu-item:hover .sub-menu .menu-image-hover-wrapper img.hovered-image {
  opacity: 0
}

.menu-item:hover .sub-menu .menu-item:hover .menu-image-hover-wrapper img.menu-image {
  opacity: 0
}

.menu-item:hover .sub-menu .menu-item:hover .menu-image-hover-wrapper img.hovered-image {
  opacity: 1
}

.menu-item-text span.dashicons {
  display: contents;
  transition: none
}

.menu-item-has-children {
  position: relative
}

.shiftnav ul.shiftnav-menu li.menu-item>.shiftnav-target,
.shiftnav ul.shiftnav-menu li.shiftnav-retract>.shiftnav-target {
  display: block;
  text-decoration: none;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: .3em;
  color: #404041;
  text-transform: uppercase;
  text-align: center
}

.menu-item-has-children span {
  position: relative
}

.menu-item-has-children span:after {
  content: "+";
  font-size: 40px;
  position: absolute;
  right: -25px;
  top: -20px
}

.menu-item-has-children:hover>.menu-image-title-after img {
  visibility: visible;
  opacity: 1
}

.menu-image-title-after:hover .mobimg,
.menu-item-has-children:hover .mobimg {
  opacity: .5
}

.shiftnav.shiftnav-skin-standard-dark ul.shiftnav-menu li.menu-item.current-menu-item>.shiftnav-target {
  background: #e0ccc8 !important;
  text-shadow: none !important
}

.mobrightblock {
  width: 100%;
  max-width: 550px
}

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none
}

.nav>li {
  position: relative;
  display: block
}

@media (min-width:768px) {
  .nav-justified>li {
    display: table-cell;
    width: 1%
  }

  .nav-justified>li>a {
    margin-bottom: 0
  }
}

.nav-tabs-justified {
  border-bottom: 0
}

.nav-tabs-justified>li>a {
  margin-right: 0;
  border-radius: 4px
}

.nav-tabs-justified>.active>a,
.nav-tabs-justified>.active>a:focus,
.nav-tabs-justified>.active>a:hover {
  border: 1px solid #ddd
}

@media (min-width:768px) {
  .nav-tabs-justified>li>a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0
  }

  .nav-tabs-justified>.active>a,
  .nav-tabs-justified>.active>a:focus,
  .nav-tabs-justified>.active>a:hover {
    border-bottom-color: #fff
  }
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0
}

.nav-pills>li>a>.badge {
  margin-left: 3px
}

.list-group-item.active>.badge,
.nav-pills>.active>a>.badge {
  color: #337ab7;
  background-color: #fff
}

.btn-group-vertical>.btn-group:after,
.btn-group-vertical>.btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.modal-header:after,
.modal-header:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
  display: table;
  content: " "
}

.btn-group-vertical>.btn-group:after,
.btn-toolbar:after,
.clearfix:after,
.container-fluid:after,
.container:after,
.dl-horizontal dd:after,
.form-horizontal .form-group:after,
.modal-footer:after,
.modal-header:after,
.nav:after,
.navbar-collapse:after,
.navbar-header:after,
.navbar:after,
.pager:after,
.panel-body:after,
.row:after {
  clear: both
}

.nav {
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  padding: 0;
  float: none;
  width: 100%;
  max-width: 740px;
  margin: auto;
  overflow: visible
}

.nav li {
  float: none;
  text-align: center;
  position: relative
}

.nav li a {
  display: block;
  text-decoration: none;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 11px;
  line-height: 30px;
  letter-spacing: .3em;
  color: #404041;
  text-transform: uppercase;
  text-align: center
}

.nav li a:hover,
.nav li a:focus {
  text-decoration: none
}

.nav.top-nav,
.nav.top-nav li {
  display: block;
  float: none
}

.nav.top-nav li,
.nav.top-nav li a {
  text-align: left;
  color: #fff;
  font-family: kudryashev-d-contrast, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  letter-spacing: .025em;
  line-height: 48px;
  text-transform: capitalize;
  border: none;
  outline: none
}

.nav.top-nav li:focus,
.nav.top-nav li a:focus,
.nav.top-nav li:active,
.nav.top-nav li a:active {
  border: none;
  outline: none
}

.nav li ul.sub-menu {
  position: absolute;
  width: 700px;
  display: flex;
  justify-content: flex-start;
  z-index: 9998
}

.nav.top-nav ul.sub-menu li a {
  padding-right: 0;
  padding-left: 0
}

.nav.top-nav ul.sub-menu li:first-of-type a {
  padding-left: 30px
}

.nav.top-nav ul.sub-menu li a:after {
  content: "/";
  display: content;
  margin: 0;
  font-size: 35px;
  position: relative;
  padding: 0 25px
}

.nav.top-nav ul.sub-menu li:last-of-type a:after {
  display: none
}

@media only screen and (min-width:768px) {
  .nav {
    border: 0
  }

  .nav ul {
    background: 0 0;
    margin-top: 0
  }

  .nav li {
    float: left;
    position: relative
  }

  .nav li a {
    border-bottom: 0
  }

  .nav li a:hover,
  .nav li a:focus {
    color: #57585a;
    text-decoration: none
  }

  .nav li ul.sub-menu,
  .nav li ul.children {
    margin-top: 0;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 9998;
    transition: none
  }

  .nav li ul.sub-menu a,
  .nav li ul.children a {
    transition: none
  }



  .nav li ul.sub-menu:before {
    width: 30px;
    height: 1px;
    border-top: solid thin #fff;
    display: block;
    margin: 0;
    content: "";
    position: absolute;
    margin: 35px 0 0 -10px
  }

  .nav li ul.sub-menu {
    margin-left: 165px;
    margin-top: -68px
  }

  .nav li ul.sub-menu li,
  .nav li ul.children li {}

  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a {
    border-bottom: 0
  }

  .nav li ul.sub-menu li ul,
  .nav li ul.children li ul {
    top: 0;
    left: 100%
  }

  .nav li:hover>ul {
    top: auto;
    visibility: visible
  }
}

@media only screen and (min-width:1030px) {
  .nav li:last-of-type a {
    padding-right: 0
  }
}

@media only screen and (max-width:768px) {

  .nav.top-nav li,
  .nav.top-nav li a {
    text-align: center !important;
    font-size: 18px !important;
    line-height: 22px !important
  }

  .nav li ul.sub-menu {
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    max-width: 100%;
    width: 100%
  }

  .nav li ul.sub-menu li {
    display: block;
    text-align: center
  }

  .nav.top-nav ul.sub-menu li a:after {
    padding: 0 5px;
    font-size: 18px
  }

  .nav.top-nav ul.sub-menu li:first-of-type a {
    padding-left: 0 !important
  }
}

@media only screen and (max-width:450px) {

  .nav.top-nav li,
  .nav.top-nav li a {
    font-size: 22px !important;
    line-height: 28px !important
  }

  .nav li ul.sub-menu li a {
    font-size: 18px !important;
    line-height: 22px !important
  }

}

/********banner made by zxid*******/
.banner-2 {
  background: linear-gradient(180deg, #ffffff, #f3b6a5, #f3b6a5);
  padding: 130px 0 80px;
}

@media (max-width:991px) {
  .banner-2 {
    padding: 112px 0 60px;
  }
}

.text {
  font-size: 16px;
}

.text h1 {
  line-height: 1;
  margin-bottom: 30px;
}

.img-container .img img {
  /*image container*/
  width: 100%;
  /* margin-left: 10%; */
  margin-top: 18%;
  /* padding: 7%; */
  position: relative;
}

.position-relative {
  position: relative;
}

.justify-content-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: end;
}

.box {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 2rem;
  background-position: center;
}

.box-1 {
  display: flex;
  justify-content: end;
}

.box-2 {
  display: flex;
  justify-content: start;
}

.section-padding {
  padding: 100px 0;
}

.hl-content {
  text-align: center;
  /* background-color: #ffffff; */
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.my-icon img {
  width: 15%;

}

.hl-content h4 {
  font-weight: 500;
  font-size: 18px;
}

/* floating bths */

.floating-btns {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1234;
  box-shadow: 0px 0px 10px #aaa;
}

.float-box {
  border: 1px solid #9a9a9a;
  background: #fee7e7;


}

.float-box a {
  width: 100%;
  padding: 1rem;
  display: block;
  font-size: 16px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-box a i {
  font-size: 30px;
  margin-right: 10px;
  margin-right: 10px;
}

@media (max-width:600px) {
  .hl-content {
    padding: 0rem;
  }

  .hl-content h4 {
    font-size: 15px;
    line-height: 1.5;
  }

  .my-icon img {
    width: 30%;
    margin-bottom: 0 !important;
  }

  .float-box a {
    font-size: 14px;
  }

  .float-box a i {
    font-size: 24px;
  }

  .hl-content .QA {
    font-size: 12px;
    white-space: pre;
  }
}


/* social icons - side */

.sidelinks-box {
  position: fixed;
  height: 100vh;
  width: 60px;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fee7e7;
}

.sidelinks-box ul {
  width: 100%;
}

.sidelinks-box ul li {
  padding: 30px 10px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid;
  transition: all 0.5s;
}

.sidelinks-box ul li a {
  color: #000000;
}

.sidelinks-box ul li:hover {
  background: #f3b6a5;

  transition: all 0.5s;
}

.sidelinks-box ul li:hover a {
  color: #ffffff;
}

@media (max-width:991px) {
  .sidelinks-box {
    display: none;
  }
}

.sidelinks-box ul li {
  padding: 30px 10px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid;
  transition: all 0.5s;
}

.sidelinks-box ul li a {
  color: #000000;
}

.sidelinks-box ul li:hover {
  background: #f3b6a5;

  transition: all 0.5s;
}

.sidelinks-box ul li:hover a {
  color: #ffffff;
}

/* ---------- */
.social-links li {
  padding: 5px 10px;
  line-height: 1;
  text-align: center;
  transition: all 0.5s;
  border: 1px solid #ffffff;
  margin-right: 10px;
}

.social-links li a {
  color: #ffffff;
  font-size: 20px;
}

.social-links li:hover {
  background: #f3b6a5;

  transition: all 0.5s;
}

.social-links li:hover a {
  color: #ffffff;
}

.contact {
  color: #ffffff;
  margin-top: 10px;
  display: block;
}

.contact:hover {
  color: #ffffff;
}

/* gallery */

.content {
  padding: 2em 0 0em;
  margin: 0 auto;
  line-height: 0;
}

.masonry {
  width: 100%;
  column-gap: 1rem;
  column-count: 3;
  column-count: 1;
}

@media (min-width: 400px) {
  .masonry {
    column-count: 1;
  }
}

@media (min-width: 600px) {
  .masonry {
    column-count: 2;
  }
}

@media (min-width: 800px) {
  .masonry {
    column-count: 3;
  }
}

.masonry>* {
  transition: all 0.3s ease-in-out;
}

.masonry .original {
  max-width: 100%;
  height: auto;
}

.item-frame {
  border-radius: 0.4em;
  margin-bottom: 1rem;
}

/* .item-frame:hover {
  cursor: zoom-in;
} */

h2.contact-title {
  font-size: 50px;
  width: fit-content;
  text-align: end;
  position: relative;
  line-height: 1;
}

.contact-title span::before {
  content: '';
  width: 65%;
  position: absolute;
  left: 0;
  bottom: 22%;
  height: 1px;
  background: #ffffff;
}

/* mobile nav */

.bars {
  width: 50px;
  height: 18px;
  position: relative;
}

.menu-toggle .bars::before,
.menu-toggle .bars::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000000;
  right: 0;
  top: 0;
  transition: all 0.5s;
}

.menu-toggle .bars::after {
  width: 50%;
  top: 5px;
}

.bars:hover::after {
  width: 100%;
  transition: all 0.5s;
}

/* process */

.process-two-area {
  padding: 105px 0 110px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.process-two-col h2 {
  /* color: #ffffff; */
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
  text-transform: inherit;
  margin-bottom: 15px;
  margin-top: 30px;
}

.process-two-col p {
  /* color: #ffffff; */
  font-size: 20px;
  margin-bottom: 20px;
}

.process-two-area .custom-col {
  padding-right: 10px;
  padding-left: 10px;
}

.custom-col .process-two-box {
  width: 90%;
}

.process-two-box {
  background: #f7e6e6;
  text-align: center;
  width: 325px;
  padding: 25px 20px;
  margin-bottom: 20px;
}

.process-two-box::after {
  content: '';
  width: 12%;
  height: 12%;
  position: absolute;
  right: -5px;
  top: 42%;
  background-image: url('../images/right-arrow.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* background: #d88f77; */
}

.process-two-box.last-block::after {
  display: none;
}

@media (max-width:991px) {
  .custom-col .process-two-box {
    width: 100%;
  }

  .process-two-box::after {
    display: none;
  }
}

.process-two-box .process-two-icon {
  position: relative;
}

.process-two-box .process-two-icon img {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  max-height: 55px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.process-two-box h4 {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 25px;
}

.process-two-box p {
  color: #1c1c1c;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 23px;
}

.my-btn-1 {
  display: inline-block;
  position: relative;
  padding: 12px 30px 15px;
  background: #d88f77;
  font-size: 18px;
  color: #000000;
  font-weight: 400;
  text-transform: capitalize;
  height: 52px;
  overflow: hidden;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  z-index: 0;
  font-family: 'Livvic';
  font-weight: 400;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ea
}

.my-btn-1:hover {
  border: 1px solid #d88f77;
  background: transparent;
  color: #000000;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.my-btn-1 i {
  font-size: 24px;
  position: relative;
  bottom: -3px;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.my-btn-1:hover i {
  /* color: #ffffff; */
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.my-btn-1:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background: #f3b6a5;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.my-btn-1:hover:before {
  width: 100%;
  opacity: 1;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.banner-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.client-video {
  width: 100%;
}

a.menu-toggle {
  padding-right: 0 !important;
}

.stellarnav .menu-toggle span.bars {
  margin-right: 5px;
}

.modal-body {
  padding: 2rem;
  z-index: 1;
}

.modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0.2;
  background-image: url('../images/p-6.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}

.why-box {
  background-color: #fad2c7;
  padding: 50px 10px 30px;
}

.modal-content {
  width: 90%;
  margin: auto;
}

.modal-body h2 {
  font-size: 28px;
  line-height: 40px;
  margin-bottom: 1rem;
}

.owl-stage-outer {
  text-align: center;
  display: flex;
  justify-content: center;
}

@media (max-width:991px) {
  .modal-body {
    padding: 2rem 0.5rem;

  }

  .section-padding,
  .project-two-area {
    padding: 60px 0;
  }

  .service-two-area {
    padding: 125px 0 70px
  }

  .faq-btn {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
  }

  .heading h2,
  .my-title h2,
  .we-are-col h2,
  .project-area .my-title h2,
  .service-two-col h2,
  .project-area .my-title h5 {
    font-size: 32px !important;
    line-height: 40px !important;
  }

  .my-title h6 {
    font-size: 16px;
  }

  .owl-stage-outer {
    display: block;
  }
}

@media (max-width:600px) {
  .process-two-box .process-two-icon img {
    height: 30%;

  }

  .process-two-box h4 {
    font-size: 20px;
    line-height: 18px;
  }

}


.page-header {
  background-color: var(--cleenhearts-base, #351C42);
  position: relative;
  padding-top: 122px;
  padding-bottom: 122px;
  margin-top: 100px;
}

.page-header__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-header__bg::after {
  background: linear-gradient(90deg, rgba(23, 96, 115, 0.8) 0%, rgba(23, 96, 115, 0.8) 100%);
}

.page-header__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, black, #d88f7770);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 50px;
  color: var(--cleenhearts-white, #fff);
  line-height: 1.4;
  margin-bottom: 19px;
  font-family: 'ZCOOL XiaoWei', serif;
}

.cleenhearts-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: 0;
}

.cleenhearts-breadcrumb li {
  font-size: 14px;
  color: var(--cleenhearts-white, #fff);
  text-transform: capitalize;
  display: flex;
  align-items: center;
}

.cleenhearts-breadcrumb li i {
  position: relative;
  top: -1px;
  margin-right: 9px;
  font-size: 14px;
}

.cleenhearts-breadcrumb li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
}

.cleenhearts-breadcrumb li span,
.cleenhearts-breadcrumb li a {
  color: inherit;
  display: inline-flex;
  line-height: 1.5;
}

.blog-page {
  background-color: var(--cleenhearts-white, #fff);
}

.section-space {
  padding-top: 100px;
  padding-bottom: 100px;
}

.sidebar__form.sidebar__single {
  margin-bottom: 70px;
  width: 50%;
  padding: 0 30px;
  background-color: transparent;
}

.blog-style .blog-card {
  margin-bottom: 30px;
}

.blog-card {
  position: relative;
  background-color: var(--cleenhearts-white, #fff) #fff;
}

.blog-card__image {
  display: block;
  position: relative;
  overflow: hidden;
  width: calc(100% - 44px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  z-index: 11;
  margin-bottom: -115px;
}

.blog-card__image::before {
  background-color: rgba(23, 96, 115, 0.8);
}

.blog-card__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-80%);
  width: 100%;
  height: 50%;
  border-radius: 20px 20px 0 0;
  background-color: RGBA(var(--cleenhearts-dark2-rgb, 32, 12, 42), 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: transform 500ms ease, visibility 500ms ease, opacity 500ms ease;
}

.blog-card__image img {
  transition: 0.5s;
  display: block;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.img-height {
  height: 240px;
}

.blog-card__image::after {
  background-color: rgba(23, 96, 115, 0.8);
}

.blog-card__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(80%);
  width: 100%;
  height: 50%;
  border-radius: 0 0 20px 20px;
  background-color: RGBA(var(--cleenhearts-dark2-rgb, 32, 12, 42), 0.8);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: transform 500ms ease, visibility 500ms ease, opacity 500ms ease;
}

.blog-card__content {
  position: relative;
  text-align: center;
  padding: 135px 33px 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 500ms ease;
  border-radius: 20px;
  z-index: 1;
}

.blog-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.blog-card__title {
  font-size: 17px;
}

.blog-card__title {
  color: var(--cleenhearts-base, #351C42);
  font-size: 20px;
  text-transform: capitalize;
  line-height: 1.375;
  margin-bottom: 29px;
  letter-spacing: var(--cleenhearts-letter-space, -0.72px);
  text-align: left;
  height: 50px;
}

.blog-card__title a {
  background: none;
}

.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
  font-family: 'ZCOOL XiaoWei';
}

.blog-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card__link {
  font-size: 16px;
  color: var(--cleenhearts-base, #351C42);
  font-weight: 700;
  text-align: center;
  height: 40px;
  max-width: 140px;
  font-family: var(--cleenhearts-heading-font, "Quicksand", sans-serif);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.blog-card__link__back {
  transition: none !important;
  transform: none !important;
}

.blog-card__link__back {
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 700ms ease, top 700ms ease;
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: bottom center;
  width: 100%;
  font-family: 'ZCOOL XiaoWei';
}

span#blog-date {
  font-family: 'ZCOOL XiaoWei';
}

.blog-card__link__back span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background-color: rgb(181, 136, 133);
  margin-right: 11px;
  transition: all 500ms ease;
}

i.fa-solid.fa-angles-right {
  font-size: 18px;
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

span.blog-card__link__back:hover {
  color: #d88f77;
}


.sidebar__search {
  display: flex;
  align-items: center;
  position: relative;
  height: 59px;
}

.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  border-color: rgb(181, 136, 133);
}

.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  padding-left: 20px;
  padding-right: 40px;
  outline: none;
  border: 0;
  border: 1px solid var(--cleenhearts-border-color, #D7D3CB);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background-color: var(--cleenhearts-white, #fff);
  transition: all 500ms ease;
}

.blog-card-four .blog-card__image {
  width: 100%;
  margin-bottom: 33px;
}

.sidebar__single {
  border-radius: 20px;
  background-color: var(--cleenhearts-white2, #EFECE7);
  padding: 30px;
}

.sidebar__title {
  text-transform: capitalize;
  margin: 0;
  line-height: 1.3;
  margin-top: -5px;
  margin-bottom: 25px;
}

.blog-block {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.blog-block a {
  font-size: 20px;
}

.blog-block__heading {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar__tags a {
  background-color: var(--cleenhearts-white3, #D7D3CB);
  font-size: 14px;
  color: var(--cleenhearts-base, #351C42);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1;
  transition: all 500ms ease;
  display: inline-flex;
  padding: 6px 10.5px;
  border-radius: 100px;
}

div#blog-content h4 {
  font-family: 'ZCOOL XiaoWei', serif;
}

h3#blog-title {
  font-family: 'ZCOOL XiaoWei', serif;
}

div#blog-content p {
  font-family: 'Livvic';
}

a.blog-block__img__link {
  width: 90px;
  display: flex;
  /* height: 90px; */
}

@media (max-width:768px) {
  .page-header {
    margin-top: 65px;
  }

  .section-space {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .sidebar__form.sidebar__single {
    width: 100%;
    margin-bottom: 50px;
  }

  .page-header__title {
    font-size: 30px;
  }

  aside.widget-area {
    margin: 50px 0;
  }
}