@charset "UTF-8";
body {
  background-image: url("assets/Background.png");
  width: 100%;
  height: 100vh;
  font-family: "Montserrat", sans-serif;
}

header {
  background-color: #f0ebe6;
  padding: 15px 40px;
}
@media screen and (max-width: 992px) {
  header {
    padding: 15px 10px;
  }
}

.header-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Increased padding for right side */
  /* Adjust as needed */
}
@media screen and (max-width: 992px) {
  .header-sec {
    display: none;
  }
}
.header-sec .logo img {
  height: 60px; /* Adjust as needed */
}
.header-sec nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 30px; /* Increased gap between menu items */
}
@media screen and (max-width: 1067px) {
  .header-sec nav ul {
    gap: 5px;
  }
}
.header-sec nav ul li {
  position: relative;
}
.header-sec nav ul li a {
  text-decoration: none;
  color: #183043;
  padding-left: 80px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .header-sec nav ul li a {
    padding-left: 60px;
  }
}
.header-sec nav ul li a span {
  content: "▾";
}
.header-sec nav ul li .dropdown {
  display: none;
  position: absolute;
  top: 40px;
  width: 260px;
  left: 58px;
  background-color: #f0ebe6;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  visibility: hidden;
}
.header-sec nav ul li .dropdown li {
  padding: 10px 20px;
}
.header-sec nav ul li .dropdown li a {
  color: #183043;
  padding: 0px;
}
.header-sec nav ul li:hover .dropdown {
  display: block;
  visibility: visible;
  z-index: 2;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
  position: relative;
  top: 0;
  padding: 8px 16px;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .mobile-header {
    display: block;
    z-index: 3;
  }
}
.mobile-header .header-logo {
  width: 50%;
}
.mobile-header .header-logo img {
  width: 100%;
}
.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 #070707;
}
.mobile-header .nav .nav-list {
  position: fixed;
  display: none;
  flex-direction: column;
  padding: 0px;
  width: 80%;
  background-color: #f0ebe6;
  height: 1000px;
  transition: all 0.3s ease-in;
  top: 0px;
  left: 0px;
  overflow: hidden;
  margin: 0px;
}
.mobile-header .nav .nav-list .list {
  display: flex;
  justify-content: space-between;
  background-color: #f0ebe6;
  padding: 23px 20px;
  border-bottom: 1px solid gray;
  position: relative;
}
.mobile-header .nav .nav-list .list img {
  width: 65%;
}
.mobile-header .nav .nav-list .list .fa {
  width: 100%;
  margin-top: 20px;
}
.mobile-header .nav .nav-list .button {
  color: #183043;
  display: block;
  cursor: pointer;
  padding: 10px 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
  background-color: #f0ebe6;
  position: relative;
  font-weight: 400;
  text-decoration: none;
}
.mobile-header .nav .nav-list .button:hover {
  color: #6228a4;
}
.mobile-header .nav .nav-list .accordion {
  color: rgb(23, 23, 23);
  cursor: pointer;
  padding: 10px 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
  background-color: #f0ebe6;
  position: relative;
  font-weight: 400;
  text-decoration: none;
}
.mobile-header .nav .nav-list .accordion:hover {
  color: #6228a4;
}
.mobile-header .nav .nav-list .accordion::after {
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f078";
  color: #000;
  display: block;
  height: 20px;
  width: 20px;
  font-size: 16px;
  right: 0px;
  top: 16px;
  margin-left: 5px;
  margin-right: 10px;
}
.mobile-header .nav .nav-list .active::after {
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f077";
  color: #716a6a;
  display: block;
  height: 20px;
  width: 20px;
  font-weight: bold;
  right: 0px;
  top: 22px;
  margin-left: 5px;
  margin-right: 10px;
}
.mobile-header .nav .nav-list .panel {
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  padding-top: 0px;
}
.mobile-header .nav .nav-list .panel ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.mobile-header .nav .nav-list .panel ul li {
  padding: 0px 15px;
}
.mobile-header .nav .nav-list .panel ul li a {
  text-decoration: none;
  font-size: 17px;
  color: #30303c;
  font-weight: 400;
  line-height: 36px;
}
.mobile-header .nav .nav-list .panel ul li a:hover {
  color: #6228a4;
}
.mobile-header .nav .nav-list li {
  text-decoration: none;
  padding: 10px 15px;
  height: 100%;
  display: flex;
}
.mobile-header .nav .nav-list li a {
  text-decoration: none;
  color: #000;
  font-size: 19px;
}
.mobile-header .nav .nav-list .contact-cdn {
  padding-top: 20px;
  padding-left: 10px;
}
.mobile-header .nav .nav-list .contact-cdn a {
  color: #6228a4;
  text-decoration: none;
  border: 1px solid #6228a4;
  border-radius: 30px;
  padding: 10px;
  font-size: 17px;
  text-transform: capitalize;
  font-weight: 600;
}
.mobile-header .nav .nav-list.open {
  display: block;
}

@media screen and (max-width: 550px) {
  .banner-sec .swiper {
    max-height: 200px;
  }
}
.banner-sec .swiper .swiper-wrapper .swiper-slide {
  height: 100vh;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 2500px) {
  .banner-sec .swiper .swiper-wrapper .swiper-slide {
    height: 1000px;
  }
}
@media screen and (max-width: 1560px) {
  .banner-sec .swiper .swiper-wrapper .swiper-slide {
    height: 800px;
  }
}
@media screen and (max-width: 550px) {
  .banner-sec .swiper .swiper-wrapper .swiper-slide {
    max-height: 200px;
  }
}
.banner-sec .swiper .swiper-pagination {
  --swiper-theme-color: #f0ebe6;
}

.about-sec {
  padding: 80px 0px 90px;
}
@media screen and (max-width: 540px) {
  .about-sec {
    padding: 45px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .about-sec .about-us-content {
    width: 100%;
  }
}
.about-sec .about-us-content .about-us-heading h4 {
  color: #fff;
  font-size: 36px;
  padding-bottom: 20px;
  display: inline-block;
  padding-right: 15px;
}
@media screen and (max-width: 540px) {
  .about-sec .about-us-content .about-us-heading h4 {
    font-size: 30px;
    padding-bottom: 10px;
  }
}
.about-sec .about-us-content .about-us-heading img {
  padding-bottom: 12px;
}
.about-sec .about-us-content p {
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .about-sec .about-vedio {
    width: 100%;
  }
}
.about-sec .about-us-vedio {
  background-image: url(assets/About-us-Video-Frame.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 412px;
  display: block;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .about-sec .about-us-vedio {
    height: 500px;
  }
}
@media screen and (max-width: 790px) {
  .about-sec .about-us-vedio {
    background-image: url(assets/dirra\ logo.png);
    height: 414px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
}
@media screen and (max-width: 600px) {
  .about-sec .about-us-vedio {
    height: 233px;
  }
}
@media screen and (max-width: 400px) {
  .about-sec .about-us-vedio {
    height: 216px;
  }
}
.about-sec .about-us-vedio .img1 {
  width: 93%;
  height: 374px;
  margin-top: 20px;
  margin-left: 26px;
  /* border: 4px solid #fff; */
  border-radius: 528px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 2655px) {
  .about-sec .about-us-vedio .img1 {
    width: 81%;
    height: 363px;
    margin-top: 23px;
    margin-left: 84px;
    /* border: 4px solid #fff; */
    border-radius: 528px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 1400px) {
  .about-sec .about-us-vedio .img1 {
    width: 93%;
    height: 374px;
    margin-top: 20px;
    margin-left: 26px;
    /* border: 4px solid #fff; */
    border-radius: 528px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 1200px) {
  .about-sec .about-us-vedio .img1 {
    width: 94%;
    height: 322px;
    margin-top: 89px;
    margin-left: 21px;
    /* border: 4px solid #fff; */
    border-radius: 528px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 1024px) {
  .about-sec .about-us-vedio .img1 {
    width: 90%;
    height: 456px;
    margin-top: 21px;
    margin-left: 49px;
    /* border: 4px solid #fff; */
    border-radius: 528px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 991px) {
  .about-sec .about-us-vedio .img1 {
    width: 94%;
    height: 363px;
    margin-top: 68px;
    margin-left: 23px;
    /* border: 4px solid #fff; */
    border-radius: 528px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 790px) {
  .about-sec .about-us-vedio .img1 {
    display: none;
  }
}
.about-sec .about-us-vedio .fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 48px;
  position: absolute;
  left: 44.5%;
  top: 44%;
  color: red;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 790px) {
  .about-sec .about-us-vedio .fa {
    position: static;
  }
}

.contact-us {
  padding-bottom: 60px;
}
.contact-us .form-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-us .form-sec .form-img {
  text-align: center;
}
.contact-us .form-sec .form-img img {
  width: 80%;
}
.contact-us .form-sec .form-title h4 {
  font-size: 22px;
  color: #fff;
  padding: 40px 0px;
  font-weight: 400;
}
@media screen and (max-width: 540px) {
  .contact-us .form-sec .form-title h4 {
    text-align: center;
  }
}
.contact-us .form-sec .submit-form {
  width: 300px;
}
.contact-us .form-sec .submit-form form input {
  width: 100%;
  display: block;
  padding: 10px;
  margin-bottom: 14px;
  text-align: center;
  background-color: #fff;
  border: none;
}
.contact-us .form-sec .submit-form form textarea {
  text-align: center;
  background-color: #fff;
  border: none;
  padding-top: 30px;
  width: 100%;
  margin-bottom: 10px;
}
.contact-us .form-sec .submit-form form button {
  width: 100%;
  padding: 10px;
  background-color: #183043;
  border: none;
  color: #fff;
}

.footer-sec {
  background-color: #183043;
  padding: 10px;
}
.footer-sec .footer-info {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media screen and (max-width: 760px) {
  .footer-sec .footer-info {
    justify-content: center;
  }
}
.footer-sec .footer-info .info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer-sec .footer-info .info h4 {
  color: #f0eae6;
  padding-left: 15px;
  font-size: 15px;
  padding-top: 10px;
}
.footer-sec .footer-info1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 760px) {
  .footer-sec .footer-info1 {
    padding-right: 27px;
    padding-top: 20px;
    justify-content: center;
  }
}
.footer-sec .footer-info1 .info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer-sec .footer-info1 .info h4 {
  color: #f0eae6;
  padding-left: 15px;
  font-size: 15px;
  padding-top: 10px;
}

.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";
  color: #fff;
}
.thank-you .thankyou p {
  font-size: 25px;
  margin-bottom: 20px;
  font-family: "Marcellus";
  color: #fff;
}
.thank-you .share {
  margin-bottom: 20px;
}
.thank-you .share .email button {
  background-color: #183043;
  border: none;
  color: #fff;
  font-size: 16px;
  border: 1px solid #183043;
  padding: 10px;
}
.thank-you .share .email button .fa {
  padding-right: 10px;
}

.collection-sec {
  margin-top: 3rem;
}
@media screen and (max-width: 1199px) {
  .collection-sec {
    margin: 2rem 5rem;
  }
}
@media screen and (max-width: 500px) {
  .collection-sec {
    margin: 2rem 0rem;
  }
}
.collection-sec .collection-heading {
  margin-bottom: 40px;
  text-align: end;
}
@media screen and (max-width: 540px) {
  .collection-sec .collection-heading {
    text-align: left;
  }
}
.collection-sec .collection-heading h4 {
  display: inline;
  font-size: 36px;
  color: #fff;
  padding-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .collection-sec .collection-heading h4 {
    font-size: 30px;
  }
}
.collection-sec .collection-heading .img2 {
  display: inline;
  padding-bottom: 15px;
  padding-right: 10px;
}
@media screen and (max-width: 540px) {
  .collection-sec .collection-heading .img2 {
    display: none;
  }
}
.collection-sec .collection-heading .img1 {
  display: inline;
  padding-bottom: 10px;
  padding-left: 10px;
  display: none;
}
@media screen and (max-width: 540px) {
  .collection-sec .collection-heading .img1 {
    display: inline;
    width: 30%;
  }
}
.collection-sec .collection {
  position: relative;
}
@media screen and (max-width: 540px) {
  .collection-sec .collection {
    margin: 45px;
  }
}
.collection-sec .collection .swiper-button-next {
  left: auto;
  right: -45px;
  color: #000;
  border-radius: 100%;
  --swiper-navigation-size: 22px;
  z-index: 5 !important;
}
@media screen and (max-width: 540px) {
  .collection-sec .collection .swiper-button-next {
    z-index: 0 !important;
    right: -36px;
  }
}
.collection-sec .collection .swiper-button-next::after {
  display: none;
}
.collection-sec .collection .swiper-button-next .fa {
  font-size: 22px;
  background-color: #fff;
  padding: 5px 11px 4px 13px;
  border-radius: 100%;
}
.collection-sec .collection .swiper-button-prev {
  left: -45px;
  right: auto;
  color: #000;
  border-radius: 100%;
  --swiper-navigation-size: 22px;
  z-index: 5 !important;
}
@media screen and (max-width: 540px) {
  .collection-sec .collection .swiper-button-prev {
    z-index: 0 !important;
    left: -36px;
  }
}
.collection-sec .collection .swiper-button-prev::after {
  display: none;
}
.collection-sec .collection .swiper-button-prev .fa {
  font-size: 22px;
  background-color: #fff;
  padding: 5px 13px 4px 11px;
  border-radius: 100%;
}
.collection-sec .collection .mySwiper2 {
  background-image: url("assets/box.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.collection-sec .collection .mySwiper2 .swiper-wrapper .swiper-slide {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1120px) {
  .collection-sec .collection .mySwiper2 .swiper-wrapper .swiper-slide {
    margin-top: 4rem !important;
  }
}
@media screen and (max-width: 860px) {
  .collection-sec .collection .mySwiper2 .swiper-wrapper .swiper-slide {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .collection-sec .collection .mySwiper2 .swiper-wrapper .swiper-slide {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .collection-sec .collection .mySwiper2 .swiper-wrapper .swiper-slide {
    margin-top: 5rem;
  }
}
.collection-sec .collection .mySwiper2 .swiper-wrapper .swiper-slide img {
  width: 50%;
}
.collection-sec .collection .heading {
  padding-top: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-sec .collection .heading .img-sec img {
  width: 100%;
}
.collection-sec .collection .heading .head h4 {
  display: inline-block;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  padding: 9px 10px 0px;
}
@media screen and (max-width: 767px) {
  .collection-sec .left-swiper {
    display: none;
  }
}
.collection-sec .left-swiper .swiper-wrapper .swiper-slide {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1120px) {
  .collection-sec .left-swiper .swiper-wrapper .swiper-slide {
    margin-top: 4rem !important;
  }
}
@media screen and (max-width: 860px) {
  .collection-sec .left-swiper .swiper-wrapper .swiper-slide {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .collection-sec .left-swiper .swiper-wrapper .swiper-slide {
    margin-top: 4rem;
  }
}
.collection-sec .left-swiper .swiper-wrapper .swiper-slide img {
  width: 50%;
}

.collection-sec2 {
  margin-top: 3rem;
}
@media screen and (max-width: 1199px) {
  .collection-sec2 {
    margin: 2rem 5rem;
  }
}
@media screen and (max-width: 500px) {
  .collection-sec2 {
    margin: 2rem 0rem;
  }
}
.collection-sec2 .collection-heading {
  margin-bottom: 40px;
  text-align: end;
}
@media screen and (max-width: 540px) {
  .collection-sec2 .collection-heading {
    text-align: left;
  }
}
.collection-sec2 .collection-heading h4 {
  display: inline;
  font-size: 36px;
  color: #fff;
  padding-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .collection-sec2 .collection-heading h4 {
    font-size: 30px;
  }
}
.collection-sec2 .collection-heading .img2 {
  display: inline;
  padding-bottom: 15px;
  padding-right: 10px;
}
@media screen and (max-width: 540px) {
  .collection-sec2 .collection-heading .img2 {
    display: none;
  }
}
.collection-sec2 .collection-heading .img1 {
  display: inline;
  padding-bottom: 10px;
  padding-left: 10px;
  display: none;
}
@media screen and (max-width: 540px) {
  .collection-sec2 .collection-heading .img1 {
    display: inline;
    width: 30%;
  }
}
.collection-sec2 .collection {
  position: relative;
}
@media screen and (max-width: 540px) {
  .collection-sec2 .collection {
    margin: 45px;
  }
}
.collection-sec2 .collection .swiper-button-next1 {
  position: absolute;
  left: auto;
  right: -45px;
  top: 310px;
  color: #000;
  border-radius: 100%;
  --swiper-navigation-size: 22px;
  z-index: 5 !important;
}
@media screen and (max-width: 1199px) {
  .collection-sec2 .collection .swiper-button-next1 {
    z-index: 0 !important;
    right: -46px;
    top: 51%;
  }
}
@media screen and (max-width: 540px) {
  .collection-sec2 .collection .swiper-button-next1 {
    z-index: 0 !important;
    right: -46px;
    top: 51%;
  }
}
.collection-sec2 .collection .swiper-button-next1::after {
  display: none;
}
.collection-sec2 .collection .swiper-button-next1 .fa {
  font-size: 22px;
  background-color: #fff;
  padding: 5px 11px 4px 13px;
  border-radius: 100%;
}
.collection-sec2 .collection .swiper-button-prev1 {
  position: absolute;
  left: -45px;
  right: auto;
  top: 310px;
  color: #000;
  border-radius: 100%;
  --swiper-navigation-size: 22px;
  z-index: 5 !important;
}
@media screen and (max-width: 1199px) {
  .collection-sec2 .collection .swiper-button-prev1 {
    z-index: 0 !important;
    left: -46px;
    top: 51%;
  }
}
@media screen and (max-width: 540px) {
  .collection-sec2 .collection .swiper-button-prev1 {
    z-index: 0 !important;
    left: -46px;
    top: 51%;
  }
}
.collection-sec2 .collection .swiper-button-prev1::after {
  display: none;
}
.collection-sec2 .collection .swiper-button-prev1 .fa {
  font-size: 22px;
  background-color: #fff;
  padding: 5px 13px 4px 11px;
  border-radius: 100%;
}
.collection-sec2 .collection .mySwiper3 {
  background-image: url("assets/box.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.collection-sec2 .collection .mySwiper3 .swiper-wrapper .swiper-slide {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1120px) {
  .collection-sec2 .collection .mySwiper3 .swiper-wrapper .swiper-slide {
    margin-top: 4rem !important;
  }
}
@media screen and (max-width: 860px) {
  .collection-sec2 .collection .mySwiper3 .swiper-wrapper .swiper-slide {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .collection-sec2 .collection .mySwiper3 .swiper-wrapper .swiper-slide {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .collection-sec2 .collection .mySwiper3 .swiper-wrapper .swiper-slide {
    margin-top: 5rem;
  }
}
.collection-sec2 .collection .mySwiper3 .swiper-wrapper .swiper-slide img {
  width: 50%;
}
.collection-sec2 .collection .heading {
  padding-top: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-sec2 .collection .heading .img-sec img {
  width: 100%;
}
.collection-sec2 .collection .heading .head h4 {
  display: inline-block;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  padding: 9px 10px 0px;
}
@media screen and (max-width: 767px) {
  .collection-sec2 .left-swiper {
    display: none;
  }
}
.collection-sec2 .left-swiper .swiper-wrapper .swiper-slide {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1120px) {
  .collection-sec2 .left-swiper .swiper-wrapper .swiper-slide {
    margin-top: 4rem !important;
  }
}
@media screen and (max-width: 860px) {
  .collection-sec2 .left-swiper .swiper-wrapper .swiper-slide {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .collection-sec2 .left-swiper .swiper-wrapper .swiper-slide {
    margin-top: 4rem;
  }
}
.collection-sec2 .left-swiper .swiper-wrapper .swiper-slide img {
  width: 50%;
}

.collection-sec3 {
  margin-top: 3rem;
}
@media screen and (max-width: 1199px) {
  .collection-sec3 {
    margin: 2rem 5rem;
  }
}
@media screen and (max-width: 500px) {
  .collection-sec3 {
    margin: 2rem 0rem;
  }
}
.collection-sec3 .collection-heading {
  margin-bottom: 40px;
  text-align: end;
}
@media screen and (max-width: 540px) {
  .collection-sec3 .collection-heading {
    text-align: left;
  }
}
.collection-sec3 .collection-heading h4 {
  display: inline;
  font-size: 36px;
  color: #fff;
  padding-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .collection-sec3 .collection-heading h4 {
    font-size: 30px;
  }
}
.collection-sec3 .collection-heading .img2 {
  display: inline;
  padding-bottom: 15px;
  padding-right: 10px;
}
@media screen and (max-width: 540px) {
  .collection-sec3 .collection-heading .img2 {
    display: none;
  }
}
.collection-sec3 .collection-heading .img1 {
  display: inline;
  padding-bottom: 10px;
  padding-left: 10px;
  display: none;
}
@media screen and (max-width: 540px) {
  .collection-sec3 .collection-heading .img1 {
    display: inline;
    width: 30%;
  }
}
.collection-sec3 .collection {
  position: relative;
}
@media screen and (max-width: 540px) {
  .collection-sec3 .collection {
    margin: 45px;
  }
}
.collection-sec3 .collection .swiper-button-next3 {
  position: absolute;
  left: auto;
  right: -45px;
  top: 310px;
  color: #000;
  border-radius: 100%;
  --swiper-navigation-size: 22px;
  z-index: 5 !important;
}
@media screen and (max-width: 1199px) {
  .collection-sec3 .collection .swiper-button-next3 {
    z-index: 0 !important;
    right: -46px;
    top: 51%;
  }
}
@media screen and (max-width: 540px) {
  .collection-sec3 .collection .swiper-button-next3 {
    z-index: 0 !important;
    right: -46px;
    top: 51%;
  }
}
.collection-sec3 .collection .swiper-button-next3::after {
  display: none;
}
.collection-sec3 .collection .swiper-button-next3 .fa {
  font-size: 22px;
  background-color: #fff;
  padding: 5px 11px 4px 13px;
  border-radius: 100%;
}
.collection-sec3 .collection .swiper-button-prev3 {
  position: absolute;
  left: -45px;
  right: auto;
  top: 310px;
  color: #000;
  border-radius: 100%;
  --swiper-navigation-size: 22px;
  z-index: 5 !important;
}
@media screen and (max-width: 1199px) {
  .collection-sec3 .collection .swiper-button-prev3 {
    z-index: 0 !important;
    left: -46px;
    top: 51%;
  }
}
@media screen and (max-width: 540px) {
  .collection-sec3 .collection .swiper-button-prev3 {
    z-index: 0 !important;
    left: -46px;
    top: 51%;
  }
}
.collection-sec3 .collection .swiper-button-prev3::after {
  display: none;
}
.collection-sec3 .collection .swiper-button-prev3 .fa {
  font-size: 22px;
  background-color: #fff;
  padding: 5px 13px 4px 11px;
  border-radius: 100%;
}
.collection-sec3 .collection .mySwiper4 {
  background-image: url("assets/box.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.collection-sec3 .collection .mySwiper4 .swiper-wrapper .swiper-slide {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1120px) {
  .collection-sec3 .collection .mySwiper4 .swiper-wrapper .swiper-slide {
    margin-top: 4rem !important;
  }
}
@media screen and (max-width: 860px) {
  .collection-sec3 .collection .mySwiper4 .swiper-wrapper .swiper-slide {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .collection-sec3 .collection .mySwiper4 .swiper-wrapper .swiper-slide {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .collection-sec3 .collection .mySwiper4 .swiper-wrapper .swiper-slide {
    margin-top: 5rem;
  }
}
.collection-sec3 .collection .mySwiper4 .swiper-wrapper .swiper-slide img {
  width: 50%;
}
.collection-sec3 .collection .heading {
  padding-top: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-sec3 .collection .heading .img-sec img {
  width: 100%;
}
.collection-sec3 .collection .heading .head h4 {
  display: inline-block;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  padding: 9px 10px 0px;
}
@media screen and (max-width: 767px) {
  .collection-sec3 .left-swiper {
    display: none;
  }
}
.collection-sec3 .left-swiper .swiper-wrapper .swiper-slide {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1120px) {
  .collection-sec3 .left-swiper .swiper-wrapper .swiper-slide {
    margin-top: 4rem !important;
  }
}
@media screen and (max-width: 860px) {
  .collection-sec3 .left-swiper .swiper-wrapper .swiper-slide {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .collection-sec3 .left-swiper .swiper-wrapper .swiper-slide {
    margin-top: 4rem;
  }
}
.collection-sec3 .left-swiper .swiper-wrapper .swiper-slide img {
  width: 50%;
}

.collection-sec4 {
  margin-top: 3rem;
}
@media screen and (max-width: 1199px) {
  .collection-sec4 {
    margin: 2rem 5rem;
  }
}
@media screen and (max-width: 500px) {
  .collection-sec4 {
    margin: 2rem 0rem;
  }
}
.collection-sec4 .collection-heading {
  margin-bottom: 40px;
  text-align: end;
}
@media screen and (max-width: 540px) {
  .collection-sec4 .collection-heading {
    text-align: left;
  }
}
.collection-sec4 .collection-heading h4 {
  display: inline;
  font-size: 36px;
  color: #fff;
  padding-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .collection-sec4 .collection-heading h4 {
    font-size: 30px;
  }
}
.collection-sec4 .collection-heading .img2 {
  display: inline;
  padding-bottom: 15px;
  padding-right: 10px;
}
@media screen and (max-width: 540px) {
  .collection-sec4 .collection-heading .img2 {
    display: none;
  }
}
.collection-sec4 .collection-heading .img1 {
  display: inline;
  padding-bottom: 10px;
  padding-left: 10px;
  display: none;
}
@media screen and (max-width: 540px) {
  .collection-sec4 .collection-heading .img1 {
    display: inline;
    width: 30%;
  }
}
.collection-sec4 .collection {
  position: relative;
}
@media screen and (max-width: 540px) {
  .collection-sec4 .collection {
    margin: 45px;
  }
}
.collection-sec4 .collection .swiper-button-next5 {
  position: absolute;
  left: auto;
  right: -45px;
  top: 310px;
  color: #000;
  border-radius: 100%;
  --swiper-navigation-size: 22px;
  z-index: 5 !important;
}
@media screen and (max-width: 1199px) {
  .collection-sec4 .collection .swiper-button-next5 {
    z-index: 0 !important;
    right: -46px;
    top: 51%;
  }
}
@media screen and (max-width: 540px) {
  .collection-sec4 .collection .swiper-button-next5 {
    z-index: 0 !important;
    right: -46px;
    top: 51%;
  }
}
.collection-sec4 .collection .swiper-button-next5::after {
  display: none;
}
.collection-sec4 .collection .swiper-button-next5 .fa {
  font-size: 22px;
  background-color: #fff;
  padding: 5px 11px 4px 13px;
  border-radius: 100%;
}
.collection-sec4 .collection .swiper-button-prev5 {
  position: absolute;
  left: -45px;
  right: auto;
  top: 310px;
  color: #000;
  border-radius: 100%;
  --swiper-navigation-size: 22px;
  z-index: 5 !important;
}
@media screen and (max-width: 1199px) {
  .collection-sec4 .collection .swiper-button-prev5 {
    z-index: 0 !important;
    left: -46px;
    top: 51%;
  }
}
@media screen and (max-width: 540px) {
  .collection-sec4 .collection .swiper-button-prev5 {
    z-index: 0 !important;
    left: -46px;
    top: 51%;
  }
}
.collection-sec4 .collection .swiper-button-prev5::after {
  display: none;
}
.collection-sec4 .collection .swiper-button-prev5 .fa {
  font-size: 22px;
  background-color: #fff;
  padding: 5px 13px 4px 11px;
  border-radius: 100%;
}
.collection-sec4 .collection .mySwiper5 {
  background-image: url("assets/box.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.collection-sec4 .collection .mySwiper5 .swiper-wrapper .swiper-slide {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1120px) {
  .collection-sec4 .collection .mySwiper5 .swiper-wrapper .swiper-slide {
    margin-top: 4rem !important;
  }
}
@media screen and (max-width: 860px) {
  .collection-sec4 .collection .mySwiper5 .swiper-wrapper .swiper-slide {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .collection-sec4 .collection .mySwiper5 .swiper-wrapper .swiper-slide {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .collection-sec4 .collection .mySwiper5 .swiper-wrapper .swiper-slide {
    margin-top: 5rem;
  }
}
.collection-sec4 .collection .mySwiper5 .swiper-wrapper .swiper-slide img {
  width: 50%;
}
.collection-sec4 .collection .heading {
  padding-top: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-sec4 .collection .heading .img-sec img {
  width: 100%;
}
.collection-sec4 .collection .heading .head h4 {
  display: inline-block;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  padding: 9px 10px 0px;
}
@media screen and (max-width: 767px) {
  .collection-sec4 .left-swiper {
    display: none;
  }
}
.collection-sec4 .left-swiper .swiper-wrapper .swiper-slide {
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1120px) {
  .collection-sec4 .left-swiper .swiper-wrapper .swiper-slide {
    margin-top: 4rem !important;
  }
}
@media screen and (max-width: 860px) {
  .collection-sec4 .left-swiper .swiper-wrapper .swiper-slide {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .collection-sec4 .left-swiper .swiper-wrapper .swiper-slide {
    margin-top: 4rem;
  }
}
.collection-sec4 .left-swiper .swiper-wrapper .swiper-slide img {
  width: 50%;
}/*# sourceMappingURL=style.css.map */