@charset "UTF-8";
.desktop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 10px 30px;
  z-index: 10;
}
@media screen and (max-width: 1119px) {
  .desktop-header {
    display: none;
  }
}
.desktop-header .nav-sec {
  height: 100%;
}
.desktop-header .nav-sec nav {
  height: 100%;
}
.desktop-header .nav-sec nav ul {
  display: flex;
  list-style: none;
  text-decoration: none;
  height: 100%;
  margin: 0px;
  padding: 0px;
}
.desktop-header .nav-sec nav ul li {
  text-decoration: none;
  padding: 10px 15px;
  height: 100%;
  display: flex;
  align-items: center;
}
.desktop-header .nav-sec nav ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 19px;
  font-family: "Marcellus", serif;
}
.desktop-header .contact-btn .contact {
  background: rgb(211, 23, 43);
  padding: 7px 30px 10px;
}
.desktop-header .contact-btn .contact a {
  text-decoration: none;
  color: rgb(241, 241, 241);
  font-size: 16px;
  letter-spacing: 2px;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 10px 30px;
  z-index: 1;
}
@media screen and (max-width: 1119px) {
  .mobile-header {
    display: block;
  }
}
.mobile-header .nav #nav-check {
  display: none;
}
.mobile-header .nav .nav-btn {
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 10px;
  padding-top: 0.2rem;
}
.mobile-header .nav .nav-btn label {
  display: inline-block;
  width: 50px;
  height: 50px;
  padding: 13px;
}
.mobile-header .nav .nav-btn label span {
  display: block;
  width: 25px;
  height: 10px;
  border-top: 2px solid #eee;
}
.mobile-header .nav .close-btn {
  display: none;
}
.mobile-header .nav .close-btn label .fa {
  color: #fff;
  position: absolute;
  right: 20px;
  top: 22px;
  font-size: 32px;
}
.mobile-header .nav .nav-list {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  background-color: #fff;
  height: 0;
  transition: all 0.3s ease-in;
  top: 90px;
  left: 0;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
}
.mobile-header .nav .nav-list li {
  text-decoration: none;
  padding: 10px 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-header .nav .nav-list li a {
  text-decoration: none;
  color: #000;
  font-size: 19px;
}
.mobile-header .nav > #nav-check:checked ~ .nav-list {
  height: calc(90vh - 50px);
}
.mobile-header .nav > #nav-check:checked ~ .nav-btn {
  display: none;
}
.mobile-header .nav > #nav-check:checked ~ .close-btn {
  display: block;
}
.ashleys-banner-sec {
  width: 100%;
  height: 900px;
  background-position: center;
  background-repeat: no-repeat;
}
.ashleys-banner-sec .overlay-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: relative;
  padding-top: 100px;
}
.ashleys-banner-sec .overlay-bg .banner-info-sec {
  padding-top: 50px;
  margin-top: 60px;
}
.ashleys-banner-sec .overlay-bg .banner-info-sec .banner-heding h2 {
  font-size: 46px;
  color: white;
  font-weight: 500;
  line-height: 1.3;
}
.ashleys-banner-sec .overlay-bg .banner-info-sec .banner-heding p {
  font-size: 17px;
  font-weight: 300;
  color: white;
  margin-bottom: 30px;
  line-height: 22.79px;
}
.ashleys-banner-sec .overlay-bg .banner-info-sec .banner-heding a {
  text-decoration: none;
  color: #F1F1F1;
  text-transform: uppercase;
  border: 1px solid #D3172B;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2.5px;
  font-family: "Marcellus";
}
.ashleys-banner-sec .overlay-bg .contact-form-sec {
  margin-top: 60px;
  background-color: #fff;
  padding: 20px 30px 30px;
  position: relative;
  height: auto;
}
@media screen and (max-width: 768px) {
  .ashleys-banner-sec .overlay-bg .contact-form-sec {
    display: none;
  }
}
.ashleys-banner-sec .overlay-bg .contact-form-sec form h4 {
  padding-bottom: 13px;
  font-family: "Marcellus", serif;
}
.ashleys-banner-sec .overlay-bg .contact-form-sec form .full-name label {
  font-family: "Montserrat", sans-serif;
}
.ashleys-banner-sec .overlay-bg .contact-form-sec form .full-name label input {
  padding: 5px 0px;
}
.ashleys-banner-sec .overlay-bg .contact-form-sec form .email {
  display: flex;
}
.ashleys-banner-sec .overlay-bg .contact-form-sec form .email label {
  width: 50%;
  font-family: "Montserrat", sans-serif;
  color: #171717;
}
.ashleys-banner-sec .overlay-bg .contact-form-sec form .email label input {
  padding: 9px 20px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid rgba(66, 80, 102, 0.4);
}
.ashleys-banner-sec .overlay-bg .contact-form-sec form .detail {
  display: flex;
}
.ashleys-banner-sec .overlay-bg .contact-form-sec form .detail .number {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.ashleys-banner-sec .overlay-bg .contact-form-sec form .detail .number label {
  font-family: "Montserrat", sans-serif;
}
.ashleys-banner-sec .overlay-bg .contact-form-sec form .detail .number select {
  padding: 9px 20px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid rgba(66, 80, 102, 0.4);
  font-family: "Montserrat", sans-serif;
}
.ashleys-banner-sec .overlay-bg .contact-form-sec form .next-btn {
  text-decoration: none;
  padding: 10px 42px;
  color: #F1F1F1;
  background: #D3172B;
  letter-spacing: 2.5px;
  font-size: 16px;
  position: absolute;
  border: none;
  bottom: -20px;
  right: 43px;
  font-family: "Marcellus";
}
.ashleys-banner-sec .overlay-sec {
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  bottom: 0;
  left: 0;
  padding: 0px;
}
.ashleys-banner-sec .overlay-sec .overlay-sec-info {
  display: flex;
  padding: 11px 10px;
}
.ashleys-banner-sec .overlay-sec .overlay-sec-info .overlay-wrapper {
  width: 40%;
  padding: 15px;
}
@media screen and (max-width: 737px) {
  .ashleys-banner-sec .overlay-sec .overlay-sec-info .overlay-wrapper {
    width: 100%;
  }
}
.ashleys-banner-sec .overlay-sec .overlay-sec-info .overlay-wrapper .overlay-icon {
  padding-bottom: 15px;
}
.ashleys-banner-sec .overlay-sec .overlay-sec-info .overlay-wrapper .overlay-icon img {
  padding-right: 15px;
}
.ashleys-banner-sec .overlay-sec .overlay-sec-info .overlay-wrapper p {
  color: #F1F1F1;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  font-family: "Montserrat", sans-serif;
}
.ashleys-banner-sec .overlay-sec .overlay-sec-info .overlay-img {
  width: 20%;
  padding: 15px 15px;
}
@media screen and (max-width: 737px) {
  .ashleys-banner-sec .overlay-sec .overlay-sec-info .overlay-img {
    display: none;
  }
}
.ashleys-banner-sec .overlay-sec .overlay-sec-info .overlay-img .img {
  width: 100%;
}
.ashleys-banner-sec .overlay-sec .overlay-sec-info .overlay-img .img img {
  width: 100%;
}

.contact-form-sec1 {
  margin-top: 60px;
  background-color: #fff;
  border-radius: 15px;
  padding: 38px 30px;
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-form-sec1 {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .contact-form-sec1 {
    padding: 10px;
  }
}
.contact-form-sec1 form h4 {
  padding-bottom: 13px;
  font-family: "Marcellus", serif;
}
.contact-form-sec1 form .full-name label {
  font-family: "Montserrat", sans-serif;
}
.contact-form-sec1 form .full-name label input {
  padding: 5px 0px;
}
.contact-form-sec1 form .email {
  display: flex;
}
.contact-form-sec1 form .email label {
  width: 50%;
  font-family: "Montserrat", sans-serif;
  color: #171717;
}
.contact-form-sec1 form .email label input {
  padding: 9px 20px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid rgba(66, 80, 102, 0.4);
}
.contact-form-sec1 form .detail .number {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact-form-sec1 form .detail .number label {
  font-family: "Montserrat", sans-serif;
}
.contact-form-sec1 form .detail .number select {
  padding: 9px 20px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid rgba(66, 80, 102, 0.4);
  font-family: "Montserrat", sans-serif;
}
.contact-form-sec1 form .cdn {
  text-align: center;
  padding-top: 10px;
}
.contact-form-sec1 form .cdn .next-btn {
  text-decoration: none;
  padding: 10px 42px;
  color: #F1F1F1;
  background: #D3172B;
  letter-spacing: 2.5px;
  font-size: 16px;
  position: relative;
  border: none;
  font-family: "Marcellus";
}

.about-us-sec {
  padding: 60px 60px;
}
@media screen and (max-width: 757px) {
  .about-us-sec {
    padding: 30px 0px;
  }
}
@media screen and (max-width: 400px) {
  .about-us-sec {
    padding: 10px 10px;
  }
}
.about-us-sec .about-wrapper {
  padding: 0px 47px 0px 20px;
}
@media screen and (max-width: 757px) {
  .about-us-sec .about-wrapper {
    padding: 0px;
  }
}
.about-us-sec .about-wrapper .about-title h6 {
  font-size: 12.8px;
  color: #D3172B;
  letter-spacing: 5px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.about-us-sec .about-wrapper .about-title h4 {
  font-size: 40px;
  color: #212121;
  font-weight: 400;
  line-height: 50px;
  padding-top: 15px;
  padding-bottom: 10px;
  font-family: "Marcellus";
}
@media screen and (max-width: 757px) {
  .about-us-sec .about-wrapper .about-title h4 {
    font-size: 32px;
  }
}
.about-us-sec .about-wrapper .about-title p {
  color: #616161;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
.about-us-sec .about-wrapper .number-wrapper {
  display: inline-block;
  width: 30%;
  text-align: center;
  padding-top: 30px;
}
.about-us-sec .about-wrapper .number-wrapper .display-4 {
  color: #D3172B;
  font-size: 45px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 757px) {
  .about-us-sec .about-wrapper .number-wrapper .display-4 {
    font-size: 30px;
  }
}
.about-us-sec .about-wrapper .number-wrapper p {
  font-size: 16px;
  font-weight: 400;
  color: #616161;
  font-family: "Montserrat", sans-serif;
}
.about-us-sec .about-wrapper .cdn-btn {
  margin-top: 35px;
}
.about-us-sec .about-wrapper .cdn-btn a {
  text-decoration: none;
  color: #F1F1F1;
  background: #D3172B;
  font-size: 14px;
  font-weight: 300;
  padding: 10px 15px;
  text-align: center;
  letter-spacing: 2.5px;
  line-height: 30px;
  font-family: "Marcellus";
}
.about-us-sec .about-img-wrapper {
  padding-top: 30px;
}
@media screen and (max-width: 600px) {
  .about-us-sec .about-img-wrapper {
    display: none;
  }
}
.about-us-sec .about-img-wrapper .about-us-img-sec {
  position: relative;
  display: flex;
  padding-bottom: 15px;
}
.about-us-sec .about-img-wrapper .about-us-img-sec .img {
  width: 50%;
  height: 197px;
  padding-right: 15px;
}
.about-us-sec .about-img-wrapper .about-us-img-sec .img img {
  width: 100%;
  height: 100%;
}
.about-us-sec .about-us-img-wrapper1 {
  padding-top: 40px;
  display: none;
}
@media screen and (max-width: 600px) {
  .about-us-sec .about-us-img-wrapper1 {
    display: block;
  }
}
.about-us-sec .about-us-img-wrapper1 .about-us-img-sec img {
  width: 100%;
}

.project-sec {
  padding: 30px 40px;
}
@media screen and (max-width: 500px) {
  .project-sec {
    padding: 30px 0px 10px;
  }
}
.project-sec .project-sec-wrapper .project-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .project-sec .project-sec-wrapper .project-title {
    text-align: left;
    align-items: flex-start;
    padding-bottom: 20px;
  }
}
.project-sec .project-sec-wrapper .project-title h6 {
  font-size: 12.8px;
  color: #D3172B;
  letter-spacing: 5px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.project-sec .project-sec-wrapper .project-title h4 {
  font-size: 40px;
  color: #212121;
  font-weight: 400;
  line-height: 50px;
  padding-top: 15px;
  padding-bottom: 10px;
  font-family: "Marcellus";
}
@media screen and (max-width: 757px) {
  .project-sec .project-sec-wrapper .project-title h4 {
    font-size: 32px;
  }
}
.project-sec .project-sec-wrapper .project-title p {
  color: #616161;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  line-height: 30px;
  width: 680px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 560px) {
  .project-sec .project-sec-wrapper .project-title p {
    width: 100%;
  }
}
.project-sec .img {
  width: 100%;
  max-height: 304px;
  padding-bottom: 20px;
}
.project-sec .img img {
  width: 100%;
  max-height: 387px;
}

.Categories-sec {
  padding: 60px 40px;
  max-width: 1560px;
  margin:50px auto 0px;
}
@media screen and (max-width: 500px) {
  .Categories-sec {
    padding: 30px 40px;
  }
}
.Categories-sec .Categories-heading {
  text-align: center;
  padding: 20px 0px 30px;
}
.Categories-sec .Categories-heading h6 {
  font-size: 12.8px;
  color: #D3172B;
  letter-spacing: 5px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.Categories-sec .Categories-heading h4 {
  font-size: 40px;
  color: #212121;
  font-weight: 400;
  line-height: 50px;
  padding-top: 15px;
  padding-bottom: 10px;
  font-family: "Marcellus";
}
@media screen and (max-width: 757px) {
  .Categories-sec .Categories-heading h4 {
    font-size: 32px;
  }
}
.Categories-sec .Categories-card .Categories-img {
  width: 100%;
}
.Categories-sec .Categories-card .Categories-img img {
  width: 100%;
  height: 225px;
}
.Categories-sec .Categories-title {
  text-align: center;
}
.Categories-sec .Categories-title h5 {
  font-size: 18px;
  font-weight: 400;
  padding-top: 15px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.profession-sec {
  padding: 60px 0px 30px;
}
.profession-sec .profession-info-sec {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* flex-wrap: wrap; */
}
@media screen and (max-width: 757px) {
  .profession-sec .profession-info-sec {
    padding-bottom: 20px;
  }
}
.profession-sec .profession-info-sec h6 {
  font-size: 12.8px;
  color: #D3172B;
  letter-spacing: 5px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.profession-sec .profession-info-sec h4 {
  font-size: 40px;
  color: #212121;
  font-weight: 400;
  line-height: 50px;
  padding-top: 15px;
  padding-bottom: 10px;
  font-family: "Marcellus";
}
@media screen and (max-width: 757px) {
  .profession-sec .profession-info-sec h4 {
    font-size: 32px;
  }
}
.profession-sec .profession-info-sec p {
  color: #616161;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}
.profession-sec .profession-info-sec .acco-read {
  font-family: "Montserrat", sans-serif;
  display: inline;
  text-decoration: none;
  background: rgb(211, 23, 43);
  width: 122px;
  padding: 8px 10px;
  text-align: center;
  color: #fff;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 2px;
  font-family: "Marcellus";
}
.profession-sec .founder-info {
  padding: 20px;
}
@media screen and (max-width: 757px) {
  .profession-sec .founder-info {
    padding: 0px;
  }
}
.profession-sec .founder-info .founder-img {
  width: 100%;
}
.profession-sec .founder-info .founder-img img {
  width: 100%;
}
.profession-sec .founder-info .founder-name {
  text-align: center;
  padding-top: 20px;
}
.profession-sec .founder-info .founder-name p {
  font-size: 20px;
  font-weight: 400;
  color: #212121;
  line-height: 30px;
  margin-bottom: 3px;
  font-family: "Marcellus";
}
.profession-sec .founder-info .founder-name h6 {
  color: #D3172B;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
}

.award-sec {
  background: rgb(144, 144, 144);
  padding: 50px 0px;
  margin: 30px 0px;
}
.award-sec .award-heading {
  text-align: center;
  padding-top: 20px;
}
@media screen and (max-width: 500px) {
  .award-sec .award-heading {
    text-align: left;
    padding-bottom: 20px;
  }
}
.award-sec .award-heading h6 {
  font-size: 12.8px;
  color: #FFFFFF;
  letter-spacing: 5px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.award-sec .award-heading h4 {
  font-size: 40px;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 50px;
  padding-top: 15px;
  padding-bottom: 10px;
  font-family: "Marcellus";
}
@media screen and (max-width: 757px) {
  .award-sec .award-heading h4 {
    font-size: 32px;
  }
}
.award-sec .recognition-sec {
  padding: 50px 40px 20px;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .award-sec .recognition-sec {
    justify-content: center;
    padding: 0px;
  }
}
@media screen and (max-width: 500px) {
  .award-sec .recognition-sec {
    display: block;
  }
}
.award-sec .recognition-sec ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.award-sec .recognition-sec ul li {
  list-style: none;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  padding-bottom: 15px;
  letter-spacing: 1.9px;
  font-family: "Montserrat", sans-serif;
}
.award-sec .recognition-sec1 {
  padding: 50px 40px 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .award-sec .recognition-sec1 {
    justify-content: center;
    padding: 0px;
  }
}
@media screen and (max-width: 500px) {
  .award-sec .recognition-sec1 {
    display: block;
  }
}
.award-sec .recognition-sec1 ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.award-sec .recognition-sec1 ul li {
  list-style: none;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  padding-bottom: 15px;
  letter-spacing: 1.9px;
  font-family: "Montserrat", sans-serif;
}

.client-sec {
  padding: 60px 0px;
}
@media screen and (max-width: 500px) {
  .client-sec {
    padding: 35px 0px 0px;
  }
}
.client-sec .client-sec-heading {
  text-align: center;
}
.client-sec .client-sec-heading h6 {
  font-size: 12.8px;
  color: #D3172B;
  letter-spacing: 5px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.client-sec .client-sec-heading h4 {
  font-size: 40px;
  color: #212121;
  font-weight: 400;
  line-height: 50px;
  padding-top: 15px;
  padding-bottom: 10px;
  font-family: "Marcellus";
}
@media screen and (max-width: 757px) {
  .client-sec .client-sec-heading h4 {
    font-size: 32px;
  }
}
.client-sec .vedio-sec {
  padding: 50px 20px 20px;
}
@media screen and (max-width: 500px) {
  .client-sec .vedio-sec {
    padding: 10px;
  }
}
.client-sec .vedio-sec video {
  width: 100%;
}
@media screen and (max-width: 400px) {
  .client-sec .vedio-sec video {
    width: 100%;
    height: auto;
  }
}
.client-sec .swiper {
  padding: 50px 20px 50px;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .client-sec .swiper {
    padding-top: 0px;
  }
}
@media screen and (max-width: 500px) {
  .client-sec .swiper {
    padding: 45px 10px;
    padding-top: 0px;
  }
}
.client-sec .swiper .swiper-wrapper {
  height: 100%;
}
.client-sec .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-sec .swiper .swiper-wrapper .swiper-slide .client-swiper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(250, 250, 250);
}
.client-sec .swiper .swiper-wrapper .swiper-slide .client-swiper .swiper-info {
  position: relative;
}
.client-sec .swiper .swiper-wrapper .swiper-slide .client-swiper .swiper-info::after {
  content: " ";
  position: absolute;
  width: 4px;
  height: 126px;
  background-color: rgb(211, 23, 43);
  left: 26px;
  top: 71px;
}
@media screen and (max-width: 500px) {
  .client-sec .swiper .swiper-wrapper .swiper-slide .client-swiper .swiper-info::after {
    left: 13px;
    top: 50px;
  }
}
.client-sec .swiper .swiper-wrapper .swiper-slide .client-swiper .swiper-info::before {
  content: " ";
  position: absolute;
  width: 120px;
  height: 17px;
  background-color: rgb(211, 23, 43);
  bottom: 17px;
  right: 0px;
}
.client-sec .swiper .swiper-wrapper .swiper-slide .client-swiper .swiper-info .quotes-img {
  position: absolute;
}
@media screen and (max-width: 500px) {
  .client-sec .swiper .swiper-wrapper .swiper-slide .client-swiper .swiper-info .quotes-img img {
    width: 50%;
  }
}
.client-sec .swiper .swiper-wrapper .swiper-slide .client-swiper .swiper-info .client-info {
  padding-left: 100px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 500px) {
  .client-sec .swiper .swiper-wrapper .swiper-slide .client-swiper .swiper-info .client-info {
    padding-left: 35px;
  }
}
.client-sec .swiper .swiper-wrapper .swiper-slide .client-swiper .swiper-info .client-info p {
  color: rgb(32, 32, 32);
  font-size: 16px;
  line-height: 26px;
  font-family: "Montserrat", sans-serif;
}
.client-sec .swiper .swiper-wrapper .swiper-slide .client-swiper .swiper-info .client-info h5 {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}
.client-sec .swiper .swiper-button-next {
  position: absolute;
  right: 20px;
  top: 585px;
  background-color: rgb(211, 23, 43);
  padding: 14px 15px;
}
@media screen and (min-width: 1450px) {
  .client-sec .swiper .swiper-button-next {
    top: 633px;
  }
}
@media screen and (max-width: 1119px) {
  .client-sec .swiper .swiper-button-next {
    top: 582px;
  }
}
@media screen and (max-width: 912px) {
  .client-sec .swiper .swiper-button-next {
    top: 607px;
  }
}
@media screen and (max-width: 540px) {
  .client-sec .swiper .swiper-button-next {
    top: 434px;
  }
}
@media screen and (max-width: 500px) {
  .client-sec .swiper .swiper-button-next {
    top: 467px;
  }
}
@media screen and (max-width: 390px) {
  .client-sec .swiper .swiper-button-next {
    top: 513px;
  }
}
@media screen and (max-width: 344px) {
  .client-sec .swiper .swiper-button-next {
    top: 565px;
  }
}
.client-sec .swiper .swiper-button-prev {
  position: absolute;
  left: 540px;
  top: 585px;
  background-color: rgb(33, 33, 33);
  padding: 14px 15px;
}
@media screen and (min-width: 1450px) {
  .client-sec .swiper .swiper-button-prev {
    top: 633px;
    left: 640px;
  }
}
@media screen and (max-width: 1119px) {
  .client-sec .swiper .swiper-button-prev {
    top: 582px;
    left: 427px;
  }
}
@media screen and (max-width: 912px) {
  .client-sec .swiper .swiper-button-prev {
    top: 607px;
    left: 280px;
  }
}
@media screen and (max-width: 540px) {
  .client-sec .swiper .swiper-button-prev {
    top: 434px;
    left: 393px;
  }
}
@media screen and (max-width: 500px) {
  .client-sec .swiper .swiper-button-prev {
    top: 467px;
    left: 280px;
  }
}
@media screen and (max-width: 390px) {
  .client-sec .swiper .swiper-button-prev {
    top: 513px;
    left: 220px;
  }
}
@media screen and (max-width: 344px) {
  .client-sec .swiper .swiper-button-prev {
    top: 565px;
    left: 220px;
  }
}
.client-sec .swiper .swiper-button-next:after, .client-sec .swiper .swiper-rtl {
  content: "next";
  position: absolute;
}
.client-sec .swiper .swiper-button-prev:after, .client-sec .swiper .swiper-rtl {
  content: "prev";
  position: absolute;
}

:root {
  --swiper-navigation-size: 10px;
  --swiper-theme-color: #ffff;
}

.get-in-touch-sec {
  padding: 60px 0px;
}
@media screen and (max-width: 500px) {
  .get-in-touch-sec {
    padding: 40px 0px;
  }
}
.get-in-touch-sec .get-in-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.get-in-touch-sec .get-in-heading h6 {
  font-size: 12.8px;
  color: #D3172B;
  letter-spacing: 5px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.get-in-touch-sec .get-in-heading h4 {
  font-size: 40px;
  color: #212121;
  font-weight: 400;
  line-height: 50px;
  padding-top: 15px;
  padding-bottom: 10px;
  font-family: "Marcellus";
}
@media screen and (max-width: 757px) {
  .get-in-touch-sec .get-in-heading h4 {
    font-size: 32px;
  }
}
.get-in-touch-sec .get-in-heading p {
  color: #616161;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  width: 610px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 500px) {
  .get-in-touch-sec .get-in-heading p {
    width: 100%;
  }
}
.get-in-touch-sec .info-wrapper {
  text-align: end;
  display: flex;
  justify-content: end;
  padding: 30px 30px 40px;
}
@media screen and (max-width: 768px) {
  .get-in-touch-sec .info-wrapper {
    justify-content: center;
    padding: 0px;
  }
}
@media screen and (max-width: 540px) {
  .get-in-touch-sec .info-wrapper {
    display: block;
  }
}
.get-in-touch-sec .info-wrapper ul {
  list-style: none;
  text-decoration: none;
}
.get-in-touch-sec .info-wrapper ul li {
  text-align: left;
  padding: 30px 0px 30px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 30px;
  color: #212121;
  font-family: "Marcellus";
}
@media screen and (max-width: 500px) {
  .get-in-touch-sec .info-wrapper ul li {
    padding: 30px 0px 10px;
  }
}
.get-in-touch-sec .info-wrapper ul li a {
  text-align: left;
  padding: 30px 0px 30px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 30px;
  color: #212121;
  font-family: "Marcellus";
  text-decoration: none;
}
.get-in-touch-sec .info-wrapper ul li a span {
  font-size: 16px;
  padding-left: 30px;
  color: #D3172B;
}
.get-in-touch-sec .info-wrapper ul li a img {
  padding-right: 20px;
  width: 50px;
  height: 30px;
}
.get-in-touch-sec .info-wrapper ul li a .fa {
  color: #909090;
  font-size: 20px;
}
.get-in-touch-sec .info-wrapper1 {
  text-align: end;
  display: flex;
  padding: 30px 30px 40px;
}
@media screen and (max-width: 768px) {
  .get-in-touch-sec .info-wrapper1 {
    justify-content: center;
    padding: 0px;
  }
}
@media screen and (max-width: 541px) {
  .get-in-touch-sec .info-wrapper1 {
    display: block;
  }
}
.get-in-touch-sec .info-wrapper1 ul {
  list-style: none;
  text-decoration: none;
}
.get-in-touch-sec .info-wrapper1 ul li {
  text-align: left;
  padding: 30px 0px 30px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 30px;
  color: #212121;
  font-family: "Marcellus";
}
@media screen and (max-width: 500px) {
  .get-in-touch-sec .info-wrapper1 ul li {
    padding: 30px 0px 10px;
  }
}
.get-in-touch-sec .info-wrapper1 ul li a {
  text-align: left;
  padding: 30px 0px 30px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 30px;
  color: #212121;
  font-family: "Marcellus";
  text-decoration: none;
}
.get-in-touch-sec .info-wrapper1 ul li a span {
  font-size: 16px;
  padding-left: 30px;
  color: #D3172B;
  display:block;
}
.get-in-touch-sec .info-wrapper1 ul li a img {
  padding-right: 20px;
  width: 50px;
  height: 30px;
}
.get-in-touch-sec .info-wrapper1 ul li a .fa {
  color: #909090;
  font-size: 20px;
}

.footer-sec {
  background: rgb(217, 217, 217);
  padding: 30px 0px;
}
@media screen and (max-width: 767px) {
  .footer-sec {
    display: none;
  }
}
.footer-sec .footer-logo {
  padding: 0px 0px 20px 45px;
}
.footer-sec .footer-logo h2 {
  color: rgba(97, 97, 97, 0.3);
  font-size: 50px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  padding-top: 20px;
}
.footer-sec .footer-logo h3 {
  color: rgba(97, 97, 97, 0.3);
  font-size: 33px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.footer-sec .other-link-sec h6 {
  color: rgb(33, 33, 33);
  font-size: 22px;
  padding-bottom: 20px;
  padding-top: 20px;
  font-weight: 400;
  font-family: "Marcellus";
}
.footer-sec .other-link-sec ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.footer-sec .other-link-sec ul li a {
  color: rgb(97, 97, 97);
  font-size: 16px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}
.footer-sec .contact-info {
  text-align: end;
  padding-right: 40px;
  padding-top: 20px;
}
.footer-sec .contact-info .icon {
  padding-bottom: 20px;
}
.footer-sec .contact-info .icon img {
  padding-right: 10px;
}
.footer-sec .contact-info p {
  color: rgb(33, 33, 33);
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  padding-right: 10px;
  font-family: "Marcellus";
}
.footer-sec .contact-info h2 {
  color: rgb(211, 23, 43);
  font-size: 30px;
  font-weight: 400;
  line-height: 25px;
  padding-right: 10px;
  font-family: "Marcellus";
}
.footer-sec .contact-info h2 a {
  text-decoration: none;
  color: rgb(211, 23, 43);
}
.footer-sec .contact-info h6 {
  color: rgb(33, 33, 33);
  font-size: 14px;
  padding-top: 10px;
  padding-right: 10px;
}
.footer-sec .contact-info h6 a {
  text-decoration: none;
  color: rgb(33, 33, 33);
}
.footer-sec .contact-info span {
  color: rgb(97, 97, 97);
  font-size: 14px;
  padding-right: 10px;
}
.footer-sec .footer-para {
  padding: 30px 40px 0px;
}
.footer-sec .footer-para p {
  color: rgb(97, 97, 97);
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
}
.footer-sec .footer-para h6 {
  text-align: center;
  color: rgb(33, 33, 33);
  font-size: 14px;
  padding-top: 20px;
  font-family: "Montserrat", sans-serif;
}

.mobile-footer {
  display: none;
}
@media screen and (max-width: 767px) {
  .mobile-footer {
    display: block;
  }
}
.mobile-footer .footer-sec1 {
  background: rgb(217, 217, 217);
  padding: 50px 0px;
}
.mobile-footer .footer-sec1 .footer-logo {
  padding: 20px 0px 20px 45px;
}
@media screen and (max-width: 768px) {
  .mobile-footer .footer-sec1 .footer-logo {
    padding: 20px 0px 20px 0px;
  }
}
@media screen and (max-width: 768px) {
  .mobile-footer .footer-sec1 .footer-logo img {
    width: 30%;
  }
}
.mobile-footer .footer-sec1 .footer-logo h2 {
  color: rgba(97, 97, 97, 0.3);
  font-size: 50px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  padding-top: 20px;
}
.mobile-footer .footer-sec1 .footer-logo h3 {
  color: rgba(97, 97, 97, 0.3);
  font-size: 38px;
  letter-spacing: 6px;
}
.mobile-footer .footer-sec1 .other-link-sec .accordion .accordion-button {
  background: rgb(217, 217, 217);
  outline: none;
  border: none;
  border-radius: 0px;
  padding: 0px;
  color: rgb(211, 23, 43);
  font-size: 21px;
  padding-bottom: 25px;
}
.mobile-footer .footer-sec1 .other-link-sec .accordion .accordion-button::after {
  content: " ";
  background-image: url("/assets/images/Icon.png");
}
.mobile-footer .footer-sec1 .other-link-sec .accordion .accordion-body {
  background: rgb(217, 217, 217);
  border-radius: 0px;
}
.mobile-footer .footer-sec1 .other-link-sec h6 {
  color: rgb(33, 33, 33);
  font-size: 22px;
  padding-bottom: 20px;
  font-weight: 400;
}
.mobile-footer .footer-sec1 .other-link-sec ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.mobile-footer .footer-sec1 .other-link-sec ul li a {
  color: rgb(97, 97, 97);
  font-size: 16px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  text-decoration: none;
}
.mobile-footer .footer-sec1 .contact-info {
  text-align: left;
  padding-top: 20px;
}
.mobile-footer .footer-sec1 .contact-info .icon {
  padding-bottom: 20px;
}
.mobile-footer .footer-sec1 .contact-info .icon img {
  padding-right: 10px;
}
.mobile-footer .footer-sec1 .contact-info p {
  color: rgb(33, 33, 33);
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  padding-bottom: 15px;
  padding-right: 10px;
}
.mobile-footer .footer-sec1 .contact-info h2 {
  color: rgb(211, 23, 43);
  font-size: 30px;
  font-weight: 400;
  line-height: 25px;
  padding-right: 10px;
}
.mobile-footer .footer-sec1 .contact-info h6 {
  color: rgb(33, 33, 33);
  font-size: 14px;
  padding-top: 10px;
  padding-right: 10px;
}
.mobile-footer .footer-sec1 .contact-info span {
  color: rgb(97, 97, 97);
  font-size: 14px;
  padding-right: 10px;
}
.mobile-footer .footer-sec1 .footer-para {
  padding: 30px 0px 40px;
}
.mobile-footer .footer-sec1 .footer-para p {
  color: rgb(97, 97, 97);
  font-size: 12px;
}
.mobile-footer .footer-sec1 .footer-para h6 {
  text-align: center;
  color: rgb(33, 33, 33);
  font-size: 14px;
  padding-top: 20px;
}

.faq-sec {
  padding: 30px 0px;
}
.faq-sec .faq-heading h6 {
  font-size: 12.8px;
  color: #D3172B;
  letter-spacing: 5px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.faq-sec .faq-heading h4 {
  font-size: 40px;
  color: #212121;
  font-weight: 400;
  line-height: 50px;
  padding-top: 15px;
  padding-bottom: 10px;
  font-family: "Marcellus";
}
@media screen and (max-width: 757px) {
  .faq-sec .faq-heading h4 {
    font-size: 32px;
  }
}
.faq-sec .faq-info {
  border: 1px solid rgb(225, 225, 225);
  height: 383px;
  overflow: auto;
}
.faq-sec .accordion {
  background-color: #fff;
  color: rgb(23, 23, 23);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgb(225, 225, 225);
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.4s;
  font-family: "Montserrat", sans-serif;
}
.faq-sec .accordion::before {
  content: "+";
  color: rgb(23, 23, 23);
  font-weight: bold;
  float: left;
  margin-left: 5px;
  margin-right: 10px;
}
.faq-sec .active::before {
  content: "−";
}
.faq-sec .panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding-top: 15px;
}
.faq-sec .panel p {
  font-family: "Montserrat", sans-serif;
}
.faq-sec .active, .faq-sec .accordion:hover {
  background-color: #fff;
}

.booking-sec {
  background: rgb(144, 144, 144);
  padding: 25px;
}
.booking-sec .heading h4 {
  color: rgb(255, 255, 255);
  font-size: 30px;
  font-family: "Marcellus";
}
@media screen and (max-width: 757px) {
  .booking-sec .heading h4 {
    text-align: center;
  }
}
.booking-sec .book-btn {
  text-align: end;
  padding-top: 27px;
}
@media screen and (max-width: 768px) {
  .booking-sec .book-btn {
    display: none;
  }
}
@media screen and (max-width: 757px) {
  .booking-sec .book-btn {
    text-align: center;
  }
}
.booking-sec .book-btn a {
  padding: 10px 10px;
  background: rgb(211, 23, 43);
  color: rgb(241, 241, 241);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 300;
  font-family: "Marcellus";
}
.booking-sec .book-btn-mob {
  display: none;
  text-align: end;
  padding-top: 27px;
}
@media screen and (max-width: 768px) {
  .booking-sec .book-btn-mob {
    display: block;
  }
}
@media screen and (max-width: 757px) {
  .booking-sec .book-btn-mob {
    text-align: center;
  }
}
.booking-sec .book-btn-mob a {
  padding: 10px 10px;
  background: rgb(211, 23, 43);
  color: rgb(241, 241, 241);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 300;
  font-family: "Marcellus";
}

.thank-you {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
.thank-you .thankyou h1 {
  font-size: 65px;
  margin-bottom: 20px;
  font-family: "Marcellus";
}
.thank-you .thankyou p {
  font-size: 25px;
  margin-bottom: 20px;
  font-family: "Marcellus";
  color: rgb(211, 23, 43);
}
.thank-you .share {
  margin-bottom: 20px;
}
.thank-you .share .email button {
  background-color: rgb(211, 23, 43);
  color: #fff;
  font-size: 16px;
  border: 1px solid rgb(211, 23, 43);
  padding: 10px;
}/*# sourceMappingURL=style.css.map */