body {
  font-family: "Montserrat", sans-serif;
  color: #444444;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

h2 {
  color: #333333;
  font-weight: 800;
  font-size: 40px;
}

h3 {
  font-weight: 700;
  font-size: 20px;
  color: #333333;
  margin-bottom: 14px;
}


p {
  color: #707070;
  font-size: 15px;
  line-height: 25.5px;
}

a:hover {
  color: #ffffff;
}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color:#ffffff;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 66px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 100px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 8px 10px 8px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: rgb(86 86 85);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-decoration: none;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #f96f59;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #292B41;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}
li.cont-btn {
  		background: linear-gradient(135deg, #990066, #330066);

  color: #fff;
  border-radius: 5px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0px 3px 6px #00000012;
  opacity: 1;
  text-decoration: none;
}
li.cont-btn a{
 		background: linear-gradient(135deg, #990066, #330066);

  color: #fff;
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.9s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: #e2e2e2;
    overflow-y: auto;
    transition: 0.9s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: #292B41;
    white-space: nowrap;
    transition: 0.9s;
    text-decoration: none;
    border-radius: 5px;
  }
  li.cont-btn {
		background: linear-gradient(135deg, #990066, #330066);

    color: #fff;
    border-radius: 5px;
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0px 3px 6px #00000012;
    opacity: 1;
    text-decoration: none;
    width: 100px;
    margin-left: 18px;
}
li {
  margin-left: 16px;
  list-style: none;
}
  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #292B41;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: #292B41;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color:#292B41;
    border: 1px solid #292B41;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #292B41;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color:#292B41;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: #41414180;
    z-index: 9996;
  }
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content h6 {
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
}

.hero-content p {
  margin-bottom: 25px;
  font-weight: 400;
  color: #ffffff;
  font-size: 18px;
}

.hero-content p:first-child {
  margin-bottom: 14px;

}

.hero-content h1 {
  font-size: 65px;
  font-family: Montserrat;
  font-weight: 800;
  color: #464646;
}

.hero-content h6 {
  font-size: 20px;
  font-weight: 800;
  	background: linear-gradient(135deg, #990066, #330066);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 18px;
  color: #9F9F9F;
}

.hero-btn-container {
  display: flex;

}

.hero-btn {
  cursor: pointer;
margin-left: -8px;
}


.hero-btn-stoke {
  cursor: pointer;
  /* width: 200px; */
  /* height: 54px; */
  padding: 16px;
  text-decoration: none;
  color: #ffffff;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  border-radius: 30px;
  transition: 1s;
  border: 1px solid #ffffff;

}

.hero-secondry-btn {
  cursor: pointer;
  width: 200px;
  /* height: 54px; */
  padding: 16px;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #ffffff;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  border-radius: 5px;
  transition: 1s;

}

.hero-secondry-btn:hover {
 		background: linear-gradient(135deg, #990066, #330066);

  color: #ffffff;
  border: 1px solid #593154;
}

.hero-specific-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-specific-content a {
  text-decoration: none;
}


.spec-box-cont {
  cursor: pointer;
  width: 100%;
  height: 74px;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  border: 0.2px solid #00000026;
  font-size: 15px;
  transition: 1s;
}

.spec-box-cont:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.hero-banner {
  position: relative;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* ----------home-hero-bottom-sec-starts------------ */

#home-hero-bottom-sec .img-container {
  text-align: center;
}

#home-hero-bottom-sec {
  padding: 80px 0 0 0;
  margin-bottom: 80px;
}

#home-hero-bottom-sec .container-box {
  background-color: #F3EFEC;
  padding: 20px;
}

#home-hero-bottom-sec .container-box p {
  margin-bottom: 0;
}

#home-hero-bottom-sec .container-box h3 {
  margin-bottom: 10px;
}

.common-title {
  text-align: center;
  margin-bottom: 60px;
}

.common-title h6 {
  font-size: 20px;
 	background: linear-gradient(135deg, #990066, #330066);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
  font-weight: 500;
  margin-bottom: 16px;

}

.common-title p {
  margin-top: 15px;
  font-size: 18px;

}

.common-title h4 {
  font-size: 33px;
  color: #333333;
  font-weight: 700;
  margin-bottom: 23px;

}

#home-hero-bottom-sec img {
  margin-bottom: 20px;
  width: 300px;
}

#home-aboutus-bottom-sec {
  text-align: center;
  padding-top: 50px;
}

section#about-sec {
  margin-top: 145px;
}


/* ----------home-hero-bottom-sec-ends------------ */



/* ----------home reachus-sec-starts------------ */

#popular-sec {
  margin-bottom: 80px;
}

#popular-sec img {
  margin-bottom: 20px;
}

#popular-sec h3 {
  font-weight: 700;
  font-size: 25px;
  color: #333333;
  margin-bottom: 14px;
}

.btn-primary {
  		background: linear-gradient(135deg, #990066, #330066);

  border: none;
  padding: 10px 15px;
  border-radius:2px ;
}

#popular-sec .text-content {
  text-align: center;
  margin-bottom: 30px;
}

#popular-sec .text-content p {
  margin-bottom: 0;
  	background: linear-gradient(135deg, #990066, #330066);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
  font-size: 20px;
}





/* ----------home popular-sec-ends------------ */


/* ----------home hot-deals-sec-starts------------ */
#hot-deals-sec {
  margin-bottom: 80px;
}

#hot-deals-sec img {
  margin-bottom: 20px;
}

#hot-deals-sec h3 {
  font-weight: 700;
  font-size: 22px;
  color: #333333;
  margin-bottom: 14px;
}

#hot-deals-sec .text-content {
  text-align: center;
  margin-bottom: 30px;
}

#hot-deals-sec .text-content p {
  margin-bottom: 0;
 	background: linear-gradient(135deg, #990066, #330066);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
  font-size: 18px;
}






/* ----------home hot-deals-sec-ends------------ */


/* ----------reachus-sec-starts------------ */

#reachus-sec {
  height: 600px;
  background-image: url(../img/reachus.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  margin-bottom: 100px;
}

#reachus-sec::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000000;
  inset: 0;
  opacity: 0.40;
  z-index: -1;
}

#reachus-sec .content-sec {
  text-align: center;
}

#reachus-sec .content-sec h2 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 30px;
  font-size: 40px;
}

#reachus-sec .content-sec p {
  color: #ffffff;
  font-size: 16px;
}

/* ----------reachus-sec-ens------------ */



/* ----------home The our-testimonial-sec-starts------------ */
#our-testimonial-sec {
  margin-bottom: 100px;
}


#our-testimonial-sec .container-box {
  text-align: center;
}

#our-testimonial-sec .content {
  padding: 0px 80px;

}

#our-testimonial-sec img {
  margin-bottom: 20px;

}


#our-testimonial-sec .tes-icon {
  position: absolute;
  top: 30px;
  left: 64px;
}




/* ----------home The our-testimonial-sec-ends------------ */


/* ---------- home-footer-above-sec-start------------ */

#footer-above-sec .footer-above-sec {
  text-align: center;
  margin-bottom: 30px;

}

/* ---------- home-footer-above-sec -ends------------ */



/* ----------home footer section Starts------------ */
.footer {
  background-color: #F3EFEC;
  width: 100%;
  height: auto;
  padding: 60px 0 0 0;
}

.footer h2 {
  font-size: 28px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 20px;

}



.footer-aboutus-sec p {
  color: #333333;
  font-size: 14px;
  font-weight: 200;
}

.footer-aboutus-sec,
.footer-Links-sec,
.footer-cu-sec {
  margin-bottom: 30px;
}

.footer-Links-sec ul li {
  list-style-type: none;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 14px;
  padding: 0;
  font-weight: 200;
}

.footer-Links-sec ul {
  padding: 0;
}

.footer hr {
  color: #ffffff;
}

.footer-cu-sec address {
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 24px;
  font-size: 14px;
  font-weight: 200;
}

.footer-cu-sec p {
  margin-bottom: 23px;
  font-weight: 200;
}

.footer-cu-sec-align,
.footer-Links-sec-align {
  display: flex;
  justify-content: center;
}



.copy-rights {
  color: #333333;
  font-size: 14px;
}

.copy-rights p {
  text-align: start;
}

.footer-bt-sec {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid #ddd;
}

.footer-bt-sec p {
  margin-bottom: 0;
  color: #232323;
  font-weight: 200;
}

.design p {
  text-align: end;
}


.footer a {
  text-decoration: none;
  position: relative;
  color: #333333;
  transition: 0.5s;
}

.footer h6 {
  color: #333333;
}

.footer a:hover {
  text-decoration: none;
  position: relative;
  color: #fff;
}

.social-links {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.social-links a {
    border-radius: 30px;
    font-size: 21px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: #222222;
    color: #bcbcbc;
    text-decoration: none;
}


/* ----------home footer section ends------------ */

/* ----------Aboutus-page-section-starts------------ */
.common-heading {
  text-align: center;
  margin: 50px 0;
}

#about-sec img {
  margin-bottom: 50px;
}

#about-sec img {
  margin-bottom: 50px;
}



/* ----------Aboutus-page-section-ends------------ */



/* ----------our-services-section-starts------------ */
#our-services-sec img {
  border-radius: 10px;
  margin-bottom: 30px;
}

#our-services-sec .content-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 100px;
  margin-bottom: 30px;
}

#our-services-sec .content-box h4 {
  font-size: 30px;
  font-weight: 700;
  color: #333333;
}
/* ----------our-services-section-ends------------ */






/* ----------our-Contact-section-starts------------ */
.contact-sec{
  margin-top: 145px;
}
.contact-sec-img img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  
}

.contact-sec-img {
  position: relative;
  max-height: 440px;
  overflow-y: hidden;
  object-fit: cover;
  z-index: -1;
}

.contact-form-sec h2 {
  font-size: 28px;
  margin-bottom: 36px;
}

.contact-form-sec {
  height: 430px;
  padding: 50px;
  background: #F3EFEC;
}

.contact-form-sec p {
  color: #828282;
  font-size: 14px;
  line-height: 26px;
}

.contact-form-sec h4 {
  margin-bottom: 14px;
  font-weight: 700;
  color: #333333;
  font-size: 22px;
}

button.btn.contact-btn {
  		background: linear-gradient(135deg, #990066, #330066);

  color: #fff;
  border-radius: 0px;
  margin: 20px 0px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0px 3px 6px #00000012;
  opacity: 1;
  text-decoration: none;
}

iframe {
  width: 100%;
  height: 500px;
}

.contact-form-sec .social-links a {
  text-decoration: none;
  color: #333333;
}

#contactus-sec {
  margin-bottom: 100px;
}

.form-control {
  border: 1px solid #DEDEDE;
  border-radius: 0rem !important;

}
/* ----------our-Contact-section-ends------------ */