/*-----------------------------------------------------------------------------------

    Template Name:Unice Theme
    Template URI: http://themes.pixelstrap.com/Unice
    Description: Sass Landing Page
    Author: Pixelstrap
    Author URI: https://themeforest.net/user/pixelstrap

-----------------------------------------------------------------------------------
 1. general css start
 2. brand css start
 3. team css start
 4. pricing css start
 5. screenshot section start
 6. download section start
 7. about section start
 8. format section start
 9. service section start
 10. subscribe section start
 11. navigations section start
 12. copyright section start
 13. header section start
 14. footer section start
 15. video section start
 16. booking section start
 17. app2 common css start
 18. event common css start
 19. extra css start
 20. gym common css start
 21. music-theme css start
 22. resume-theme css start
 23. wedding-theme css start
 24. yoga-theme css start
 25. agency css start
 26. gallery  css start
 27. blog css start
 28. counter css start
 29. contact css start
 30. schedule css start
 31. sponsor css start
 32. testimonial css start
 33. tap to top css start
 34. music player css start
 35. saas1 css start
 36. saas2 css start
    37. wedding css start
    38. event css start
    39. gym css start
    40. popup css start
    41. trainer slider css start
    42. breadcrumb-section css start
    43. breadcrumb type css end
    44. blog-section css start
    45. error css start
    46. Filter css start
    47. Portfolio css start
    48. Single-blog Sec start
    49. compare start
    50. Typography Start
    51. register Start
    52. footer start
    53. compare start
    54. Responsive Start

 */
/**************************
 1. general css start
*************************/
::selection {
  background-color: #000;
  color: #fff;
}

body {
  font-family: 'Poppins', sans-serif;
  position: relative;
  font-size: 14px;
  color: #000;
  overflow-x: hidden;
}

body.event {
  font-family: 'Work Sans', sans-serif;
}

h1, h2 {
  font-family: 'Capriola', sans-serif;
  text-transform: capitalize;
}

h4, h5, li {
  margin-top: 0;
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: capitalize;
}

h2, h3, h4, h5, h6, li, a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  line-height: normal;
}

h2, h3, h4 {
  color: #000;
}

h5, h6, p {
  color: #000;
}

h1 {
  font-size: calc(22px + (50 - 22) * ((100vw - 300px) / (1920 - 300)));
  color: #fff;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: -7px;
  margin-bottom: -20px;
  line-height: 1.4;
}

h1 span.small-text {
  font-size: calc(18px + (40 - 18) * ((100vw - 300px) / (1920 - 300)));
  color: #fff;
}

h1 span.bold-text {
  font-weight: 600;
}

h1 span.theme-color {
  color: #000;
}

h2 {
  font-size: calc(20px + (36 - 20) * ((100vw - 300px) / (1920 - 300)));
  line-height: 0.9;
}

h3 {
  font-size: calc(18px + (26 - 18) * ((100vw - 300px) / (1920 - 300)));
  margin-top: -4px;
  margin-bottom: 0;
}

h4 {
  font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
}

h5 {
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
}

h6 {
  font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-top: -4px;
  margin-bottom: -5px;
}

p {
  font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1920 - 300)));
  color: #000;
  font-weight: 400;
  margin-top: -7px;
  margin-bottom: -4px;
  line-height: 1.8;
}

a {
  font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1920 - 300)));
  color: #000;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
}

a:focus {
  outline: none;
}

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

ul li {
  font-size: 14px;
}

.custom-scroll ::-webkit-scrollbar {
  width: 8px;
  background-color: #e3e3e3;
  border-radius: 25px;
}

.custom-scroll ::-webkit-scrollbar-thumb {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(37, 37, 37, 0.92)), to(#000));
  background-image: linear-gradient(rgba(37, 37, 37, 0.92) 0%, #000 100%);
  border-radius: 25px;
}

nav {
  padding: 0;
}

.lable-nav {
  background-color: #fff;
  padding: 3px 9px;
  display: inline-block;
  position: absolute;
  top: -4px;
  letter-spacing: 1px;
  font-size: 10px;
  margin-left: 0;
  color: #000;
  line-height: 1;
  text-transform: capitalize;
}

.lable-nav:before {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  background-color: #fff;
  z-index: -1;
  top: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}

@-webkit-keyframes scaleDisappear {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  60% {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleDisappear {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  60% {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.abs-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.img-50 {
  height: 50px;
}

.p-t-0 {
  padding-top: 0 !important;
}

.p-t-10 {
  padding-top: 10px;
}

.p-t-15 {
  padding-top: 15px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-t-30 {
  padding-top: 30px;
}

.p-t-40 {
  padding-top: 40px;
}

.p-t-50 {
  padding-top: 50px;
}

.p-t-100 {
  padding-top: 100px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

.p-b-0 {
  padding-bottom: 0 !important;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-b-30 {
  padding-bottom: 30px;
}

.p-b-40 {
  padding-bottom: 40px;
}

.p-b-50 {
  padding-bottom: 50px;
}

.p-b-100 {
  padding-bottom: 100px;
}

.p-b-150 {
  padding-bottom: 150px;
}

.p-b-160 {
  padding-bottom: 160px;
}

.p-l-0 {
  padding-left: 0;
}

.p-l-20 {
  padding-left: 20px;
}

.p-r-0 {
  padding-right: 0 !important;
}

.m-r-0 {
  margin-right: 0;
}

.m-r-5 {
  margin-right: 5px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-r-12 {
  margin-right: 12px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-r-25 {
  margin-right: 25px;
}

.m-r-auto {
  margin-right: auto !important;
}

.m-l-0 {
  margin-left: 0 !important;
}

.m-l-5 {
  margin-left: 5px;
}

.m-l-15 {
  margin-left: 15px;
}

.m-l-24 {
  margin-left: 24px;
}

.m-l-30 {
  margin-left: 30px;
}

.m-l-auto {
  margin-left: auto;
}

.m-t-0 {
  margin-top: 0;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-5 {
  margin-top: 5px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-t-25 {
  margin-top: 25px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-t-45 {
  margin-top: 45px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-b-25 {
  margin-bottom: 25px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-b-35 {
  margin-bottom: 35px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-b-45 {
  margin-bottom: 45px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-b-80 {
  margin-bottom: 80px;
}

.bottom-0 {
  bottom: 0;
}

.right-0 {
  right: 0;
}

.left-0 {
  left: 0;
}

.top-0 {
  top: 0;
}

.flex-none {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.p-light {
  font-weight: 300;
  opacity: 0.9;
}

.form-group input, .form-group textarea {
  font-size: 15px;
  background-color: #f5f5f8;
  border: none;
  width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
}

.form-group input::-webkit-input-placeholder, .form-group textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 500;
  color: rgba(41, 39, 49, 0.302);
}

.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  color: rgba(41, 39, 49, 0.302);
}

.form-group input:-ms-input-placeholder, .form-group textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-weight: 500;
  color: rgba(41, 39, 49, 0.302);
}

.form-group input:-moz-placeholder, .form-group textarea:-moz-placeholder {
  /* Firefox 18- */
  font-weight: 500;
  color: rgba(41, 39, 49, 0.302);
}

.form-group input.radius-0, .form-group textarea.radius-0 {
  border-radius: 0;
}

.form-group textarea {
  padding: 16px;
}

.center-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.text-black {
  color: #000;
}

.font-primary {
  color: #000 !important;
}

.font-secondary {
  color: #000 !important;
}

.set-abs {
  position: absolute;
}

.set-relative {
  position: relative;
}

section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.center-text {
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}

.text-as-shadow {
  position: absolute;
  font-size: 150px !important;
  opacity: 0.03;
  left: 250px;
  line-height: 1 !important;
  font-weight: 700 !important;
  top: 0;
}

.owl-carousel.owl-theme .owl-dots {
  line-height: 0;
}

.owl-carousel.owl-theme .owl-dots .owl-dot span {
  margin-bottom: 0;
}

.menu-on header {
  background-color: #252525;
}

.header .header-text {
  margin-bottom: 45px;
}

.header .header-sub-text {
  margin-bottom: 45px;
}

.header .header-sub-text p {
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 300;
}

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

.title .title-img {
  margin-bottom: 30px;
}

.title .main-title {
  margin-bottom: 25px;
}

.title .main-title h2 {
  line-height: 0.8;
}

.title .sub-title {
  margin-bottom: 0;
}

.title .sub-title.para {
  font-size: 120%;
}

.title.title2 h6.main-text {
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 20px;
}

.title.title2 .para {
  font-size: 128%;
  padding: 0 20px;
}

.title.title2 .borders span {
  display: inline-block;
  position: relative;
}

.title.title2 .borders span:before, .title.title2 .borders span:after {
  content: "";
  position: absolute;
  border-top: 2px solid #f5f5f8;
  width: 85px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
}

.title.title2 .borders span:before {
  right: 100%;
  margin-right: 15px;
}

.title.title2 .borders span:after {
  left: 100%;
  margin-left: 15px;
}

.title.title3 .main-title {
  margin-bottom: 30px;
  font-weight: 700;
}

.title.title3 .main-title span {
  color: #000;
}

.title.title3 .sub-title {
  font-weight: 300;
}

.title.title3 .sub-title span {
  font-weight: 600;
}

.borders-before {
  margin-left: 60px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.borders-before span {
  display: inline-block;
  position: relative;
}

.borders-before span:before {
  content: "";
  position: absolute;
  border-top: 2px solid #f5f5f8;
  width: 46px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
}

.borders-before span:before {
  right: 100%;
  margin-right: 15px;
}

.borders-before span.color-white:before {
  border-top: 2px solid #fff;
}

.bg-theme {
  background: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background: linear-gradient(#252525, #000);
}

.center-abs {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.shadow {
  -webkit-box-shadow: 0 4px 8px 1px #e2e2e2;
  box-shadow: 0 4px 8px 1px #e2e2e2;
}

.link-horizontal ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.link-horizontal ul li {
  padding-right: 35px;
}

.link-horizontal ul li.borders-right {
  border-right: 1px solid #fff;
  height: 52px;
  margin-right: 35px;
  -webkit-box-shadow: 0 0 10px 0 white;
  box-shadow: 0 0 10px 0 white;
  opacity: 0.7;
}

.link-horizontal ul li:last-child {
  padding-right: 0;
}

.link-horizontal ul li a {
  background-color: transparent;
}

.link-horizontal ul li a.icon-btn i {
  font-size: 27px;
  height: 58px;
  width: 58px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #fff;
  background-color: #fff;
  border-radius: 50%;
  margin-bottom: 10px;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #000), to(#000));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #000 50%, #000 100%);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 90px 180px;
}

.link-horizontal ul li a.icon-btn:hover i {
  color: #fff;
  background-position: 0 -90px;
}

.btn-default {
  padding: 14px 35px;
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
  border: 2px solid;
  text-transform: capitalize;
  border-radius: 50px;
  color: #fff !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  letter-spacing: 0;
  white-space: nowrap;
}

.btn-default:hover, .btn-default:focus, .btn-default:active {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #fff;
  border: 2px solid #000;
  color: #000 !important;
}

.btn-default:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-default.primary-btn {
  border: 1px solid white;
  background-color: #000;
}

.btn-default.primary-btn.transparent {
  background-color: transparent;
}

.btn-default.primary-btn:hover, .btn-default.primary-btn:focus, .btn-default.primary-btn:active {
  background-color: #fff;
  color: #000 !important;
  border: 1px solid #000;
}

.btn-default.btn-white {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #fff;
  border: 2px solid #000;
  color: #000 !important;
}

.btn-default.btn-white:hover, .btn-default.btn-white:focus, .btn-default.btn-white:active {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #000;
  color: #fff !important;
  border: 2px solid #fff;
}

.btn-default.btn-white.border-not {
  border: none;
}

.btn-default .btn-custom:hover {
  background-position: 100% 0;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn-default.btn-gradient {
  border: transparent;
  position: relative;
  background-color: #000;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background-image: linear-gradient(#252525, #000);
  background-image: -webkit-gradient(linear, left top, right top, from(#252525), color-stop(#000), color-stop(#000), to(#252525));
  background-image: linear-gradient(to right, #252525, #000, #000, #252525);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background-size: 300% 100%;
}

.btn-default.btn-gradient:hover, .btn-default.btn-gradient:focus, .btn-default.btn-gradient:active {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  color: #fff !important;
  background-position: 100% 0;
}

.overflow-hide {
  overflow: hidden;
}

.swiper-container {
  width: 100%;
}

.img-container {
  position: relative;
  display: inline-block;
}

.overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#252525));
  background-image: linear-gradient(#000, #252525);
  opacity: 0.5;
}

.overlay.reversae {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background-image: linear-gradient(#252525, #000);
}

.list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list ul li {
  padding: 0 30px 10px 30px;
  text-transform: uppercase;
}

.list ul li a.active {
  color: #000;
}

.list ul li:first-child {
  padding-left: 0;
}

.list ul li:last-child {
  padding-right: 0;
}

.socials-lists ul.socials-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.socials-lists ul.socials-verticle {
  display: inline-block;
}

.socials-lists ul li {
  padding: 0 4px;
}

.socials-lists ul li a {
  display: inline-block;
}

.socials-lists ul li a i {
  height: 50px;
  width: 50px;
  background-color: #000;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 800ms;
  transition: all 800ms;
  border: 2px solid #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #fff), to(#fff));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #fff 50%, #fff 100%);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 90px 180px;
}

.socials-lists ul li a:hover i {
  background-position: 0 -90px;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.text-hash {
  color: #bebebe;
  letter-spacing: 5px;
}

/**************************
 2. brand css start
*************************/
.brand-sliders .brand-slider a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.brand-sliders .brand-slider a img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.brand-sliders .brand-slider a img.wedding-brand {
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
}

.brand-sliders .brand-slider a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.brand-sliders .brand-slider a:hover img {
  -webkit-filter: unset;
  filter: unset;
}

/**************************
  brand css end
*************************/
/**************************
 3. team css start
*************************/
.team-section .border-around {
  border: 13px solid #fff;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 30px #e2e2e2;
  box-shadow: 0 0 30px #e2e2e2;
  height: 150px;
  width: 150px;
}

.team-section .team {
  height: 135px;
  width: 135px;
}

.team-section .teams .our-team .overlay-team {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.team-section .teams .our-team .overlay-team img {
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
}

.team-section .teams .our-team .borders {
  border-right: 2px dashed black;
  height: 110px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.team-section .teams .our-team .set-relative.set-border {
  padding-bottom: 110px;
}

.team-section .teams .our-team .employee {
  margin-top: 15px;
  text-align: center;
}

.team-section .teams .our-team .employee h6 {
  line-height: 30px;
  -webkit-transition: all 1s;
  transition: all 1s;
  color: #000;
}

.team-section .teams .our-team .employee .e-name {
  color: #000;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.team-section .teams .our-team:hover .overlay-team {
  -webkit-transition: all 1s;
  transition: all 1s;
  bottom: 8px;
}

.team-section .teams .our-team:hover .overlay-team img {
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.team-section .teams .our-team:hover .borders {
  -webkit-transition: all 1s;
  transition: all 1s;
  border-right: 2px dashed #000;
}

.team-section .teams .our-team:hover h6, .team-section .teams .our-team:hover .e-name {
  -webkit-transition: all 1s;
  transition: all 1s;
  color: #000;
}

.team-section .teams:nth-child(even) {
  margin-top: 30px;
}

/**************************
 team css end
 *************************/
/**************************
  4. pricing css start
*************************/
.pricing .pricing-slider .price-margin {
  margin-bottom: -2px;
}

.pricing .pricing-slider .price-margin.price-container {
  margin: 5px 5px 2px 5px;
}

.pricing .btn-default {
  padding: 16px 40px;
  border-radius: 50px;
}

.pricing .set-border {
  background: #f1f1f1;
  margin: 30px 80px;
}

.pricing .price-container.bg-white {
  background: #fff;
}

.pricing .price-container.shadows {
  -webkit-filter: drop-shadow(0 0 6px #efecec);
  filter: drop-shadow(0 0 6px #efecec);
  border-radius: 20px;
  background: #fff;
  border: none;
  overflow: hidden;
}

.pricing .price-container .service-feature {
  padding: 50px 0 50px 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background-image: linear-gradient(#252525, #000);
}

.pricing .price-container .service-feature.bg-white {
  background: #fff;
}

.pricing .price-container .service-feature .price-feature {
  text-transform: uppercase;
  color: #fff;
}

.pricing .price-container .service-feature .price-feature:last-child {
  margin-bottom: 0;
}

.pricing .price-container .price-features {
  margin-bottom: 35px;
}

.pricing .price-container .price-features .price-feature {
  color: #888787;
  margin-bottom: 15px;
}

.pricing .price-container .price-features .price-feature.font-primary {
  color: #000;
}

.pricing .price-container .price-features .price-feature:last-child {
  margin-bottom: 0;
}

.pricing .price-container .price-features:last-child {
  margin-bottom: 0;
}

.pricing .price-container .feature-icon {
  width: auto !important;
  color: #000;
  display: inline-block;
  margin-bottom: 10px;
  margin-top: -12px;
}

.pricing .price-container .feature-icon:before {
  font-size: 55px;
}

.pricing .price-container .price-feature-container {
  padding: 30px 0 100px 0;
}

.pricing .price-container .price-feature-container .feature-text {
  padding: 0 30px;
}

.pricing .price-container .price-feature-container .feature-text h3 {
  font-weight: 700;
  text-transform: uppercase;
}

.pricing .price-container .price-feature-container .feature-text hr {
  margin-bottom: 2rem;
  margin-top: 1.6rem;
  border-top: 1px solid #f4f4f4;
}

.pricing .price-container .price-feature-container .feature-text .feature-text-heading.bold {
  font-weight: 700;
}

.pricing .price-container .price-feature-container .price-value {
  margin-bottom: 30px;
}

.pricing .price-container .price-feature-container .price-value .price {
  font-size: calc(22px + (55 - 22) * ((100vw - 300px) / (1920 - 300)));
  margin: -22px 0 -15px;
  font-weight: 600;
}

.pricing .price-container .price-feature-container .price-value .price .large {
  color: #000;
  font-size: 55px;
  font-weight: 400;
}

.pricing .price-container .price-feature-container .price-value .price .large.font-primary {
  color: #000;
}

.pricing .price-container .price-feature-container .set-abs {
  z-index: -1;
  width: 100%;
}

.pricing .price-container .price-feature-container .set-abs img.pricing-img {
  width: 100% !important;
}

.pricing .price-container.hover-overlay:hover {
  background: url("../images/price.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing .price-container.hover-overlay:hover .font-primary {
  color: #fff;
}

.pricing .price-container.hover-overlay:hover .price-feature-container .feature-text .feature-icon {
  color: #fff;
}

.pricing .price-container.hover-overlay:hover .price-feature-container .feature-text .feature-text-heading {
  color: #fff;
}

.pricing .price-container.hover-overlay:hover .price-feature-container .feature-text .set-border {
  color: #fff;
}

.pricing .price-container.hover-overlay:hover .price-feature-container .price-features .price-feature {
  color: #fff;
}

.pricing .price-container.hover-overlay:hover .price-feature-container .price-value .price {
  color: #fff;
}

.pricing .price-container.hover-overlay:hover .price-feature-container .price-value .large {
  color: #fff;
}

.pricing.yoga .owl-theme .owl-dots, .pricing.saas2 .owl-theme .owl-dots {
  margin-top: 40px !important;
  line-height: 1;
}

.pricing.yoga .owl-theme .owl-dots .owl-dot span, .pricing.saas2 .owl-theme .owl-dots .owl-dot span {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background-image: linear-gradient(#252525, #000);
}

.pricing.yoga .owl-theme .owl-dots .owl-dot.active span, .pricing.saas2 .owl-theme .owl-dots .owl-dot.active span {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

.pricing.yoga .owl-item.active.center .price-container, .pricing.saas2 .owl-item.active.center .price-container {
  -webkit-filter: drop-shadow(0 0 6px #efecec);
  filter: drop-shadow(0 0 6px #efecec);
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.pricing.yoga .price-margin.price-container, .pricing.saas2 .price-margin.price-container {
  margin: 35px 25px;
}

.pricing.yoga .price-container, .pricing.saas2 .price-container {
  -webkit-filter: grayscale(100%) drop-shadow(0 0 6px #efecec);
  filter: grayscale(100%) drop-shadow(0 0 6px #efecec);
  opacity: 0.6;
  border-radius: 10px;
}

.pricing.yoga .price-container .btn-default, .pricing.saas2 .price-container .btn-default {
  padding: 14px 46px;
}

.pricing.yoga .price-container .service-feature, .pricing.saas2 .price-container .service-feature {
  padding: 0;
  background-image: unset;
}

.pricing.yoga .price-container .service-feature .image-top, .pricing.saas2 .price-container .service-feature .image-top {
  width: 80%;
  margin-left: auto;
}

.pricing.yoga .price-container .service-feature .feature-text, .pricing.saas2 .price-container .service-feature .feature-text {
  position: relative;
}

.pricing.yoga .price-container .service-feature .feature-text .feature-text-heading, .pricing.saas2 .price-container .service-feature .feature-text .feature-text-heading {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -30%);
  transform: translate(0, -30%);
}

.pricing.yoga .price-container .price-feature-container, .pricing.saas2 .price-container .price-feature-container {
  padding: 0 0 40px 0;
}

.pricing.yoga .price-container .price-feature-container .price-feature, .pricing.yoga .price-container .price-feature-container .price, .pricing.saas2 .price-container .price-feature-container .price-feature, .pricing.saas2 .price-container .price-feature-container .price {
  color: #535e72;
}

.pricing.yoga .price-container .price-feature-container .price-value .price, .pricing.saas2 .price-container .price-feature-container .price-value .price {
  font-size: initial;
}

.pricing.yoga .price-container .price-feature-container .price-value .price .large, .pricing.saas2 .price-container .price-feature-container .price-value .price .large {
  font-size: 42px;
  font-weight: 600;
  background: -webkit-linear-gradient(#252525, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing.saas2 .price-container .price-feature-container {
  margin-top: -20px;
}

.pricing.app2 .price-container .price-feature-container {
  padding: 50px 0 50px 0;
}

.pricing.app2 .price-container.shadows {
  border-radius: 15px;
}

.pricing.app2 .pricing-slider {
  margin-top: -5px;
}

.pricing.agency .price-container .price-feature-container, .pricing.event .price-container .price-feature-container, .pricing.gym .price-container .price-feature-container, .pricing.resume .price-container .price-feature-container {
  padding: 50px 0 50px 0;
}

.pricing.agency .price-container .price-feature-container .price-value .price, .pricing.event .price-container .price-feature-container .price-value .price, .pricing.gym .price-container .price-feature-container .price-value .price, .pricing.resume .price-container .price-feature-container .price-value .price {
  font-size: initial;
  font-weight: 500;
}

.pricing.agency .price-container .price-features .price-feature, .pricing.event .price-container .price-features .price-feature, .pricing.gym .price-container .price-features .price-feature, .pricing.resume .price-container .price-features .price-feature {
  color: #464545;
  margin-bottom: 15px;
}

.pricing.agency .set-border, .pricing.event .set-border, .pricing.gym .set-border, .pricing.resume .set-border {
  margin: 20px 70px 55px 70px;
}

.pricing.event .price-container.shadows, .pricing.resume .price-container.shadows {
  -webkit-filter: unset;
  filter: unset;
  border-radius: 15px;
}

.pricing.event .price-container .price-features .price-feature, .pricing.resume .price-container .price-features .price-feature {
  color: #888787;
}

.pricing.event .btn-default, .pricing.resume .btn-default {
  padding: 13px 33px;
  background-color: #000;
}

.pricing.event .btn-default:hover, .pricing.resume .btn-default:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}

.pricing.gym .price-container.shadows {
  border-radius: 4px;
}

.pricing.gym .price-container .price-features .price-feature {
  color: #888787;
  margin-bottom: 20px;
}

.pricing.wedding .price-container.shadows {
  border-radius: 0;
}

.pricing.wedding .price-container .price-feature-container {
  padding: 50px 0 50px 0;
}

.pricing.wedding .price-container .price-feature-container .price-value .price {
  font-size: initial;
  margin: 0;
}

.pricing.wedding .set-border {
  background: #ffe3a9;
  margin: 20px 0 40px 0;
}

.pricing.yoga .animated-bg i {
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 50%;
}

/**************************
  pricing css end
*************************/
/**************************
 5. screenshot section start
*************************/
.screenshot .container {
  margin-bottom: 10px;
}

.screenshot .screen-container {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: -11%;
}

.screenshot .screen-container img {
  height: 685px;
  width: 438px;
  overflow: hidden;
  z-index: 3;
  position: relative;
}

.screenshot .swiper-container .swiper-wrapper .swiper-slide img {
  height: 537px;
  width: auto;
}

.screenshot .screenshot-slider .owl-theme .owl-dots {
  margin-top: 60px;
}

.screenshot .screenshot-slider .owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 5px;
  margin-bottom: 0;
}

.screenshot .screenshot-slider .owl-theme .owl-dots .owl-dot.active span {
  width: 45px;
  height: 5px;
  background: #000;
  -webkit-box-shadow: 0 0 4px 1px #e2e2e2;
  box-shadow: 0 0 4px 1px #e2e2e2;
}

.screenshot .screenshot-slider .owl-theme .owl-dots .owl-dot:hover span {
  background: #000;
  -webkit-box-shadow: 0 0 4px 1px #e2e2e2;
  box-shadow: 0 0 4px 1px #e2e2e2;
}

/**************************
screenshot section end
  *************************/
/**************************
 6. download section start
  *************************/
.download .center-mobile {
  margin-top: -52px;
  margin-bottom: -80px;
  min-height: 580px;
}

.download .download-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.download .download-img .download-icon {
  position: relative;
  z-index: 9;
  -webkit-box-shadow: 5px 8.66px 30px 0 #c2c2c2;
  box-shadow: 5px 8.66px 30px 0 #c2c2c2;
}

.download .download-img .download-center h5 {
  color: #000;
  text-transform: capitalize;
  margin-bottom: 0;
}

.download .download-img .elipse img {
  -webkit-animation: movebounce 5s linear infinite;
  animation: movebounce 5s linear infinite;
}

.download .download-img .center-img-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.download .information p {
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 45px;
  margin-bottom: 50px;
  letter-spacing: 0;
}

/**************************
download section end
*************************/
/**************************
 7. about section start
*************************/
.about {
  position: relative;
  overflow: hidden;
}

.about.app1 h3 {
  font-size: calc(20px + (45 - 20) * ((100vw - 300px) / (1920 - 300)));
  line-height: 45px;
  margin-bottom: 14px;
}

.about.app1 .counters {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.about.app1 .counters:nth-child(even) {
  border-right: none;
}

.about.app1 .counters:nth-child(n+3) {
  border-bottom: none;
}

.about.app1 .counters img {
  margin-bottom: 36px;
}

.about.app1 .counters .abouts {
  padding: 80px 0;
  text-align: center;
}

.about.app1 .mobile {
  right: 10%;
}

.about.app1 .mobile.mobile-img {
  z-index: 3;
}

.about.app1 .mobile.mobile-img .mobile-screen {
  height: 800px;
}

.about.app1 .mobile.rectangle {
  right: -4%;
  -webkit-animation: movebounce 15s linear infinite;
  animation: movebounce 15s linear infinite;
  z-index: -1;
}

.about.app1 .mobile.rectangle.r-2 {
  -webkit-animation: movebounce 20s linear infinite;
  animation: movebounce 20s linear infinite;
  right: -2%;
}

.about.app1 .mobile.galaxy {
  top: 2%;
  right: -15%;
  z-index: 5;
}

.about.event h4 {
  color: #fff;
}

.about.event p {
  color: #fff;
}

.about.event .announcer-img {
  display: inline-block;
  position: relative;
  margin-left: 40px;
  margin-bottom: 40px;
}

.about.event .announcer-img img {
  border-radius: 15px;
  overflow: hidden;
}

.about.event .announcer-img img:nth-child(3) {
  position: relative;
  z-index: 3;
}

.about.event .announcer-img img:nth-child(2) {
  position: absolute;
  top: 0;
  -webkit-transform: translate(-20px, 20px);
  transform: translate(-20px, 20px);
  opacity: 0.3;
}

.about.event .announcer-img img:nth-child(1) {
  z-index: 1;
  position: absolute;
  top: 0;
  -webkit-transform: translate(-20px, -20px);
  transform: translate(-40px, 40px);
  opacity: 0.2;
}

/**************************
 about section end
*************************/
/**************************
 8. format section start
*************************/
.format .logo {
  padding-bottom: 28px;
}

.format .set-border {
  border-bottom: 2px solid #000;
  width: 15px;
  margin-bottom: 30px;
  margin-left: 75px;
  display: inline-block;
  position: relative;
}

.format .set-border:before, .format .set-border:after {
  content: '';
  border-bottom: 2px solid #000;
  position: absolute;
}

.format .set-border:before {
  width: 65px;
  right: 100%;
  margin-right: 10px;
}

.format .set-border:after {
  left: 100%;
  width: 5px;
  margin-left: 10px;
}

.format .about-icon {
  margin-bottom: 0;
}

.format .about-icon:first-child {
  margin-left: 0;
}

.format .about-icon:last-child {
  margin-right: 0;
}

.format .about-icon .quality {
  color: #000;
  margin-bottom: 10px;
}

.format .about-icon .users {
  font-weight: 600;
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.format .format-small-text {
  margin-bottom: 0;
}

.format .format-head-text {
  margin-bottom: 50px;
}

.format .format-head-text .about-font-header {
  font-size: calc(20px + (30 - 20) * ((100vw - 300px) / (1920 - 300)));
}

.format .format-sub-text {
  margin-bottom: 35px;
}

.format .format-sub-text .sub-heading {
  margin-bottom: 20px;
}

.format .format-sub-text .about-para {
  margin-bottom: 30px;
  letter-spacing: 0;
}

.format .format-sub-text .about-para:last-child {
  margin-bottom: 0;
}

.icon-collection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.icon-collection .about-icon {
  margin: 0 18px;
  -webkit-filter: drop-shadow(0 0 10px #eee);
  filter: drop-shadow(0 0 10px #eee);
  border-radius: 20px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.icon-collection .about-icon a {
  padding: 18px 20px;
}

.icon-collection .about-icon:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #000;
}

.icon-collection .about-icon:hover a h5, .icon-collection .about-icon:hover a h6, .icon-collection .about-icon:hover a h4 {
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/**************************
 format section end
*************************/
/**************************
 9. service section start
*************************/
.services .service {
  padding: 60px 25px;
  border: 1px solid #f7f7f7;
  -webkit-box-shadow: 0 0 10px 5px rgba(253, 248, 247, 0.69);
  box-shadow: 0 0 10px 5px rgba(253, 248, 247, 0.69);
  border-radius: 10px;
  -webkit-transition: all 1s;
  transition: all 1s;
  text-align: center;
}

.services .service:hover .img-block {
  -webkit-animation: scaleDisappear 0.3s;
  animation: scaleDisappear 0.3s;
}

.services .service.service-overlay:hover {
  -webkit-transition: all 1s;
  transition: all 1s;
  background: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background: linear-gradient(#252525, #000);
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 20px #e2e2e2;
  box-shadow: 0 5px 20px #e2e2e2;
}

.services .service.service-overlay:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.services .service.service-overlay:hover .service-feature .feature-text, .services .service.service-overlay:hover .service-feature p {
  color: #fff;
}

.services .service .img-block {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-bottom: 15px;
}

.services .service .service-feature .feature-text {
  margin-bottom: 22px;
}

.services .service-border {
  position: relative;
}

.services .service-border:before, .services .service-border:after {
  content: '';
  position: absolute;
}

.services .service-border:first-child:before {
  border-bottom: 2px solid #f8f8f8;
  width: 210px;
  right: 0;
  bottom: 0;
}

.services .service-border:first-child:after {
  border-right: 2px solid #f8f8f8;
  height: 210px;
  right: 0;
  bottom: 0;
}

.services .service-border:nth-child(2):before {
  border-bottom: 2px solid #f8f8f8;
  width: 210px;
  left: 0;
  bottom: 0;
}

.services .service-border:nth-child(3):after {
  border-right: 2px solid #f8f8f8;
  height: 210px;
  right: 0;
  top: 0;
}

.services.app2 .service-container:hover .service {
  background-color: #fff6f6;
}

.services.app2 .service-container:nth-child(n+5) .service {
  border: 1px solid #f7f7f7;
  margin-bottom: 0;
}

.services.app2 .service-container .service {
  margin-bottom: 30px;
  border-radius: 15px;
}

.services.app2 .service-container .service .feature-text {
  color: #000;
  letter-spacing: 0;
}

.services.app2 .service-container .service p {
  letter-spacing: 0;
}

.services.resume .container {
  margin-bottom: -25px;
}

.services.resume .container .service {
  margin-bottom: 25px;
}

/**************************
 service section end
*************************/
/**************************
 10. subscribe section start
*************************/
.subscribe .button-primary {
  top: 0;
  right: 2%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.subscribe .button-primary button {
  font-size: calc(13px + (18 - 13) * ((100vw - 300px) / (1920 - 300)));
  padding: 20px 55px;
  font-weight: 200;
  border-radius: 34px;
  letter-spacing: 3px;
}

.subscribe .form-group {
  width: 100%;
  font-size: 18px;
  margin-bottom: 0;
}

.subscribe .form-group input, .subscribe .form-group textarea {
  background-color: #fff;
  padding: 30px 35% 30px 35px;
  border-radius: 50px;
  border: 1px solid #f1f1f1;
  font-size: 18px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0;
  height: auto;
}

.subscribe .form-group input::-webkit-input-placeholder, .subscribe .form-group textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7b7b7c;
  opacity: 0.5;
}

.subscribe .form-group input::-moz-placeholder, .subscribe .form-group textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #7b7b7c;
  opacity: 0.5;
}

.subscribe .form-group input:-ms-input-placeholder, .subscribe .form-group textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #7b7b7c;
  opacity: 0.5;
}

.subscribe .form-group input:-moz-placeholder, .subscribe .form-group textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #7b7b7c;
  opacity: 0.5;
}

.subscribe .form-group .flex {
  position: relative;
}

.subscribe.app1 .button-primary {
  right: 4%;
}

.subscribe.app1.bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.subscribe.subscribe-2 .form-group .icon {
  font-size: 30px;
  color: #000;
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.subscribe.subscribe-2 .form-group input {
  padding-left: 110px;
}

.subscribe.subscribe-2 .form-group input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
  opacity: 0.5;
}

.subscribe.subscribe-2 .form-group input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  opacity: 0.5;
}

.subscribe.subscribe-2 .form-group input:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
  opacity: 0.5;
}

.subscribe.subscribe-2 .form-group input:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  opacity: 0.5;
}

.subscribe.subscribe-2 .form-group .input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 15px;
}

.subscribe.music .subscribe-title {
  padding: 0 40px;
  text-align: center;
}

.subscribe.music .subscribe-title .subscribe-main {
  margin-bottom: 15px;
  text-transform: none;
  line-height: normal;
}

.subscribe.music .subscribe-title .subscribe-sub {
  margin-bottom: 25px;
}

.subscribe.yoga .subscribe-head, .subscribe.resume .subscribe-head {
  margin-top: -12px;
  margin-bottom: 20px;
  font-size: calc(18px + (35 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
}

.subscribe.yoga .subscribe-sub-head, .subscribe.resume .subscribe-sub-head {
  font-size: calc(13px + (16 - 12) * ((100vw - 300px) / (1920 - 300)));
  max-width: 560px;
  line-height: 1.8;
  margin: 0 auto;
}

.subscribe.event .form-group input, .subscribe.wedding .form-group input, .subscribe.yoga .form-group input {
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
}

.subscribe.event .button-primary button, .subscribe.wedding .button-primary button, .subscribe.yoga .button-primary button {
  letter-spacing: 0;
  font-weight: 500;
}

.subscribe.resume .button-primary button {
  letter-spacing: 0;
  font-weight: 500;
  border-radius: 34px;
}

.subscribe.yoga .button-primary {
  right: 28px;
}

.subscribe.wedding .button-primary button {
  margin-right: 10px;
}

/**************************
 subscribe section end
*************************/
/**************************
 11. navigations section start
*************************/
body.menu-on:before {
  content: "";
  position: fixed;
  background-color: rgba(0, 0, 0, 0.2);
  height: 100vh;
  width: 100vw;
  z-index: 1;
}

.dropdown-sec .dropdown, .dropdown-sec .dropdown-submenu {
  display: inline-block;
}

.dropdown-sec a {
  text-transform: capitalize;
}

.dropdown-sec .menu-head {
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 25px !important;
}

.dropdown-sec .menu-head:hover {
  color: unset;
}

.dropdown-sec .right-border {
  border-right: 1px solid #eeeeee;
}

.dropdown-sec ul {
  min-width: 230px;
}

.dropdown-sec ul a.menu-item {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  color: #808080;
  font-weight: 400;
}

.dropdown-sec .drop-down-design {
  margin-top: 0;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.dropdown-sec .dropdown-content.dropdown-size {
  min-width: 1020px;
}

.dropdown-sec .dropdown-content ul {
  width: 100%;
}

.dropdown-sec .dropdown-submenu {
  position: relative;
}

.dropdown-sec .dropdown-submenu .dropdown-menu {
  border: none;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.dropbtn>i {
  margin-left: 10px;
}

/**************************
 navigation section end
*************************/
/**************************
 12. copyright section start
*************************/
.copyright {
  padding: 18px 0;
  background: #000;
}

.copyright .copyright-text {
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.2;
}

.copyright .copyright-text.op-text {
  opacity: 0.5;
}

.copyright .copyright-text.center-c-t {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.copyright .fa-heart {
  color: #fb3b64;
}

.copyright .link-horizontal ul li {
  padding-right: 30px;
}

.copyright .link-horizontal ul li a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #fff;
}

.copyright .link-horizontal ul li a.op-text {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.copyright .link-horizontal ul li a.op-text:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
}

.copyright .link-horizontal ul li a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.5;
}

.copyright .link-horizontal ul li:last-child {
  padding-right: 0;
}

.copyright.app2 {
  background: #f0665f;
}

.copyright.app2 .copyright-text {
  font-weight: 300;
  letter-spacing: 1px;
}

.copyright.agency {
  background: #1e347c;
}

.copyright.agency.inner-page {
  background: #0c0c0c;
}

.copyright.event {
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 5;
  padding: 15px;
}

.copyright.event .link-horizontal ul li a i {
  font-size: 20px;
  color: #fff;
}

.copyright.wedding {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}

.copyright.wedding .link-horizontal a i {
  font-size: 20px;
}

.copyright.wedding .link-horizontal ul.link li a {
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.copyright.wedding .link-horizontal ul.link li a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
  color: #252525;
}

.copyright.wedding .copyright-text {
  font-weight: 500;
}

.copyright.yoga, .copyright.resume, .copyright.creative {
  padding: 40px 0;
}

.copyright.yoga hr, .copyright.resume hr, .copyright.creative hr {
  margin-top: 40px;
  margin-bottom: 40px;
  background: #fff;
}

.copyright.yoga .link-horizontal ul li, .copyright.resume .link-horizontal ul li, .copyright.creative .link-horizontal ul li {
  text-transform: uppercase;
}

.copyright.yoga .link-horizontal.social-link, .copyright.resume .link-horizontal.social-link, .copyright.creative .link-horizontal.social-link {
  margin-bottom: 20px;
}

.copyright.yoga .link-horizontal.social-link ul li, .copyright.resume .link-horizontal.social-link ul li, .copyright.creative .link-horizontal.social-link ul li {
  padding-right: 45px;
}

.copyright.yoga .link-horizontal.social-link ul li:last-child, .copyright.resume .link-horizontal.social-link ul li:last-child, .copyright.creative .link-horizontal.social-link ul li:last-child {
  padding-right: 0;
}

.copyright.yoga .link-horizontal.social-link ul li a i, .copyright.resume .link-horizontal.social-link ul li a i, .copyright.creative .link-horizontal.social-link ul li a i {
  font-size: 20px;
  color: #fff;
}

.copyright.resume {
  background: #f5f5f8;
}

.copyright.resume .link-horizontal ul li {
  text-transform: uppercase;
}

.copyright.resume .link-horizontal ul li a {
  color: #000;
  font-weight: 500;
}

.copyright.resume .link-horizontal.social-link ul li a i {
  color: #000;
}

.copyright.resume .copyright-text {
  color: #989a9f;
  font-weight: 500;
}

.copyright.gym {
  background: #0c0c0c;
}

.copyright.music {
  background: #0c0c0c;
}

.copyright.saas1 {
  background: #061625;
}

.copyright.wedding {
  padding: 38px 0;
  background: #fff;
}

.copyright.wedding .link-horizontal ul li a {
  color: #000;
}

.copyright.light.event {
  background: rgba(0, 0, 0, 0.56);
}

/**************************
 copyright section end
*************************/
/**************************
 13. header section start
*************************/
.white-header .brand-logo {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.white-header header nav .main-menu>li>a {
  color: white !important;
}

.header {
  display: block;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.header .center-text {
  height: calc(100vh - 83px);
  margin-top: 83px;
}

.header.wedding .center-text {
  height: calc(100vh - 68px);
  margin-top: 68px;
}

.header.yoga .center-text {
  height: calc(100vh - 63px);
  margin-top: 63px;
}

.header.overflow-unset {
  overflow: unset;
}

.header .header-top-line {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
  text-transform: capitalize;
  font-weight: 300;
}

.header .bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 100vh;
}

.header .bg.app1-header {
  overflow: hidden;
}

.header .bg.app2-header {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#252525));
  background-image: linear-gradient(#000, #252525);
}

.header .bg.app2-header .header-text {
  padding-bottom: 20px;
  position: relative;
}

.header .bg.app2-header .header-text h1:before {
  content: "";
  border-bottom: 3px solid #fff;
  width: 90px;
  position: absolute;
  bottom: 0;
}

.header .bg.header3 {
  background-attachment: fixed;
  background-position: 0 0;
  background-repeat: repeat;
  -webkit-animation: slide 50s linear infinite;
  animation: slide 50s linear infinite;
  will-change: background-position;
  background-size: auto;
}

@-webkit-keyframes slide {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -4000px 0;
  }
}

.header .bg.header3::before {
  content: "";
  background-image: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background-image: linear-gradient(#252525, #000);
  opacity: 0.9;
  height: 100%;
  width: 100%;
  position: absolute;
}

.header .bg.gym-header {
  background-position: top;
}

.header .bg.gym-header h1 {
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
}

.header .bg.gym-header .header-sub-text {
  padding: 0 85px;
}

.header .bg.gym-header .header-sub-text p {
  padding: 0 95px;
}

.header .bg.music-bg {
  background-attachment: fixed;
}

.header .bg.resume {
  background-size: contain;
}

.header .bg.agency {
  background-position: right;
}

.header .rotate {
  position: absolute;
  top: 20%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 17%;
  z-index: 1;
}

.header .rotate img {
  width: 450px;
}

.header .squares .img-1 {
  -webkit-animation: changedir 10s infinite;
  animation: changedir 10s infinite;
}

.header .squares .img-2 {
  -webkit-animation: changedir-rev 10s infinite;
  animation: changedir-rev 10s infinite;
}

.header .animation-circle-inverse {
  opacity: 0.25;
  position: absolute;
  right: 100px;
  top: 0;
}

.header .animation-circle-inverse i {
  background: #eeeeee;
  position: absolute;
  height: 200px;
  width: 200px;
  border-radius: 100%;
  opacity: 0.3;
  -webkit-animation: ripple1 3s linear infinite;
  animation: ripple1 3s linear infinite;
}

.header .animation-circle-inverse i:nth-child(2) {
  -webkit-animation: ripple2 3s linear infinite;
  animation: ripple2 3s linear infinite;
}

.header .animation-circle-inverse i:nth-child(3) {
  -webkit-animation: ripple3 3s linear infinite;
  animation: ripple3 3s linear infinite;
}

.header .wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  -webkit-animation: move-img 10s linear infinite;
  animation: move-img 10s linear infinite;
  background-image: url("../images/wave.png");
  height: 40px;
  background-size: contain;
}

.header .wave:before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  -webkit-animation: move-img-reverse 10s linear infinite;
  animation: move-img-reverse 10s linear infinite;
  background-image: url("../images/wave.png");
  height: 40px;
  background-size: contain;
  opacity: 0.4;
}

.header .wave:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  -webkit-animation: move-img 20s linear infinite;
  animation: move-img 20s linear infinite;
  background-image: url("../images/wave.png");
  height: 45px;
  background-size: contain;
  opacity: 0.4;
}

.header .img-mobile {
  bottom: -17%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 2;
}

.header .wave-orange {
  position: absolute;
  bottom: 0;
  width: 326px;
  -webkit-animation: move-img 10s linear infinite;
  animation: move-img 10s linear infinite;
  background-image: url("../images/wave-orange.png");
  height: 34px;
  background-size: contain;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
  z-index: 3;
}

.header .wave-orange:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 326px;
  -webkit-animation: move-img-reverse 10s linear infinite;
  animation: move-img-reverse 10s linear infinite;
  background-image: url("../images/wave-orange.png");
  height: 34px;
  opacity: 0.4;
  background-size: contain;
}

.header .wave-orange:after {
  content: "";
  position: absolute;
  bottom: 0;
  opacity: 0.4;
  width: 326px;
  -webkit-animation: move-img 40s linear infinite;
  animation: move-img 40s linear infinite;
  background-image: url("../images/wave-orange.png");
  height: 34px;
  background-size: contain;
}

.header .event-content .timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header .event-content .h1-margin {
  margin: 0 0 50px 0;
}

.header .event-content .header-sub-text {
  font-weight: 300;
}

.header .event-content .link-horizontal ul li a {
  font-weight: 600;
  padding: 13px 35px;
}

.header .event-content h4 {
  margin-bottom: 20px;
}

.header .event-content ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .event-content ul li {
  padding-right: 0;
}

.header .event-content .counter-container h2 {
  font-weight: 200;
  text-transform: none;
  margin-top: -12px;
}

.header .event-content .counter-container h2 span.days-text {
  font-weight: 700;
  font-size: calc(30px + (45 - 30) * ((100vw - 300px) / (1920 - 300)));
}

.header .event-content .counter-container h2 span.days {
  line-height: normal;
  font-weight: 400;
  font-size: calc(30px + (42 - 30) * ((100vw - 300px) / (1920 - 300)));
}

.header .set-bottom {
  bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  z-index: 3;
}

.header .set-bottom:before {
  content: "";
  border: 1px solid #fff;
  height: 48px;
  width: 48px;
  border-radius: 50px;
  opacity: 0.5;
}

.header .set-bottom .down {
  position: absolute;
}

.header .set-bottom .down .scroll-down {
  -webkit-animation: scroll 0.8s infinite;
  animation: scroll 0.8s infinite;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: rotatey(0deg);
    transform: rotatey(0deg);
  }

  50% {
    -webkit-transform: rotatey(90deg);
    transform: rotatey(90deg);
  }

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

@keyframes scroll {
  0% {
    -webkit-transform: rotatey(0deg);
    transform: rotatey(0deg);
  }

  50% {
    -webkit-transform: rotatey(90deg);
    transform: rotatey(90deg);
  }

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

.header .header5-content .gym-slider .item img {
  display: block;
  width: 100%;
  height: auto;
}

.header .music-content .center-text {
  height: calc(100vh - 80px);
  margin-top: 78px;
}

.header .music-content .header-text, .header .music-content .header-sub-text {
  position: relative;
  z-index: 2;
}

.header .music-content .header-sub-text h5 {
  font-weight: 300;
}

.header .music-content .owl-theme .item {
  position: relative;
}

.header .music-content .owl-theme .owl-nav {
  display: none;
}

.header .music-content .owl-theme .owl-dots {
  display: inline-block;
  position: absolute;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
  z-index: 3;
  top: 40%;
  right: 60px;
}

.header .music-content .owl-theme .owl-dots .owl-dot {
  display: block;
}

.header .music-content .owl-theme .owl-dots .owl-dot.active span {
  background: #000;
  width: 4px;
  opacity: 1;
}

.header .music-content .owl-theme .owl-dots .owl-dot span {
  height: 45px;
  width: 2px;
  border-radius: unset;
  opacity: 0.4;
  margin: 20px;
}

.header .resume .font-large {
  font-size: 120%;
}

.header .background-animate {
  -webkit-animation: movebounce 150s linear infinite;
  animation: movebounce 150s linear infinite;
  bottom: 0;
  width: 100%;
}

.header .header8-content .slider-banner {
  position: absolute;
}

.header .header8-content .slider-1 {
  position: relative;
  z-index: 3;
}

.header .header8-content .slider-1 .owl-nav {
  display: none;
  position: absolute;
  left: -13%;
  bottom: -110px;
}

.header .header8-content .slider-1 .owl-nav [class*=owl-] {
  background: none;
}

.header .header8-content .slider-1 .owl-nav .owl-next {
  margin-left: 40px;
}

.header .header8-content .slider-1 .owl-nav button.owl-next {
  position: absolute;
  top: 15px;
  left: 120px;
}

.header .header8-content .slider-logo {
  -ms-flex-item-align: center;
  align-self: center;
}

.header .saas2-content .header-sub-text .saas2-sub-text {
  font-size: calc(18px + (38 - 18) * ((100vw - 300px) / (1920 - 300)));
  color: #fff;
  text-transform: uppercase;
  font-weight: 200;
}

.header .saas2-content .header-sub-text .saas2-sub-text span {
  font-weight: 300;
}

.header .saas2-content .header-sub-text .sub-para {
  font-weight: 300;
}

.header .saas2-content .set-abs {
  position: absolute;
  right: 2%;
}

.header .saas2-content .img1 {
  left: 5%;
  top: 5%;
}

.header .saas2-content .img2 {
  left: 35%;
  top: 20%;
}

.header .saas2-content .img3 {
  left: 0;
  bottom: 32%;
}

.header .saas2-content .img4 {
  left: 35%;
  bottom: 32%;
}

.header .saas2-content .img5 {
  right: 30%;
  bottom: 16%;
}

.header .saas2-content .img6 {
  right: 12%;
  bottom: 6%;
}

.header .saas2-content .img7 {
  right: 0;
  bottom: 28%;
}

.header .saas2-content .move-up-down {
  -webkit-animation: movebounce 15s linear infinite;
  animation: movebounce 15s linear infinite;
}

.header .saas2-content .move-right-left {
  -webkit-animation: moveright 3.9s linear infinite;
  animation: moveright 3.9s linear infinite;
}

.header .saas2-content .round {
  position: absolute;
  right: 11%;
  top: 0;
}

.header .saas2-content .round .img8 {
  position: relative;
}

.header .saas2-content .round .inner-circle {
  position: absolute;
  top: 30%;
  left: 30%;
}

.header .saas2-content .bottom-content {
  z-index: 3;
  bottom: 6%;
  height: unset;
  width: 100%;
}

.header .saas2-content .bottom-content .bottom {
  height: 86px;
  width: 66px;
  background-color: #fff;
  border-radius: 50px;
  overflow: hidden;
}

.header .saas2-content .bottom-content .bottom .down img {
  -webkit-animation: btndown 3s linear infinite;
  animation: btndown 3s linear infinite;
}

.header .wedding-content .logo-h1 {
  margin-left: -170px;
}

.header .wedding-content .header-sub-text {
  -webkit-animation: rightFadeInOut 2.5s ease-in-out;
  animation: rightFadeInOut 2.5s ease-in-out;
}

.header .wedding-content .rightFadeInOut {
  -webkit-animation: rightFadeInOut 1.5s ease-in-out;
  animation: rightFadeInOut 1.5s ease-in-out;
}

.header .wedding-content .rightfadediv {
  -webkit-animation: rightFadeInOut 2.5s ease-in-out;
  animation: rightFadeInOut 2.5s ease-in-out;
}

.header .wedding-content .btn-default {
  letter-spacing: 2px;
}

.header .wedding-content .girl {
  left: 18%;
}

.header .yoga-content .right-way {
  margin-top: 160px;
}

.header .yoga-content h1 span {
  font-weight: 200;
  text-transform: uppercase;
}

.header .yoga-content .girl {
  width: 100%;
}

.header .yoga-content .girl .girl-img {
  width: auto;
}

.header .yoga-content .animation-circle-inverse {
  right: 50%;
  bottom: 0;
  top: unset;
}

.header .yoga-content .owl-nav {
  margin-top: 0;
}

.header .yoga-content .owl-nav .owl-next, .header .yoga-content .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 20px 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: unset;
}

.header .yoga-content .owl-nav .owl-next:hover, .header .yoga-content .owl-nav .owl-prev:hover {
  background: #979154;
  background: rgba(255, 255, 255, 0.2);
}

.header .yoga-content .owl-nav .owl-next i, .header .yoga-content .owl-nav .owl-prev i {
  font-size: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .yoga-content .owl-nav .owl-next {
  right: 4%;
}

.header .yoga-content .owl-nav .owl-prev {
  left: 4%;
}

/*************************
 header section end
*************************/
/*************************
 14.footer section start
*************************/
footer {
  padding: 100px 0;
}

footer .footer-title.mobile-title {
  display: none;
}

footer .footer-title.mobile-title h3 {
  font-size: calc(15px + (24 - 15) * ((100vw - 300px) / (1920 - 300)));
}

footer .footer-titles.mobile-title {
  display: none;
}

footer .footer-titles.mobile-title h3 {
  font-size: calc(15px + (24 - 15) * ((100vw - 300px) / (1920 - 300)));
}

footer .logo-sec .footer-logo {
  margin-bottom: 36px;
}

footer .logo-sec .footer-para {
  margin-bottom: 30px;
}

footer .logo-sec .footer-para p {
  letter-spacing: 0;
}

footer .logo-sec .footer-para .para-address {
  margin-bottom: 10px;
  font-weight: 200;
}

footer .logo-sec .footer-para.op-text .para-address {
  opacity: 0.8;
}

footer .logo-sec .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 0;
}

footer .logo-sec .footer-social .footer-social-list {
  padding: 0 15px;
}

footer .logo-sec .footer-social .footer-social-list:first-child {
  padding-left: 0;
}

footer .logo-sec .footer-social .footer-social-list:last-child {
  padding-right: 0;
}

footer .logo-sec .footer-social .footer-social-list a {
  color: white;
}

footer .logo-sec .footer-social .footer-social-list a:hover {
  opacity: 0.6;
}

footer .footer-headings {
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 500;
}

footer .footer-contant .form-group {
  position: relative;
  margin-bottom: 50px;
}

footer .footer-contant .form-group input {
  border-bottom: 1px solid white;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
  color: #fff;
}

footer .footer-contant .form-group input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  text-transform: capitalize;
  font-size: 12px;
  opacity: 0.4;
  letter-spacing: 1px;
  color: #fff;
}

footer .footer-contant .form-group input::-moz-placeholder {
  /* Firefox 19+ */
  text-transform: capitalize;
  font-size: 12px;
  opacity: 0.4;
  letter-spacing: 1px;
  color: #fff;
}

footer .footer-contant .form-group input:-ms-input-placeholder {
  /* IE 10+ */
  text-transform: capitalize;
  font-size: 12px;
  opacity: 0.4;
  letter-spacing: 1px;
  color: #fff;
}

footer .footer-contant .form-group input:-moz-placeholder {
  /* Firefox 18- */
  text-transform: capitalize;
  font-size: 12px;
  opacity: 0.4;
  letter-spacing: 1px;
  color: #fff;
}

footer .footer-contant .form-group .fa-paper-plane {
  position: absolute;
  color: #fff;
  top: 10px;
  right: 10px;
}

footer .footer-contant .unice-text {
  margin-bottom: 10px;
}

footer .footer-contant .unice-copyright-text {
  font-weight: 300;
}

footer .link-btns {
  margin-bottom: -10px;
}

footer .link-btns ul li.buttons {
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 5px;
  opacity: 0.8;
  margin-right: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

footer .link-btns ul li.buttons:last-child {
  margin-right: 0;
}

footer .link-btns ul li.buttons a {
  text-transform: capitalize;
  color: white;
}

footer .link-btns ul li.buttons:hover {
  opacity: 1;
}

footer .link-btns ul li:nth-child(n+7) {
  margin-bottom: 0;
}

footer .link-btns ul.links li {
  margin-bottom: 10px;
}

footer .link-btns ul.place li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

footer .footer-lists.op-text li {
  opacity: 0.8;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

footer .footer-lists.op-text li:hover {
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

footer .footer-lists li {
  margin-bottom: 10px;
  color: #fff;
  text-transform: capitalize;
}

footer .footer-lists li a {
  font-weight: 300;
  color: #fff;
  line-height: initial;
}

footer .footer-lists li a:hover {
  color: #fff;
}

footer .footer-lists li:hover a {
  color: #fff;
}

footer .footer-lists.contacts li {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.2;
}

footer .footer-lists.contacts li i {
  margin-right: 18px;
  margin-top: 2px;
}

footer i.fa {
  font-size: 16px;
}

footer.footer2.bg {
  background-size: cover;
}

footer.footer2.saas2 {
  background-size: cover;
}

footer.footer2.saas2 .footer-padding {
  padding-top: 245px;
}

footer.footer2.agency {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#252525));
  background-image: linear-gradient(#000, #252525);
}

footer.footer2.agency.inner-page .brand-container {
  background: #131313;
}

footer.footer2.agency .brand-container {
  margin-top: 50px;
  padding: 30px;
  background: #0f2469;
  border-radius: 20px;
}

footer.footer2.agency .list ul li {
  padding-bottom: 0;
}

footer.footer2.agency .link-horizontal ul li.borders-right {
  border-right: 3px solid #fff;
  height: 30px;
  margin-right: 15px;
  opacity: 0.051;
}

footer.footer2.gym {
  background-color: #000;
}

footer.dark {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#252525)) !important;
  background-image: linear-gradient(#000, #252525) !important;
}

footer.dark h1, footer.dark h2, footer.dark h3, footer.dark h4, footer.dark h5, footer.dark h6, footer.dark p, footer.dark a {
  color: #fff !important;
  opacity: 0.8;
}

footer.dark li {
  color: #fff !important;
}

footer.dark i.white {
  color: #fff !important;
}

footer.dark .form-group i.fa-envelope {
  color: #000 !important;
}

footer.dark.resume i {
  color: #fff !important;
}

footer.light {
  background: #fff;
}

footer.light h1, footer.light h2, footer.light h3, footer.light h4, footer.light h5, footer.light h6, footer.light p, footer.light a, footer.light li {
  color: #000 !important;
}

footer.light.event form {
  border: 1px solid black;
}

footer.bg-light-inner {
  background: #f8f8f8;
}

/*************************
 footer section end
*************************/
/*************************
 15. video section start
*************************/
.videos .video {
  background-image: url("../images/video-pic.jpg");
  z-index: 1;
  padding: 125px 0;
  border-radius: 10px;
}

.videos .frame {
  -webkit-animation: movebounce 10s linear infinite;
  animation: movebounce 10s linear infinite;
}

.videos .frame2 {
  -webkit-animation: movebounce 10s linear infinite;
  animation: movebounce 10s linear infinite;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.videos .reviews {
  padding: 20px;
  background-color: #fff;
}

.videos .reviews img.reviewers {
  border: 5px solid white;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 0 4px #e2e2e2;
  box-shadow: 0 0 0 4px #e2e2e2;
  width: auto;
}

.videos .video-description {
  z-index: 1;
}

.videos .video-description h3 {
  font-size: calc(20px + (42 - 20) * ((100vw - 300px) / (1920 - 300)));
  line-height: 1.1;
}

.videos .video-description p {
  margin-bottom: 30px;
  color: #fff;
  font-weight: 300;
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  letter-spacing: 0;
}

.videos .video-description p:last-child {
  margin-bottom: 0;
}

.videos .bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  float: right;
}

.videos .bg .button2 {
  padding: 188px 265px;
}

.videos .review-video-box {
  border-radius: 10px;
}

.videos .review-video-box .clients-review {
  display: -webkit-box;
}

.videos .review-video-box img.border-radius {
  border-radius: 10px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  width: auto;
}

.videos .review-video-box .texture {
  background-color: #fff;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  padding: 20px;
}

.videos .review-video-box .texture .inner-text {
  max-width: 162px;
}

.videos .review-video-box .texture .inner-text i {
  font-size: 14px;
}

.videos .review-video-box .texture .unset-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.videos .review-video-box .texture .unset-width img {
  width: auto;
}

.videos.saas1 .video {
  background-image: url("../images/video-pic.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video-modal {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.video-modal button.close {
  position: absolute;
  top: -20px;
  right: -20px;
}

.video-modal button.close span {
  color: white;
  opacity: 1 !important;
}

.video-modal button.close span:focus {
  outline: 0;
}

.video-modal button:focus {
  outline: 0;
}

.video-modal iframe {
  width: 100%;
  height: 570px;
}

/*************************
video section end
*************************/
/*************************
 16. booking section start
*************************/
.booking .btn-default {
  font-weight: 500;
  padding: 18px 45px;
  text-transform: uppercase;
}

.booking .form-group input {
  padding: 18px 20px;
  border-radius: 35px;
}

.booking .btn-default {
  border-radius: 50px;
}

/*************************
booking section end
*************************/
/*************************
 17. app2 common css start
*************************/
.app2 {
  overflow: visible;
}

.app2 h1, .app2 h2 {
  font-family: 'Poppins', sans-serif;
}

.app2 h3, .app2 h4, .app2 h5, .app2 li {
  margin-top: 0;
  margin-bottom: 0;
}

.app2 h1, .app2 h2, .app2 h3, .app2 h4, .app2 h5, .app2 h6 {
  text-transform: capitalize;
}

.app2 h2, .app2 h3, .app2 h4, .app2 h5, .app2 h6, .app2 a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.app2 li {
  font-weight: 400;
}

.app2 h2, .app2 h3, .app2 h4 {
  color: #000;
}

.app2 h5, .app2 h6, .app2 p {
  color: #000;
}

.app2 .btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 40px;
}

.app2 h1 {
  font-size: calc(22px + (45 - 22) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: 0;
  line-height: 1.4;
}

.app2 h2 {
  font-size: calc(18px + (30 - 18) * ((100vw - 300px) / (1920 - 300)));
  color: #000;
  margin-top: -5px;
  margin-bottom: -17px;
}

.app2 h3 {
  font-size: calc(18px + (26 - 18) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
  line-height: 0.8;
}

.app2 h4 {
  letter-spacing: 2px;
  line-height: 18px;
}

.app2 h5 {
  letter-spacing: 1px;
  line-height: 20px;
}

.app2 h6 {
  letter-spacing: 1px;
}

.app2 p {
  margin-bottom: -3px;
  color: #949494;
}

.app2 .title .title-img {
  height: 50px;
}

.app2.header .img-mobile .headaer-image {
  width: 415px;
}

.app2.about {
  padding-top: 170px;
}

.app2.about .set-height {
  min-height: 632px;
}

.app2.about .set-height .mobile1 {
  position: absolute;
  width: 355px;
  right: 0;
}

.app2.about .set-height .j-img {
  position: absolute;
  right: 20%;
  bottom: 27%;
  width: 56px;
  -webkit-animation: movej 4s linear infinite;
  animation: movej 4s linear infinite;
}

.app2.quality .set-height {
  min-height: 627px;
}

.app2.quality .set-height .mobile2 {
  position: absolute;
  width: 460px;
  top: -36px;
}

.app2.team .team-slider .owl-stage-outer {
  margin: -5px;
}

.app2.team .team-slider .team-container {
  padding: 25px 30px;
  border: 1px solid #f7f7f7;
  -webkit-box-shadow: 0 0 10px 5px rgba(253, 248, 247, 0.69);
  box-shadow: 0 0 10px 5px rgba(253, 248, 247, 0.69);
  border-radius: 10px;
  margin: 5px;
  background: #fff;
}

.app2.team .team-slider .team-container .members {
  width: 80px !important;
  margin: 0 auto;
  border: 5px solid #fff;
  border-radius: 100%;
  -webkit-filter: drop-shadow(0 0 5px #dbdbdb);
  filter: drop-shadow(0 0 5px #dbdbdb);
  margin-bottom: 20px;
}

.app2.team .team-slider .team-container .name {
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
  color: #000;
  letter-spacing: 0;
  margin-bottom: 15px;
}

.app2.team .team-slider .team-container .post {
  margin-bottom: 15px;
}

.app2.team .team-slider .team-container .team-para {
  letter-spacing: 0;
}

.app2.screenshot .container {
  margin-bottom: 0;
}

.app2.services .animated-bg i, .app2.screenshot .animated-bg i {
  right: 30%;
}

.app2.pricing .price-container .feature-icon {
  color: #fff;
}

.app2.pricing .price-container .price-features .price-feature {
  color: #000;
  margin-bottom: 15px;
  font-weight: 400;
}

.app2.pricing .price-container .price-feature-container .price-value .price {
  font-size: initial;
  margin: -22px 0 -15px;
}

.app2 .subscribe .button-primary {
  right: 2%;
}

.app2 .subscribe .button-primary button {
  font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1920 - 300)));
  padding: 20px 30px;
  letter-spacing: 0;
  font-weight: 400;
}

.app2 .subscribe input {
  font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1920 - 300)));
}

.app2 .animated-bg i {
  background: #fff6f6;
  -webkit-box-shadow: 0 15px 30px 0 #f3c4c3;
  box-shadow: 0 15px 30px 0 #f3c4c3;
}

/*************************
 app2 common css start
*************************/
/*************************
21. music css start
**************************/
.bg-black {
  background: #000;
}

.music .left-side, .music .right-side {
  position: absolute;
  top: 40%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.music .left-side {
  left: 0;
  top: 40%;
  -webkit-transform: rotate(-90deg) translateX(-40%);
  transform: rotate(-90deg) translateX(-40%);
}

.music .left-side .follow-text {
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 5px;
  margin-right: 15px;
}

.music .left-side ul {
  display: inline-block;
}

.music .left-side ul li {
  display: inline-block;
}

.music .left-side ul li img {
  width: 18px;
  margin-right: 9px;
}

.music .right-side {
  right: 20px;
  top: 60%;
  -webkit-transform: rotate(90deg) translateX(-60%);
  transform: rotate(90deg) translateX(-60%);
}

.music .right-side .circle {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  -webkit-box-shadow: 2px 3.464px 30px 0 #d0122b;
  box-shadow: 2px 3.464px 30px 0 #d0122b;
  background-color: #d0122b;
  display: inline-block;
  margin-right: 20px;
  position: relative;
}

.music .right-side .circle img {
  -webkit-transform: rotate(-90deg) translate(-50%, 20%);
  transform: rotate(-90deg) translate(-50%, 20%);
  position: absolute;
  top: -10%;
  left: 50%;
}

.music .img-height {
  height: 100vh;
}

.music .img-height img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.music.blog .img-container {
  border-radius: 5px;
  overflow: hidden;
}

.music .music-testimonial-slider img {
  margin: 0 auto;
}

.music .music-container {
  margin-top: -120px;
  margin-bottom: 50px;
}

.music .music-container .play-bg {
  border-radius: 32px;
  background-image: -webkit-gradient(linear, left top, right top, from(#1c255a), to(#233e80));
  background-image: linear-gradient(90deg, #1c255a 0%, #233e80 100%);
  height: 67px;
  margin: 0 auto;
  width: 276px;
  position: relative;
  z-index: 1;
}

.music .music-container .play-bg .song-text-container {
  border-radius: 32px;
  background-image: -webkit-gradient(linear, left top, right top, from(#1c255a), to(#233e80));
  background-image: linear-gradient(90deg, #1c255a 0%, #233e80 100%);
  display: inline-block;
}

.music .music-container .play-bg .song-text-container .center-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding-left: 10px;
  margin-right: 15px;
}

.music .music-container .play-bg .song-text-container .song-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 25px;
}

.music .music-container .play-bg .song-text-container .song-text .song-head, .music .music-container .play-bg .song-text-container .song-text .song-sub-head {
  font-family: 'PT Sans', sans-serif;
}

.music .music-container .play-bg .song-text-container .song-text .song-head {
  font-size: calc(14px + (16 - 14) * (100vw - 330px) / (1920 - 330));
}

.music .music-container .play-bg .song-text-container .song-text .song-sub-head {
  font-size: 13px;
  text-transform: none;
  opacity: 0.3;
}

.music .music-container .play-bg .play-setting {
  margin-right: 15px;
}

.music .music-container .play-bg .play-setting a:hover {
  color: #fff;
  opacity: 0.7;
}

.music .music-container .play-bg:before, .music .music-container .play-bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  /* right: 210%; */
  background-image: -webkit-gradient(linear, left top, right top, from(#1c255a), to(#233e80));
  background-image: linear-gradient(90deg, #1c255a 0%, #233e80 100%);
  height: 100%;
  width: 180%;
  z-index: -1;
  opacity: 0.2;
  border-radius: 36px;
}

.music .music-container .play-bg:after {
  width: 260%;
}

.music.bg-album {
  background-attachment: fixed;
  background-position: center top;
}

.music.bg-artist {
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.music.bg-gallery {
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  background-attachment: fixed;
}

.music.bg-video {
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

.music.bg-footer {
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

.music.sponsor {
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

.music.sponsor .row>div:last-child(1) .sponsor-img {
  margin-bottom: 0;
}

.music h4, .music h5, .music li {
  margin-top: 0;
  margin-bottom: 0;
}

.music h1, .music h2, .music h3, .music h4, .music h5, .music h6 {
  text-transform: capitalize;
}

.music h3, .music h4, .music h5, .music h6, .music li, .music a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  line-height: normal;
}

.music h2, .music h3, .music h4, .music h5, .music h6, .music p {
  color: #000;
}

.music h1 {
  font-family: 'PT Sans', sans-serif;
  text-transform: uppercase;
  font-size: calc(22px + (40 - 22) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
  margin-top: -13px;
  margin-bottom: -20px;
  display: inline-block;
  letter-spacing: 0;
}

.music h1 span {
  font-size: 20px;
  opacity: 0.2;
  border-left: 3px solid #fff;
  padding-right: 10px;
  padding-left: 8px;
  line-height: 16px;
  display: inline-block;
  vertical-align: middle;
}

.music h2 {
  font-size: calc(20px + (40 - 20) * ((100vw - 300px) / (1920 - 300)));
  margin-top: -14px;
  margin-bottom: -16px;
  letter-spacing: 1px;
  font-weight: 700;
}

.music h3 {
  font-size: calc(18px + (35 - 18) * ((100vw - 300px) / (1920 - 300)));
}

.music h4 {
  font-size: calc(16px + (25 - 16) * ((100vw - 300px) / (1920 - 300)));
  margin-top: -3px;
  margin-bottom: -6px;
}

.music h5 {
  font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  margin-top: -6px;
}

.music h6 {
  font-size: calc(13px + (18 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
  font-weight: 400;
}

.music p {
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
  font-weight: 200;
  margin-bottom: -7px;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
}

.music.header .header-sub-text {
  margin-bottom: 0;
}

.music .gradient-text {
  background: -webkit-linear-gradient(#e3154f, #e3154f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.music .progress {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  height: 22px;
}

.music .progress .progress-bar {
  background-color: white;
}

.music .title.title3 .sub-title p {
  letter-spacing: 1px;
}

.music div .album-list {
  padding: 55px 25px;
  border-radius: 8px;
  margin-bottom: 50px;
  margin-right: 25px;
  margin-left: 25px;
}

.music div .album-list .list-head {
  margin-bottom: 25px;
}

.music div .album-list .item-sublist {
  margin-top: 18px;
  font-weight: 300;
}

.music div .album-list .item-sublist:first-child {
  margin-top: 0;
}

.music div:nth-child(n+6) .album-list {
  margin-bottom: 0;
}

.music .overlay-box {
  position: relative;
  overflow: hidden;
  background-color: #0e0e0e;
  border-radius: 8px;
}

.music .overlay-box:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background-image: linear-gradient(#252525, #000);
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
  z-index: 2;
  opacity: 0;
}

.music .overlay-box h5, .music .overlay-box h6, .music .overlay-box img {
  position: relative;
  z-index: 3;
}

.music .overlay-box:hover:after {
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
  opacity: 1;
}

.music.format .format-small-text {
  margin-bottom: 8px;
}

.music.format .format-head-text {
  margin-bottom: 10px;
}

.music.format .format-sub-text {
  margin-bottom: 55px;
}

.music.format .format-sub-text .sub-heading {
  margin-bottom: 35px;
}

.music.format .link-horizontal ul li a.icon-btn i {
  font-size: 16px;
  height: 62px;
  width: 62px;
  color: #fff;
  border: 2px solid #000;
  background-color: #000;
}

.music.format .link-horizontal ul li a.icon-btn:hover i {
  color: #fff;
  background-color: #fff;
}

.music.artist .album-artist {
  position: relative;
  display: inline-block;
  margin-bottom: 150px;
  width: 100%;
}

.music.artist .album-artist:hover .overlay-img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-filter: unset;
  filter: unset;
}

.music.artist .album-artist:hover .cds {
  -webkit-filter: unset;
  filter: unset;
  opacity: 1;
}

.music.artist .album-artist:hover .cds .cd-animation {
  -webkit-animation: movebounce 20s linear infinite;
  animation: movebounce 20s linear infinite;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.music.artist .album-artist .overlay-img {
  z-index: 2;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-box-shadow: 2.5px 4.33px 76px 0 #000;
  box-shadow: 2.5px 4.33px 76px 0 #000;
}

.music.artist .album-artist .singers {
  padding: 45px;
}

.music.artist .album-artist .singers .name {
  text-transform: uppercase;
}

.music.artist .album-artist .singers .musician {
  font-weight: 300;
}

.music.artist .album-artist .set-z-index {
  z-index: 2;
}

.music.artist .album-artist .cds {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  z-index: 1;
  opacity: 0.2;
  top: 75%;
  left: 50%;
  -webkit-transform: translate(-50%, -25%);
  transform: translate(-50%, -25%);
}

.music.artist .album-artist .cds .cd-animation {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.music.artist .album-artist .cds .elipse {
  display: inline;
  width: auto;
  top: 50%;
  -webkit-transform: translate(80%, -50%);
  transform: translate(80%, -50%);
}

.music.artist .album-artist .cds img {
  display: inline;
  width: auto;
}

.music.artist .artist-text {
  padding: 0 15px;
}

.music.artist .artist-text p.text-para {
  margin-bottom: 15px;
  font-size: 140%;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.music.artist .artist-text .dummy-text {
  font-weight: 400;
}

.music .gallery-slider .owl-carousel .overlay {
  background-image: unset;
  background-color: #000;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.music .gallery-slider .owl-carousel .text-container {
  opacity: 0;
  z-index: 2;
}

.music .gallery-slider .owl-carousel .text-container .overlay-text {
  margin-bottom: -15px;
  font-weight: 300;
}

.music .gallery-slider .owl-carousel .text-container .overlay-text span {
  font-size: 200%;
  display: block;
}

.music .gallery-slider .owl-carousel .owl-item.active.center .overlay {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.8;
}

.music .gallery-slider .owl-carousel .owl-item.active.center .text-container {
  opacity: 1;
}

.music .gallery-slider .owl-carousel .owl-nav {
  margin-top: 40px;
}

.music .gallery-slider .owl-carousel .owl-nav .owl-prev, .music .gallery-slider .owl-carousel .owl-nav .owl-next {
  background: transparent;
  padding-bottom: 0;
  margin-bottom: 0;
}

.music.format .hash-video {
  font-size: 14px;
  font-weight: 600;
}

.music.format .format-sub-text .sub-heading .sub-small-text {
  font-size: 16px;
  font-weight: 200;
}

.music.format .format-sub-text .sub-para {
  font-size: 14px;
  font-weight: 300;
}

.music.format .video-text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.music.format .video-sub-text {
  font-size: 100%;
  font-weight: 400;
  margin-bottom: 35px;
}

.music.format .watch-now {
  height: unset;
  margin-left: 15px;
}

.music.format .watch {
  font-size: 110%;
}

.music .contact-details .contact-heading {
  font-weight: 400;
  margin-bottom: 15px;
  color: #591e1e;
}

.music .contact-details .contact-sub-text {
  font-weight: 300;
  margin-bottom: 8px;
}

.music .form-footer .form-group {
  opacity: 0.7;
  margin-bottom: 30px;
}

.music .form-footer .form-group input, .music .form-footer .form-group textarea {
  width: 100%;
  background-color: #000;
  padding: 15px 30px;
  border: 1px solid #252525;
  border-radius: 25px;
  color: #fff;
}

.music .form-footer .form-group input:focus, .music .form-footer .form-group textarea:focus {
  outline: none;
}

.music .form-footer .form-group input::-webkit-input-placeholder, .music .form-footer .form-group textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}

.music .form-footer .form-group input::-moz-placeholder, .music .form-footer .form-group textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}

.music .form-footer .form-group input:-ms-input-placeholder, .music .form-footer .form-group textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}

.music .form-footer .form-group input:-moz-placeholder, .music .form-footer .form-group textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}

.music .form-footer .booking {
  margin: 0 auto;
}

.music .form-footer .booking .btn {
  margin-top: 5px;
}

.music .form-footer .booking .btn:hover {
  background-color: #fff;
  color: #591e1e;
}

.music.blog .img-container .social-list ul li a i {
  background-color: unset;
  height: 28px;
  width: 28px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.music.blog .img-container .social-list ul li a i:hover {
  background-color: white;
  color: #000;
}

.music.sponsor.bg-music {
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

.music.sponsor .set-margin {
  margin-bottom: -50px;
}

.music.sponsor div .sponsor-img {
  margin-bottom: 50px;
}

.music.sponsor div .sponsor-img .overlay-box {
  display: inline-block;
}

/*************************
music css end
*************************/
/*************************
22. resume-theme css start
*************************/
.bg-pink {
  background-color: #f5f5f8;
}

.resume h1, .resume h2 {
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
}

.resume h4, .resume h5, .resume li {
  margin-top: 0;
  margin-bottom: 0;
}

.resume h1, .resume h2, .resume h3, .resume h4, .resume h5, .resume h6 {
  text-transform: capitalize;
}

.resume h2, .resume h3, .resume h4, .resume h5, .resume h6, .resume li, .resume a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  line-height: normal;
}

.resume h2, .resume h3, .resume h4 {
  color: #000;
}

.resume h6, .resume p {
  color: #000;
}

.resume h1 {
  font-size: calc(22px + (70 - 22) * ((100vw - 300px) / (1920 - 300)));
  color: #000;
  margin-top: -20px;
  line-height: normal;
}

.resume h2 {
  font-size: calc(20px + (35 - 20) * ((100vw - 300px) / (1920 - 300)));
  margin-top: -12px;
  margin-bottom: -4px;
}

.resume h3 {
  font-size: calc(18px + (24 - 18) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
}

.resume h4 {
  font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
}

.resume h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: -2px;
  color: #000;
}

.resume h6 {
  font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-top: -6px;
  margin-bottom: -6px;
}

.resume p {
  font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
  color: #b1b1b1;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: -6px;
}

.resume a {
  font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1920 - 300)));
  color: #000;
}

.resume a:hover {
  text-decoration: none;
  cursor: pointer;
}

.resume a:focus {
  outline: none;
}

.resume .center-text>div {
  margin-top: -30px;
}

.resume.pricing {
  margin-bottom: 0;
}

.resume.counter .counters .counter-img {
  opacity: 0.7;
}

.resume.header .header-text {
  margin-bottom: 35px;
}

.resume.header .header-sub-text {
  margin-bottom: 30px;
}

.resume.about .color-light {
  color: #949494;
}

.resume.about .border-container {
  margin: 15px 0;
}

.resume.about .border-container .borders-bottom {
  border-top: 2px solid #c7c7c7;
  width: 48px;
  margin: 0 auto;
}

.resume.filter-section .filter-container ul.filter>li {
  border-radius: 25px;
}

.resume .radial-bar {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  border-radius: 50%;
  width: 94px;
  height: 94px;
}

.resume .radial-bar.radial-bar-primary {
  background-image: linear-gradient(432deg, #000 50%, transparent 50%, transparent), linear-gradient(270deg, #000 50%, #e3e3e3 50%, #e3e3e3);
}

.resume .radial-bar.radial-90 {
  background-image: linear-gradient(399deg, #000 50%, transparent 50%, transparent), linear-gradient(270deg, #000 50%, #e3e3e3 50%, #e3e3e3);
}

.resume .radial-bar.radial-80 {
  background-image: linear-gradient(350deg, #000 50%, transparent 50%, transparent), linear-gradient(270deg, #000 50%, #e3e3e3 50%, #e3e3e3);
}

.resume .radial-bar.radial-70 {
  background-image: linear-gradient(310deg, #000 50%, transparent 50%, transparent), linear-gradient(270deg, #000 50%, #e3e3e3 50%, #e3e3e3);
}

.resume .radial-bar:after {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  text-align: center;
  color: #000;
  content: attr(data-label);
  background-color: #fff;
  z-index: 1;
  width: 88px;
  height: 88px;
  margin-left: 3px;
  margin-top: 3px;
  line-height: 90px;
  font-weight: 600;
}

/*************************
resume-theme css end
*************************/
/*************************
23. wedding-theme css start
*************************/
.wedding h1, .wedding h2, .wedding h3, .wedding h4, .wedding h5, .wedding h6, .wedding p, .wedding li, .wedding a {
  color: #000;
}

.wedding h2, .wedding h3, .wedding h4, .wedding h5, .wedding h6, .wedding li, .wedding a {
  font-family: 'Poppins', sans-serif;
}

.wedding h1 {
  font-size: calc(22px + (200 - 22) * ((100vw - 300px) / (1920 - 300)));
  font-family: 'Alex Brush', cursive;
  margin-top: -33px;
  margin-bottom: -35px;
  line-height: normal;
}

.wedding h2 {
  font-size: calc(20px + (35 - 20) * ((100vw - 300px) / (1920 - 300)));
  margin-top: -10px;
  margin-bottom: -7px;
  font-weight: 600;
}

.wedding h3 {
  margin-top: 0;
}

.wedding h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
}

.wedding h6 {
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
  margin-bottom: -3px;
}

.wedding p {
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
  margin-bottom: -2px;
}

.wedding .decore img {
  position: absolute;
}

.wedding .decore img:nth-child(1) {
  top: 0;
  right: 0;
}

.wedding .decore img:nth-child(2) {
  bottom: 0;
}

.wedding.format .format-head-text {
  margin-bottom: 15px;
}

.wedding.format .format-sub-text .about-para {
  margin-bottom: 15px;
  font-weight: 300;
}

.wedding .btn-default {
  padding: 16px 35px;
  font-size: calc(13px + (18 - 13) * ((100vw - 300px) / (1920 - 300)));
}

.wedding .header-sub-text {
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.wedding .rightfadediv {
  width: 160px;
}

.wedding.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.wedding.bg.slider-bg {
  background-attachment: fixed;
}

.wedding.bg.countdown-bg .counter-container .gradient-text {
  margin-top: 20px;
  line-height: 1.1;
}

.wedding .owl-theme .owl-dots {
  margin-top: 45px !important;
}

.wedding .gradient-text {
  background: -webkit-linear-gradient(#252525, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.wedding .wedding-banner .frem {
  position: relative;
}

.wedding .wedding-banner .text-container .couple-text .banner-text {
  font-family: 'Alex Brush', cursive;
  font-size: calc(20px + (80 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
  line-height: normal;
}

.wedding .wedding-banner .text-container .couple-text .banner-text.small {
  font-size: calc(18px + (65 - 18) * ((100vw - 300px) / (1920 - 300)));
}

.wedding .wedding-banner .text-container .place {
  font-size: 35px;
  font-weight: 400;
}

.wedding .wedding-banner .text-container .address {
  font-weight: 300;
}

.wedding .schedule .zexson-text {
  font-weight: 400;
}

.wedding .schedule .schedule-date {
  font-weight: 400;
}

.wedding .when-slider .owl-theme .owl-nav {
  margin: 0;
}

.wedding .when-slider .owl-theme .owl-nav .owl-prev, .wedding .when-slider .owl-theme .owl-nav .owl-next {
  background: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.wedding .when-slider .owl-theme .owl-nav .owl-prev {
  left: -130px;
}

.wedding .when-slider .owl-theme .owl-nav .owl-next {
  right: -130px;
}

.wedding.blog .btn.btn-blog:hover {
  color: white;
  background-color: #c0882f;
}

.wedding .title .main-title h2 {
  line-height: normal;
}

.wedding .navbar-nav {
  padding-bottom: 0;
}

.wedding .navbar-nav+.navbar-nav {
  padding-top: 0;
}

/*************************
wedding-theme css end
*************************/
/*************************
24. yoga-theme css start
*************************/
.yoga h4, .yoga h5, .yoga li {
  margin-top: 0;
  margin-bottom: 0;
}

.yoga h1, .yoga h2, .yoga h3, .yoga h4, .yoga h5, .yoga h6 {
  text-transform: capitalize;
}

.yoga h1, .yoga h2, .yoga h3, .yoga h4, .yoga h5, .yoga h6, .yoga p, .yoga li, .yoga a {
  font-family: 'Poppins', sans-serif;
  line-height: normal;
}

.yoga h1 {
  font-size: calc(22px + (60 - 22) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  margin-top: -18px;
  margin-bottom: 0;
  line-height: normal;
}

.yoga h2 {
  font-size: calc(20px + (40 - 20) * ((100vw - 300px) / (1920 - 300)));
  margin-top: -14px;
  margin-bottom: 0;
}

.yoga h3 {
  font-size: calc(18px + (30 - 18) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
}

.yoga h6 {
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
  margin-bottom: 0;
}

.yoga p {
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
  margin-bottom: -2px;
  letter-spacing: 1px;
}

.yoga .gradient-text {
  background: -webkit-linear-gradient(#252525, #000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yoga.header .header-text {
  margin-bottom: 20px;
}

.yoga.header .header-sub-text {
  margin-bottom: 25px;
}

.yoga.format .format-head-text {
  margin-bottom: 30px;
}

.yoga.format .format-head-text .about-font-header span {
  font-weight: 200;
}

.yoga.format .format-sub-text {
  margin-bottom: 50px;
}

.yoga .trainers-slider.owl-carousel .owl-item.active.center .item img {
  -webkit-box-shadow: 0 0 10px 0 #bdbdbd !important;
  box-shadow: 0 0 10px 0 #bdbdbd !important;
}

.yoga.brand-slider {
  padding: 50px 0;
}

.yoga.img-1.bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.yoga .owl-theme .owl-dots {
  margin-top: 0 !important;
}

.yoga .meter {
  position: relative;
  width: 100%;
  height: 42px;
  margin-top: 50px;
  border-radius: 20px;
  background: #f8f8f8;
}

.yoga .meter .progress {
  display: block;
  height: 40px;
  border-radius: 25px;
  background-image: linear-gradient(96deg, #252525 0%, #000 100%);
  -webkit-animation: grower 1s linear;
  animation: grower 1s linear;
  position: relative;
  border: none;
}

.yoga .meter .progress h6 {
  margin-top: unset;
}

.yoga .meter .progress.progress1, .yoga .meter .progress.progress2, .yoga .meter .progress.progress3, .yoga .meter .progress.progress4 {
  position: relative;
}

.yoga .meter .progress.progress1 {
  width: 90%;
}

.yoga .meter .progress.progress2 {
  width: 80%;
}

.yoga .meter .progress.progress3 {
  width: 85%;
}

.yoga .meter .progress.progress4 {
  width: 70%;
}

.yoga .meter .lorem {
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 20px;
}

.yoga .meter .percent {
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 20px;
}

.yoga .meter p {
  position: absolute;
  top: 0;
  margin: 0 10px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #333333;
  text-shadow: 0 1px rgba(255, 255, 255, 0.6);
}

@-webkit-keyframes grower {
  0% {
    width: 0;
  }
}

@keyframes grower {
  0% {
    width: 0;
  }
}

.yoga.event h4 {
  margin-top: unset;
}

.yoga.event h2 {
  margin-bottom: unset;
}

/* 
.yoga.event .row div:nth-child(n+5) .event-container {
  margin-bottom: 0; } */

.yoga.event .event-container {
  margin-bottom: 20px;
}

.yoga.event .event-container h6 {
  font-size: 14px;
}

.yoga.event .event-container .yoga-circle {
  height: 120px;
  width: 120px;
  background: #fff;
  border-radius: 100%;
  padding: 18px 20px;
  text-align: center;
  position: relative;
  left: 0;
  display: inline-block;
}

.yoga.event .event-container .yoga-circle .gradient-text {
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.yoga.event .event-container .yoga-circle .month {
  color: #000;
}

.yoga.event .event-container .event-info {
  margin-left: 20px;
  height: unset;
  -webkit-box-align: unset;
  -ms-flex-align: unset;
  align-items: unset;
}

.yoga.event .event-container .event-info .address {
  font-weight: 400;
}

.yoga.event .event-container .event-info .time, .yoga.event .event-container .event-info .address {
  margin-bottom: 15px;
}

.yoga.event .event-container .event-info .time, .yoga.event .event-container .event-info .city {
  font-weight: 300;
}

.yoga.format .experience-container {
  min-height: 455px;
}

.yoga.format .experience-container .exp-img {
  width: 630px;
  position: absolute;
}

.yoga.format .girl-img-container {
  min-height: 543px;
}

.yoga.format .girl-img-container .girl-yoga {
  width: 600px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.yoga.format .icon-collection li a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.yoga.format .icon-collection li:hover a img {
  -webkit-filter: unset;
  filter: unset;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.yoga.blog .img-container .social-list ul li a i {
  background-color: unset;
  height: 28px;
  width: 28px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.yoga.blog .img-container .social-list ul li a i:hover {
  background-color: white;
  color: #BA38D2;
}

.yoga .yoga-gradiant {
  background-image: linear-gradient(96deg, #BA38D2 0%, #6851DF 100%) !important;
}

.yoga .navbar-nav {
  padding-bottom: 0;
}

.yoga .navbar-nav+.navbar-nav {
  padding-top: 0;
}

/*************************
yoga-theme css end
*************************/
/*************************
25. agency css start
*************************/
.agency h1, .agency h2 {
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
}

.agency h4, .agency h5, .agency li {
  margin-top: 0;
  margin-bottom: 0;
}

.agency h1, .agency h2, .agency h3, .agency h4, .agency h5, .agency h6 {
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
}

.agency h2, .agency h3, .agency h4, .agency h5, .agency h6, .agency li, .agency a {
  font-weight: 500;
}

.agency h1, .agency h2, .agency h3, .agency h4, .agency h5, .agency h6 {
  color: #000;
}

.agency p {
  color: #000;
}

.agency h1 {
  font-size: calc(22px + (45 - 22) * ((100vw - 300px) / (1920 - 300)));
  letter-spacing: 2px;
  margin-top: -17px;
  font-weight: 200;
}

.agency h1 span.bold-text {
  font-weight: 600;
}

.agency h2 {
  font-size: calc(20px + (30 - 20) * ((100vw - 300px) / (1920 - 300)));
  margin-top: -3px;
  margin-bottom: -12px;
  font-weight: 700;
  line-height: 1.2;
}

.agency h3 {
  font-size: calc(18px + (24 - 18) * ((100vw - 300px) / (1920 - 300)));
  line-height: 1.4;
}

.agency h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 300;
  letter-spacing: 0;
  padding-top: 5px;
}

.agency h6 {
  font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: -5px;
  font-weight: 300;
  line-height: normal;
}

.agency h6.borders-before {
  margin-left: 40px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.agency h6.borders-before span:before {
  border-top: 2px solid #000;
  width: 24px;
}

.agency p {
  font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
}

.agency .btn {
  text-transform: uppercase;
}

.agency a {
  text-transform: capitalize;
  letter-spacing: 1px;
}

.agency.about-bg {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.agency.service-bg {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.agency.video-bg {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.agency.counter-bg {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.agency.price-bg {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.agency.expert-bg {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.agency.blog-bg {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.agency.testimonial-bg {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.agency.testimonial-bg span {
  color: rgba(255, 255, 255, 0.7);
}

.agency.testimonial-bg .borders-before span:before {
  border-color: rgba(255, 255, 255, 0.7);
}

.agency.testimonial-bg .testimonial-container.testimonial-container2 {
  -webkit-box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.agency .font-600 {
  font-weight: 600;
}

.agency.header .header-top-line {
  font-weight: 400;
}

.agency.header .header-sub-text p {
  font-size: calc(13px + (18 - 13) * ((100vw - 300px) / (1920 - 300)));
  letter-spacing: 0;
}

.agency.header .btn-default {
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
}

.agency .girl-boy {
  right: 13%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.agency .circle-container {
  position: absolute;
  bottom: 33%;
  right: -15%;
}

.agency .circle-container.small {
  position: absolute;
  top: 3%;
  left: -6%;
}

.agency .circle-container .gradient-circle-big {
  height: 110px;
  width: 110px;
  border-radius: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#252525), to(#000));
  background-image: linear-gradient(90deg, #252525, #000);
}

.agency .circle-container .gradient-circle-small {
  height: 68px;
  width: 68px;
  border-radius: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#252525), to(#000));
  background-image: linear-gradient(90deg, #252525, #000);
}

.agency .plus-container {
  position: absolute;
  top: 15%;
  left: 5%;
  -webkit-animation: star 1s infinite;
  animation: star 1s infinite;
}

.agency .plus-container.plus-container2 {
  top: 25%;
  left: 25%;
}

.agency .plus-container.plus-container3 {
  top: 50%;
  left: 2%;
}

.agency .plus-container.plus-container4 {
  top: 65%;
  left: 32%;
}

.agency .plus-container.plus-container5 {
  top: 80%;
  left: 10%;
}

.agency .plus-container.plus-container6 {
  top: 80%;
  left: 65%;
}

.agency .plus-container.plus-container7 {
  top: 40%;
  left: 35%;
}

.agency .plus-container.plus-container8 {
  top: 40%;
  left: 98%;
}

.agency .plus-container.plus-container9 {
  top: 45%;
  left: 70%;
}

.agency .plus-container.plus-container10 {
  top: 0;
  left: 8%;
}

.agency .plus-container.plus-container11 {
  top: 70%;
  left: 4%;
}

.agency .plus-container .plus {
  position: relative;
}

.agency .plus-container .plus:before, .agency .plus-container .plus:after {
  content: '';
  position: absolute;
  border-radius: 2px;
  color: #000;
}

.agency .plus-container .plus:before {
  border-left: 6px solid;
  height: 19px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.agency .plus-container .plus:after {
  border-top: 6px solid;
  width: 19px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.agency .plus-container .plus.white:before, .agency .plus-container .plus.white:after {
  color: #fff;
}

.agency .plus-container .plus.plus-medium:after {
  width: 16px;
  border-top: 5px solid;
}

.agency .plus-container .plus.plus-medium:before {
  height: 16px;
  border-left: 5px solid;
}

.agency .plus-container .plus.plus-small:after {
  width: 9px;
  border-top: 3px solid;
}

.agency .plus-container .plus.plus-small:before {
  height: 9px;
  border-left: 3px solid;
}

@-webkit-keyframes star {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes star {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.agency .center-content .icon-collection {
  text-align: center;
}

.agency .center-content.unset-height {
  height: unset;
}

.agency .icon-collection {
  display: inline-block;
}

.agency .icon-collection .about-icon {
  padding: 0;
  margin-bottom: 60px;
}

.agency .icon-collection .about-icon:last-child {
  margin-bottom: 0;
}

.agency .icon-collection .about-icon:hover a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.agency.pricing .price-container.shadows {
  -webkit-box-shadow: 2px 1px 10px 0 rgba(178, 178, 178, 0.5);
  box-shadow: 2px 1px 10px 0 rgba(178, 178, 178, 0.5);
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  text-align: center;
  -webkit-filter: none;
  filter: none;
}

.agency.format .format-head-text {
  margin-bottom: 25px;
}

.agency.format .format-sub-text {
  margin-bottom: 30px;
}

.agency.format .format-sub-text .about-para {
  letter-spacing: 1px;
}

.agency.format .borders-before span {
  font-size: 16px;
  font-weight: 500;
}

.agency.format .about-icon {
  margin-left: 18px;
  margin-right: 18px;
}

.agency .icon-collection .about-icon a {
  padding: 45px 25px;
}

.agency .block-span {
  display: block;
}

.agency.video .d-inline-block .bg-video {
  width: 70%;
}

.agency.video .video-text {
  letter-spacing: 1px;
  margin-bottom: -5px;
  text-transform: uppercase;
}

.agency.video .video-heading {
  font-size: calc(18px + (35 - 18) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: 25px;
}

.agency.counter .counter-text .count-number h2 {
  font-weight: 500;
}

.agency.counter .counter-text .count-desc h6 {
  font-weight: 400;
}

.agency.testimonial .testimonial-container.testimonial-container2 {
  background: white;
  border-radius: 20px;
  padding: 40px 40px;
}

.agency.testimonial .testimonial-container.testimonial-container2 .center-content {
  height: unset;
  -webkit-box-align: unset;
  -ms-flex-align: unset;
  align-items: unset;
}

.agency.testimonial .testimonial-container.testimonial-container2 .center-content .name {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}

.agency.testimonial .testimonial-container.testimonial-container2 .center-content .post {
  font-weight: 500;
}

.agency.testimonial .testimonial-container .primary-border {
  border-bottom: 4px solid #000;
  border-radius: 1px;
  width: 33px;
}

.agency.testimonial .testimonial-slider .owl-nav {
  position: absolute;
  top: -80px;
  right: 0;
}

.agency.testimonial .testimonial-slider .owl-nav .owl-prev, .agency.testimonial .testimonial-slider .owl-nav .owl-next {
  background: transparent;
}

.agency.blog .blog-agency .blog-contain {
  border: 1px solid #f3f3f3;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-filter: drop-shadow(0 0 10px #eee);
  filter: drop-shadow(0 0 10px #eee);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.agency.blog .blog-agency .blog-contain:hover {
  -webkit-box-shadow: 1px 1px 10px 1px #eee;
  box-shadow: 1px 1px 10px 1px #eee;
}

.agency.blog .blog-agency .blog-contain .img-container .blog-head {
  color: #000;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 10px;
  padding-top: 0;
}

.agency.blog .blog-agency .blog-contain .img-container i {
  font-size: 16px;
  margin-right: 10px;
  color: #595959;
}

.agency.blog .blog-agency .blog-contain .img-container .blog-info {
  padding: 28px;
}

.agency.blog .blog-agency .blog-contain .img-container .blog-info .font-blog {
  color: #595959;
}

.agency.blog .blog-agency .blog-contain .btn-bottom a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.agency.blog .blog-agency .blog-contain .btn-bottom a:hover {
  opacity: 0.8;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.agency.footer2 .footer-contant .footer-headings {
  color: white;
  padding-bottom: 45px;
}

.agency .para2 {
  padding: 0;
  margin-bottom: 30px;
  letter-spacing: 0;
  color: #9c9c9c;
}

.agencyfooter .footer-lists li a:hover {
  color: #4a71ef;
}

.agencyfooter .footer-social .footer-social-list a:hover {
  color: #4a71ef;
}

.agency.speaker .team-img .social ul li a i {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.agency.speaker .team-img .social ul li a i:hover {
  background-color: white;
  color: #061a5e;
}

.agency-content .agency-header-center-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.agency-content .agency-header-center-container .agency-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.agency-content .agency-header-center-container .agency-head .agency-head-text {
  font-size: 308%;
  font-weight: 600;
  margin-top: -16px;
  margin-bottom: -16px;
}

.agency-content .agency-header-center-container .borders {
  margin-right: 30px;
  color: #000;
  border-right: 2px solid;
  height: 80px;
}

.agency-content .agency-para {
  font-size: calc(13px + (17 - 13) * ((100vw - 300px) / (1920 - 300)));
  letter-spacing: 0;
  margin-left: 30px;
  margin-bottom: 30px;
}

.agency-content .btn-default {
  margin-left: 30px;
}

.agency-content .side-img {
  z-index: 2;
}

.agency-content .blue-img {
  position: absolute;
  left: -14%;
  bottom: 0;
  z-index: 1;
}

/*************************
agency css end
*************************/
/*************************
27. blog css start
*************************/
.blog .img-container {
  display: block;
}

.blog .img-container .blog-info {
  padding: 28px;
  bottom: 0;
}

.blog .img-container .blog-info p {
  margin-bottom: unset;
}

.blog .img-container .blog-info .blog-text {
  letter-spacing: 0;
  margin-bottom: 15px;
}

.blog .img-container .blog-info .font-blog, .blog .img-container .blog-info .blog-text, .blog .img-container .blog-info .borders-before, .blog .img-container .blog-info .small-font, .blog .img-container .blog-info i {
  color: #fff;
}

.blog .img-container .blog-info .font-blog {
  font-weight: 400;
  text-transform: none;
}

.blog .img-container .blog-info .borders-before, .blog .img-container .blog-info .small-font {
  font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1920 - 300)));
  text-transform: none;
  font-weight: 300;
}

.blog .img-container .blog-info .borders-before {
  margin-left: 16px;
  margin-bottom: 10px;
}

.blog .img-container .blog-info .borders-before span:before {
  margin-right: 7px;
  width: 8px;
}

.blog .img-container .blog-info .small-font {
  margin-bottom: 18px;
  line-height: 20px;
}

.blog .img-container .social-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog .img-container .social-list ul li {
  padding: 0 5px;
  text-transform: uppercase;
}

.blog .img-container .social-list ul li a {
  display: inline-block;
  background: -webkit-gradient(linear, left bottom, left top, from(#252525), to(#000));
  background: linear-gradient(to top, #252525, #000);
  height: 28px;
  width: 28px;
  border-radius: 100%;
}

.blog .img-container .social-list ul li a i {
  background-color: #61131f;
  font-size: 13px;
  height: 25px;
  width: 25px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog.wedding .blog-container .set-skew {
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.blog.wedding .blog-container .blog-text {
  margin-bottom: 5px;
  font-weight: 700;
}

.blog.wedding .blog-container .blog-date {
  font-weight: 600;
  margin-bottom: 05px;
  margin-left: -10px;
}

.blog.wedding .blog-container .blog-place {
  font-weight: 600;
  margin-bottom: 20px;
  margin-left: -20px;
}

.blog.wedding .blog-container .blog-para {
  text-indent: 10px;
  margin-bottom: 20px;
  margin-left: -40px;
}

.blog.wedding .owl-theme .owl-dots .owl-dot.active span {
  width: 40px;
}

.blog.wedding .owl-theme .owl-dots .owl-dot span {
  margin-top: 0;
  margin-bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background-image: linear-gradient(#252525, #000);
}

.blog.wedding .btn.btn-blog {
  background: white;
  border: 1px solid #000;
  color: #000;
  font-size: 12px;
  margin-left: -60px;
  border-radius: 0;
  text-transform: capitalize;
}

/*************************
blog  css end
*************************/
/*************************
28. counter css start
*************************/
.counter .counters {
  text-align: center;
}

.counter .counters .count-desc h5 {
  line-height: 1;
}

.counter .counters .counter-img {
  margin-bottom: 20px;
}

.counter .counters .count-number {
  margin-bottom: 20px;
}

.counter .counters .counter-text {
  color: #fff;
}

.counter .counters.hover-counter {
  padding: 35px 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.counter .counters.hover-counter:hover, .counter .counters.hover-counter.active {
  background-color: #fff;
  -webkit-filter: drop-shadow(0 0 5px #eee);
  filter: drop-shadow(0 0 5px #eee);
  cursor: pointer;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.counter.agency .row .counter-container:nth-child(2) .counters {
  background-color: #fff;
  -webkit-filter: drop-shadow(0 0 5px #eee);
  filter: drop-shadow(0 0 5px #eee);
  cursor: pointer;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.counter.event .counters .counter-text .count-desc {
  text-transform: uppercase;
}

.counter.resume .counters .counter-text .count-text {
  font-size: 230%;
}

/*************************
counter css end
*************************/
/*************************
29. contact css start
*************************/
.contact .iframe-container {
  width: 100%;
  height: 100%;
}

.contact .iframe-container iframe {
  height: 100%;
  width: 100%;
}

.contact .set-z-index {
  z-index: 3;
}

.contact .bg-white {
  background-color: #fff;
}

.contact .bg-white form {
  padding: 20px;
}

.contact .bg-white form .form-group {
  margin-bottom: 60px;
}

.contact .bg-white form .form-group .form-control {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #f1f1f1;
  padding: 0;
  background: transparent;
}

.contact .bg-white form .form-group .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact .bg-white form .form-group label {
  color: #000;
  margin-bottom: 0;
  font-weight: 500;
}

.contact .bg-white form .btn-default {
  padding: 14px 30px;
  letter-spacing: 1px;
}

.contact .plane {
  right: 18%;
}

.contact .plane2 {
  opacity: 0.5;
  z-index: 1;
  top: 0;
  right: 0;
}

.contact.event .title {
  z-index: 2;
  position: relative;
}

/*************************
contact css end
*************************/
/*************************
30. schedule css start
*************************/
.schedule .event-container {
  padding-right: 60px;
  max-height: 750px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.schedule .cal-time {
  background-color: #f5f5f8;
  border-radius: 15px;
  padding: 24px;
  width: 100%;
  position: relative;
  margin-bottom: 35px;
}

.schedule .cal-time:last-child {
  margin-bottom: 0;
}

.schedule .cal-time .time {
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.schedule .cal-time .time .monday-text {
  font-weight: 600;
}

.schedule .cal-time i {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #8f8e94;
  font-size: 25px;
}

.schedule .cal-time i.fa-angle-left {
  left: 35px;
}

.schedule .cal-time i.fa-angle-right {
  right: 35px;
}

.schedule .cal-time.events {
  height: unset;
  background-color: #f5f5f8;
  padding: 40px 80px 40px 40px;
}

.schedule .cal-time.events:last-child .timing .event-time:last-child:before {
  border-left: none;
}

.schedule .cal-time.events .schedule-event .names {
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.schedule .cal-time.events .schedule-event .schedule-img {
  margin-bottom: 25px;
}

.schedule .cal-time.events .schedule-event .schedule-description {
  color: #b1b1b1;
  font-size: 150%;
  letter-spacing: 0;
  margin-bottom: -4px;
}

.schedule .cal-time.events .timing {
  text-align: center;
}

.schedule .cal-time.events .timing .event-time {
  color: #8f8e94;
  position: relative;
  padding: 8px;
}

.schedule .cal-time.events .timing .event-time.active {
  margin: 0 auto;
  height: 30px;
  width: 72px;
  border-radius: 14px;
  background-color: #000;
  color: #fff;
}

.schedule .cal-time.events .timing .event-time:last-child:before {
  content: '';
  margin: 18px 0;
  border-left: 2px dashed #8f8e94;
  height: 92px;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 9;
}

.schedule .cal-time.events .timing .border-container .border-dashed {
  margin: 8px 0;
  border-left: 2px dashed #8f8e94;
  height: 55px;
  display: inline-block;
}

.schedule .cal-time.events .timing .border-container .border-dashed.active {
  border-left: 2px dashed #000;
}

.schedule .scrollbar {
  overflow-y: scroll;
}

.schedule .scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #f1f1f1;
  border-radius: 10px;
  background-color: #f1f1f1;
}

.schedule .scrollbar::-webkit-scrollbar {
  width: 10px;
  background-color: #f1f1f1;
}

.schedule .scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #000;
  padding: 5px;
}

.schedule .force-overflow {
  min-height: 450px;
}

/*************************
schedule css end
*************************/
/*************************
32. testimonial css start
*************************/
.testimonial.event .testimonial-msg, .testimonial.saas2 .testimonial-msg {
  z-index: 2;
  display: inline-block;
}

.testimonial.event .testimonial-msg .msg-box, .testimonial.saas2 .testimonial-msg .msg-box {
  height: 65px;
  width: 65px;
  position: absolute;
  right: -22px;
  top: -30px;
  background-color: #fff;
  border-radius: 100%;
  z-index: -1;
}

.testimonial.event .quotes .left-quote, .testimonial.saas2 .quotes .left-quote {
  left: -33px;
  top: -29px;
}

.testimonial.event .quotes .right-quote, .testimonial.saas2 .quotes .right-quote {
  right: 80px;
  top: 60px;
}

.testimonial.event .quotes .quote-text h5, .testimonial.saas2 .quotes .quote-text h5 {
  font-weight: 400;
  color: #fff;
}

.testimonial.event .rating .stars, .testimonial.saas2 .rating .stars {
  display: inline-block;
  margin-right: 25px;
}

.testimonial.event .rating .stars i, .testimonial.saas2 .rating .stars i {
  color: #fff;
  font-size: 20px;
}

.testimonial.event .rating .stars i.yellow, .testimonial.saas2 .rating .stars i.yellow {
  color: #dce400;
}

.testimonial.event .rating .name, .testimonial.saas2 .rating .name {
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
}

.testimonial.event .rating .name span, .testimonial.saas2 .rating .name span {
  font-weight: 300;
}

.testimonial.event img, .testimonial.saas2 img {
  width: auto !important;
}

.testimonial.event .owl-carousel .owl-stage-outer, .testimonial.saas2 .owl-carousel .owl-stage-outer {
  height: auto !important;
}

.testimonial.event .testimonial .owl-theme .owl-next, .testimonial.event .testimonial .owl-theme .owl-prev, .testimonial.saas2 .testimonial .owl-theme .owl-next, .testimonial.saas2 .testimonial .owl-theme .owl-prev {
  background: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.testimonial.event .testimonial .owl-theme .owl-prev, .testimonial.saas2 .testimonial .owl-theme .owl-prev {
  left: 0;
}

.testimonial.event .testimonial .owl-theme .owl-next, .testimonial.saas2 .testimonial .owl-theme .owl-next {
  right: 0;
}

.testimonial.event .owl-nav {
  margin: 0;
}

.testimonial.gym {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonial.music {
  background-position: center;
}

.testimonial.music .testimonial-info .font-large {
  font-weight: 600;
}

.testimonial.music .testimonial-info .font-small {
  font-weight: 300;
}

.testimonial.music .owl-nav {
  margin: 0;
}

.testimonial.gym .testimonial-info, .testimonial.music .testimonial-info, .testimonial.wedding .testimonial-info, .testimonial.yoga .testimonial-info, .testimonial.agency .testimonial-info, .testimonial.creative .testimonial-info {
  margin-top: 50px;
  padding: 0 30px;
}

.testimonial.gym .testimonial-info .testimonial-para, .testimonial.music .testimonial-info .testimonial-para, .testimonial.wedding .testimonial-info .testimonial-para, .testimonial.yoga .testimonial-info .testimonial-para, .testimonial.agency .testimonial-info .testimonial-para, .testimonial.creative .testimonial-info .testimonial-para {
  color: #fff;
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 140%;
  line-height: 1.8;
  letter-spacing: 1px;
}

.testimonial.gym .testimonial-info .font-large, .testimonial.music .testimonial-info .font-large, .testimonial.wedding .testimonial-info .font-large, .testimonial.yoga .testimonial-info .font-large, .testimonial.agency .testimonial-info .font-large, .testimonial.creative .testimonial-info .font-large {
  font-size: 130%;
}

.testimonial.gym .testimonial-info .font-small, .testimonial.music .testimonial-info .font-small, .testimonial.wedding .testimonial-info .font-small, .testimonial.yoga .testimonial-info .font-small, .testimonial.agency .testimonial-info .font-small, .testimonial.creative .testimonial-info .font-small {
  font-size: 95%;
  margin-bottom: -5px;
}

.testimonial.gym .testimonial-container, .testimonial.music .testimonial-container, .testimonial.wedding .testimonial-container, .testimonial.yoga .testimonial-container, .testimonial.agency .testimonial-container, .testimonial.creative .testimonial-container {
  padding: 30px;
  background-color: white;
}

.testimonial.gym .testimonial-container .border-around, .testimonial.music .testimonial-container .border-around, .testimonial.wedding .testimonial-container .border-around, .testimonial.yoga .testimonial-container .border-around, .testimonial.agency .testimonial-container .border-around, .testimonial.creative .testimonial-container .border-around {
  padding: 25px 0;
  border-left: 1px solid #000;
  border-right: 1px solid #252525;
  -o-border-image: linear-gradient(to right, #000, #252525);
  border-image: -webkit-gradient(linear, left top, right top, from(#000), to(#252525));
  border-image: linear-gradient(to right, #000, #252525);
  border-image-slice: 1;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.testimonial.gym .testimonial-slider .owl-theme .owl-dots, .testimonial.music .testimonial-slider .owl-theme .owl-dots, .testimonial.wedding .testimonial-slider .owl-theme .owl-dots, .testimonial.yoga .testimonial-slider .owl-theme .owl-dots, .testimonial.agency .testimonial-slider .owl-theme .owl-dots, .testimonial.creative .testimonial-slider .owl-theme .owl-dots {
  line-height: 0;
}

.testimonial.gym .testimonial-slider .owl-theme .owl-dots .owl-dot span, .testimonial.music .testimonial-slider .owl-theme .owl-dots .owl-dot span, .testimonial.wedding .testimonial-slider .owl-theme .owl-dots .owl-dot span, .testimonial.yoga .testimonial-slider .owl-theme .owl-dots .owl-dot span, .testimonial.agency .testimonial-slider .owl-theme .owl-dots .owl-dot span, .testimonial.creative .testimonial-slider .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: transparent;
  border: 2px solid #fff;
  margin-bottom: 0;
}

.testimonial.gym .testimonial-slider .owl-theme .owl-dots .owl-dot.active span, .testimonial.music .testimonial-slider .owl-theme .owl-dots .owl-dot.active span, .testimonial.wedding .testimonial-slider .owl-theme .owl-dots .owl-dot.active span, .testimonial.yoga .testimonial-slider .owl-theme .owl-dots .owl-dot.active span, .testimonial.agency .testimonial-slider .owl-theme .owl-dots .owl-dot.active span, .testimonial.creative .testimonial-slider .owl-theme .owl-dots .owl-dot.active span {
  border: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background-image: linear-gradient(#fff, #fff);
}

.testimonial.gym .music-testimonial-slider .owl-theme .owl-nav .owl-prev, .testimonial.gym .music-testimonial-slider .owl-theme .owl-nav .owl-next, .testimonial.music .music-testimonial-slider .owl-theme .owl-nav .owl-prev, .testimonial.music .music-testimonial-slider .owl-theme .owl-nav .owl-next, .testimonial.wedding .music-testimonial-slider .owl-theme .owl-nav .owl-prev, .testimonial.wedding .music-testimonial-slider .owl-theme .owl-nav .owl-next, .testimonial.yoga .music-testimonial-slider .owl-theme .owl-nav .owl-prev, .testimonial.yoga .music-testimonial-slider .owl-theme .owl-nav .owl-next, .testimonial.agency .music-testimonial-slider .owl-theme .owl-nav .owl-prev, .testimonial.agency .music-testimonial-slider .owl-theme .owl-nav .owl-next, .testimonial.creative .music-testimonial-slider .owl-theme .owl-nav .owl-prev, .testimonial.creative .music-testimonial-slider .owl-theme .owl-nav .owl-next {
  background-color: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  font-size: 18px;
}

.testimonial.gym .music-testimonial-slider .owl-theme .owl-nav .owl-prev, .testimonial.music .music-testimonial-slider .owl-theme .owl-nav .owl-prev, .testimonial.wedding .music-testimonial-slider .owl-theme .owl-nav .owl-prev, .testimonial.yoga .music-testimonial-slider .owl-theme .owl-nav .owl-prev, .testimonial.agency .music-testimonial-slider .owl-theme .owl-nav .owl-prev, .testimonial.creative .music-testimonial-slider .owl-theme .owl-nav .owl-prev {
  left: -12%;
}

.testimonial.gym .music-testimonial-slider .owl-theme .owl-nav .owl-next, .testimonial.music .music-testimonial-slider .owl-theme .owl-nav .owl-next, .testimonial.wedding .music-testimonial-slider .owl-theme .owl-nav .owl-next, .testimonial.yoga .music-testimonial-slider .owl-theme .owl-nav .owl-next, .testimonial.agency .music-testimonial-slider .owl-theme .owl-nav .owl-next, .testimonial.creative .music-testimonial-slider .owl-theme .owl-nav .owl-next {
  right: -12%;
}

.testimonial.gym .music-testimonial-slider .owl-theme .item img, .testimonial.music .music-testimonial-slider .owl-theme .item img, .testimonial.wedding .music-testimonial-slider .owl-theme .item img, .testimonial.yoga .music-testimonial-slider .owl-theme .item img, .testimonial.agency .music-testimonial-slider .owl-theme .item img, .testimonial.creative .music-testimonial-slider .owl-theme .item img {
  width: auto !important;
}

.testimonial.gym img, .testimonial.music img, .testimonial.wedding img, .testimonial.yoga img, .testimonial.agency img, .testimonial.creative img {
  width: auto !important;
}

.testimonial.agency .testimonial-info {
  padding: 0;
  margin-top: 20px;
}

.testimonial.yoga .testimonial-info .testimonial-para {
  font-weight: 300;
  padding: 0 100px;
  line-height: 2;
}

.testimonial.wedding .testimonial-info .testimonial-para {
  color: #000;
  font-weight: 200;
}

/*************************
testimonial css end
*************************/
/*************************
33. tap to top css start
*************************/
.tap-top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 99;
  color: #fff;
  text-align: center;
  background: #000;
  border-radius: 100%;
  font-size: 22px;
  cursor: pointer;
  line-height: 2.2;
  border: 1px solid #fff;
}

/*************************
tap to top css end
*************************/
/*************************
35. saas1 css start
*************************/
.saas1 h1, .saas1 h2, .saas1 h3, .saas1 h4, .saas1 h5, .saas1 h6, .saas1 li, .saas1 a {
  font-family: 'Poppins', sans-serif;
}

.saas1 h2, .saas1 h3, .saas1 h4, .saas1 h5, .saas1 h6, .saas1 p {
  color: #000;
}

.saas1 h1 {
  font-size: calc(22px + (62 - 22) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  margin-top: -17px;
  margin-bottom: -8px;
  line-height: normal;
}

.saas1 h2 {
  font-size: calc(20px + (40 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
}

.saas1 h3 {
  font-size: calc(18px + (24 - 18) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
  margin-bottom: 0;
}

.saas1 h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
  letter-spacing: 0.085em;
  margin-top: -12px;
  margin-bottom: -12px;
}

.saas1 h6 {
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
  letter-spacing: 0.025em;
  margin-top: 0;
  margin-bottom: 0;
}

.saas1 p {
  font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
  letter-spacing: 0.05em;
  margin-bottom: -7px;
}

.saas1 span {
  text-transform: none;
}

.saas1 span.theme-color {
  color: #000;
}

.saas1 .title img {
  display: inline-block;
  margin-right: 7px;
  vertical-align: baseline;
}

.saas1 .title .main-title {
  display: inline-block;
  margin-bottom: 0;
}

.saas1 .title hr {
  width: 116px;
  height: 2px;
  background-color: #000;
  margin-top: 20px;
  margin-bottom: 20px;
}

.saas1 .title .sub-title p {
  margin-bottom: 0;
}

.saas1 .title .sub-title .p-padding {
  padding: 0 30px;
}

.saas1 .center-text>div {
  margin-top: -25px;
}

.saas1.service .chat-box img {
  height: 80px;
}

.saas1.header h1 span {
  text-transform: none;
}

.saas1.header .slider-logo {
  margin-left: 15px;
  -ms-flex-item-align: center;
  align-self: center;
}

.saas1.header .header-text {
  margin-bottom: 30px;
}

.saas1.header .header-sub-text {
  margin-bottom: 30px;
}

.saas1.header .header-sub-text h3 {
  color: #fff;
  font-weight: 200;
}

.saas1.header .header-sub-text h3 span {
  font-size: 30px;
  font-weight: 600;
  color: #000;
}

.saas1.header h6 {
  color: #fff;
  font-weight: 200;
  text-transform: none;
}

.saas1.header h6 span {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.saas1.header .btn-default {
  background-color: #000;
  color: #fff !important;
  padding: 10px 15px;
  text-transform: uppercase;
  border: 1px solid #000;
  font-weight: 300;
}

.saas1.header .btn-default:hover {
  background-color: transparent !important;
  border: 1px solid #fff;
}

.saas1.header .dot {
  bottom: 4%;
  right: 55px;
}

.saas1.header .background {
  -webkit-animation: movebounce 150s linear infinite;
  animation: movebounce 150s linear infinite;
  bottom: 0;
  width: 100%;
}

.saas1.service .about-chat {
  margin-bottom: -50px;
}

.saas1.service .about-chat .service-container {
  margin-bottom: 50px;
}

.saas1.service .about-chat .service-container .chat-box:hover hr {
  width: 40%;
  background-color: #fb3b64;
}

.saas1.service .about-chat .service-container .feature-content {
  padding-left: 20px;
}

.saas1.service .about-chat .service-container .feature-content .service-heading {
  margin-top: 20px;
  margin-bottom: 15px;
  letter-spacing: unset;
}

.saas1.service .about-chat .service-container .feature-content hr {
  height: 1px;
  width: 75px;
  background-color: #000;
  text-align: left;
  margin: 0;
  margin-bottom: 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.saas1.build-bg {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  counter-reset: section;
  min-height: 740px;
}

.saas1.build-bg .container {
  margin-bottom: 5%;
  margin-top: 5%;
}

.saas1.build-bg .build-right-slider {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 45%;
  display: block;
}

.saas1.build-bg .build-right-slider .owl-carousel.owl-loaded {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  position: absolute;
}

.saas1.build-bg .build-right-slider .owl-carousel .owl-item.active {
  display: block;
}

.saas1.build-bg .owl-dots .owl-dot:before {
  position: absolute;
  counter-increment: section;
  content: counter(section);
  color: #fff;
  left: -5px;
}

.saas1.build-bg .owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

.saas1.build-bg .owl-dots {
  display: inline-block;
  position: absolute;
  margin: 0;
  top: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-35%, -50%);
  transform: translate(-35%, -50%);
  counter-reset: my-sec-counter;
}

.saas1.build-bg .owl-dot {
  counter-increment: my-sec-counter;
  content: counter(my-sec-counter);
  display: block;
  margin-bottom: 20px;
}

.saas1.build-bg .owl-theme .owl-dots .owl-dot {
  display: block;
  margin-bottom: 10px;
}

.saas1.build-bg .owl-theme .owl-dots .owl-dot.active span {
  background-color: #000;
  width: 95px;
}

.saas1.build-bg .owl-theme .owl-dots .owl-dot.active:before {
  color: #000;
}

.saas1.build-bg .owl-theme .owl-dots .owl-dot span {
  width: 75px;
  height: 4px;
  margin-bottom: 25px;
}

.saas1.build-bg .sync1 .item {
  padding: 0;
  margin: 5px;
  color: #fff;
  border-radius: 3px;
  text-align: center;
}

.saas1.build-bg .sync2 .item {
  color: #fff;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.saas1.build-bg .sync2 .item h1 {
  font-size: 18px;
}

.saas1.build-bg .build-box {
  text-align: left;
}

.saas1.build-bg .build-box .build-head {
  font-size: calc(18px + (45 - 18) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.saas1.build-bg .build-box p {
  color: #fff;
  font-weight: 300;
}

.saas1.build-bg .build-box ul {
  margin-top: 45px;
}

.saas1.build-bg .build-box ul li {
  margin-bottom: 18px;
  font-size: 16px;
  color: white;
}

.saas1.build-bg .build-box ul li img {
  margin-right: 15px;
}

.saas1.build-bg .build-box ul li:last-child {
  margin-bottom: 0;
}

.saas1.howitwork {
  background-size: cover;
}

.saas1.howitwork .work-tab .nav-pills .nav-link {
  padding: 0 55px;
  position: relative;
  color: #000;
}

.saas1.howitwork .work-tab .nav-pills .nav-link img {
  -webkit-filter: brightness(0) invert(0);
  filter: brightness(0) invert(0);
  opacity: 0.4;
}

.saas1.howitwork .work-tab .nav-pills .nav-link h6 {
  margin-top: 15px;
  color: #000;
  opacity: 0.5;
  letter-spacing: unset;
}

.saas1.howitwork .work-tab .nav-pills .nav-link.active {
  background-color: transparent;
}

.saas1.howitwork .work-tab .nav-pills .nav-link.active img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}

.saas1.howitwork .work-tab .nav-pills .nav-link.active h6 {
  color: #000;
  margin-bottom: 0;
  opacity: 1;
}

.saas1.howitwork .work-tab .nav-pills .nav-link.active span {
  display: block;
}

.saas1.howitwork .work-tab .nav-pills .nav-link span {
  display: none;
  width: 40px;
  height: 5px;
  background-color: #000;
  position: absolute;
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 30px;
  border-radius: 15px;
}

.saas1.howitwork .work-tab .nav-pills .nav-link span:after, .saas1.howitwork .work-tab .nav-pills .nav-link span:before {
  position: absolute;
  height: 5px;
  width: 10px;
  content: "";
  background-color: #000;
  border-radius: 15px;
}

.saas1.howitwork .work-tab .nav-pills .nav-link span:after {
  right: -25px;
  width: 5px;
}

.saas1.howitwork .work-tab .nav-pills .nav-link span:before {
  left: 45px;
}

.saas1.pricing {
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
}

.saas1.pricing .container {
  margin-bottom: 0;
}

.saas1.pricing .pricing__switcher {
  width: 300px;
  height: 60px;
  margin: 0 auto 50px auto;
  position: relative;
  background-color: #f7f7f7;
  border-radius: 100px;
}

.saas1.pricing .pricing__switcher span {
  font-weight: 600;
  color: #000;
  margin-left: 5px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.saas1.pricing .switcher__buttons {
  width: 100%;
}

.saas1.pricing .switcher__button {
  cursor: pointer;
  width: 50%;
  float: left;
  height: 60px;
  line-height: 60px;
  position: relative;
  z-index: 575;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  font-size: 18px;
}

.saas1.pricing .switcher__border {
  height: 60px;
  width: 50%;
  background-color: #000;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 555;
  margin: 0;
  border: none;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  border-radius: 100px;
}

.saas1.pricing .btn-default.btn-white {
  border: 2px solid #000;
  color: #000 !important;
}

.saas1.pricing .btn-default.btn-white:hover {
  background-color: #000;
  color: #fff !important;
}

.saas1.pricing .switcher__button--enabled {
  color: #fff;
}

.saas1.pricing .switcher__button--enabled span {
  color: #fff;
}

.saas1.pricing .switcher__button:nth-child(1).switcher__button--enabled~.switcher__border {
  left: 0;
}

.saas1.pricing .switcher__button:nth-child(2).switcher__button--enabled~.switcher__border {
  left: 50%;
}

.saas1.pricing .plan-box>div:nth-child(2) .price-box ul li:last-child {
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  margin-left: 30px;
  margin-bottom: 0;
}

.saas1.pricing .plan-box>div:first-child .price-box ul li:nth-last-child(-n + 3) {
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  margin-left: 30px;
}

.saas1.pricing .plan-box .price-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 25px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  opacity: .5;
  margin: 16px 9px;
}

.saas1.pricing .plan-box .price-box img {
  width: auto !important;
  display: inline-block;
}

.saas1.pricing .plan-box .price-box .price-heading {
  text-transform: uppercase;
  font-size: calc(18px + (30 - 18) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
}

.saas1.pricing .plan-box .price-box h4.no-weight {
  font-weight: unset;
  margin: 45px 0 40px 0;
  text-transform: capitalize;
}

.saas1.pricing .plan-box .price-box h4.no-weight span {
  font-weight: 700;
}

.saas1.pricing .plan-box .price-box span {
  font-size: 50px;
}

.saas1.pricing .plan-box .price-box ul {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 40px;
}

.saas1.pricing .plan-box .price-box ul li {
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: 11px;
}

.saas1.pricing .plan-box .price-box ul li img {
  margin-right: 15px;
}

.saas1.pricing .plan-box .price-box ul li span {
  font-size: 16px;
  font-weight: 600;
}

.saas1.pricing .plan-box .price-box ul li:nth-last-child(1) {
  margin-bottom: 30px;
}

.saas1.pricing .plan-box .price-box .btn-theme {
  background-color: #000;
  border: 1px solid #000;
  padding: 12px 25px;
}

.saas1.pricing .plan-box .price-box .btn-theme:hover {
  border: 1px solid #000;
  color: #000 !important;
  background-color: #fff;
}

.saas1.pricing .owl-item.active.center .price-box {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 1;
}

.saas1 .testimonial-bg {
  background-size: cover;
  background-repeat: no-repeat;
}

.saas1.testimonial .testimonial {
  padding: 20px 0 20px 0;
  margin-right: 40px;
  margin-left: 20px;
}

.saas1.testimonial .testimonial-box {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 35px 50px;
  border-radius: 10px;
  -webkit-box-shadow: -5px 2px 22px 0 rgba(0, 0, 0, 0.1);
  box-shadow: -5px 2px 22px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

.saas1.testimonial .testimonial-box h6 {
  letter-spacing: 0.05em;
  text-transform: none;
  line-height: 28px;
}

.saas1.testimonial .testimonial-box:before {
  content: "";
  position: absolute;
  left: 12%;
  bottom: -14px;
  height: 30px;
  width: 30px;
  display: inline-block;
  margin-top: -137px;
  margin-left: -15px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-box-shadow: 7px 7px 12px rgba(0, 0, 0, 0.07);
  box-shadow: 7px 7px 12px rgba(0, 0, 0, 0.07);
}

.saas1.testimonial .testimonial-box img {
  position: absolute;
  top: -20px;
}

.saas1.testimonial .testi-profile img {
  padding-top: 25px;
  padding-left: 25px;
  margin-right: 20px;
}

.saas1.testimonial .testi-profile .media-body {
  margin-top: 45px;
}

.saas1.testimonial .testi-profile h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}

.saas1.testimonial .testi-profile h6 {
  margin: 0;
  letter-spacing: 0.05em;
  font-size: 14px;
  line-height: unset;
}

.saas1.testimonial .testimonial-slider .owl-carousel .owl-item img {
  width: auto;
}

.saas1.testimonial .testimonial-slider .owl-theme .owl-dots .owl-dot {
  display: block;
}

.saas1.testimonial .testimonial-slider .owl-theme .owl-dots .owl-dot span {
  background-color: #000;
  width: 6px;
  height: 7px;
}

.saas1.testimonial .testimonial-slider .owl-theme .owl-dots .owl-dot.active span {
  height: 16px;
  background-color: #000;
}

.saas1.testimonial .testimonial-slider .owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  display: block;
  right: 0;
  margin: 0;
  top: 30%;
  /* left: 50%; */
  margin-right: -2%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.saas1.testimonial .video-box {
  background-image: url("../images/video-pic.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  margin-right: 50px;
  position: relative;
  border-radius: 10px;
}

.saas1.testimonial .video-box img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
}

.saas1.subscribe {
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
}

.saas1.subscribe h6 {
  margin-top: 15px;
  margin-bottom: 0;
  font-weight: 200;
  line-height: 1.6;
}

.saas1.subscribe input[type="email"], .saas1.subscribe input[type="submit"] {
  border-radius: 45px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
}

.saas1.subscribe input[type="email"] {
  background-color: #fafafb;
  border: solid #fafafb;
  color: #c7c7c7;
  width: 310px;
  height: 57px;
}

.saas1.subscribe input[type="submit"] {
  background-color: #000;
  border: solid #000;
  color: #fff;
  margin-left: -50px;
  height: 57px;
  width: 158px;
}

.saas1.subscribe .media img {
  margin-right: 20px;
}

.saas1.subscribe form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.saas1.subscribe .subscribe-input h6 {
  font-weight: 300;
  text-transform: capitalize;
  margin-right: 16px;
}

.saas1.subscribe .subscribe-input .display-flex h6 {
  padding: 0 12px;
}

.saas1.subscribe .subscribe-input .display-flex h6:first-child {
  padding-left: 0;
}

.saas1.subscribe .subscribe-input .display-flex h6:last-child {
  padding-right: 0;
  text-align: left;
}

.saas1.faq .faq-block .frequent-text {
  font-size: calc(18px + (48 - 18) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: 20px;
  margin-top: -15px;
}

.saas1.faq .faq-block h6 {
  font-weight: normal;
  color: #000;
  line-height: 1.8;
}

.saas1.faq .faq-block h6.link {
  font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: -5px;
}

.saas1.faq .faq-block h6.link a {
  color: #41a3ff;
}

.saas1.faq .faq-block .card {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.saas1.faq .faq-block .card-header {
  background-color: transparent;
  font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
  margin-bottom: 0;
}

.saas1.faq .faq-block .card-header button {
  color: #071828;
  font-weight: 500;
  font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1920 - 300)));
  padding: 0;
}

.saas1.faq .faq-block .card-header button:focus, .saas1.faq .faq-block .card-header button:hover {
  text-decoration: none;
}

.saas1.faq .faq-block .faq {
  margin-top: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
}

.saas1.faq .faq-block .card-body {
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  padding-left: 15px;
}

.saas1.faq .faq-block a {
  color: #000;
}

.saas1.faq .faq-block h5 {
  margin-top: 50px;
}

.saas1.faq .rotate {
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.saas1.faq .rotate.down {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.saas1.faq a div {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  margin-right: 20px;
  position: absolute;
  left: 0;
  margin-top: 3px;
}

.saas1.faq .collapsed a div {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  margin-right: 15px;
}

.saas1.blog {
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
}

.saas1.blog .blog-post-slider .slick-slide {
  margin: 0 15px;
}

.saas1.blog .blog-post-slider .post-item {
  -webkit-box-shadow: -2px 2px 6px 1px rgba(0, 0, 0, 0.05);
  box-shadow: -2px 2px 6px 1px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.saas1.blog .blog-post-slider .post-item img {
  width: 45%;
  float: left;
}

.saas1.blog .blog-post-slider .blog-post-info {
  float: right;
  width: 55%;
  padding: 15px;
}

.saas1.blog .blog-post-slider .blog-post-info h3 {
  font-size: 18px;
  color: #000;
}

.saas1.blog .blog-post-slider .blog-post-info .dte {
  font-size: 12px;
  color: #949494;
}

.saas1.blog .blog-post-slider .blog-post-info p {
  color: #000;
}

.saas1.blog .blog-post-slider .slick-prev {
  left: -60px;
}

.saas1.blog .blog-post-slider .slick-prev, .saas1.blog .blog-post-slider .slick-next {
  display: inline-block;
  background-color: transparent;
  border: none;
  font-size: 32px;
  position: absolute;
  top: 40%;
  color: #000;
  cursor: pointer;
}

.saas1.footer2 {
  background-color: #000;
}

.saas1.footer2 .logo-sec .footer-social .footer-social-list {
  padding: 0 5px;
}

.saas1.footer2 .logo-sec li a i {
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000;
  border-radius: 50px;
}

.saas1.footer2 h5.footer-headings {
  margin-top: 0;
}

.saas1.client {
  background: #fafafb;
}

header.saas1 nav ul li>a:hover {
  color: #fb3b64;
}

header.header-absolute {
  position: absolute;
  width: 100%;
}

header.ecommerce {
  position: relative !important;
}

header.ecommerce .responsive-btn i {
  color: #000 !important;
  cursor: pointer;
  line-height: 2;
}

/*************************
saas1 css end
*************************/
/*************************
36. saas2 css start
*************************/
.saas2 h1, .saas2 h2, .saas2 h3, .saas2 h4, .saas2 h5, .saas2 h6, .saas2 li, .saas2 a {
  font-family: 'Poppins', sans-serif;
}

.saas2 h2, .saas2 h3, .saas2 h4, .saas2 h5 {
  color: #000;
}

.saas2 h1 {
  margin-top: -14px;
  line-height: 1;
}

.saas2 h2 {
  font-size: calc(20px + (33 - 20) * ((100vw - 300px) / (1920 - 300)));
}

.saas2 h3 {
  font-size: calc(18px + (28 - 18) * ((100vw - 300px) / (1920 - 300)));
}

.saas2 h4 {
  letter-spacing: 1px;
}

.saas2 h5 {
  font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1920 - 300)));
}

.saas2 h6 {
  font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
}

.saas2 p {
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
  margin-bottom: -3px;
  color: #aaaaaa;
}

.saas2.header .center-text {
  margin-top: 0;
}

.saas2.brand .brand-slider img {
  -webkit-filter: brightness(5) invert(0.5);
  filter: brightness(5) invert(0.5);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 150px;
  margin: 0 auto;
}

.saas2.brand .brand-slider img:hover {
  -webkit-filter: none;
  filter: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.saas2 .link-horizontal {
  margin-top: 40px;
}

.saas2 .saas2-content .header-sub-text h3 {
  line-height: 1;
  margin-bottom: 10px;
}

.saas2.bg-gradient {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background-image: linear-gradient(#252525, #000);
}

.saas2 .title .main-title h2 {
  line-height: 0.9;
}

.saas2 .title .sub-title .sub-title-para {
  color: #000;
}

.saas2.laptop-slider .owl-item img {
  padding: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.saas2.laptop-slider .owl-item.center img {
  padding: 0;
  margin-top: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.saas2.services .service {
  padding: 30px;
  border: none;
}

.saas2.services .service:hover img {
  -webkit-animation: scaleDisappear 0.3s;
  animation: scaleDisappear 0.3s;
}

.saas2.feature {
  position: relative;
  overflow: hidden;
  background-image: url("../images/background.png");
  background-size: contain;
  background-position: right;
}

.saas2.feature .center-content {
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
  -ms-flex-direction: unset;
  flex-direction: unset;
  margin-bottom: 50px;
}

.saas2.feature .center-content .feature-content {
  margin-left: 25px;
}

.saas2.feature .center-content .feature-content .feature-head {
  margin-bottom: 8px;
}

.saas2.feature .center-content .feature-content .feature-para {
  font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1920 - 300)));
}

.saas2.feature .image-container .left-one, .saas2.feature .image-container .right-one {
  position: absolute;
}

.saas2.feature .image-container .advance-feature-img {
  position: relative;
  z-index: 1;
  margin-bottom: -20px;
}

.saas2.feature .image-container .left-one {
  left: -20%;
}

.saas2.feature .image-container .right-one {
  right: -19%;
  bottom: 0;
}

.saas2.quick-sol {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.saas2.quick-sol .set-center-div {
  min-height: 555px;
  position: relative;
}

.saas2.quick-sol .set-center-div .side-img {
  position: absolute;
  right: -14%;
  height: unset;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.saas2 .offers-container .offer-heading-text {
  font-size: calc(20px + (33 - 20) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: 25px;
  font-weight: 400;
  margin-top: -11px;
}

.saas2 .offers-container .bottom-border {
  border: 2px solid #fff;
  width: 83px;
  margin-bottom: 70px;
}

.saas2 .offers-container .offers-content {
  margin-bottom: 40px;
}

.saas2 .offers-container .offers-content:last-child {
  margin-bottom: 0;
}

.saas2 .offers-container .offers-content .offer-main-text {
  font-weight: 300;
  margin-bottom: 15px;
}

.saas2 .offers-container .offers-content .offer-sub-text {
  font-weight: 300;
}

.saas2 .offers-container .offers-content .fa-check-circle {
  color: #fff;
  font-size: 20px;
  margin-right: 20px;
  margin-top: 5px;
}

.saas2.services .saas2-services .row .service-container:nth-child(n+5) {
  margin-top: 30px;
}

.saas2.laptop-slider {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.saas2.laptop-slider .slider-container {
  margin-top: 50px;
}

.saas2.laptop-slider .owl-theme .owl-dots {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  top: -70px;
}

.saas2.laptop-slider .owl-theme .owl-dots .owl-dot span {
  background: #fff !important;
}

.saas2.laptop-slider .owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

.saas2.laptop-slider .slider-container {
  position: relative;
}

.saas2.laptop-slider .slider-container .trainers-slider .owl-carousel .owl-item.active.center img {
  border: 20px solid #ffffff;
  border-radius: 15px;
  background-color: #f3f6fd;
  margin-bottom: 0;
}

.saas2.laptop-slider .slider-container .trainers-slider .owl-carousel .owl-item.active.center:before {
  content: "";
  position: absolute;
  border-radius: 0 0 20px 20px;
  background: #fff;
  z-index: 999;
  width: calc(100% + 100px);
  bottom: -5px;
  left: -50px;
  height: 12px;
}

.saas2.laptop-slider .slider-container .trainers-slider .owl-carousel .owl-item.active.center:after {
  content: "";
  position: absolute;
  width: 140px;
  left: 50%;
  margin-left: -70px;
  border-radius: 5px;
  background: #e4eaf6;
  z-index: 999;
  height: 4px;
  bottom: 6px;
}

.saas2.laptop-slider .slider-container .center-img {
  position: absolute;
  top: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  z-index: 2;
}

.saas2.laptop-slider .slider-container .center-img img {
  max-width: 790px;
}

.saas2.testimonial {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.saas2.testimonial .container {
  margin-bottom: -15px;
}

.saas2.testimonial .quote-margin {
  margin-left: 50px;
}

.saas2.testimonial .quote-text h6 {
  text-transform: none;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: normal;
}

.saas2.footer2 h5 {
  color: #fff;
}

.saas2.footer2 .footer-lists li a {
  font-weight: 200;
}

.saas2.pricing H6 {
  margin-bottom: 8px;
}

/*************************
saas2 css end
*************************/
/*************************
wedding css start
*************************/
.wedding-time {
  margin-bottom: 60px;
}

.wedding-time .count {
  position: relative;
  padding-left: 15px;
  padding-bottom: 15px;
}

.wedding-time .count .days {
  font-family: 'Alex Brush', cursive;
  display: block;
}

.wedding-time .count .days .days-text {
  font-family: 'Alex Brush', cursive;
}

.wedding-time .count .set-border-left {
  position: absolute;
  border-left: 5px solid #000;
  height: calc(100% - 20px);
  left: 0;
  bottom: 0;
}

.wedding-time .count:before, .wedding-time .count:after {
  content: '';
  position: absolute;
}

.wedding-time .count:before {
  border-top: 5px solid #000;
  left: 0;
  width: 15px;
  bottom: calc(100% - 20px);
}

.wedding-time .count:after {
  border-right: 5px solid #252525;
  top: unset;
  left: calc(100% - 20px);
  right: unset;
  height: 15px;
  bottom: 0;
}

.wedding-time .count .set-border-bottom {
  position: absolute;
  -o-border-image: linear-gradient(to right, #000, #252525);
  border-image: -webkit-gradient(linear, left top, right top, from(#000), to(#252525));
  border-image: linear-gradient(to right, #000, #252525);
  border-image-slice: 1;
  border-bottom: 5px solid;
  width: calc(100% - 20px);
  bottom: 0;
  left: 5px;
}

.wedding-time .count .counter-container {
  background-color: #fff;
  padding: 37px 0;
}

/*************************
wedding css end
*************************/
/*************************
event css start
*************************/
.event h4, .event h5, .event li {
  margin-top: 0;
  margin-bottom: 0;
}

.event h1, .event h2, .event h3, .event h4, .event h5, .event h6 {
  text-transform: capitalize;
}

.event h2, .event h3, .event h4, .event h5, .event h6, .event li, .event p, .event a {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
}

.event h2, .event h3, .event h4, .event h5, .event h6, .event p {
  color: #000;
}

.event h1 {
  font-family: 'Satisfy', cursive;
  font-size: calc(22px + (60 - 22) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: -12px;
  margin-top: -9px;
}

.event h2 {
  font-size: calc(20px + (40 - 30) * ((100vw - 300px) / (1920 - 300)));
  margin-top: -2px;
  margin-bottom: -6px;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.4;
}

.event h3 {
  font-size: calc(18px + (30 - 18) * ((100vw - 300px) / (1920 - 300)));
}

.event h4 {
  font-size: calc(16px + (25 - 16) * ((100vw - 300px) / (1920 - 300)));
  margin-top: -6px;
}

.event h5 {
  font-size: calc(16px + (20 - 15) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: -10px;
}

.event h6 {
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: 0;
}

.event p {
  font-size: calc(13px + (18 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: -10px;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.event .animated-bg i {
  left: unset;
  right: 0;
}

.event .btn {
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
  padding: 14px 30px;
}

.event ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.event ul li {
  font-size: 14px;
}

.event .circle {
  position: absolute;
  top: 60px;
  height: 26px;
  width: 26px;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.event .circle:after {
  content: '';
  position: absolute;
  height: 60px;
  width: 4px;
  background: #000;
  top: -63px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.event .circle:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding: 8px;
  margin: 2px;
  border-radius: 100%;
  background-color: #000;
}

.event.bg-img3 {
  background-size: cover;
  background-position: center center;
}

.event.bg-about {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  line-height: 1;
}

.event.bg-about .testiminial {
  margin-bottom: -10px;
}

.event.bg-about::before {
  content: "";
  background-image: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background-image: linear-gradient(#252525, #000);
  top: 0;
  opacity: 0.9;
  height: 100%;
  width: 100%;
  position: absolute;
}

.event .wedding-time {
  margin-bottom: 50px;
}

.event .count {
  margin: 0 5px;
}

.event .count .days {
  font-family: 'Satisfy', cursive;
}

.event .count .days .days-text {
  font-family: 'Satisfy', cursive;
}

.event .count .counter-container {
  background-color: transparent;
  padding: 0 0 20px 0;
}

.event .count .set-border-left {
  border-left: 5px solid #fff;
}

.event .count .set-border-bottom {
  -o-border-image: unset;
  border-image: unset;
  border-bottom: 5px solid #fff;
}

.event .count:before {
  width: 25px;
  border-top: 5px solid #fff;
}

.event .count:after {
  border-right: 5px solid #fff;
  height: 25px;
}

.event .borders-before {
  margin-bottom: 20px;
}

.event .format .format-head-text {
  margin-bottom: 40px;
}

.event .format .format-sub-text p {
  font-weight: 300;
}

.event.speaker .team-img .social ul li a i {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.event.speaker .team-img .social ul li a i:hover {
  background-color: white;
  color: #000;
}

.event.blog .img-container {
  border-radius: 10px;
  overflow: hidden;
}

.event.blog .img-container .social-list ul li a i {
  background-color: unset;
  height: 28px;
  width: 28px;
}

.event.blog .img-container .social-list ul li a i:hover {
  background-color: white;
  color: #BA38D2;
}

.event.testimonial h5 {
  line-height: 1.8;
}

.event.sponsor .sponsor-img {
  margin-bottom: 50px;
}

.event.sponsor .sponsor-img:nth-last-child(-n + 4) {
  margin-bottom: 0;
}

.event.pricing .price-container .price {
  margin-bottom: 30px;
  letter-spacing: 1px;
  color: #464545;
}

.event .filter-section .filter-container ul.filter>li.active {
  border-radius: 25px;
}

.event.portfolio-section .isotopeSelector .overlay {
  border-radius: 15px;
  overflow: hidden;
}

.event.portfolio-section .isotopeSelector .overlay:hover .overlay-background i {
  border-radius: 10px;
}

.event.contact .iframe-container {
  border-radius: 15px 0 0 15px;
  overflow: hidden;
}

.event.contact .bg-white {
  border-radius: 0 15px 15px 0;
  overflow: hidden;
}

/*************************
event css end
*************************/
/*************************
gym css start
*************************/
.gym h1, .gym h2 {
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
}

.gym h4, .gym h5, .gym li {
  margin-top: 0;
  margin-bottom: 0;
}

.gym h1, .gym h2, .gym h3, .gym h4, .gym h5, .gym h6 {
  text-transform: capitalize;
}

.gym h2, .gym h3, .gym h4, .gym h5, .gym h6, .gym li, .gym a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.gym h2, .gym h3, .gym h4 {
  color: #000;
}

.gym h5, .gym h6, .gym p {
  color: #000;
}

.gym h1 {
  font-size: calc(22px + (60 - 22) * ((100vw - 300px) / (1920 - 300)));
  color: #fff;
  font-weight: 200;
  margin-top: -5px;
  margin-bottom: -10px;
}

.gym h2 {
  font-size: calc(20px + (40 - 20) * ((100vw - 300px) / (1920 - 300)));
  margin-top: -5px;
  margin-bottom: -5px;
}

.gym h3 {
  letter-spacing: 1px;
}

.gym h4 {
  font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  margin-top: -8px;
  margin-bottom: -8px;
}

.gym h6 {
  font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
  margin-bottom: 0;
}

.gym .borders-before span:before {
  border-top: 2px solid #000;
}

.gym.pricing .btn-default {
  background-color: #000;
}

.gym.pricing .btn-default:hover {
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gym.brand-slider {
  padding: 50px 0;
}

.gym .btn {
  padding: 14px 35px;
}

.gym .borders-before {
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gym .owl-theme .owl-dots {
  margin-top: 20px !important;
}

.gym .title .borders-before {
  margin-left: 0;
}

.gym .about-img {
  position: relative;
  margin: 35px 0;
}

.gym .about-img .format-img {
  width: 65%;
}

.gym .about-img .border-size {
  position: absolute;
  width: 284px;
  height: 284px;
}

.gym .about-img .border-size.set-border-top {
  top: 0;
  left: 0;
  border-top: 3px solid #000;
  border-left: 3px solid #000;
  margin: 8px;
}

.gym .about-img .border-size.set-border-bottom {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  margin: 8px;
}

.gym .about-img .borders-around .bg-black {
  width: 60%;
}

.gym .about-img .borders-around .bg-black:before, .gym .about-img .borders-around .bg-black:after {
  width: 184px;
  height: 184px;
}

.gym.format .format-head-text {
  margin-bottom: 30px;
}

.gym.format .format-head-text .about-font-header {
  font-weight: 600;
  font-size: calc(25px + (40 - 25) * ((100vw - 300px) / (1920 - 300)));
}

.gym.format .format-sub-text {
  margin-bottom: 45px;
}

.gym.format .format-sub-text .about-para {
  font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1920 - 300)));
  letter-spacing: 0;
}

.gym.format .icon-collection .about-icon .icons {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.gym.format .icon-collection .about-icon:hover .icons {
  -webkit-filter: unset;
  filter: unset;
}

.gym input {
  margin-right: 12px;
  padding: 22px;
}

.gym.bg-schedule {
  background-repeat: no-repeat;
  background-position: right;
  background-size: 1150px;
  background-color: #000;
}

.gym.bg-cal-bmi {
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  background-color: #000;
}

.gym.bg-img3 {
  background-size: cover;
  background-position: center center;
}

.gym .owl-carousel .owl-dots {
  line-height: 0.5;
}

.gym .owl-carousel .owl-dots .owl-dot span {
  margin-bottom: 0;
}

.gym .gym-slider .owl-theme .owl-dots {
  position: absolute;
}

.gym .gym-slider.default-dots .item {
  position: relative;
}

.gym .gym-slider.default-dots .owl-nav {
  display: none;
}

.gym .gym-slider.default-dots .owl-dots {
  bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  z-index: 3;
}

.gym .gym-slider.default-dots .owl-dots .owl-dot.active span {
  background: #fff;
  opacity: 1;
  -webkit-box-shadow: 0 0 10px 1px #c1c0c0;
  box-shadow: 0 0 10px 1px #c1c0c0;
}

.gym .gym-slider.default-dots .owl-dots .owl-dot span {
  background: #fff;
  width: 34px;
  height: 3px;
  border-radius: unset;
  opacity: 1;
}

.gym .gym-about-slider .owl-theme .owl-dots {
  position: absolute;
}

.gym .gym-about-slider.default-dots .item {
  position: relative;
}

.gym .gym-about-slider.default-dots .owl-nav {
  display: none;
}

.gym .gym-about-slider.default-dots .owl-dots {
  bottom: -40px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  z-index: 3;
}

.gym .gym-about-slider.default-dots .owl-dots .owl-dot.active span {
  background: #fff;
  opacity: 1;
  -webkit-box-shadow: 0 0 10px 1px #c1c0c0;
  box-shadow: 0 0 10px 1px #c1c0c0;
}

.gym .gym-about-slider.default-dots .owl-dots .owl-dot span {
  background: #fff;
  width: 34px;
  height: 3px;
  border-radius: unset;
  opacity: 1;
}

.gym .borders-around .bg-black {
  height: 100%;
  width: 80%;
  position: absolute;
  background-color: #000;
  z-index: -1;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.gym .borders-around .bg-black:before, .gym .borders-around .bg-black:after {
  content: '';
  position: absolute;
  width: 125px;
  height: 125px;
}

.gym .borders-around .bg-black:before {
  top: -35px;
  left: -35px;
  border-top: 3px solid #000;
  border-left: 3px solid #000;
}

.gym .borders-around .bg-black:after {
  bottom: -35px;
  right: -35px;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
}

.gym .calculate-bmi {
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  overflow: hidden;
}

.gym .calculate-bmi tr:last-child td {
  border-bottom: none;
}

.gym .calculate-bmi tr td:last-child {
  border-right: none;
}

.gym .calculate-bmi tr td {
  font-size: 16px;
  color: #fff;
  padding: 25px 0 25px 60px;
  font-weight: 500;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.gym .calculate-bmi tr td:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gym.testimonial .testimonial-slider img {
  width: auto !important;
}

.gym.testimonial .testimonial-slider .testimonial-info .testimonial-para {
  font-weight: 200;
  letter-spacing: 0;
  font-size: 138%;
}

.gym.testimonial .testimonial-slider .testimonial-name {
  margin-bottom: 10px;
}

.gym.testimonial .testimonial-slider .testimonial-name .name {
  font-size: 20px;
}

.gym.testimonial .testimonial-slider .testimonial-post .post {
  font-weight: 200;
}

.gym.brand-slider img {
  width: 70%;
  margin: 0 auto;
}

.gym .icon-collection .about-icon, .yoga .icon-collection .about-icon {
  background-color: transparent;
  border: 1px solid #fff;
  -webkit-filter: none;
  filter: none;
}

.gym .icon-collection .about-icon:hover, .yoga .icon-collection .about-icon:hover {
  background-color: white;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*************************
gym css end
*************************/
/*************************
popup css start
*************************/
.login-popup h2 {
  font-weight: 300;
}

.login-modal p {
  color: #8f8e94;
}

.login-modal .btn-default {
  padding: 10px 30px;
}

.login-modal .modal-content {
  border-radius: 0;
}

.login-modal .modal-header {
  background: #252525;
  padding: 0;
}

.login-modal .modal-body {
  padding: 40px;
}

.login-modal .form-group {
  margin-bottom: 25px;
}

.login-modal .form-group input {
  border: 1px solid #eaeaea;
  background-color: #efefef;
  border-radius: 50px;
  padding: 12px;
  padding-left: 30px;
  font-size: 12px;
  height: auto;
}

.login-modal .form-group input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000;
  opacity: 0.7;
}

.login-modal .form-group input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  opacity: 0.7;
}

.login-modal .form-group input:-ms-input-placeholder {
  /* IE 10+ */
  color: #000;
  opacity: 0.7;
}

.login-modal .form-group input:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  opacity: 0.7;
}

.login-modal .form-group label {
  font-weight: 500;
  color: #777;
}

.login-modal .btn {
  margin-top: 20px;
  z-index: 2;
}

.login-modal .nav-item {
  margin-right: 20px;
}

.login-modal .nav-pills .nav-link {
  background-color: transparent;
  font-size: 16px;
  font-weight: 600;
  color: #b1b1b1;
}

.login-modal .nav-pills .nav-link.active {
  color: #000;
  border-bottom: 2px solid;
  border-radius: 0;
}

.login-modal .close {
  position: absolute;
  right: -45px;
  top: 0;
  background: #f5f5f5;
  opacity: 1 !important;
  color: #000;
  z-index: 2;
  margin: 0;
}

.loader-wrapper {
  height: 100vh;
  width: 100vw;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  top: 0;
}

.loader-wrapper .loader {
  position: relative;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-gap: 2px;
  width: 100px;
  height: 100px;
}

.loader-wrapper .loader>div {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-animation: loader 2s infinite linear;
  animation: loader 2s infinite linear;
}

.loader-wrapper .loader>div:nth-of-type(1), .loader-wrapper .loader>div:nth-of-type(5), .loader-wrapper .loader>div:nth-of-type(9) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loader-wrapper .loader>div:nth-of-type(4), .loader-wrapper .loader>div:nth-of-type(8) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loader-wrapper .loader>div:nth-of-type(2), .loader-wrapper .loader>div:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loader-wrapper .loader>div:nth-of-type(3) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

.speaker.team-sec .team-img {
  margin-bottom: 8px;
}

.speaker .team-img {
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  margin-bottom: 10px;
}

.speaker .team-img img {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.speaker .team-img .overlay {
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.speaker .team-img .social {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.speaker .team-img .social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.speaker .team-img .social ul li {
  margin-right: 20px;
}

.speaker .team-img .social ul li:last-child {
  margin-right: 0;
}

.speaker .team-img .social ul li a i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  width: 30px;
  font-size: 16px;
  border: 2px solid #fff;
  border-radius: 100%;
  color: #fff;
}

.speaker .team-img:hover .overlay {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background-image: linear-gradient(#252525, #000);
  top: 0;
  opacity: 0.7;
  height: 100%;
  width: 100%;
  position: absolute;
}

.speaker .team-img:hover .social {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 1;
}

.speaker .employee .e-name {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.speaker .employee .post {
  color: #000;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/*************************
  Popup css end
*************************/
/*************************
trainer slider css start
*************************/
.gym .trainers-slider .owl-carousel .owl-stage-outer, .yoga .trainers-slider .owl-carousel .owl-stage-outer, .creative .trainers-slider .owl-carousel .owl-stage-outer {
  min-height: 325px !important;
  padding-top: 45px;
}

.gym .trainers-slider .owl-carousel .owl-dots .owl-dot.active span, .gym .trainers-slider .owl-carousel .owl-dots .owl-dot:hover span, .yoga .trainers-slider .owl-carousel .owl-dots .owl-dot.active span, .yoga .trainers-slider .owl-carousel .owl-dots .owl-dot:hover span, .creative .trainers-slider .owl-carousel .owl-dots .owl-dot.active span, .creative .trainers-slider .owl-carousel .owl-dots .owl-dot:hover span {
  background: #000;
}

.gym .trainers-slider .owl-carousel .owl-item .trainers-info, .yoga .trainers-slider .owl-carousel .owl-item .trainers-info, .creative .trainers-slider .owl-carousel .owl-item .trainers-info {
  display: none;
}

.gym .trainers-slider .owl-carousel .owl-item.active.center, .yoga .trainers-slider .owl-carousel .owl-item.active.center, .creative .trainers-slider .owl-carousel .owl-item.active.center {
  z-index: 1;
  -webkit-transition: 1s;
  transition: 1s;
}

.gym .trainers-slider .owl-carousel .owl-item.active.center .trainers-info, .yoga .trainers-slider .owl-carousel .owl-item.active.center .trainers-info, .creative .trainers-slider .owl-carousel .owl-item.active.center .trainers-info {
  padding-top: 50px;
}

.gym .trainers-slider .owl-carousel .owl-item.active.center img, .yoga .trainers-slider .owl-carousel .owl-item.active.center img, .creative .trainers-slider .owl-carousel .owl-item.active.center img {
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-box-shadow: 0 0 10px 0 #000;
  box-shadow: 0 0 10px 0 #000;
  margin-bottom: 15px;
}

.gym .trainers-slider .owl-carousel .owl-item.active.center .trainers-info, .yoga .trainers-slider .owl-carousel .owl-item.active.center .trainers-info, .creative .trainers-slider .owl-carousel .owl-item.active.center .trainers-info {
  display: block;
}

.gym .trainers-slider .socials-lists ul li a i, .yoga .trainers-slider .socials-lists ul li a i, .creative .trainers-slider .socials-lists ul li a i {
  height: 30px;
  width: 30px;
  font-size: 10px;
}

/*************************
trainer slider css end
*************************/
/*************************
breadcrumb-section css start
*************************/
.radius-0 {
  border-radius: 0;
}

.owl-theme .owl-nav {
  margin-top: 0;
}

.breadcrumb-section {
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay;
  padding: 10px 0;
}

.breadcrumb-section:not(.breadcrumb-left), .breadcrumb-section:not(.breadcrumb-right), .breadcrumb-section:not(.breadcrumb-slider) {
  /* background: url("../images/inner-page/breadcrumb.jpg"); */
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay;
}

.breadcrumb-section li {
  line-height: normal;
}

.breadcrumb-section.bredcrumb-color {
  background: #000;
}

.breadcrumb-section.breadcrumb-gradient {
  background: linear-gradient(200deg, #252525, #000);
}

.breadcrumb-section.bg1 {
  /* background: url("../images/inner-page/breadcrumb-bg.jpg"); */
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay;
  background-color: #00000094;
}

.breadcrumb-section.bredcrumb-color .breadcrumb-text, .breadcrumb-section.breadcrumb-gradient .breadcrumb-text {
  color: #fff;
}

.breadcrumb-section.bredcrumb-color .breadcrumb li, .breadcrumb-section.breadcrumb-gradient .breadcrumb li {
  color: #fff;
}

.breadcrumb-section.bredcrumb-color .breadcrumb li a, .breadcrumb-section.breadcrumb-gradient .breadcrumb li a {
  color: #fff;
  opacity: 0.7;
}

.breadcrumb-section.bredcrumb-color .breadcrumb li+li:before, .breadcrumb-section.breadcrumb-gradient .breadcrumb li+li:before {
  color: #fff;
}

.breadcrumb-section .breadcrumb-text {
  color: #000;
  font-size: calc(20px + (35 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.breadcrumb-section .breadcrumb {
  padding: 0;
  background: transparent;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb-section .breadcrumb li {
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #000;
}

.breadcrumb-section .breadcrumb li+li:before {
  padding: 8px;
  color: #000;
  content: "/\00a0";
}

.breadcrumb-section .breadcrumb li a {
  color: #000;
  text-decoration: none;
}

.breadcrumb-section .breadcrumb li a:hover {
  color: #000;
  text-decoration: underline;
}

.breadcrumb-section.bg-dark.set-bg-dark {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#252525)) !important;
  background-image: linear-gradient(#000, #252525) !important;
}

.breadcrumb-section.bg-dark.bg-unset {
  background: unset;
}

.breadcrumb-section.bg-dark h2 {
  color: #fff;
}

.breadcrumb-section.bg-dark li {
  color: #fff;
}

.breadcrumb-section.bg-dark li a {
  color: #fff;
}

.breadcrumb-section.bg-dark li a:hover {
  color: #fff;
  opacity: 0.8;
}

.breadcrumb-section.bg-dark li:before {
  color: #fff !important;
}

.breadcrumb-section.bg-dark.bg-fixed {
  background-attachment: fixed;
}

.breadcrumb-section.big-type h2 {
  font-size: calc(20px + (50 - 20) * ((100vw - 300px) / (1920 - 300)));
}

.breadcrumb-section.breadcrumb-slider {
  position: relative;
}

.breadcrumb-section.breadcrumb-slider .owl-nav .owl-prev, .breadcrumb-section.breadcrumb-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  background: transparent;
}

.breadcrumb-section.breadcrumb-slider .owl-nav .owl-prev:hover, .breadcrumb-section.breadcrumb-slider .owl-nav .owl-next:hover {
  background: transparent;
  opacity: 0.7;
}

.breadcrumb-section.breadcrumb-slider .owl-nav .owl-prev i, .breadcrumb-section.breadcrumb-slider .owl-nav .owl-next i {
  font-size: 20px;
}

.breadcrumb-section.breadcrumb-slider .owl-nav .owl-prev {
  left: -20%;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.breadcrumb-section.breadcrumb-slider .owl-nav .owl-next {
  right: -20%;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.breadcrumb-section.breadcrumb-slider:hover .owl-nav .owl-prev, .breadcrumb-section.breadcrumb-slider:hover .owl-nav .owl-next {
  opacity: 1;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.breadcrumb-section.breadcrumb-slider:hover .owl-nav .owl-prev {
  left: 2%;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.breadcrumb-section.breadcrumb-slider:hover .owl-nav .owl-next {
  right: 2%;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.breadcrumb-section.breadcrumb-slider .img-slider .bg1 {
  background: url("../images/inner-page/breadcrumb-bg.jpg");
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: #00000094;
}

.breadcrumb-section.breadcrumb-slider .img-slider .bg2 {
  background: url("../images/inner-page/blogs/1.jpg");
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: #00000094;
}

.breadcrumb-section.breadcrumb-slider .img-slider .bg3 {
  background: url("../images/inner-page/breadcrumb-bg.jpg");
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: #00000094;
}

.breadcrumb-section.breadcrumb-slider .img-slider .bg4 {
  background: url("../images/inner-page/blogs/1.jpg");
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: #00000094;
}

.breadcrumb-section.breadcrumb-slider .set-over {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
}

.breadcrumb-section.video-sec {
  background: unset;
  background-color: unset !important;
  height: 70vh;
}

.breadcrumb-section.video-sec .blocks:before {
  content: '';
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.38);
  position: absolute;
}

/*************************
breadcrumb-section css end
*************************/
/*************************
breadcrumb type css start
*************************/
.breadcrumb-back-none {
  background-image: none !important;
}

.breadcrumb-section-main {
  padding: 150px 0;
  background-color: #f8f8f8;
}

.breadcrumb-section-main .breadcrumb-contain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb-section-main .breadcrumb-contain>div {
  width: 30%;
}

.breadcrumb-section-main .breadcrumb-contain>div ul li {
  line-height: normal;
  display: inline;
  margin-right: 15px;
  position: relative;
}

.breadcrumb-section-main .breadcrumb-contain>div ul li a i {
  margin-right: 15px;
}

.breadcrumb-section-main .breadcrumb-contain>div ul li a:hover {
  color: #000;
}

.breadcrumb-section-main .breadcrumb-contain>div ul li:last-child {
  margin-right: 0;
}

.breadcrumb-section-main .breadcrumb-contain>div .breadcrumb-txt {
  font-weight: 500;
  font-size: calc(20px + (30 - 20) * ((100vw - 300px) / (1920 - 300)));
  margin-top: 0;
  margin-bottom: 0;
}

.breadcrumb-section-main .breadcrumb-contain>div:last-child {
  text-align: right;
  width: 70%;
}

.breadcrumb-section-main.inner-1 {
  background-color: #f8f8f8;
}

.breadcrumb-section-main.inner-1 .breadcrumb-txt {
  font-size: calc(20px + (45 - 20) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: 0;
  font-weight: 500;
}

.breadcrumb-section-main.inner-2 {
  background-color: #f8f8f8;
}

.breadcrumb-section-main.inner-2 .breadcrumb-contain ul li a {
  font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1920 - 300)));
}

.breadcrumb-section-main.inner-2 .breadcrumb-contain .breadcrumb-txt {
  margin-bottom: 0;
}

.breadcrumb-section-main.inner-2 .breadcrumb-contain .breadcrumb {
  text-align: right;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.breadcrumb-section-main.inner-3 {
  background: #f8f8f8;
}

.breadcrumb-section-main.inner-3 .breadcrumb-contain ul li a {
  font-size: calc(16px + (20 - 16) * ((100vw - 300px) / (1920 - 300)));
}

.breadcrumb-section-main.inner-3 .breadcrumb-text {
  font-size: calc(20px + (30 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
  margin-top: 0;
}

.breadcrumb-section-main.inner-4 .breadcrumb-contain ul li a {
  font-size: calc(14px + (20 - 14) * ((100vw - 300px) / (1920 - 300)));
}

.breadcrumb-section-main.breadcrumb-section-sm {
  padding: 50px 0;
}

.breadcrumb-section-main.breadcrumb-section-sm .breadcrumb-contain .breadcrumb-txt {
  font-size: calc(18px + (20 - 18) * ((100vw - 300px) / (1920 - 300)));
}

.breadcrumb-section-main.breadcrumb-section-sm .breadcrumb-contain ul li a {
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
}

/*************************
breadcrumb type css end
*************************/
/*************************
blog-section css start
*************************/
.blog-sec .blog-list .blog-agency .blog-contain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-sec.videos .video {
  background-blend-mode: overlay;
  background-color: #00000094;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 200px 0;
}

.blog-sec.detail2 .bg-blog-detail {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: calc(100vh - 90px);
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.65);
}

.blog-sec.detail2 .bg-blog-detail .feature-text {
  font-size: calc(20px + (50 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blog-sec .blog-detail-slider .owl-nav .owl-prev, .blog-sec .blog-detail-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: transparent;
}

.blog-sec .blog-detail-slider .owl-nav .owl-prev img, .blog-sec .blog-detail-slider .owl-nav .owl-next img {
  -webkit-transition: 1s;
  transition: 1s;
}

.blog-sec .blog-detail-slider .owl-nav .owl-prev:hover, .blog-sec .blog-detail-slider .owl-nav .owl-next:hover {
  background: transparent;
}

.blog-sec .blog-detail-slider .owl-nav .owl-prev:hover img, .blog-sec .blog-detail-slider .owl-nav .owl-next:hover img {
  -webkit-filter: grayscale(0) brightness(0);
  filter: grayscale(0) brightness(0);
  -webkit-transition: 1s;
  transition: 1s;
}

.blog-sec .blog-detail-slider .owl-nav .owl-prev {
  left: 5px;
}

.blog-sec .blog-detail-slider .owl-nav .owl-next {
  right: 5px;
}

.blog-sec.blog .isotopeContainer .blog-agency .blog-contain {
  display: block;
}

.blog-sec.blog .container, .blog-sec.blog .container-fluid {
  margin-bottom: -30px;
}

.blog-sec.blog .blog-agency {
  margin-bottom: 30px;
}

.blog-sec.blog .blog-agency .blog-info .btn-bottom {
  margin-bottom: -5px;
}

.blog-sec.portfolio-section .isotopeSelector:hover img {
  -webkit-transform: unset;
  transform: unset;
}

.blog-sec.portfolio-section .btn {
  border-radius: 50px;
}

.blog-sidebar .blog-title {
  position: relative;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 30px;
  padding-bottom: 15px;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1;
}

.blog-sidebar .blog-title:before {
  content: '';
  border-bottom: 4px solid #000;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-sidebar .blog-title:hover:before {
  width: 25%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-sidebar .sidebar-container {
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}

.blog-sidebar .sidebar-container.insta {
  margin-bottom: 0;
}

.blog-sidebar .sidebar-container .sidebar-list li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.blog-sidebar .sidebar-container .sidebar-list li a {
  color: #000;
  margin-left: 15px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.blog-sidebar .sidebar-container .sidebar-list li a:hover {
  margin-left: 25px;
}

.blog-sidebar .sidebar-container .sidebar-list li a i {
  position: absolute;
  left: 10px;
  top: 12px;
}

.blog-sidebar .sidebar-container .newsletter .form-group {
  position: relative;
}

.blog-sidebar .sidebar-container .newsletter .form-group i {
  position: absolute;
  right: 4%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-size: 15px;
}

.blog-sidebar .post-container {
  margin-bottom: 20px;
}

.blog-sidebar .post-container .post-head {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-sidebar .post-container .date {
  color: #000;
}

.blog-sidebar .post-container div {
  position: relative;
}

.blog-sidebar .post-container div.w-35 {
  width: 35%;
}

.blog-sidebar .post-container div.w-35 img {
  border-radius: 4px;
}

.blog-sidebar .post-container div .badge {
  background: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  position: absolute;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 0;
}

.blog-sidebar .post-container div .badge.badge-red {
  background: #e3154f;
}

.blog-sidebar .post-container div .badge.badge-blue {
  background: #41a3ff;
}

.blog-sidebar .post-container div .badge.badge-yellow {
  background: #ffd200;
}

.blog-sidebar input {
  padding: 16px 36px 16px 16px;
}

.blog-sidebar .blog-insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-sidebar .blog-insta:last-child li {
  margin-bottom: 0;
}

.blog-sidebar .blog-insta li {
  margin-right: 5px;
  margin-bottom: 5px;
}

.blog-sidebar .blog-insta li:last-child {
  margin-right: 0;
}

.blog-sidebar.blog-split .blog-list:nth-child(even) {
  text-align: right;
}

.blog-sidebar.blog-split .blog-list:nth-child(even) .center-text {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/*************************
breadcrumb-section css end
*************************/
/*************************
error css start
*************************/
.error-sec {
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#252525));
  background: linear-gradient(#000, #252525);
  background-position: center;
  height: 100vh;
}

.error-sec .error-title {
  margin-top: -100px;
  margin-bottom: -50px;
  line-height: normal;
  font-size: 260px;
  font-weight: 500;
  color: #fff;
}

.error-sec .error-msg {
  font-weight: 500;
}

.spin-earth-on-hover {
  -webkit-transition: ease 200s !important;
  transition: ease 200s !important;
  -webkit-transform: rotate(-3600deg) !important;
  transform: rotate(-3600deg) !important;
}

/*************************
error css end
************************/
@-webkit-keyframes rocket-movement {
  100% {
    -webkit-transform: translate(120px, -60px);
    transform: translate(120px, -60px);
  }
}

@keyframes rocket-movement {
  100% {
    -webkit-transform: translate(120px, -60px);
    transform: translate(120px, -60px);
  }
}

@-webkit-keyframes spin-earth {
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    -webkit-transition: -webkit-transform 20s;
    transition: -webkit-transform 20s;
    transition: transform 20s;
    transition: transform 20s, -webkit-transform 20s;
  }
}

@keyframes spin-earth {
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    -webkit-transition: -webkit-transform 20s;
    transition: -webkit-transform 20s;
    transition: transform 20s;
    transition: transform 20s, -webkit-transform 20s;
  }
}

@-webkit-keyframes move-astronaut {
  100% {
    -webkit-transform: translate(-10px, -10px);
    transform: translate(-10px, -10px);
  }
}

@keyframes move-astronaut {
  100% {
    -webkit-transform: translate(-10px, -10px);
    transform: translate(-10px, -10px);
  }
}

@-webkit-keyframes rotate-astronaut {
  100% {
    -webkit-transform: rotate(-720deg);
    transform: rotate(-720deg);
  }
}

@keyframes rotate-astronaut {
  100% {
    -webkit-transform: rotate(-720deg);
    transform: rotate(-720deg);
  }
}

@-webkit-keyframes glow-star {
  40% {
    opacity: 0.3;
  }

  90%, 100% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    border-radius: 999999px;
  }
}

@keyframes glow-star {
  40% {
    opacity: 0.3;
  }

  90%, 100% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    border-radius: 999999px;
  }
}

.bg-purple {
  background: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
  background: linear-gradient(#252525, #000);
  height: 100vh;
  overflow: hidden;
}

.section-404 .btn-default:hover {
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
}

.section-404 .text-404 {
  font-size: 15px;
  letter-spacing: 1px;
  margin: 10px 50px;
  font-weight: 300;
}

.section-404 .central-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section-404 .sub-text {
  margin-top: 50px;
  margin-bottom: 10px;
}

.section-404 .objects img {
  z-index: 90;
  pointer-events: none;
}

.section-404 .object_rocket {
  z-index: 95;
  position: absolute;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  top: 75%;
  pointer-events: none;
  width: 150px;
  -webkit-animation: rocket-movement 20s linear infinite both running;
  animation: rocket-movement 20s linear infinite both running;
}

.section-404 .object_earth {
  position: absolute;
  top: 20%;
  left: 15%;
  z-index: 90;
  width: 100px;
}

.section-404 .object_moon {
  position: absolute;
  top: 12%;
  left: 25%;
  width: 80px;
}

.section-404 .object_astronaut {
  width: 170px;
  -webkit-animation: rotate-astronaut 200s infinite linear both alternate;
  animation: rotate-astronaut 200s infinite linear both alternate;
}

.section-404 .box_astronaut {
  z-index: 110 !important;
  position: absolute;
  top: 60%;
  right: 16%;
  will-change: transform;
  -webkit-animation: move-astronaut 5s infinite linear both alternate;
  animation: move-astronaut 5s infinite linear both alternate;
}

.section-404 .image-404 {
  position: relative;
  z-index: 100;
  pointer-events: none;
}

.section-404 .stars {
  background-repeat: repeat;
  background-size: contain;
  background-position: left top;
  height: 100vh;
}

.section-404 .text-inner {
  font-size: calc(100px + (250 - 100) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 700;
  margin-top: -52px;
  line-height: 1;
}

.section-404 .glowing_stars .star {
  position: absolute;
  border-radius: 100%;
  background-color: #fff;
  width: 3px;
  height: 3px;
  opacity: 0.3;
  will-change: opacity;
}

.section-404 .glowing_stars .star:nth-child(1) {
  top: 80%;
  left: 25%;
  -webkit-animation: glow-star 2s infinite ease-in-out alternate 1s;
  animation: glow-star 2s infinite ease-in-out alternate 1s;
}

.section-404 .glowing_stars .star:nth-child(2) {
  top: 20%;
  left: 40%;
  -webkit-animation: glow-star 2s infinite ease-in-out alternate 3s;
  animation: glow-star 2s infinite ease-in-out alternate 3s;
}

.section-404 .glowing_stars .star:nth-child(3) {
  top: 25%;
  left: 25%;
  -webkit-animation: glow-star 2s infinite ease-in-out alternate 5s;
  animation: glow-star 2s infinite ease-in-out alternate 5s;
}

.section-404 .glowing_stars .star:nth-child(4) {
  top: 75%;
  left: 80%;
  -webkit-animation: glow-star 2s infinite ease-in-out alternate 7s;
  animation: glow-star 2s infinite ease-in-out alternate 7s;
}

.section-404 .glowing_stars .star:nth-child(5) {
  top: 90%;
  left: 50%;
  -webkit-animation: glow-star 2s infinite ease-in-out alternate 9s;
  animation: glow-star 2s infinite ease-in-out alternate 9s;
}

.coming-soon {
  min-height: 100vh;
}

.coming-soon.coming-soon-2 {
  background-position: center;
  background-size: cover;
  min-height: 100%;
  background-blend-mode: overlay;
  background-color: rgba(0, 0, 0, 0.6);
}

.coming-soon .bg-coming-soon {
  background-position: center;
  background-size: cover;
  height: 100%;
}

.coming-soon .socials-lists ul li {
  padding: 0 10px;
}

.coming-soon .center-container {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.coming-soon .our-web-text {
  font-weight: 500;
  letter-spacing: 1px;
}

.coming-soon .launch-text, .coming-soon .launch-text2 {
  text-transform: uppercase;
  color: #b1b1b1;
}

.coming-soon .launch-text {
  margin-top: 20px;
  margin-bottom: 80px;
  letter-spacing: 1px;
}

.coming-soon .launch-text2 {
  margin-top: 30px;
  margin-bottom: 60px;
}

.coming-soon .coming-logo {
  margin-bottom: 45px;
}

.coming-soon .counters-content {
  display: inline-block;
}

.coming-soon .count {
  text-align: center;
  border-right: 1px solid #777;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.coming-soon .count.no-border {
  border-right: none;
}

.coming-soon .count span {
  font-size: calc(13px + (16 - 13) * ((100vw - 320px) / (1920 - 320)));
  display: block;
  padding-top: 10px;
}

.coming-soon .count h2 {
  font-family: 'Work Sans', sans-serif;
  padding: 0 40px;
}

.coming-soon .count .days {
  font-weight: 300;
}

.coming-soon .count .days-text {
  font-size: calc(20px + (38 - 20) * ((100vw - 320px) / (1920 - 320)));
}

/*************************
error css end
*************************/
/*************************
  Filter css start
*************************/
.filter-section .filter-container {
  text-align: center;
  padding: 0 0 50px;
}

.filter-section .filter-container ul.filter>li {
  padding: 0 25px;
}

.filter-section .filter-container ul.filter>li>a {
  color: #777;
  font-size: calc(14px + (15 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 2.2;
  letter-spacing: 1px;
}

.filter-section .filter-container ul.filter>li>a:hover, .filter-section .filter-container ul.filter>li>a:focus {
  text-decoration: none;
  color: #000;
  outline: none;
}

.filter-section .filter-container ul.filter>li.active {
  background-color: #000;
}

.filter-section .filter-container ul.filter>li.active a {
  color: #fff;
}

.filter-section .filter-container ul.filter>li span {
  color: #dddddd;
  font-size: 20px;
  display: inline-block;
  margin: 0 5px;
}

.filter-section .filter-container .filter>li {
  padding: 0;
  margin: 0;
}

.filter-section .title1 .title-inner1 {
  margin-top: -5px;
}

.filter-section h1 {
  text-align: center;
}

/*************************
  Filter css ends
*************************/
/*************************
  Portfolio Start
*************************/
.portfolio-section.videos .video {
  background-blend-mode: overlay;
  background-color: #00000094;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 200px 0;
}

.portfolio-section.resume .container, .portfolio-section.resume .container-fluid, .portfolio-section.event .container, .portfolio-section.event .container-fluid, .portfolio-section.wedding .container, .portfolio-section.wedding .container-fluid, .portfolio-section.creative .container, .portfolio-section.creative .container-fluid, .portfolio-section.portfolio-metro .container, .portfolio-section.portfolio-metro .container-fluid {
  margin-bottom: -30px;
}

.portfolio-section.resume .container .isotopeSelector, .portfolio-section.resume .container-fluid .isotopeSelector, .portfolio-section.event .container .isotopeSelector, .portfolio-section.event .container-fluid .isotopeSelector, .portfolio-section.wedding .container .isotopeSelector, .portfolio-section.wedding .container-fluid .isotopeSelector, .portfolio-section.creative .container .isotopeSelector, .portfolio-section.creative .container-fluid .isotopeSelector, .portfolio-section.portfolio-metro .container .isotopeSelector, .portfolio-section.portfolio-metro .container-fluid .isotopeSelector {
  margin-bottom: 30px;
}

.portfolio-section .list-inline {
  display: block;
}

.portfolio-section .list-inline li {
  display: inline-block;
}

.portfolio-section .list-inline li a {
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 0;
}

.portfolio-section .center_tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.portfolio-section .article-title {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  color: white;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: center;
  float: left;
  font-size: 18px;
  line-height: 24px;
}

.portfolio-section .article-title a {
  color: white;
}

.portfolio-section .isotopeSelector {
  float: left;
  width: 100%;
  position: relative;
}

.portfolio-section .isotopeSelector .overlay {
  opacity: 1;
  position: relative;
}

.portfolio-section .isotopeSelector .overlay:before {
  content: '';
}

.portfolio-section .isotopeSelector img {
  width: 100%;
  height: auto;
}

.portfolio-section .isotopeSelector img {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.portfolio-section .isotopeSelector .overlay-background {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.portfolio-section .isotopeSelector .overlay-background i {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 22px;
  display: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 50px;
  height: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.portfolio-section .isotopeSelector .overlay:hover img {
  -webkit-transform: scale(1.2) rotate(2deg);
  transform: scale(1.2) rotate(2deg);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.portfolio-section .isotopeSelector .overlay:hover .overlay-background {
  -webkit-transform: scale(1);
  transform: scale(1);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.portfolio-section .isotopeSelector .overlay:hover .overlay-background i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.portfolio-section .isotopeSelector .overlay:hover .overlay-background.wedding-overlay {
  background-color: unset;
  background-image: linear-gradient(109deg, rgba(0, 0, 0, 0.7) 0%, rgba(37, 37, 37, 0.7) 52%, rgba(0, 0, 0, 0.7) 100%);
}

.portfolio-section .border-portfolio {
  overflow: hidden;
}

.portfolio-section #form2 {
  padding-bottom: 20px;
}

.portfolio-section #form2 .filter-button {
  width: unset !important;
}

.portfolio-section .filter-button {
  padding: 0 24px;
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 35px;
  border: none;
  background-color: white;
  cursor: pointer;
}

.portfolio-section .filter-button.active {
  background-color: #000;
  color: #fff;
}

.portfolio-section.metro-section .product-box .product-detail {
  opacity: 0;
  position: absolute;
  background-color: #fff;
  padding: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 80%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -10px;
  text-align: center;
}

.portfolio-section.metro-section .product-box .product-detail a {
  padding-top: 0;
}

.portfolio-section.metro-section .product-box .product-detail h6 {
  color: #777;
  padding-top: 0;
  line-height: normal;
  margin-top: 0;
}

.portfolio-section.metro-section .product-box .product-detail h4 {
  font-weight: 400;
  color: #000;
}

.portfolio-section.metro-section .product-box .cart-wrap {
  top: 30px;
  bottom: unset;
  right: 30px;
}

.portfolio-section.metro-section .product-box .cart-wrap button {
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.portfolio-section.metro-section .product-box .cart-wrap button i {
  padding: 7px;
  color: #777;
}

.portfolio-section.metro-section .product-box .cart-wrap a i {
  border: 1px solid #fff;
  margin: 5px 0;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 7px;
  color: #777;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.portfolio-section.metro-section .product-box:hover .product-detail {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: 15px;
}

.portfolio-section.metro-section .product-box:hover .cart-wrap button {
  -webkit-animation: none;
  animation: none;
}

.portfolio-section.metro-section .product-box:hover .cart-wrap a i {
  opacity: 1;
}

.portfolio-section.metro-section .product-box:hover .cart-wrap a:nth-child(2) i {
  -webkit-animation: fadeInDown 500ms ease-in-out;
  animation: fadeInDown 500ms ease-in-out;
}

.portfolio-section.metro-section .product-box:hover .cart-wrap a:nth-child(3) i {
  -webkit-animation: fadeInDown 700ms ease-in-out;
  animation: fadeInDown 700ms ease-in-out;
}

.portfolio-section.metro-section .product-box:hover .cart-wrap a:nth-child(4) i {
  -webkit-animation: fadeInDown 1000ms ease-in-out;
  animation: fadeInDown 1000ms ease-in-out;
}

.portfolio-section .portfolio-text {
  margin-top: 10px;
}

.portfolio-section .portfolio-text .head-text {
  text-transform: capitalize;
  margin-bottom: 10px;
  line-height: 100px;
}

.portfolio-section .portfolio-text .head-sub-text {
  color: #808080;
}

.portfolio-section.masonray-sec .filter-section .filter-container {
  padding: 0 0 20px;
}

.portfolio-section.masonray-sec .border-portfolio {
  margin-top: 30px;
}

.portfolio-section.masonray-sec.titles .head-text {
  line-height: 2;
  margin-bottom: 0;
}

.portfolio-creative .isotopeSelector {
  overflow: hidden;
}

.portfolio-creative .head-text {
  font-size: calc(20px + (50 - 20) * ((100vw - 300px) / (1920 - 300)));
  font-weight: 600;
  text-transform: uppercase;
  margin-top: -20px;
  margin-bottom: 12px;
  position: relative;
}

.portfolio-creative .head-text:before {
  content: '';
  border-bottom: 3px solid;
  width: 60px;
  position: absolute;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
}

.portfolio-creative .head-sub-text {
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #808080;
  padding: 0 80px;
  margin-top: 15px;
}

.portfolio-creative.creative2 .head-text {
  font-size: calc(20px + (25 - 20) * ((100vw - 300px) / (1920 - 300)));
  line-height: 60px;
}

.portfolio-creative.creative3 .portfolio-text {
  padding: 50px 15px;
  margin-top: 0;
}

.portfolio-creative.creative3 .portfolio-text .head-text, .portfolio-creative.creative3 .portfolio-text .header-sub-text {
  display: inline-block;
}

.portfolio-creative.creative3 .portfolio-text .head-text:before {
  -webkit-transform: unset;
  transform: unset;
  left: 0;
}

.portfolio-creative.creative3 .portfolio-text .head-sub-text {
  padding: 0;
  margin: 0;
}

.pagination_sec {
  margin-top: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pagination_sec ul li {
  height: 50px;
  width: 50px;
  margin: 0 10px;
  background: #eceaea;
  display: inline-block;
}

.pagination_sec ul li .prev, .pagination_sec ul li .next {
  background: #f7f7f7;
}

.pagination_sec ul li a {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.pagination_sec ul li a.active, .pagination_sec ul li a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #000;
  color: #eceaea;
}

.portfolio-detail h5 {
  margin-top: -6px;
}

.portfolio-detail .detail-head {
  font-size: calc(18px + (30 - 18) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: 25px;
}

.portfolio-detail .detail-container {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.portfolio-detail .detail-container .portfolio-left {
  width: 25%;
}

.portfolio-detail .detail-container .portfolio-left .text-left {
  font-weight: 500;
}

.portfolio-detail .detail-container .portfolio-right {
  width: 75%;
}

/*************************
  Portfolio Ends
*************************/
/*************************
  Single-blog Sec start
*************************/
.single_blog_item .blog-text h6 {
  margin-top: 15px;
  font-weight: 500;
  color: #777;
}

.single_blog_item .blog-text .blog-head {
  font-weight: 500;
  margin-bottom: 22px;
  margin-top: 10px;
}

.single_blog_item .blog-text .blog-description {
  border-bottom: 1px solid rgba(51, 51, 51, 0.25);
  padding-bottom: 20px;
}

.single_blog_item .blog-text .blog-description p {
  font-weight: 400;
  color: #777;
  margin-bottom: 25px;
  letter-spacing: 0;
}

.single_blog_item .blog-text .blog-description h5 {
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
}

.single_blog_item .blog-text .blog-description h5.pull-right {
  display: inline-block;
}

.single_blog_item .blog-text .blog-description h5.pull-right i {
  color: #000;
}

.page-header-comment {
  margin-top: 25px;
  margin-bottom: 0;
  font-weight: 500;
}

.blog_comment.comment-list .comment_sec {
  padding: 15px 0 0;
}

.blog_comment.comment-list .comment_sec .blog_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog_comment.comment-list .comment_sec .blog_center .thumbnail {
  display: block;
  padding: 4px;
  margin: 0;
  background-color: #fff;
  border-radius: 5px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.blog_comment.comment-list .comment_sec .blog_center .thumbnail img {
  border-radius: 50%;
  width: 50px;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user {
  margin-left: 15px;
  width: 100%;
  position: relative;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .link-btn {
  color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  float: right;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .link-btn:hover {
  color: #777;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .right {
  float: right;
  padding: 5px 10px 0;
  color: #777;
  text-transform: capitalize;
  font-weight: 300;
  margin-bottom: -3px;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .right:hover {
  color: #000;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .text-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(51, 51, 51, 0.25);
  padding: 10px 0;
  position: relative;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .text-left .right_text {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 20px;
  background-color: #808080;
  font-weight: 500;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .text-left .comment-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .text-left .comment-user h6 {
  margin: 0;
  line-height: 0;
  font-weight: 500;
  color: #777;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .text-left .comment-user i {
  color: #000;
  margin-right: 5px;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .text-left .comment-date {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .text-left .comment-date h6 {
  margin: 0;
  line-height: 0;
  color: #777;
  font-weight: 500;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .text-left .comment-date i {
  color: #000;
  margin-right: 5px;
}

.blog_comment.comment-list .comment_sec .blog_center .blog_user .panel-body .comment-post p {
  margin-bottom: 0;
  padding: 15px 0 0 0;
  font-weight: 400;
  color: #777;
  letter-spacing: 0;
}

.blog_comment.comment-list .comment_sec .blog_center.re_comment {
  margin-top: 5px;
}

.comment_form {
  margin: 0 auto;
  position: relative;
}

.comment_form .title {
  color: #777;
  text-align: center;
  text-transform: uppercase;
  margin-top: 50px;
}

.comment_form .comment-form .form-field {
  position: relative;
  margin: 35px 0;
  padding: 0 35px 0 20px;
}

.comment_form .comment-form .form-field textarea {
  resize: none;
}

.comment_form .comment-form .input-text {
  display: block;
  width: 100%;
  height: 36px;
  border-width: 0 0 2px 0;
  border-color: #777;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
}

.comment_form .comment-form .input-text:focus {
  outline: none;
}

.comment_form .comment-form .input-text:focus+.label, .comment_form .comment-form .input-text.not-empty+.label {
  -webkit-transform: translateY(-24px);
  transform: translateY(-24px);
}

.comment_form .comment-form .label {
  position: absolute;
  left: 20px;
  bottom: 11px;
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  color: #808080;
  cursor: text;
  -webkit-transition: -webkit-transform .2s ease-in-out;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.comment_form .comment-form .submit-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

.comment_form .comment-form .comment_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.comment_form .note {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 21px;
}

.comment_form .note .link {
  color: #808080;
  text-decoration: none;
}

.comment_form .note .link:hover {
  text-decoration: underline;
}

.comment_form.map_form .map_text {
  padding: 60px 30px;
  background-color: #808080;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.comment_form.map_form .map_text .title {
  color: #fff;
}

.comment_form.map_form .map_text p {
  margin: 15px 0 35px 0;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: rgba(68, 68, 68, 0.67);
}

.comment_form.map_form .map_text .title {
  margin-top: 0;
  text-align: unset;
  color: #777;
  font-weight: 600;
}

.comment_form.map_form .map_text .contect_info .contect-title h3 {
  margin-bottom: 16px;
  color: #777;
}

.comment_form.map_form .map_text .contect_info .contant-text ul {
  color: #777;
}

.comment_form.map_form .map_text .contect_info .contant-text ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  color: rgba(68, 68, 68, 0.67);
  font-weight: 500;
}

.comment_form.map_form .map_text .contect_info .contant-text ul li:nth-child(4) {
  margin-bottom: 0;
}

.comment_form.map_form .map_text .contect_info .contant-text ul li i {
  margin-right: 10px;
}

.comment_form.map_form .center {
  padding: 0;
}

.comment_form.map_form .center .contect_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.comment_form.map_form .center .contect_form .full_form {
  width: 100%;
  padding: 90px;
  background-color: white;
}

.comment_form.map_form .center .contect_form .full_form h3 {
  font-weight: 500;
}

.comment_form.map_form .center .contect_form .full_form .comment-form .form-field {
  padding: 0 20px;
  margin: 30px 0;
}

.comment_form.map_form .center .contect_form .full_form .comment-form .input-text {
  background-color: white;
}

.comment_form.map_form .center .contect_form .full_form .comment-form .comment_btn {
  margin-top: 25px;
  display: unset;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
}

.comment_form.map_form .center .contect_form .full_form .comment-form .comment_btn .con_btn {
  margin-top: 20px;
}

.comment_form.coming-soon .comment-form .input-text {
  background-color: transparent;
}

.comment_form.coming-soon .comment-form .form-field {
  margin: 20px 0;
}

.compare-page .table-wrapper {
  padding-bottom: 0;
}

.compare-page .table-wrapper .table {
  border: 1px solid #eeeeee;
  text-transform: capitalize;
  color: #000;
}

.compare-page .table-wrapper .table .product-name {
  width: 15%;
}

.compare-page .table-wrapper .table .featured-image {
  width: 185px;
}

.compare-page .table-wrapper .table td {
  border-top: none;
}

.compare-page .table-wrapper .table thead .th-compare td {
  font-size: 14px;
  font-weight: 700;
  background: #f8f8f8;
  border-right: 1px solid #eee;
}

.compare-page .table-wrapper .table thead .th-compare th {
  text-align: left;
  border-bottom: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}

.compare-page .table-wrapper .table thead .th-compare th .remove-compare {
  float: left;
  border: none;
  background: transparent;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}

.compare-page .table-wrapper .table tbody tr th {
  background: #f8f8f8;
}

.compare-page .table-wrapper .table tbody tr td {
  border-right: 1px solid #eee;
  position: relative;
}

.compare-page .table-wrapper .table tbody tr th, .compare-page .table-wrapper .table tbody tr td {
  padding: 15px;
  vertical-align: top;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
}

.compare-page .table-wrapper .table tbody tr .grid-link__title {
  font-size: 15px;
}

.compare-page .table-wrapper .table tbody tr .product_price {
  margin: 15px 0;
}

.compare-page .table-wrapper .table tbody tr .product_price span.money {
  padding-left: 5px;
}

.compare-page .table-wrapper .table tbody tr p {
  color: #000;
  font-size: 13px;
  line-height: 20px;
  margin: 0;
}

.compare-page .table-wrapper .table tbody tr .add-to-cart, .compare-page .table-wrapper .table tbody tr .select-option-cls {
  padding: 6px 10px;
}

/*************************
  compare start
*************************/
.compare-section .item {
  position: relative;
  border: 1px solid #dddddd;
  border-left: none;
}

.compare-section .item:first-child {
  border-left: 1px solid #dddddd;
}

.compare-section .item .close-btn {
  background-color: transparent;
  border: none;
  font-size: 25px;
  position: absolute;
  top: 0;
  right: 0;
}

.compare-section .item .img-secton {
  padding: 0 15px 15px;
}

.compare-section .item .img-secton img {
  width: 50%;
  margin: 0 auto;
  padding-top: 25px;
}

.compare-section .item .img-secton a h5 {
  margin-bottom: 0;
  text-transform: capitalize;
  margin-top: 10px;
}

.compare-section .item .img-secton h5 {
  margin-bottom: 0;
  line-height: 1.2;
}

.compare-section .item .detail-part .title-detail {
  background-color: #f7f7f7;
  padding: 8px 10px;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}

.compare-section .item .detail-part .title-detail h5 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 400;
  color: #000;
}

.compare-section .item .detail-part .inner-detail {
  padding: 15px;
}

.compare-section .item .detail-part .inner-detail p {
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.compare-section .item .btn-part {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #dddddd;
}

.compare-section .item .btn-part .btn-solid, .compare-section .item .btn-part .btn-outline {
  padding: 5px 10px;
}

.compare-section .slick-slide>div {
  border: 1px solid #dddddd;
  border-left: none;
}

.compare-section .slick-slide:first-child {
  border-left: 1px solid #dddddd;
}

.cart-section .btn-default, .wishlist-section .btn-default {
  border-radius: 0;
}

.cart-section .table tbody+tbody, .wishlist-section .table tbody+tbody {
  border-top: none;
}

.cart-section .cart-buttons, .wishlist-section .cart-buttons {
  padding-top: 35px;
}

.cart-section .cart-buttons>div:last-child, .wishlist-section .cart-buttons>div:last-child {
  text-align: right;
  padding-right: 59px;
}

.cart-section .wishlist-buttons, .wishlist-section .wishlist-buttons {
  padding-top: 35px;
  text-align: right;
}

.cart-section .wishlist-buttons:last-child a, .wishlist-section .wishlist-buttons:last-child a {
  margin-left: 15px;
}

.cart-section .cart-table, .wishlist-section .cart-table {
  overflow: hidden;
  margin-bottom: 0;
}

.cart-section .cart-table thead th, .wishlist-section .cart-table thead th {
  border-bottom-width: 1px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  border-top: 0;
  text-align: center;
  padding: 0 0.75rem 0.75rem 0.75rem;
}

.cart-section tbody h2, .wishlist-section tbody h2 {
  margin-bottom: 0;
}

.cart-section tbody tr td, .wishlist-section tbody tr td {
  min-width: 210px;
  vertical-align: middle;
  color: #808080;
  border-top: 0;
  border-bottom: 1px solid #eeeeee;
  text-align: center;
}

.cart-section tbody tr td a, .cart-section tbody tr td p, .wishlist-section tbody tr td a, .wishlist-section tbody tr td p {
  color: #808080;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  margin-bottom: 0;
  letter-spacing: 0;
}

.cart-section tbody tr td a img, .cart-section tbody tr td p img, .wishlist-section tbody tr td a img, .wishlist-section tbody tr td p img {
  height: 90px;
}

.cart-section tbody tr td .td-color, .wishlist-section tbody tr td .td-color {
  color: #000;
}

.cart-section tbody tr td h2, .wishlist-section tbody tr td h2 {
  font-size: 24px;
  color: #000;
  font-weight: 400;
}

.cart-section tbody tr td .mobile-cart-content, .wishlist-section tbody tr td .mobile-cart-content {
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
}

.cart-section tbody tr td .mobile-cart-content .qty-box, .wishlist-section tbody tr td .mobile-cart-content .qty-box {
  border-radius: 5px;
}

.cart-section tbody tr td .mobile-cart-content .qty-box .input-group .form-control, .wishlist-section tbody tr td .mobile-cart-content .qty-box .input-group .form-control {
  width: 48px;
  padding: 6px;
  border-radius: 0;
}

.cart-section tbody tr td .mobile-cart-content .col-xs-3, .wishlist-section tbody tr td .mobile-cart-content .col-xs-3 {
  -ms-flex-item-align: center;
  align-self: center;
  margin-left: 10px;
  margin-right: 10px;
}

.cart-section tbody tr td .mobile-cart-content h2, .wishlist-section tbody tr td .mobile-cart-content h2 {
  font-size: 20px;
}

.cart-section tfoot tr th, .wishlist-section tfoot tr th {
  padding-top: 35px;
  text-align: right;
}

.cart-section tfoot tr td, .wishlist-section tfoot tr td {
  padding-top: 35px;
  padding-bottom: 0;
  text-align: right;
  border: none;
  padding-right: 63px;
}

.cart-section tfoot tr td h2, .wishlist-section tfoot tr td h2 {
  font-size: 24px;
  margin-bottom: 0;
}

.cart-section tfoot tr td:first-child, .wishlist-section tfoot tr td:first-child {
  width: 85%;
  font-size: 15px;
  padding-right: 10px;
  text-transform: capitalize;
  font-weight: 700;
}

.collection .container {
  margin-bottom: -30px;
}

.collection .collection-block {
  text-align: center;
  margin-bottom: 30px;
}

.collection .collection-block .collection-content {
  padding: 15px;
  text-align: center;
}

.collection .collection-block .collection-content h3 {
  margin-bottom: 20px;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.collection .collection-block .collection-content h4 {
  margin-bottom: 12px;
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  color: #666666;
}

.collection .collection-block .collection-content p {
  margin-bottom: 10px;
  color: #8f8e94;
}

.collection .collection-block .collection-content .btn-solid, .collection .collection-block .collection-content .btn-outline {
  padding: 10px 25px;
}

.checkout-page .form-group input {
  width: unset;
}

.checkout-page .checkout-title {
  margin-bottom: 25px;
}

.checkout-page .checkout-title h3 {
  color: #000;
  font-weight: 700;
}

.checkout-page .checkout-form .checkout-details {
  position: relative;
  background-color: #f7f7f7;
  border: 1px solid #dddddd;
  padding: 40px;
}

.checkout-page .checkout-form .check-out .form-group:last-child {
  margin-bottom: -5px;
}

.checkout-page .checkout-form .check-out .form-group:last-child label {
  margin-bottom: -5px;
}

.checkout-page .checkout-form .form-group {
  position: relative;
  margin-bottom: 25px;
}

.checkout-page .checkout-form .form-group h3 {
  color: #808080;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 30px;
}

.checkout-page .checkout-form .form-group .field-label {
  line-height: 24px;
  text-transform: capitalize;
  color: #333333;
  margin-bottom: 10px;
  font-weight: 700;
}

.checkout-page .checkout-form .form-group .field-label span {
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  color: #000;
  font-weight: 600;
}

.checkout-page .checkout-form .form-group label {
  color: #808080;
}

.checkout-page .checkout-form select {
  cursor: pointer;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  -moz-appearance: none;
  background: url("../images/inner-page/dropdown.png") no-repeat 95%;
}

.checkout-page .checkout-form input[type="text"], .checkout-page .checkout-form input[type="email"], .checkout-page .checkout-form input[type="password"], .checkout-page .checkout-form input[type="tel"], .checkout-page .checkout-form input[type="number"], .checkout-page .checkout-form input[type="url"] {
  width: 100%;
  padding: 0 22px;
  height: 45px;
  border: 1px solid #dddddd;
}

.checkout-page .checkout-form select, .checkout-page .checkout-form textarea {
  width: 100%;
  padding: 0 22px;
  height: 45px;
  border: 1px solid #dddddd;
}

.checkout-page .check-box {
  line-height: 24px;
  font-size: 14px;
  font-weight: normal;
  padding-top: 5px;
}

.checkout-page .check-box label {
  position: relative;
  top: -1px;
  font-weight: normal;
  padding: 0;
  font-size: 16px;
  cursor: pointer;
  color: #808080;
}

.checkout-page .lower-content {
  margin-top: 30px;
}

.checkout-page .lower-content .order-column {
  margin-bottom: 40px;
}

.order-box {
  position: relative;
  margin-bottom: 50px;
}

.order-box .title-box {
  position: relative;
  padding-bottom: 25px;
  color: #000;
  font-weight: 600;
  font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1920 - 300)));
  border-bottom: 1px solid #eceaea;
  margin-bottom: 20px;
}

.order-box .title-box span {
  position: relative;
  width: 35%;
  float: right;
  line-height: 1.2em;
}

.order-box .qty {
  position: relative;
  border-bottom: 1px solid #eceaea;
  margin-bottom: 30px;
}

.order-box .qty li {
  position: relative;
  display: block;
  font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
  color: #808080;
  line-height: 20px;
  margin-bottom: 20px;
}

.order-box .qty li span {
  float: right;
  font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1920 - 300)));
  line-height: 20px;
  color: #000;
  font-weight: 400;
  width: 35%;
}

.order-box .sub-total {
  position: relative;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 30px;
}

.order-box .sub-total li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  line-height: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.order-box .sub-total li .count {
  position: relative;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 400;
  width: 35%;
  float: right;
}

.order-box .sub-total .shopping-option label {
  position: relative;
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  line-height: 32px;
  padding-left: 10px;
  color: #808080;
  font-weight: 500;
}

.order-box .sub-total .shipping {
  width: 35%;
  float: right;
}

.order-box .total {
  position: relative;
  margin-bottom: 40px;
}

.order-box .total li {
  position: relative;
  display: block;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
  margin-bottom: 10px;
  font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1920 - 300)));
}

.order-box .total li .count {
  position: relative;
  font-size: 18px;
  line-height: 20px;
  color: #000;
  font-weight: 400;
}

.order-box .total li span {
  float: right;
  font-size: 15px;
  line-height: 20px;
  color: #808080;
  font-weight: 400;
  width: 35%;
  display: block;
}

.payment-box {
  position: relative;
}

.payment-box .upper-box {
  position: relative;
}

.payment-box .payment-options {
  position: relative;
  margin-top: 20px;
  margin-bottom: 30px;
}

.payment-box .payment-options li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.payment-box .payment-options li .radio-option {
  position: relative;
}

.payment-box .payment-options li .radio-option label {
  position: relative;
  padding-left: 30px;
  text-transform: capitalize;
  color: #808080;
  cursor: pointer;
  font-weight: 500;
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  line-height: 20px;
  margin-bottom: 0;
}

.payment-box .payment-options li .radio-option input[type="radio"] {
  position: absolute;
  left: 0;
  top: 5px;
}

.payment-box .payment-options li .radio-option label .small-text {
  position: relative;
  display: none;
  font-size: 15px;
  line-height: 25px;
  font-weight: 300;
  color: #666666;
  margin-top: 10px;
}

.payment-box .payment-options li .radio-option label img {
  position: relative;
  display: block;
  max-width: 100%;
  margin-left: -30px;
  margin-top: 5px;
}

/*************************
  compare Ends
*************************/
/*************************
  category Start
*************************/
.collection-filter-block {
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid #dddddd;
  background-color: #fff;
}

.collection-filter-block .product-service {
  padding: 0;
}

.collection-filter-block .product-service .media {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}

.collection-filter-block .product-service .media svg {
  height: 40px;
  width: 40px;
}

.collection-filter-block .product-service .media svg path {
  fill: #000;
}

.collection-filter-block .product-service .media .media-body {
  padding-left: 10px;
}

.collection-filter-block .product-service .media .media-body h4 {
  margin-bottom: 5px;
}

.collection-filter-block .product-service .media .media-body p {
  margin-bottom: 0;
  text-transform: capitalize;
  letter-spacing: 0;
  font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1920 - 300)));
}

.collection-filter-block .product-service .media:last-child {
  padding-bottom: 0;
}

.collection-mobile-back {
  padding: 15px 0;
  border-bottom: 1px solid #dddddd;
  display: none;
}

.collection-mobile-back span {
  text-transform: uppercase;
  font-size: 14px;
  color: #000;
  cursor: pointer;
}

.collection-mobile-back span i {
  font-size: 20px;
  font-weight: bold;
  margin-right: 5px;
}

.filter-main-btn {
  display: none;
  margin-bottom: 20px;
  cursor: pointer;
}

.collection-collapse-block {
  padding-top: 30px;
}

.collection-collapse-block.top_filter {
  padding-top: 0;
}

.collection-collapse-block .collapse-block-title {
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.collection-collapse-block .collapse-block-title:after {
  display: none;
}

.collection-collapse-block .collection-collapse-block-content .color-selector {
  margin-top: 20px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .category-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 18px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .category-list li a {
  color: #808080;
  padding-bottom: 10px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .category-list li:last-child a {
  padding-bottom: 0;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .category-list li:first-child {
  margin-top: 20px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox {
  margin-bottom: 12px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox:first-child {
  margin-top: 20px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox:last-child {
  margin-bottom: 0;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox label {
  text-transform: uppercase;
  cursor: pointer;
  font-size: 12px;
  color: #777777;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox label:before {
  top: 1px;
  height: 15px;
  width: 15px;
  background: #fff;
  border: 1px solid #777777;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox label:after {
  top: 1px;
  height: 15px;
  width: 15px;
  background-size: 65%;
}

.collection-collapse-block .collection-collapse-block-content .collection-brand-filter .collection-filter-checkbox .custom-control-input:checked~.custom-control-label:after {
  background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/></svg>");
}

.color-selector ul li {
  display: inline-block;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  margin-right: 5px;
  cursor: pointer;
  border: 1px solid #808080;
}

.color-selector ul .color-1 {
  background-color: #fff;
}

.color-selector ul .color-2 {
  background-color: #f3e5e4;
}

.color-selector ul .color-3 {
  background-color: #d5d5ec;
}

.color-selector ul .color-4 {
  background-color: #bcecf7;
}

.color-selector ul .color-5 {
  background-color: #fff2cf;
}

.color-selector ul .color-6 {
  background-color: #ffcfcf;
}

.color-selector ul .color-7 {
  background-color: #d1d1d1;
}

.color-selector ul li.active {
  border: 1px solid #000;
  position: relative;
}

.color-selector ul li.active:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='%23000' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/></svg>");
  top: 10px;
  right: 4px;
  height: 15px;
  width: 15px;
  background-size: 70%;
  background-repeat: no-repeat;
  position: absolute;
}

.theme-card {
  position: relative;
}

.theme-card.center-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.theme-card.center-align .offer-slider .product-box2 .media .media-body {
  margin-top: 0;
}

.theme-card.card-border {
  border: 1px solid #dddddd;
}

.theme-card.card-border h5 {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  margin-top: 0;
}

.theme-card.card-border .slick-prev, .theme-card.card-border .slick-next {
  top: -45px;
}

.theme-card.card-border .slick-next {
  right: 30px;
}

.theme-card.card-border .slick-prev {
  right: 50px;
}

.theme-card.card-border .offer-slider {
  padding-top: 0;
  padding-bottom: 10px;
}

.theme-card.card-border .offer-slider img {
  padding: 15px 15px 15px 30px;
}

.theme-card.card-border .offer-slider .media .media-body a h6 {
  margin-right: 25px;
}

.theme-card h5 {
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-top: -5px;
}

.theme-card h5.title-border {
  border-bottom: 1px solid #dddddd;
}

.theme-card .slick-prev, .theme-card .slick-next {
  top: -35px;
}

.theme-card .slick-prev:before, .theme-card .slick-next:before {
  font: normal normal normal 30px/1 FontAwesome;
  color: #000;
  opacity: 0.6;
}

.theme-card .slick-next {
  right: 0;
}

.theme-card .slick-next:before {
  content: "\f105";
}

.theme-card .slick-prev {
  left: unset;
  right: 25px;
}

.theme-card .slick-prev:before {
  content: "\f104";
}

.theme-card .offer-slider img {
  height: 160px;
  padding: 15px 15px 15px 0;
}

.theme-card .offer-slider>div .media:last-child .media-body {
  margin-top: 15px;
}

.theme-card .offer-slider>div .media:last-child img {
  margin-bottom: -15px;
}

.theme-card .offer-slider .media .media-body .rating {
  margin-top: 0;
}

.theme-card .offer-slider .media .media-body .rating i {
  padding-right: 5px;
}

.theme-card .offer-slider .media .media-body .rating i:nth-child(-n + 4) {
  color: #ffa200;
}

.theme-card .offer-slider .media .media-body .rating i:last-child {
  color: #dddddd;
}

.theme-card .offer-slider .media .media-body a h6 {
  margin-right: 61px;
  line-height: 17px;
  margin-top: 5px;
  margin-bottom: 0;
}

.theme-card .offer-slider .media .media-body h4 {
  margin-top: 10px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}

.collection-sidebar-banner {
  margin-top: 30px;
}

.collection-sidebar-banner img {
  width: 100%;
}

.top-banner-wrapper .top-banner-content {
  padding: 50px 0;
}

.top-banner-wrapper .top-banner-content h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.top-banner-wrapper .top-banner-content h5 {
  font-weight: 600;
  color: #444444;
  letter-spacing: 1px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.top-banner-wrapper .top-banner-content p {
  line-height: 1.5;
  color: #777777;
  margin-bottom: 0;
}

.product-wrapper-grid.list-view .product-wrap .product-info {
  text-align: left;
  -ms-flex-item-align: center;
  align-self: center;
  padding-left: 15px;
}

.product-wrapper-grid.list-view .product-box, .product-wrapper-grid.list-view .list-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0;
}

.product-wrapper-grid.list-view .product-box .img-wrapper, .product-wrapper-grid.list-view .product-box .img-block, .product-wrapper-grid.list-view .list-product .img-wrapper, .product-wrapper-grid.list-view .list-product .img-block {
  width: 20%;
}

.product-wrapper-grid.list-view .product-box .product-detail, .product-wrapper-grid.list-view .list-product .product-detail {
  padding-left: 15px;
  -ms-flex-item-align: center;
  align-self: center;
  width: 80%;
  text-align: left !important;
}

.product-wrapper-grid.list-view .product-box .product-detail .rating, .product-wrapper-grid.list-view .list-product .product-detail .rating {
  margin-top: 0;
}

.product-wrapper-grid.list-view .product-box .product-detail p, .product-wrapper-grid.list-view .list-product .product-detail p {
  display: block !important;
  margin-bottom: 5px;
  line-height: 18px;
}

.product-wrapper-grid.list-view .product-box .product-detail .color-variant, .product-wrapper-grid.list-view .list-product .product-detail .color-variant {
  padding-top: 10px;
}

.product-wrapper-grid.list-view .product-box .product-detail h6, .product-wrapper-grid.list-view .list-product .product-detail h6 {
  font-weight: 700;
  padding-bottom: 15px;
}

.product-accordion .btn-link {
  color: #000;
}

.product-accordion .btn-link:hover {
  text-decoration: none;
}

.product-accordion .card {
  border: none;
}

.product-accordion .card-body {
  width: 100%;
  height: auto;
}

.product-accordion .card-header {
  padding: 5px 8px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.125);
  background-color: rgba(127, 127, 127, 0.03);
}

.product-accordion .card-header h5 {
  font-weight: 600;
}

.bundle {
  margin-top: 10px;
}

.bundle .bundle_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bundle .bundle_img .img-box img {
  max-width: 115px;
  border: 1px solid #ddd;
  padding: 2px;
}

.bundle .bundle_img .plus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 7px;
  font-size: 22px;
}

.bundle .bundle_detail {
  margin-top: 15px;
}

.bundle .bundle_detail .price_product {
  color: #000;
  padding-left: 3px;
  font-weight: 700;
}

.bundle .bundle_detail label {
  display: block;
}

.bundle .theme_checkbox label {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: capitalize;
  color: #000;
}

.bundle .theme_checkbox label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.bundle .theme_checkbox label input:checked~.checkmark:after {
  display: block;
}

.bundle .theme_checkbox label .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #dddddd;
}

.bundle .theme_checkbox label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.collection-product-wrapper .col-grid-box .cart-info.cart-wrap i {
  background: white;
  margin-bottom: 5px;
  border: 1px solid #dddddd;
}

.collection-product-wrapper .isotopeSelector {
  margin-bottom: 30px;
}

.collection-product-wrapper .product-top-filter {
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
}

.collection-product-wrapper .product-top-filter .product-filter-content, .collection-product-wrapper .product-top-filter .popup-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.collection-product-wrapper .product-top-filter .product-filter-content .search-count, .collection-product-wrapper .product-top-filter .product-filter-content .sidebar-popup, .collection-product-wrapper .product-top-filter .popup-filter .search-count, .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
  border-right: 1px solid #dddddd;
  padding: 20px 16px;
  text-transform: capitalize;
  width: 33%;
}

.collection-product-wrapper .product-top-filter .product-filter-content .search-count h5, .collection-product-wrapper .product-top-filter .product-filter-content .sidebar-popup h5, .collection-product-wrapper .product-top-filter .popup-filter .search-count h5, .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup h5 {
  margin-bottom: 0;
  padding-top: 0;
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-view, .collection-product-wrapper .product-top-filter .popup-filter .collection-view {
  padding: 20px;
  width: 12%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-view ul li, .collection-product-wrapper .product-top-filter .popup-filter .collection-view ul li {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  cursor: pointer;
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-view ul li:first-child, .collection-product-wrapper .product-top-filter .popup-filter .collection-view ul li:first-child {
  margin-right: 14px;
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view, .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view {
  padding: 20px;
  width: 20%;
  border-right: 1px solid #dddddd;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul, .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li, .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul li {
  margin-left: 10px;
}

.collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li img, .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view ul li img {
  height: 18px;
  cursor: pointer;
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter, .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
  position: relative;
  width: 20%;
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select, .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select {
  border: 0;
  padding: 24px;
  border-right: 1px solid #dddddd;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background: url("../images/inner-page/dropdown.png") no-repeat 95%;
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select:focus, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select:focus, .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select:focus, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select:focus {
  outline: unset;
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select option, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select option, .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select option, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select option {
  padding: 20px 0;
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
  width: 35%;
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter:before, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
  right: 10px;
}

.collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select {
  border-right: none;
}

.collection-product-wrapper .product-top-filter .popup-filter {
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
}

.collection-product-wrapper .product-top-filter .popup-filter ::-webkit-scrollbar {
  width: 3px;
}

.collection-product-wrapper .product-top-filter .popup-filter ::-webkit-scrollbar-track {
  background: #dddddd;
}

.collection-product-wrapper .product-top-filter .popup-filter ::-webkit-scrollbar-thumb {
  background: #808080;
}

.collection-product-wrapper .product-top-filter .popup-filter ::-webkit-scrollbar-thumb:hover {
  background: #808080;
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
  position: relative;
  cursor: pointer;
  width: 22%;
  background: url("../images/inner-page/dropdown.png") no-repeat 95%;
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup a {
  font-size: 16px;
  color: #000;
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter {
  background-color: #f8f8f8;
  width: 270px;
  height: 600px;
  overflow-y: scroll;
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter .collection-filter-block {
  border: none;
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter .theme-card {
  padding: 0 30px;
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter .collection-sidebar-banner {
  padding: 0 30px;
}

.collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter .collection-sidebar-banner img {
  width: 100%;
}

.collection-product-wrapper .product-top-filter .popup-filter .open-popup {
  display: none;
  position: absolute;
  z-index: 9;
  top: 75px;
  left: 0;
  border: 1px solid #808080;
  -webkit-box-shadow: 0 0 5px #dddddd;
  box-shadow: 0 0 5px #dddddd;
  min-width: 330px;
}

.collection-product-wrapper .product-top-filter .popup-filter .open-popup.open {
  display: block;
}

.collection-product-wrapper .product-top-filter .popup-filter .open-popup .collection-filter-block {
  margin-bottom: 0;
}

.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
  width: 20%;
}

.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select {
  padding-right: 45px;
  font-size: 16px;
}

.collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view:before, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
  right: 35px;
}

.collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view {
  padding: 20px;
}

.collection-product-wrapper .product-top-filter .popup-filter .collection-view {
  width: 20%;
}

.collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
  right: 25px !important;
}

.collection-product-wrapper .product-wrapper-grid .product-box {
  margin-top: 50px;
}

.collection-product-wrapper .product-wrapper-grid .product-box .product-detail p {
  display: none;
}

.collection-product-wrapper .product-wrapper-grid .product-five {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.collection-product-wrapper .product-wrapper-grid .col-lg-2 .product-box .product-detail h6 {
  font-size: 13px;
}

.collection-product-wrapper .product-wrapper-grid .col-lg-2 .product-box .product-detail h4 {
  font-size: 18px;
}

.collection-product-wrapper .product-wrapper-grid .col-lg-2 .product-box .product-detail .rating i {
  padding-right: 0;
}

.collection-product-wrapper .product-wrapper-grid .col-lg-2 .product-box .img-wrapper .lable-block .lable3 {
  padding: 8px 4px;
  font-size: 12px;
}

.filter-main-btn {
  display: none;
  margin-bottom: 20px;
  cursor: pointer;
}

.filter-main-btn span {
  width: 40%;
  border-radius: 0;
  font-size: 20px;
}

.product-box .badge, .product-wrap .badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 12px;
}

.product-box .product-detail p, .product-wrap .product-detail p {
  display: none;
}

.product-box .product-detail a, .product-wrap .product-detail a {
  padding-top: 15px;
  display: block;
}

.product-box .product-detail .rating~a, .product-wrap .product-detail .rating~a {
  padding-top: 0;
}

.product-box .product-detail, .product-box .product-info, .product-wrap .product-detail, .product-wrap .product-info {
  padding-left: 5px;
}

.product-box .product-detail .rating, .product-box .product-info .rating, .product-wrap .product-detail .rating, .product-wrap .product-info .rating {
  margin-top: 15px;
  margin-bottom: 10px;
}

.product-box .product-detail .rating i, .product-box .product-info .rating i, .product-wrap .product-detail .rating i, .product-wrap .product-info .rating i {
  padding-right: 5px;
}

.product-box .product-detail .rating i:nth-child(-n + 4), .product-box .product-info .rating i:nth-child(-n + 4), .product-wrap .product-detail .rating i:nth-child(-n + 4), .product-wrap .product-info .rating i:nth-child(-n + 4) {
  color: #ffa200;
}

.product-box .product-detail .rating i:last-child, .product-box .product-info .rating i:last-child, .product-wrap .product-detail .rating i:last-child, .product-wrap .product-info .rating i:last-child {
  color: #dddddd;
}

.product-box .product-detail h6, .product-box .product-info h6, .product-wrap .product-detail h6, .product-wrap .product-info h6 {
  line-height: 1;
  margin-bottom: 0;
  padding-top: 2px;
  padding-bottom: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 16px;
  font-weight: 400;
}

.product-box .product-detail h4, .product-box .product-info h4, .product-wrap .product-detail h4, .product-wrap .product-info h4 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box .product-detail .color-variant, .product-box .product-info .color-variant, .product-wrap .product-detail .color-variant, .product-wrap .product-info .color-variant {
  padding-top: 15px;
}

.product-box .product-detail .color-variant li, .product-box .product-info .color-variant li, .product-wrap .product-detail .color-variant li, .product-wrap .product-info .color-variant li {
  display: inline-block;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  margin-right: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.image-swatch {
  margin-bottom: 10px;
}

.image-swatch li img {
  width: 33px;
  height: 33px;
  padding: 2px;
  border: 1px solid #dddddd;
  margin-right: 5px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.image-swatch li:last-child {
  margin-right: 0;
}

.image-swatch li.active img {
  border: 1px solid #000;
}

.image-swatch li:hover img {
  border: 1px solid #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.image-scroll div>div {
  padding-bottom: 20px;
}

.vertical-tab.tab-product .nav-material.nav-tabs .nav-item .nav-link, .vertical-tab .product-full-tab .nav-material.nav-tabs .nav-item .nav-link {
  padding: 15px 20px;
}

.tab-product, .product-full-tab {
  padding-top: 30px;
}

.tab-product .nav-material.nav-tabs, .product-full-tab .nav-material.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.tab-product .nav-material.nav-tabs .nav-item .nav-link, .product-full-tab .nav-material.nav-tabs .nav-item .nav-link {
  color: #212121;
  text-align: center;
  padding: 0 15px 20px 15px;
  text-transform: uppercase;
  border: 0;
}

.tab-product .nav-material.nav-tabs .nav-item .material-border, .product-full-tab .nav-material.nav-tabs .nav-item .material-border {
  border-bottom: 2px solid #000;
  opacity: 0;
}

.tab-product .nav-material.nav-tabs .nav-link, .product-full-tab .nav-material.nav-tabs .nav-link {
  font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1920 - 300)));
}

.tab-product .nav-material.nav-tabs .nav-link.active, .product-full-tab .nav-material.nav-tabs .nav-link.active {
  color: #000;
  font-weight: 600;
}

.tab-product .nav-material.nav-tabs .nav-link.active~.material-border, .product-full-tab .nav-material.nav-tabs .nav-link.active~.material-border {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}

.tab-product .theme-form input, .product-full-tab .theme-form input {
  border-color: #dddddd;
  font-size: 15px;
  padding: 15px 25px;
  margin-bottom: 15px;
  height: inherit;
  text-align: left;
}

.tab-product .theme-form .btn-solid, .tab-product .theme-form .btn-outline, .product-full-tab .theme-form .btn-solid, .product-full-tab .theme-form .btn-outline {
  margin: 0 auto;
}

.tab-product .theme-form textarea, .product-full-tab .theme-form textarea {
  border-color: #dddddd;
  font-size: 15px;
  padding: 17px 25px;
  margin-bottom: 15px;
  height: inherit;
}

.tab-product .tab-content.nav-material p, .product-full-tab .tab-content.nav-material p {
  padding: 20px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.tab-product .tab-content.nav-material .media, .product-full-tab .tab-content.nav-material .media {
  margin-top: 20px;
}

.tab-product .title, .product-full-tab .title {
  padding-right: 45px;
  color: #000;
  padding-bottom: 20px;
}

.tab-product .theme-slider .slick-arrow, .product-full-tab .theme-slider .slick-arrow {
  top: -45px;
  height: auto;
}

.tab-product .theme-slider .slick-arrow :before, .product-full-tab .theme-slider .slick-arrow :before {
  color: #000;
  font-size: 18px;
}

.tab-product .product-box, .product-full-tab .product-box {
  position: relative;
  margin: 5px;
}

.tab-product .product-box:hover, .product-full-tab .product-box:hover {
  -webkit-box-shadow: 0 0 12px 0 #dddddd;
  box-shadow: 0 0 12px 0 #dddddd;
}

.tab-product .product-box:hover .lbl-1, .product-full-tab .product-box:hover .lbl-1 {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tab-product .product-box:hover .lbl-2, .product-full-tab .product-box:hover .lbl-2 {
  opacity: 1;
  -webkit-animation: flipInY 1000ms ease-in-out;
  animation: flipInY 1000ms ease-in-out;
}

.tab-product .product-box:hover .color-variant li, .product-full-tab .product-box:hover .color-variant li {
  opacity: 1 !important;
  -webkit-animation: fadeInUp 500ms ease-in-out;
  animation: fadeInUp 500ms ease-in-out;
}

.tab-product .product-box .img-block, .product-full-tab .product-box .img-block {
  min-height: unset;
}

.tab-product .product-box .cart-info, .product-full-tab .product-box .cart-info {
  position: absolute;
  padding: 10px 0;
  top: 25%;
  right: 15px;
  width: 40px;
  margin-right: 0;
}

.tab-product .product-box .cart-info i, .product-full-tab .product-box .cart-info i {
  padding-right: 0;
}

.tab-product .product-box .cart-info a, .tab-product .product-box .cart-info button, .product-full-tab .product-box .cart-info a, .product-full-tab .product-box .cart-info button {
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  height: 35px;
  width: 35px;
  margin: 7px 0;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  -webkit-box-shadow: 0 0 12px 0 #dddddd;
  box-shadow: 0 0 12px 0 #dddddd;
}

.tab-product .product-box .cart-info a :hover, .tab-product .product-box .cart-info button :hover, .product-full-tab .product-box .cart-info a :hover, .product-full-tab .product-box .cart-info button :hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #dddddd;
}

.tab-product .product-box .lbl-1, .product-full-tab .product-box .lbl-1 {
  background-color: #000;
  padding: 2px 20px 2px 10px;
  display: inline-block;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  top: 15px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
}

.tab-product .product-box .lbl-1:before, .product-full-tab .product-box .lbl-1:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 12px solid #000;
  border-bottom: 13px solid #000;
  border-right: 7px solid #fff;
}

.tab-product .product-box .lbl-2, .product-full-tab .product-box .lbl-2 {
  font-size: 14px;
  top: 15px;
  position: absolute;
  right: 10px;
  color: #333333;
  font-weight: 600;
  text-transform: capitalize;
  opacity: 0;
}

.tab-product .product-box a, .product-full-tab .product-box a {
  color: #0072bb;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tab-product .product-box .color-variant, .product-full-tab .product-box .color-variant {
  position: absolute;
  top: -35px;
  width: 100%;
}

.tab-product .product-box .slick-slide img, .product-full-tab .product-box .slick-slide img {
  display: block;
}

.tab-product .product-box .product-details, .product-full-tab .product-box .product-details {
  position: relative;
}

.tab-product .product-box .product-details .color-variant, .product-full-tab .product-box .product-details .color-variant {
  position: absolute;
  top: -35px;
  width: 100%;
}

.tab-product .product-box .product-details .color-variant li, .product-full-tab .product-box .product-details .color-variant li {
  opacity: 0;
  display: inline-block;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  margin: 0 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-product .product-box .product-details h6, .product-full-tab .product-box .product-details h6 {
  color: #333333;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.tab-product .product-box .product-details .price, .product-full-tab .product-box .product-details .price {
  padding-bottom: 10px;
  font-size: 16px;
  color: #000;
}

.qty-box .input-group {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.qty-box .input-group span button {
  background: #fff !important;
  border: 1px solid #ced4da;
}

.qty-box .input-group .form-control {
  text-align: center;
  width: 80px;
  -webkit-box-flex: unset;
  -ms-flex: unset;
  flex: unset;
}

.qty-box .input-group button {
  background-color: transparent;
  border: 0;
  color: #808080;
  cursor: pointer;
  padding-left: 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.qty-box .input-group button i {
  font-weight: 900;
  color: #000;
}

.qty-box .input-group .icon {
  padding-right: 0;
}

.bg-light0 {
  background-color: #d0edff;
}

.bg-light1 {
  background-color: #f1e7e6;
}

.bg-light2 {
  background-color: #bfbfbf;
}

.team-sec .container {
  margin-bottom: -30px;
}

.team-sec .container .speker-container {
  margin-bottom: 30px;
}

.team-sec .container .speker-container .e-name {
  margin-bottom: 15px !important;
}

.team-sec.team-grid .team-img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-bottom: 0 !important;
}

.team-sec.team-grid .employee {
  padding: 20px;
  text-align: left !important;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.team-sec.team-grid .employee {
  background: white;
  -webkit-box-shadow: 1px 0 15px 2px #f3f3f3;
  box-shadow: 1px 0 15px 2px #f3f3f3;
}

.team-sec.team-grid .e-name {
  margin-bottom: 15px;
}

.team-sec.team-grid .team-para {
  margin-top: 25px;
  font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1920 - 300)));
  letter-spacing: 0;
}

.product-right p {
  margin-bottom: 0;
  line-height: 1.5em;
  margin-top: unset;
}

.product-right .product-title {
  color: #000;
  text-transform: capitalize;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-right .product-title.size-text {
  text-align: left;
}

.product-right .border-product {
  padding-top: 15px;
  padding-bottom: 20px;
  border-top: 1px dashed #dddddd;
}

.product-right h2 {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 1.2em;
  margin-top: 0;
  font-weight: 600;
}

.product-right h3 {
  color: #000;
  margin-bottom: 15px;
}

.product-right h4 {
  font-size: 16px;
  margin-bottom: 7px;
}

.product-right h4 del {
  color: #808080;
}

.product-right h4 span {
  padding-left: 5px;
  color: #000;
}

.product-right .color-variant {
  margin-bottom: 10px;
}

.product-right .color-variant li {
  display: inline-block;
  border-radius: 100%;
  margin-right: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  vertical-align: middle;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.product-right .product-buttons .btn-solid, .product-right .product-buttons .btn-outline {
  padding: 7px 25px;
}

.product-right .product-buttons a:last-child {
  margin-left: 10px;
}

.product-right .product-description h6 span {
  float: right;
}

.product-right .product-description .qty-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.product-right .product-description .qty-box .input-group {
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
  width: unset;
}

.product-right .product-description .qty-box .input-group .form-control {
  border-right: none;
}

.product-right .size-box {
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-right .size-box ul li {
  display: inline-block;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  border: 1px solid #f0eeee;
  text-align: center;
}

.product-right .size-box ul li a {
  color: #000;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.product-right .size-box ul li.active {
  background-color: #f0eeee;
  -webkit-box-shadow: 0 2px 5px #777;
  box-shadow: 0 2px 5px #777;
}

.product-right .product-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-right .product-icon .product-social {
  margin-top: 5px;
}

.product-right .product-icon .product-social li {
  padding-right: 30px;
  display: inline-block;
}

.product-right .product-icon .product-social li a {
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-right .product-icon .product-social li a i {
  font-size: 18px;
}

.product-right .product-icon .product-social li a:hover {
  color: #000;
}

.product-right .product-icon .product-social li:last-child {
  padding-right: 0;
}

.product-right .product-icon .wishlist-btn {
  background-color: transparent;
  border: none;
}

.product-right .product-icon .wishlist-btn i {
  border-left: 1px solid #dddddd;
  font-size: 18px;
  padding-left: 10px;
  margin-left: 5px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-right .product-icon .wishlist-btn span {
  padding-left: 10px;
  font-size: 18px;
}

.product-right .product-icon .wishlist-btn:hover i {
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-right .payment-card-bottom {
  margin-top: 10px;
}

.product-right .payment-card-bottom ul li {
  padding-right: 10px;
}

.product-right.product-form-box {
  text-align: center;
  border: 1px solid #dddddd;
  padding: 20px;
}

.product-right.product-form-box .product-description .qty-box {
  margin-bottom: 5px;
}

.product-right.product-form-box .product-description .qty-box .input-group {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.product-right.product-form-box .product-buttons {
  margin-bottom: 0;
}

.product-right.product-form-box .timer {
  margin-bottom: 10px;
  text-align: left;
}

.product-load-more .col-grid-box {
  display: none;
}

.load-more-sec {
  margin-top: 40px;
  text-align: center;
}

.load-more-sec a {
  font-size: 18px;
  text-transform: uppercase;
  display: block;
  padding: 10px 0;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
  width: 100%;
  color: #000;
}

.product-box, .product-wrap {
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  vertical-align: middle;
}

.product-box .img-block, .product-wrap .img-block {
  background-color: #808080;
  position: relative;
  overflow: hidden;
}

.product-box .img-block .front, .product-wrap .img-block .front {
  opacity: 1;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box .img-block .front a, .product-wrap .img-block .front a {
  display: block;
  width: 100%;
}

.product-box .img-block .back, .product-wrap .img-block .back {
  opacity: 0;
  position: absolute;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
}

.product-box .img-block .back a, .product-wrap .img-block .back a {
  display: block;
  height: 500px;
  width: 100%;
}

.product-box .img-block .lable-wrapper, .product-wrap .img-block .lable-wrapper {
  margin: 0 auto;
  top: 40px;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 2;
}

.product-box .img-block .lable-wrapper .lable1, .product-box .img-block .lable-wrapper .lable2, .product-wrap .img-block .lable-wrapper .lable1, .product-wrap .img-block .lable-wrapper .lable2 {
  font-size: 14px;
  padding: 10px 14px 10px 20px;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
}

.product-box .img-block .lable-wrapper .lable1, .product-wrap .img-block .lable-wrapper .lable1 {
  background-color: #000;
  color: #fff;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}

.product-box .img-block .lable-wrapper .lable2, .product-wrap .img-block .lable-wrapper .lable2 {
  background-color: #fff;
  color: #000;
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
}

.product-box .img-wrapper, .product-wrap .img-wrapper {
  position: relative;
  overflow: hidden;
}

.product-box .img-wrapper .front, .product-wrap .img-wrapper .front {
  opacity: 1;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box .img-wrapper .back, .product-wrap .img-wrapper .back {
  opacity: 0;
  position: absolute;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  width: 100%;
}

.product-box .img-wrapper .cart-box, .product-wrap .img-wrapper .cart-box {
  position: absolute;
  margin: 0 auto;
  display: inline-block;
  right: 0;
  left: 0;
  border-radius: 50px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 15px;
  -webkit-box-shadow: 0 0 12px 0 #dddddd;
  box-shadow: 0 0 12px 0 #dddddd;
  bottom: 30px;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.product-box .img-wrapper .cart-box button, .product-wrap .img-wrapper .cart-box button {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

.product-box .img-wrapper .cart-box i, .product-wrap .img-wrapper .cart-box i {
  color: #6f6f6f;
  font-size: 18px;
  padding-left: 8px;
  padding-right: 8px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: inline-block;
}

.product-box .img-wrapper .cart-box i:hover, .product-wrap .img-wrapper .cart-box i:hover {
  color: #000;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.product-box .img-wrapper .lable-block .lable3, .product-wrap .img-wrapper .lable-block .lable3 {
  border-radius: 100%;
  background-color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  padding: 12px 6px;
  text-transform: uppercase;
  color: #fff;
  top: 7px;
  left: 7px;
  z-index: 1;
}

.product-box .img-wrapper .lable-block .lable4, .product-wrap .img-wrapper .lable-block .lable4 {
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  top: 7px;
  right: 7px;
  letter-spacing: 0.1em;
  z-index: 1;
}

.product-box .cart-info, .product-box .cart-wrap, .product-wrap .cart-info, .product-wrap .cart-wrap {
  position: absolute;
  bottom: 40px;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  right: 5px;
  left: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  margin-bottom: 10px;
  padding: 5px;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box .cart-info a [class^="icon-"], .product-box .cart-info a [class*=" icon-"], .product-box .cart-wrap a [class^="icon-"], .product-box .cart-wrap a [class*=" icon-"], .product-wrap .cart-info a [class^="icon-"], .product-wrap .cart-info a [class*=" icon-"], .product-wrap .cart-wrap a [class^="icon-"], .product-wrap .cart-wrap a [class*=" icon-"] {
  display: inline-block;
}

.product-box .cart-info a:last-child i, .product-box .cart-wrap a:last-child i, .product-wrap .cart-info a:last-child i, .product-wrap .cart-wrap a:last-child i {
  margin-bottom: 0;
}

.product-box .cart-info.cart-wrap, .product-box .cart-wrap.cart-wrap, .product-wrap .cart-info.cart-wrap, .product-wrap .cart-wrap.cart-wrap {
  bottom: 0;
  text-align: right;
  left: unset;
}

.product-box .cart-info.cart-wrap i, .product-box .cart-wrap.cart-wrap i, .product-wrap .cart-info.cart-wrap i, .product-wrap .cart-wrap.cart-wrap i {
  display: block;
  padding-bottom: 7px;
  padding-top: 7px;
}

.product-box .cart-info.cart-wrap.cart-effect-left, .product-box .cart-wrap.cart-wrap.cart-effect-left, .product-wrap .cart-info.cart-wrap.cart-effect-left, .product-wrap .cart-wrap.cart-wrap.cart-effect-left {
  left: 0;
  right: unset;
}

.product-box .cart-info button, .product-box .cart-wrap button, .product-wrap .cart-info button, .product-wrap .cart-wrap button {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

.product-box .cart-info i, .product-box .cart-wrap i, .product-wrap .cart-info i, .product-wrap .cart-wrap i {
  color: #6f6f6f;
  font-size: 16px;
  padding-right: 7px;
  padding-left: 7px;
}

.product-box .cart-info i:hover, .product-box .cart-wrap i:hover, .product-wrap .cart-info i:hover, .product-wrap .cart-wrap i:hover {
  color: #000;
}

.product-box .cart-detail, .product-wrap .cart-detail {
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0;
}

.product-box .cart-detail i, .product-wrap .cart-detail i {
  color: #6f6f6f;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 8px;
  padding-bottom: 8px;
}

.product-box .cart-detail button, .product-wrap .cart-detail button {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  padding: 0;
}

.product-box .product-detail, .product-box .product-info, .product-wrap .product-detail, .product-wrap .product-info {
  padding-left: 5px;
}

.product-box .product-detail .rating, .product-box .product-info .rating, .product-wrap .product-detail .rating, .product-wrap .product-info .rating {
  margin-top: 15px;
}

.product-box .product-detail .rating i, .product-box .product-info .rating i, .product-wrap .product-detail .rating i, .product-wrap .product-info .rating i {
  padding-right: 5px;
}

.product-box .product-detail .rating i:nth-child(-n + 4), .product-box .product-info .rating i:nth-child(-n + 4), .product-wrap .product-detail .rating i:nth-child(-n + 4), .product-wrap .product-info .rating i:nth-child(-n + 4) {
  color: #ffa200;
}

.product-box .product-detail .rating i:last-child, .product-box .product-info .rating i:last-child, .product-wrap .product-detail .rating i:last-child, .product-wrap .product-info .rating i:last-child {
  color: #dddddd;
}

.product-box .product-detail h6, .product-box .product-info h6, .product-wrap .product-detail h6, .product-wrap .product-info h6 {
  line-height: 1;
  margin-bottom: 0;
  padding-top: 2px;
  padding-bottom: 5px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 16px;
}

.product-box .product-detail h4, .product-box .product-info h4, .product-wrap .product-detail h4, .product-wrap .product-info h4 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box .product-detail .color-variant, .product-box .product-info .color-variant, .product-wrap .product-detail .color-variant, .product-wrap .product-info .color-variant {
  padding-top: 15px;
}

.product-box .product-detail .color-variant li, .product-box .product-info .color-variant li, .product-wrap .product-detail .color-variant li, .product-wrap .product-info .color-variant li {
  display: inline-block;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  margin-right: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-box .product-info, .product-wrap .product-info {
  padding: 0;
  text-align: center;
  position: relative;
}

.product-box .product-info .add-btn, .product-wrap .product-info .add-btn {
  position: absolute;
  bottom: 110px;
  margin: 0 auto;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1;
}

.product-box .product-info .add-btn i, .product-wrap .product-info .add-btn i {
  color: #000;
}

.product-box .product-info .add-btn .btn-outline, .product-wrap .product-info .add-btn .btn-outline {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #000;
}

.product-box .product-info .add-btn .btn-outline:hover, .product-wrap .product-info .add-btn .btn-outline:hover {
  color: #fff;
}

.product-box .product-info .add-btn .btn-outline:hover i, .product-wrap .product-info .add-btn .btn-outline:hover i {
  color: #fff;
}

.product-box.effect-center .front img, .product-wrap.effect-center .front img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box.effect-center .img-wrapper .cart-box, .product-wrap.effect-center .img-wrapper .cart-box {
  bottom: 20%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box:hover.effect-center .front img, .product-wrap:hover.effect-center .front img {
  opacity: 0.3;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box:hover.effect-center .img-wrapper .cart-box, .product-wrap:hover.effect-center .img-wrapper .cart-box {
  bottom: 35%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box:hover .img-block .first, .product-box:hover .img-wrapper .first, .product-wrap:hover .img-block .first, .product-wrap:hover .img-wrapper .first {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box:hover .img-block .back, .product-box:hover .img-wrapper .back, .product-wrap:hover .img-block .back, .product-wrap:hover .img-wrapper .back {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.product-box:hover .cart-info, .product-wrap:hover .cart-info {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box:hover .cart-info button, .product-wrap:hover .cart-info button {
  -webkit-animation: fadeInUp 300ms ease-in-out;
  animation: fadeInUp 300ms ease-in-out;
}

.product-box:hover .cart-info a:nth-child(2) i, .product-wrap:hover .cart-info a:nth-child(2) i {
  -webkit-animation: fadeInUp 500ms ease-in-out;
  animation: fadeInUp 500ms ease-in-out;
}

.product-box:hover .cart-info a:nth-child(3) i, .product-wrap:hover .cart-info a:nth-child(3) i {
  -webkit-animation: fadeInUp 700ms ease-in-out;
  animation: fadeInUp 700ms ease-in-out;
}

.product-box:hover .cart-info a:nth-child(4) i, .product-wrap:hover .cart-info a:nth-child(4) i {
  -webkit-animation: fadeInUp 1000ms ease-in-out;
  animation: fadeInUp 1000ms ease-in-out;
}

.product-box:hover .cart-wrap button, .product-wrap:hover .cart-wrap button {
  -webkit-animation: fadeInRight 300ms ease-in-out;
  animation: fadeInRight 300ms ease-in-out;
}

.product-box:hover .cart-wrap a:nth-child(2) i, .product-wrap:hover .cart-wrap a:nth-child(2) i {
  -webkit-animation: fadeInRight 500ms ease-in-out;
  animation: fadeInRight 500ms ease-in-out;
}

.product-box:hover .cart-wrap a:nth-child(3) i, .product-wrap:hover .cart-wrap a:nth-child(3) i {
  -webkit-animation: fadeInRight 700ms ease-in-out;
  animation: fadeInRight 700ms ease-in-out;
}

.product-box:hover .cart-wrap a:nth-child(4) i, .product-wrap:hover .cart-wrap a:nth-child(4) i {
  -webkit-animation: fadeInRight 1000ms ease-in-out;
  animation: fadeInRight 1000ms ease-in-out;
}

.product-box:hover .cart-wrap.cart-effect-left button, .product-wrap:hover .cart-wrap.cart-effect-left button {
  -webkit-animation: fadeInLeft 300ms ease-in-out;
  animation: fadeInLeft 300ms ease-in-out;
}

.product-box:hover .cart-wrap.cart-effect-left a:nth-child(2) i, .product-wrap:hover .cart-wrap.cart-effect-left a:nth-child(2) i {
  -webkit-animation: fadeInLeft 500ms ease-in-out;
  animation: fadeInLeft 500ms ease-in-out;
}

.product-box:hover .cart-wrap.cart-effect-left a:nth-child(3) i, .product-wrap:hover .cart-wrap.cart-effect-left a:nth-child(3) i {
  -webkit-animation: fadeInLeft 700ms ease-in-out;
  animation: fadeInLeft 700ms ease-in-out;
}

.product-box:hover .cart-wrap.cart-effect-left a:nth-child(4) i, .product-wrap:hover .cart-wrap.cart-effect-left a:nth-child(4) i {
  -webkit-animation: fadeInLeft 1000ms ease-in-out;
  animation: fadeInLeft 1000ms ease-in-out;
}

.product-box:hover .cart-detail, .product-wrap:hover .cart-detail {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-box:hover .cart-detail button, .product-wrap:hover .cart-detail button {
  -webkit-animation: fadeInRight 300ms ease-in-out;
  animation: fadeInRight 300ms ease-in-out;
}

.product-box:hover .cart-detail a:nth-child(2) i, .product-wrap:hover .cart-detail a:nth-child(2) i {
  -webkit-animation: fadeInRight 500ms ease-in-out;
  animation: fadeInRight 500ms ease-in-out;
}

.product-box:hover .cart-detail a:nth-child(3) i, .product-wrap:hover .cart-detail a:nth-child(3) i {
  -webkit-animation: fadeInRight 700ms ease-in-out;
  animation: fadeInRight 700ms ease-in-out;
}

.product-box:hover .cart-detail a:nth-child(4) i, .product-wrap:hover .cart-detail a:nth-child(4) i {
  -webkit-animation: fadeInRight 1000ms ease-in-out;
  animation: fadeInRight 1000ms ease-in-out;
}

.product-box:hover .product-info .add-btn, .product-wrap:hover .product-info .add-btn {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-animation: fadeInUp 500ms ease-in-out;
  animation: fadeInUp 500ms ease-in-out;
}

.product-box:hover .img-wrapper .cart-box, .product-wrap:hover .img-wrapper .cart-box {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-animation: fadeInUp 400ms ease-in-out;
  animation: fadeInUp 400ms ease-in-out;
}

.rating {
  margin-top: 0;
}

.rating i {
  padding-right: 5px;
}

.rating i:nth-child(-n + 4) {
  color: #ffa200;
}

.rating i:last-child {
  color: #dddddd;
}

.rating .three-star {
  padding-bottom: 5px;
}

.rating .three-star i {
  color: #acacac;
}

.rating .three-star i:nth-child(-n + 3) {
  color: #ffd200;
}

.single-product-tables {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.single-product-tables table {
  width: 20%;
}

.single-product-tables table tr {
  height: 35px;
}

.single-product-tables table tr td:first-child {
  font-weight: 600;
}

.single-product-tables.detail-section {
  margin-top: 0;
}

.single-product-tables.detail-section table {
  width: 75%;
}

/*************************
  category ends
*************************/
/*************************
  Typography Start
*************************/
.product-pagination {
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  margin: 50px 0;
}

.product-pagination .product-search-count-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  padding-right: 15px;
}

.product-pagination .product-search-count-bottom h5 {
  color: #777777;
  font-size: 14px;
  margin-bottom: 0;
  padding: 5px 0;
}

.product-pagination .pagination {
  border-radius: 0;
}

.product-pagination .pagination .page-item {
  border-radius: 0;
}

.product-pagination .pagination .page-item a {
  padding: 18px;
  border-bottom: 0;
  border-top: 0;
  color: #777777;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.product-pagination .pagination .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.product-pagination .pagination .page-item.active a {
  color: #fff;
  background-color: #000;
  border-color: #dddddd;
}

.typography_section .typography-box {
  margin-bottom: 30px;
  -webkit-box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.1);
}

.typography_section .typography-box p {
  margin-bottom: 20px;
  letter-spacing: 0;
  line-height: 22px;
  font-size: 14px;
  color: #757575;
}

.typography_section .typography-box dl dt {
  margin-bottom: 6px;
}

.typography_section .typography-box dl dd {
  margin-bottom: 15px;
}

.typography_section .typography-box .headings {
  border-bottom: 1px solid #f1f1f1;
  background-color: rgba(247, 247, 247, 0.5);
  padding: 20px;
  margin-bottom: 0;
}

.typography_section .typography-box .headings h3 {
  text-transform: capitalize;
  color: #2d2d2d;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 20px;
}

.typography_section .typography-box .headings span {
  display: block;
  color: #808080;
  margin-top: 5px;
}

.typography_section .typography-box .headings span h1 {
  margin-top: 0;
}

.typography_section .typography-box .headings span code {
  color: #808080;
}

.typography_section .typography-box .typo-content {
  padding: 15px;
}

.typography_section .typography-box .typo-content h1 {
  margin-top: 0;
}

.typography_section .typography-box .typo-content.lists ul {
  margin-bottom: 25px;
}

.typography_section .typography-box .typo-content.heading_content h1,
.typography_section .typography-box .typo-content.heading_content h2,
.typography_section .typography-box .typo-content.heading_content h3,
.typography_section .typography-box .typo-content.heading_content h4,
.typography_section .typography-box .typo-content.heading_content h5,
.typography_section .typography-box .typo-content.heading_content h6 {
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.typography_section .typography-box .typo-content ul li, .typography_section .typography-box .typo-content ol li {
  margin-bottom: 8px;
}

.typography_section .typography-box .typo-content .sub-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #000;
  text-transform: capitalize;
}

.typography_section .typography-box .typo-content.product-pagination {
  border: none;
  margin: 0;
}

.typography_section .typography-box .typo-content.product-pagination .pagination .page-item {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

.typography_section .typography-box .typo-content.product-pagination .pagination .page-item a {
  padding: 10px 14px;
}

.typography_section .typography-box .typo-content.input_button input {
  margin-bottom: 10px;
}

.typography_section .typography-box .typo-content.input_button label {
  font-size: 16px;
  text-transform: capitalize;
  padding-left: 5px;
}

.typography_section .typography-box .typo-content.loader-typo {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.typography_section .typography-box .typo-content.loader-typo .pre-loader {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #000;
  border-radius: 50%;
}

.typography_section .typography-box .typo-content.loader-typo .pre-loader:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  border: 0 solid white;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: loading 1000ms ease-out forwards infinite;
  animation: loading 1000ms ease-out forwards infinite;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.typography_section .typography-box .typo-content .footer-social {
  margin-top: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.typography_section .typography-box:last-child {
  margin-bottom: 0;
}

.typography_section code {
  color: rgba(0, 0, 0, 0.6);
  background-color: #f7f7f7;
  padding: 3px;
  margin: 0 3px;
  border-radius: 2px;
}

.login-page h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  margin-top: -5px;
}

.login-page .theme-card {
  padding: 30px;
  border: 1px solid #dddddd;
  line-height: 1;
}

.login-page .theme-card .theme-form label {
  text-transform: capitalize;
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.login-page .theme-card .theme-form input {
  border: 1px solid;
  border-color: #dddddd;
  font-size: 1rem;
  border-radius: 0px;
  padding: 0.375rem 0.75rem;
  margin-bottom: 30px;
  background: #fff;
  height: inherit;
}

.login-page .authentication-right {
  height: calc(100% - 48px);
}

.login-page .authentication-right h6 {
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  margin-bottom: 20px;
}

.login-page .authentication-right p {
  font-size: 14px;
  color: #808080;
  line-height: 2;
  margin-bottom: 1rem;
}

.bg-light-inner {
  background: #f8f8f8 !important;
}

.bg-gradient-color {
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#252525));
  background: linear-gradient(#000, #252525);
}

/*************************
  Typography ends
*************************/
/*************************
  register Start
*************************/
.register-page .text-sub {
  margin-bottom: 15px;
}

.register-page h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #000;
  font-weight: 700;
  margin-top: -5px;
}

.register-page .theme-card {
  padding: 30px;
  border: 1px solid #dddddd;
  line-height: 1;
}

.register-page .theme-card .theme-form label {
  text-transform: capitalize;
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.register-page .theme-card .theme-form input, .register-page .theme-card .theme-form textarea {
  border: 1px solid;
  border-color: #dddddd;
  font-size: 1rem;
  padding: 0.375rem 0.75rem;
  margin-bottom: 30px;
  height: inherit;
  background: #fff;
  border-radius: 0;
}

.register-page .theme-card .theme-form::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #495057;
}

.register-page .theme-card .theme-form::-moz-placeholder {
  /* Firefox 19+ */
  color: #495057;
}

.register-page .theme-card .theme-form:-ms-input-placeholder {
  /* IE 10+ */
  color: #495057;
}

.register-page .theme-card .theme-form:-moz-placeholder {
  /* Firefox 18- */
  color: #495057;
}

.alert-section .card {
  -webkit-box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border: 0;
}

.alert-section .card .card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
  background: #fff;
}

.alert-section .card .card-header .card-head {
  margin-top: 0;
}

.alert-section .card .card-body .alert.outline {
  background-color: transparent !important;
}

.alert-section .card .card-body .alert.outline.alert-primary {
  border-color: #004085;
  color: #004085;
}

.alert-section .card .card-body .alert.outline.alert-secondary {
  border-color: #383d41;
  color: #383d41;
}

.alert-section .card .card-body .alert.outline.alert-success {
  border-color: #155724;
  color: #155724;
}

.alert-section .card .card-body .alert.outline.alert-info {
  border-color: #0c5460;
  color: #0c5460;
}

.alert-section .card .card-body .alert.outline.alert-warning {
  border-color: #856404;
  color: #856404;
}

.alert-section .card .card-body .alert.outline.alert-danger {
  border-color: #721c24;
  color: #721c24;
}

.alert-section .card .card-body .alert.outline.alert-dark {
  border-color: #1b1e21;
  color: #1b1e21;
}

.alert-section .card .card-body .alert a {
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.saas1.according .text-sub {
  margin-bottom: 20px;
}

.saas1 .client-box .saas-brand .owl-item img {
  max-width: 100px;
  margin: 0 auto;
}

.saas1.client {
  padding: 50px 0;
  overflow: hidden;
}

.saas1 .testimonial-slider .owl-stage-outer {
  margin-right: 28px;
}

.shadow-section .shadow-showcase .shadow-font {
  font-weight: 500;
}

.btn-section .margin-buttons {
  margin-bottom: -15px;
}

.btn-section .btn-default {
  margin-right: 12px;
  margin-bottom: 15px;
}

.btn-section .btn-default.primary-btn.secondary {
  background: #000;
}

.btn-section .btn-default.primary-btn.secondary:hover {
  background: transparent;
  color: #000 !important;
  border-color: #000;
}

.btn-section .btn-default.primary-btn.secondary.btn-white {
  color: #000 !important;
  border-color: #000 !important;
  background: #fff;
}

.btn-section .btn-default.primary-btn.secondary.btn-white:hover {
  color: #fff !important;
  background: #000;
}

.btn-section .btn-default.primary-btn.success {
  background: #35b53e;
}

.btn-section .btn-default.primary-btn.success:hover {
  background: transparent;
  color: #35b53e !important;
  border-color: #35b53e;
}

.btn-section .btn-default.primary-btn.success.btn-white {
  color: #35b53e !important;
  border-color: #35b53e !important;
  background: #fff;
}

.btn-section .btn-default.primary-btn.success.btn-white:hover {
  color: #fff !important;
  background: #35b53e;
}

.btn-section .btn-default.primary-btn.info {
  background: #357fef;
}

.btn-section .btn-default.primary-btn.info:hover {
  background: transparent;
  color: #357fef !important;
  border-color: #357fef;
}

.btn-section .btn-default.primary-btn.info.btn-white {
  color: #357fef !important;
  border-color: #357fef !important;
  background: #fff;
}

.btn-section .btn-default.primary-btn.info.btn-white:hover {
  color: #fff !important;
  background: #357fef;
}

.btn-section .btn-default.primary-btn.warning {
  background: #c0882f;
}

.btn-section .btn-default.primary-btn.warning:hover {
  background: transparent;
  color: #c0882f !important;
  border-color: #c0882f;
}

.btn-section .btn-default.primary-btn.warning.btn-white {
  color: #c0882f !important;
  border-color: #c0882f !important;
  background: #fff;
}

.btn-section .btn-default.primary-btn.warning.btn-white:hover {
  color: #fff !important;
  background: #c0882f;
}

.btn-section .btn-default.primary-btn.danger {
  background: #e3154f;
}

.btn-section .btn-default.primary-btn.danger:hover {
  background: transparent;
  color: #e3154f !important;
  border-color: #e3154f;
}

.btn-section .btn-default.primary-btn.danger.btn-white {
  color: #e3154f !important;
  border-color: #e3154f !important;
  background: #fff;
}

.btn-section .btn-default.primary-btn.danger.btn-white:hover {
  color: #fff !important;
  background: #e3154f;
}

.btn-section .btn-default.primary-btn.light {
  background: #ECC878;
}

.btn-section .btn-default.primary-btn.light:hover {
  background: transparent;
  color: #ECC878 !important;
  border-color: #ECC878;
}

.btn-section .btn-default.primary-btn.light.btn-white {
  color: #ECC878 !important;
  border-color: #ECC878 !important;
  background: #fff;
}

.btn-section .btn-default.primary-btn.light.btn-white:hover {
  color: #fff !important;
  background: #ECC878;
}

.borders-before span.white-border:before {
  border-color: #fff !important;
}

.title.title2.title-inner .borders span.white-border:before, .title.title2.title-inner .borders span.white-border:after {
  border-color: #fff;
}

.title.title2.title-inner .borders span:before, .title.title2.title-inner .borders span:after {
  border-color: #000;
  opacity: 0.6;
}

.side-section {
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  width: 400px;
  background: #fff;
  display: none;
  z-index: 608;
  -webkit-box-shadow: 0 3px 15px 3px rgba(46, 97, 220, 0.35);
  box-shadow: 0 3px 15px 3px rgba(46, 97, 220, 0.35);
  overflow-Y: scroll;
}

.parallex-section .parallex-container {
  background-position: center;
  background-size: cover;
  height: 100vh;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.vertical-slider .prtfolio-full-screen img {
  width: 100vw;
  height: 100vh;
}

.vertical-slider .owl-dots {
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.vertical-slider .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  margin-bottom: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  display: block;
  cursor: pointer;
}

.vertical-slider .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: transparent;
}

.vertical-slider .owl-dots .owl-dot.active span {
  background-color: white;
}

.vertical-slider .owl-dots .owl-dot.my-active-class,
.vertical-slider .owl-dots .owl-dot:hover {
  background-color: #fff;
}

.multiple-carousel, .center-slide {
  height: 100vh;
}

.multiple-carousel .img1, .center-slide .img1 {
  background: url("../images/portfolio/multiple-carousel/5.jpg");
}

.multiple-carousel .img2, .center-slide .img2 {
  background: url("../images/portfolio/multiple-carousel/4.jpg");
}

.multiple-carousel .img3, .center-slide .img3 {
  background: url("../images/portfolio/multiple-carousel/3.jpg");
}

.multiple-carousel .img4, .center-slide .img4 {
  background: url("../images/portfolio/multiple-carousel/2.jpg");
}

.multiple-carousel .img5, .center-slide .img5 {
  background: url("../images/portfolio/multiple-carousel/1.jpg");
}

.multiple-carousel .imgs-carousel, .center-slide .imgs-carousel {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.multiple-carousel .imgs-carousel:before, .center-slide .imgs-carousel:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.multiple-carousel .text-container .overlay-text, .multiple-carousel .text-container .right-side, .center-slide .text-container .overlay-text, .center-slide .text-container .right-side {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.multiple-carousel .text-container .overlay-text, .center-slide .text-container .overlay-text {
  font-size: 26px;
  margin-bottom: 10px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.multiple-carousel .text-container .right-side, .center-slide .text-container .right-side {
  padding: 0 20px;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  color: #b1b1b1;
}

.multiple-carousel .owl-item, .center-slide .owl-item {
  overflow: hidden;
}

.multiple-carousel .owl-item.center .imgs-carousel:before, .center-slide .owl-item.center .imgs-carousel:before {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.multiple-carousel .owl-item.center .text-container .overlay-text, .multiple-carousel .owl-item.center .text-container .right-side, .center-slide .owl-item.center .text-container .overlay-text, .center-slide .owl-item.center .text-container .right-side {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: unset;
  transform: unset;
  opacity: 1;
}

.multiple-carousel .owl-item:hover .imgs-carousel:before {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.multiple-carousel .owl-item:hover .text-container .overlay-text, .multiple-carousel .owl-item:hover .text-container .right-side {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: unset;
  transform: unset;
  opacity: 1;
}

.maintenance-sec {
  background: url("../images/inner-page/maintain-soon/bg-maintenance.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 100vh;
}

.maintenance-sec .maintenance-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.maintenance-sec .maintenance-container h1, .maintenance-sec .maintenance-container h2, .maintenance-sec .maintenance-container h4 {
  color: #fff;
}

.maintenance-sec .maintenance-container h1 {
  font-size: 100px;
  font-weight: 500;
  margin-bottom: 80px;
  margin-top: 0;
}

.maintenance-sec .maintenance-container .borders {
  border-bottom: 0.5px solid #fff;
  margin: 0 auto;
}

.maintenance-sec .maintenance-container .borders.b1 {
  width: 220px;
}

.maintenance-sec .maintenance-container .borders.b2 {
  width: 180px;
}

.maintenance-sec .maintenance-container .borders.b3 {
  width: 150px;
}

.maintenance-sec .maintenance-container .borders.b4 {
  width: 130px;
}

.maintenance-sec .maintenance-container h2 {
  margin-top: 10px;
}

.maintenance-sec .social ul li, .coming-soon .social ul li {
  display: inline-block;
  padding: 5px 8px;
  margin-left: 10px;
  background-color: #000;
  height: 40px;
  width: 40px;
  border-radius: 100%;
}

.maintenance-sec .social ul li a i, .coming-soon .social ul li a i {
  color: #fff;
  font-size: 20px;
  opacity: 0.7;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.maintenance-sec .social ul li:hover a i, .coming-soon .social ul li:hover a i {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.maintenance-sec .center-content .form-group, .coming-soon .center-content .form-group {
  width: 60%;
}

.maintenance-sec .center-content .form-group .d-flex, .coming-soon .center-content .form-group .d-flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.maintenance-sec .center-content .form-group input, .coming-soon .center-content .form-group input {
  border-radius: 25px;
  padding: 15px 25px;
  height: auto;
}

.maintenance-sec .center-content button, .coming-soon .center-content button {
  border-radius: 35px;
  margin-left: -50px;
}

.bg-background-fade {
  -webkit-transition: all 500ms;
  transition: all 500ms;
  background: #ef6767;
}

.creative-content {
  background-size: cover;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: bottom;
}

.creative body, .creative h1, .creative h2, .creative h3, .creative h4, .creative h5, .creative h6, .creative p, .creative li, .creative a {
  font-family: 'Work Sans', sans-serif;
}

.creative h1 {
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.creative hr {
  margin-bottom: 20px;
  background: #fff;
}

.creative h6 {
  margin: 0;
}

.creative .center-header {
  font-size: calc(18px + (40 - 18) * ((100vw - 300px) / (1920 - 300)));
  margin-bottom: 20px;
}

.creative .agency-para {
  padding: 0 50px;
  margin: 0 50px;
}

.creative .btn-default {
  padding: 10px 36px;
}

.creative .sub-texts {
  color: #fff;
}

.creative .title.title2 .borders span:before, .creative .title.title2 .borders span:after {
  border-top: 1px solid #f5f5f8;
  width: 40px;
}

.portfolio-metro.bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.portfolio-metro body, .portfolio-metro h1, .portfolio-metro h2, .portfolio-metro h3, .portfolio-metro h4, .portfolio-metro h5, .portfolio-metro h6, .portfolio-metro p, .portfolio-metro li, .portfolio-metro a {
  font-family: 'Montserrat', sans-serif;
}

.portfolio-metro h1 {
  font-size: 80px;
  margin-bottom: 50px;
}

.portfolio-metro .portfolio_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.portfolio-metro .portfolio_section h1 {
  margin-top: 0;
}

.portfolio-metro .portfolio_section h6 {
  margin-bottom: -3px;
}

.portfolio-metro .sub-header {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  color: #777;
}

.portfolio-metro .center-content {
  height: auto;
}

.music ::-webkit-scrollbar {
  width: 10px;
}

.music ::-webkit-scrollbar-thumb {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(35, 62, 128, 0.92)), to(#1c255a));
  background-image: linear-gradient(rgba(35, 62, 128, 0.92) 0%, #1c255a 100%);
  border-radius: 25px;
}

.music.side-section .btn-sidebar {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: #fff !important;
  opacity: 0.8;
  padding: 25px 18px;
}

.music.side-section .jp-type-playlist .jp-gui .gradient-block {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(35, 62, 128, 0.92)), to(#1c255a));
  background-image: linear-gradient(rgba(35, 62, 128, 0.92) 0%, #1c255a 100%);
  position: relative;
  overflow: hidden;
  height: 30vh;
}

.music.side-section .jp-type-playlist .jp-gui .gradient-block .animation-circle-inverse {
  opacity: 0.25;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.music.side-section .jp-type-playlist .jp-gui .gradient-block .animation-circle-inverse i {
  background: #fff;
  position: absolute;
  height: 55px;
  width: 55px;
  border-radius: 100%;
  left: -28px;
  bottom: -33px;
  opacity: 0.3;
  -webkit-animation: ripple1 3s linear infinite;
  animation: ripple1 3s linear infinite;
}

.music.side-section .jp-type-playlist .jp-gui .gradient-block .animation-circle-inverse i:nth-child(2) {
  -webkit-animation: ripple2 3s linear infinite;
  animation: ripple2 3s linear infinite;
}

.music.side-section .jp-type-playlist .jp-gui .gradient-block .animation-circle-inverse i:nth-child(3) {
  -webkit-animation: ripple3 3s linear infinite;
  animation: ripple3 3s linear infinite;
}

.music.side-section .jp-type-playlist .jp-gui .gradient-block .now-play {
  font-size: calc(13px + (16 - 13) * (100vw - 330px) / (1920 - 330));
  padding-top: 30px;
  opacity: 0.8;
}

.music.side-section .jp-type-playlist .jp-gui .girls {
  border-radius: 100%;
  padding: 20px;
  background-color: #fff;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-box-shadow: 0 6px 30px 1px rgba(37, 67, 138, 0.18);
  box-shadow: 0 6px 30px 1px rgba(37, 67, 138, 0.18);
}

.music.side-section .jp-type-playlist .jp-gui .author-text {
  z-index: 3;
  position: relative;
}

.music.side-section .jp-type-playlist .jp-gui .author-text h4, .music.side-section .jp-type-playlist .jp-gui .author-text h6 {
  color: #000;
}

.music.side-section .jp-type-playlist .jp-gui .author-text .song-text {
  margin-top: -50px;
  margin-bottom: 3px;
  color: #000;
}

.music.side-section .jp-type-playlist .jp-gui .author-text .song-sub-text {
  color: #808080;
}

.music.side-section .jp-playlist {
  margin-top: 30px;
}

.music.side-section .jp-details,
.music.side-section .jp-playlist {
  width: 100%;
  border-top: 1px solid #b1b1b1;
}

.music.side-section .side-player .author-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.music.side-section .side-player .jp-progress {
  margin-top: 35px;
}

.music.side-section .jp-controls .button-container {
  padding: 20px;
}

.music.side-section .jp-controls .button-container button {
  height: 30px;
  width: 30px;
  color: #fff;
  border-radius: 100%;
  background-color: #8080804f;
}

.music.side-section .jp-controls .button-container button.jp-play {
  height: 50px;
  width: 50px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#233e80), to(#1c255a));
  background-image: linear-gradient(#233e80 0%, #1c255a 100%);
  background-color: white;
  -webkit-box-shadow: 0 3px 15px 3px rgba(46, 97, 220, 0.25);
  box-shadow: 0 3px 15px 3px rgba(46, 97, 220, 0.25);
}

.animated-bg i {
  background: #dddddd;
  bottom: 0;
  -webkit-box-shadow: 0 15px 30px 0 #dddddd;
  box-shadow: 0 15px 30px 0 #dddddd;
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 100%;
  opacity: 0.3;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  -webkit-animation: ripple1 3s linear infinite;
  animation: ripple1 3s linear infinite;
}

.animated-bg i:nth-child(2) {
  -webkit-animation: ripple2 3s linear infinite;
  animation: ripple2 3s linear infinite;
}

.animated-bg i:nth-child(3) {
  -webkit-animation: ripple3 3s linear infinite;
  animation: ripple3 3s linear infinite;
}

@-webkit-keyframes ripple1 {
  0% {
    -webkit-transform: scale(5.5);
    transform: scale(5.5);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(8.5);
    transform: scale(8.5);
    opacity: 0.0;
  }
}

@keyframes ripple1 {
  0% {
    -webkit-transform: scale(5.5);
    transform: scale(5.5);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(8.5);
    transform: scale(8.5);
    opacity: 0.0;
  }
}

@-webkit-keyframes ripple2 {
  0% {
    -webkit-transform: scale(3.5);
    transform: scale(3.5);
  }

  100% {
    -webkit-transform: scale(5.5);
    transform: scale(5.5);
  }
}

@keyframes ripple2 {
  0% {
    -webkit-transform: scale(3.5);
    transform: scale(3.5);
  }

  100% {
    -webkit-transform: scale(5.5);
    transform: scale(5.5);
  }
}

@-webkit-keyframes ripple3 {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(3.5);
    transform: scale(3.5);
  }
}

@keyframes ripple3 {
  0% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(3.5);
    transform: scale(3.5);
  }
}

header {
  z-index: 600;
  width: 100%;
}

header.nav-lg {
  padding: 2rem 1rem;
}

header.nav-lg nav ul li a {
  font-size: 15px;
}

header.resume .responsive-btn i {
  color: #000 !important;
}

header.wedding .responsive-btn i {
  color: #000 !important;
}

header.ecommerce .navbar {
  position: unset;
}

header.ecommerce nav {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header.ecommerce nav ul.main-menu>li>a {
  color: #000;
  padding-top: 15px;
  padding-bottom: 15px;
}

header.ecommerce nav ul.main-menu>li:hover>a {
  color: #676767;
}

header.ecommerce nav .top-header-right ul li.cart .dropdown-menu {
  border: 0;
  padding: 0;
  margin-top: 20px;
}

header.ecommerce nav .top-header-right ul li .shopping-cart {
  width: 350px;
  padding: 30px;
  border: 1px solid #ddd;
  right: 0;
}

header.ecommerce nav .top-header-right ul li .shopping-cart li .total {
  border-top: 1px solid gray;
  padding-top: 10px;
  margin-top: 20px;
}

header.ecommerce nav .top-header-right ul li .shopping-cart li .total h5 {
  text-transform: capitalize;
  margin-bottom: 0;
  color: #808080;
}

header.ecommerce nav .top-header-right ul li .shopping-cart li .total h5 span {
  float: right;
}

header.ecommerce nav .top-header-right ul li .shopping-cart li .buttons a {
  font-size: 16px;
  color: #333333;
  text-transform: capitalize;
  font-weight: 700;
}

header.ecommerce nav .top-header-right ul li .shopping-cart li .buttons a:hover {
  color: #000;
}

header.ecommerce nav .top-header-right ul li .shopping-cart li .buttons .checkout {
  float: right;
}

header.ecommerce nav .top-header-right ul li .shopping-cart li+li {
  margin-top: 15px;
}

header.ecommerce nav .top-header-right ul li .shopping-cart .close-circle {
  position: absolute;
  right: 0;
  top: 10px;
}

header.ecommerce nav .top-header-right ul li .shopping-cart .close-circle i {
  color: #acacac;
}

header.ecommerce nav .top-header-right ul li .shopping-cart a {
  min-width: unset;
  width: unset;
  padding: 0;
}

header.ecommerce nav .top-header-right ul li .shopping-cart img {
  width: 70px;
}

header.ecommerce nav .top-header-right ul li.search .dropdown-menu {
  border: 0;
  padding: 0;
}

header.ecommerce nav .top-header-right ul li.search .dropdown-menu .form-control-plaintext {
  padding: 10px 20px;
  margin-top: 20px;
  border: 1px solid #dddddd;
  background-color: #fff;
}

header.ecommerce nav .top-header-right ul li.account .dropdown-menu {
  padding: 10px;
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 0;
}

header.ecommerce nav .top-header-right ul li a {
  padding: 12px;
}

header.ecommerce nav .top-header-right ul li i {
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

header.ecommerce nav .top-header-right ul li i.icon-shopping-cart-full {
  font-size: 22px;
}

header.gym nav .top-header-right ul li.cart .dropdown-menu {
  border: 0;
  padding: 0;
  margin-top: 20px;
}

header.gym nav .top-header-right ul li .shopping-cart {
  width: 350px;
  padding: 30px;
  border: 1px solid #ddd;
  right: 0;
}

header.gym nav .top-header-right ul li .shopping-cart li .total {
  border-top: 1px solid gray;
  padding-top: 10px;
  margin-top: 20px;
}

header.gym nav .top-header-right ul li .shopping-cart li .total h5 {
  text-transform: capitalize;
  margin-bottom: 0;
  color: #808080;
}

header.gym nav .top-header-right ul li .shopping-cart li .total h5 span {
  float: right;
}

header.gym nav .top-header-right ul li .shopping-cart li .buttons a {
  font-size: 16px;
  color: #333333;
  text-transform: capitalize;
  font-weight: 700;
}

header.gym nav .top-header-right ul li .shopping-cart li .buttons a:hover {
  color: #000;
}

header.gym nav .top-header-right ul li .shopping-cart li .buttons .checkout {
  float: right;
}

header.gym nav .top-header-right ul li .shopping-cart li+li {
  margin-top: 15px;
}

header.gym nav .top-header-right ul li .shopping-cart .close-circle {
  position: absolute;
  right: 0;
  top: 10px;
}

header.gym nav .top-header-right ul li .shopping-cart .close-circle i {
  color: #acacac;
}

header.gym nav .top-header-right ul li .shopping-cart a {
  min-width: unset;
  width: unset;
  padding: 0;
}

header.gym nav .top-header-right ul li .shopping-cart img {
  width: 70px;
}

header.gym nav .top-header-right ul li.search .dropdown-menu {
  border: 0;
  padding: 0;
}

header.gym nav .top-header-right ul li.search .dropdown-menu .form-control-plaintext {
  padding: 10px 20px;
  margin-top: 20px;
  border: 1px solid #dddddd;
  background-color: #fff;
}

header.gym nav .top-header-right ul li.account .dropdown-menu {
  padding: 10px;
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 0;
}

header.gym nav .top-header-right ul li a {
  padding: 12px;
}

header.gym nav .top-header-right ul li i {
  color: #000;
  font-size: 20px;
  font-weight: 500;
}

header.gym nav .top-header-right ul li i.icon-shopping-cart-full {
  font-size: 22px;
}

header.nav-abs {
  position: absolute;
}

header .responsive-btn {
  display: none;
}

header .responsive-btn i {
  font-size: calc(22px + (25 - 22) * ((100vw - 300px) / (1920 - 300)));
  color: #fff !important;
}

header nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  border: 0;
}

header nav .navbar-container {
  padding: 10px 0;
}

header nav ul {
  margin: 0;
  border: 0;
  line-height: 1;
  list-style-type: none;
  text-align: center;
}

header nav ul li {
  margin: 0;
  border: 0;
  line-height: 1;
  position: relative;
  display: inline-block;
  text-align: center;
}

header nav ul li a {
  margin: 0;
  border: 0;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  padding: 10px;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  font-weight: 500;
  letter-spacing: 0;
}

header nav ul li>a {
  color: white;
}

header nav ul li>a:hover {
  color: white;
}

header nav ul li>ul {
  display: none;
}

header nav ul li:hover .mega-menu-container {
  display: block;
}

header nav ul li:hover>ul {
  display: block;
}

header nav ul .sub-menu ul {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

header nav ul .sub-menu>a:before, header nav ul .dropdown:before {
  position: absolute;
  font: normal normal normal 14px/1 FontAwesome;
  right: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f105";
}

header nav ul .dropdown:before {
  content: "\f0d7";
}

header nav ul ul {
  margin: 0;
  border: 0;
  line-height: 1;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background: #fff;
  padding: 15px 0;
}

header nav ul ul li {
  margin: 0;
  border: 0;
  line-height: 1;
  display: block;
  text-align: left;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  position: relative;
}

header nav ul ul li a {
  margin: 0;
  border: 0;
  text-transform: capitalize;
  width: 100%;
  min-width: 240px;
  padding: 10px 18px;
  white-space: nowrap;
  color: #323232 !important;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 13px;
}

header nav ul ul li a:hover {
  color: #000 !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header nav ul ul li:hover>a, header nav ul ul li:focus>a, header nav ul ul li:active>a {
  color: #777;
  -webkit-transform: translateX(2%);
  transform: translateX(2%);
}

header nav ul .mega-menu {
  position: unset;
}

header nav ul .mega-menu .mega-menu-container {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  min-width: 1020px;
  left: unset;
  right: 0;
  padding: 20px 0;
  background: #fff;
  z-index: 9;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.15);
  display: none;
}

header nav ul .mega-menu .mega-menu-container ul {
  position: relative;
  padding: 0 10px;
}

header nav .menu-head {
  margin-bottom: 10px;
  color: #000 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 28px 10PX 10px;
  letter-spacing: 0;
  font-weight: 600;
  BORDER-BOTTOM: 1px solid #eee;
  text-transform: capitalize;
}

header nav .menu-arrow {
  font-size: 10px;
}

header.music {
  position: absolute;
}

header.resume nav ul li a:hover {
  color: #262626;
}

header.wedding .logo-abs {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

header.wedding.header-rel {
  background-color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px dashed #000;
}

header.yoga .logo-abs {
  position: absolute;
  top: 22%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

header.portfolio-metro nav .responsive-btn a:hover {
  color: #000;
  opacity: 0.7;
}

header.portfolio-metro nav ul li>a {
  color: #000;
}

header.portfolio-metro nav ul li>a:hover {
  color: #000;
}

header.wedding nav ul li>a:hover {
  color: #000;
}

header.dark {
  position: absolute;
}

header.dark nav .responsive-btn a:hover {
  color: #000;
  opacity: 0.7;
}

header.dark nav ul li>a {
  color: #000;
}

header.dark nav ul li>a:hover {
  color: #000;
}

/*************************
  Footer start
*************************/
footer.app2 h5 {
  color: #fff;
  padding-bottom: 55px;
}

footer.gym h5 {
  color: #fff;
  padding-bottom: 55px;
}

footer.saas1 h5 {
  color: #fff;
  padding-bottom: 55px;
  margin-bottom: unset;
}

.inner-pages-footer.resume .link-horizontal.social-link {
  margin-bottom: -5px;
  margin-top: 20px;
}

.blog-sidebar .sidebar-container .post-container:last-child {
  margin-bottom: 0;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #f5f5f8;
}

.event .event-btn {
  color: #FFFFFF !important;
  border: 1px solid white !important;
  background-color: #e3154f !important;
}

.event .event-btn:hover {
  background-color: #fff !important;
  color: #e3154f !important;
  border: 1px solid #e3154f !important;
}

.event.event-gradient::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#321575), to(#e3154f));
  background-image: linear-gradient(#321575, #e3154f);
}

.color-animated {
  -webkit-animation: color-change 1s infinite;
  animation: color-change 1s infinite;
  color: #000;
  margin-left: 10px;
}

.menu-container .color-animated {
  -webkit-animation: color-change 1s infinite;
  animation: color-change 1s infinite;
  color: #000;
  margin-left: 10px;
}

@-webkit-keyframes color-change {
  0% {
    color: #000;
  }

  50% {
    color: #e3154f;
  }

  100% {
    color: #252525;
  }
}

@keyframes color-change {
  0% {
    color: #000;
  }

  50% {
    color: #e3154f;
  }

  100% {
    color: #252525;
  }
}

.menu-container .menu-icon {
  position: absolute;
}

.menu-container .menu-icon li a {
  padding-left: 22px;
}

.menu-container .menu-icon li a:before {
  display: none;
}

.menu-container .menu-icon li a i {
  position: absolute;
  left: 0;
}

.menu-container li a:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 1px;
  background-color: black;
  left: 0;
  top: 50%;
}

.breadcrumb-section .breadcrumb {
  margin-bottom: -2px;
}

.blog-contain:hover {
  -webkit-box-shadow: 1px 1px 10px 1px #eee;
  box-shadow: 1px 1px 10px 1px #eee;
}

.product-slick .owl-carousel, .rtl-product-slick .owl-carousel, .product-right-slick .owl-carousel, .rtl-product-right-slick .owl-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.product-slick:hover .slick-prev, .product-slick:hover .slick-next, .rtl-product-slick:hover .slick-prev, .rtl-product-slick:hover .slick-next, .product-right-slick:hover .slick-prev, .product-right-slick:hover .slick-next, .rtl-product-right-slick:hover .slick-prev, .rtl-product-right-slick:hover .slick-next {
  opacity: 1;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-slick:hover .slick-prev:before, .product-slick:hover .slick-next:before, .rtl-product-slick:hover .slick-prev:before, .rtl-product-slick:hover .slick-next:before, .product-right-slick:hover .slick-prev:before, .product-right-slick:hover .slick-next:before, .rtl-product-right-slick:hover .slick-prev:before, .rtl-product-right-slick:hover .slick-next:before {
  opacity: 1;
}

.product-slick:hover .slick-next, .rtl-product-slick:hover .slick-next, .product-right-slick:hover .slick-next, .rtl-product-right-slick:hover .slick-next {
  right: 20px;
}

.product-slick:hover .slick-prev, .rtl-product-slick:hover .slick-prev, .product-right-slick:hover .slick-prev, .rtl-product-right-slick:hover .slick-prev {
  left: 20px;
}

.slider-nav .owl-carousel, .rtl-slider-nav .owl-carousel, .slider-right-nav .owl-carousel, .rtl-slider-right-nav .owl-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.slider-right-nav .slick-slide:first-child>div, .rtl-slider-right-nav .slick-slide:first-child>div {
  margin-top: 0;
}

.pro_sticky_info {
  border: 1px solid #dddddd;
  padding: 20px;
}

.is_stuck {
  margin-top: 80px;
}

.image-scroll div>div {
  padding-bottom: 20px;
}

.image-scroll div>div:last-child {
  padding: 0;
}

.product-right p {
  margin-bottom: 0;
  line-height: 1.5em;
}

.product-right .product-title {
  color: #222222;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 0;
}

.product-right .border-product {
  padding-top: 15px;
  padding-bottom: 20px;
  border-top: 1px dashed #dddddd;
}

.product-right h2 {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 1.2em;
}

.product-right h3 {
  font-size: 26px;
  color: #222222;
  margin-bottom: 15px;
}

.product-right h4 {
  font-size: 16px;
  margin-bottom: 7px;
}

.product-right h4 del {
  color: #777777;
}

.product-right h4 span {
  padding-left: 5px;
  color: #000;
}

.product-right .color-variant {
  margin-bottom: 10px;
}

.product-right .color-variant li {
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.product-right .color-variant li.white {
  border: 1px solid #ddd;
}

.product-right .product-buttons {
  margin-bottom: 20px;
}

.product-right .product-buttons .btn-default {
  padding: 7px 25px;
}

.product-right .product-buttons a:last-child {
  margin-left: 10px;
}

.product-right .product-description h6 span {
  float: right;
}

.product-right .product-description .qty-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.product-right .product-description .qty-box .input-group {
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
  width: unset;
}

.product-right .product-description .qty-box .input-group .form-control {
  border-right: none;
}

.product-right .size-box {
  margin-top: 10px;
  margin-bottom: 10px;
}

.product-right .size-box ul li {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  border: 1px solid #f7f7f7;
  text-align: center;
}

.product-right .size-box ul li a {
  color: #222222;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.product-right .size-box ul li.active {
  background-color: #f7f7f7;
}

.product-right .product-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-right .product-icon .product-social {
  margin-top: 5px;
}

.product-right .product-icon .product-social li {
  padding-right: 30px;
}

.product-right .product-icon .product-social li a {
  color: #333333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-right .product-icon .product-social li a i {
  font-size: 18px;
}

.product-right .product-icon .product-social li a:hover {
  color: #000;
}

.product-right .product-icon .product-social li:last-child {
  padding-right: 0;
}

.product-right .product-icon .wishlist-btn {
  background-color: transparent;
  border: none;
}

.product-right .product-icon .wishlist-btn i {
  border-left: 1px solid #dddddd;
  font-size: 18px;
  padding-left: 10px;
  margin-left: 5px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-right .product-icon .wishlist-btn span {
  padding-left: 10px;
  font-size: 18px;
}

.product-right .product-icon .wishlist-btn:hover i, .product-right .product-icon .wishlist-btn.active i {
  color: red;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product-right .payment-card-bottom {
  margin-top: 10px;
}

.product-right .payment-card-bottom ul li {
  padding-right: 10px;
}

.product-right .timer {
  margin-top: 10px;
  background-color: #f7f7f7;
}

.product-right .timer p {
  color: #222222;
}

.product-right.product-form-box {
  text-align: center;
  border: 1px solid #dddddd;
  padding: 20px;
}

.product-right.product-form-box .product-description .qty-box {
  margin-bottom: 5px;
}

.product-right.product-form-box .product-description .qty-box .input-group {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.product-right.product-form-box .product-buttons {
  margin-bottom: 0;
}

.product-right.product-form-box .timer {
  margin-bottom: 10px;
  text-align: left;
}

.single-product-tables {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.single-product-tables table {
  width: 20%;
}

.single-product-tables table tr {
  height: 35px;
}

.single-product-tables table tr td:first-child {
  font-weight: 600;
}

.single-product-tables.detail-section {
  margin-top: 0;
}

.single-product-tables.detail-section table {
  width: 55%;
}

.product-related h2 {
  color: #222222;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddada;
  margin-bottom: 20px;
}

.rating {
  margin-top: 0;
}

.rating i {
  padding-right: 5px;
}

.rating i:nth-child(-n + 4) {
  color: #ffa200;
}

.rating i:last-child {
  color: #dddddd;
}

.rating .three-star {
  padding-bottom: 5px;
}

.rating .three-star i {
  color: #acacac;
}

.rating .three-star i:nth-child(-n + 3) {
  color: #ffd200;
}

.tab-border {
  border: 1px solid #dddddd;
  margin: 0;
  padding: 8px 0;
}

.tab-border .nav-border {
  border-bottom: 0;
  border-right: 1px solid #dddddd;
}

.vertical-tab.tab-product .nav-material.nav-tabs .nav-item .nav-link, .vertical-tab .product-full-tab .nav-material.nav-tabs .nav-item .nav-link {
  padding: 15px 20px;
}

.tab-product, .product-full-tab {
  padding-top: 30px;
}

.tab-product .nav-tabs, .product-full-tab .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.tab-product .nav-tabs .nav-item .nav-link, .product-full-tab .nav-tabs .nav-item .nav-link {
  color: #212121;
  text-align: center;
  padding: 0 15px 20px 15px;
  text-transform: uppercase;
  border: 0;
}

.tab-product .nav-tabs .nav-item .material-border, .product-full-tab .nav-tabs .nav-item .material-border {
  border-bottom: 2px solid #000;
  opacity: 0;
}

.tab-product .nav-tabs .nav-link.active, .product-full-tab .nav-tabs .nav-link.active {
  color: #000;
  border-bottom: 2px solid #000;
}

.tab-product .nav-tabs .nav-link.active~.material-border, .product-full-tab .nav-tabs .nav-link.active~.material-border {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}

.tab-product .theme-form input, .product-full-tab .theme-form input {
  border-color: #dddddd;
  font-size: 15px;
  padding: 15px 25px;
  margin-bottom: 15px;
  height: inherit;
  text-align: left;
}

.tab-product .theme-form .btn-solid, .tab-product .theme-form .btn-outline, .product-full-tab .theme-form .btn-solid, .product-full-tab .theme-form .btn-outline {
  margin: 0 auto;
}

.tab-product .theme-form textarea, .product-full-tab .theme-form textarea {
  border-color: #dddddd;
  font-size: 15px;
  padding: 17px 25px;
  margin-bottom: 15px;
  height: inherit;
}

.tab-product .tab-content p, .product-full-tab .tab-content p {
  padding: 20px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.tab-product .tab-content .media, .product-full-tab .tab-content .media {
  margin-top: 20px;
}

.tab-product .title, .product-full-tab .title {
  padding-right: 45px;
  color: #000;
  padding-bottom: 20px;
}

.tab-product .theme-slider .slick-arrow, .product-full-tab .theme-slider .slick-arrow {
  top: -45px;
  height: auto;
}

.tab-product .theme-slider .slick-arrow :before, .product-full-tab .theme-slider .slick-arrow :before {
  color: #000;
  font-size: 18px;
}

.tab-product .product-box, .product-full-tab .product-box {
  position: relative;
  margin: 5px;
}

.tab-product .product-box:hover, .product-full-tab .product-box:hover {
  -webkit-box-shadow: 0 0 12px 0 #dddddd;
  box-shadow: 0 0 12px 0 #dddddd;
}

.tab-product .product-box:hover .lbl-1, .product-full-tab .product-box:hover .lbl-1 {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tab-product .product-box:hover .lbl-2, .product-full-tab .product-box:hover .lbl-2 {
  opacity: 1;
  -webkit-animation: flipInY 1000ms ease-in-out;
  animation: flipInY 1000ms ease-in-out;
}

.tab-product .product-box:hover .color-variant li, .product-full-tab .product-box:hover .color-variant li {
  opacity: 1 !important;
  -webkit-animation: fadeInUp 500ms ease-in-out;
  animation: fadeInUp 500ms ease-in-out;
}

.tab-product .product-box .img-block, .product-full-tab .product-box .img-block {
  min-height: unset;
}

.tab-product .product-box .cart-info, .product-full-tab .product-box .cart-info {
  position: absolute;
  padding: 10px 0;
  top: 25%;
  right: 15px;
  width: 40px;
  margin-right: 0;
}

.tab-product .product-box .cart-info i, .product-full-tab .product-box .cart-info i {
  padding-right: 0;
}

.tab-product .product-box .cart-info a, .tab-product .product-box .cart-info button, .product-full-tab .product-box .cart-info a, .product-full-tab .product-box .cart-info button {
  color: #333333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  height: 35px;
  width: 35px;
  margin: 7px 0;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  -webkit-box-shadow: 0 0 12px 0 #dddddd;
  box-shadow: 0 0 12px 0 #dddddd;
}

.tab-product .product-box .cart-info a :hover, .tab-product .product-box .cart-info button :hover, .product-full-tab .product-box .cart-info a :hover, .product-full-tab .product-box .cart-info button :hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
}

.tab-product .product-box .lbl-1, .product-full-tab .product-box .lbl-1 {
  background-color: #000;
  padding: 2px 20px 2px 10px;
  display: inline-block;
  text-align: center;
  color: #ffffff;
  position: absolute;
  left: 0;
  top: 15px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
}

.tab-product .product-box .lbl-1:before, .product-full-tab .product-box .lbl-1:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 12px solid #000;
  border-bottom: 13px solid #000;
  border-right: 7px solid #fff;
}

.tab-product .product-box .lbl-2, .product-full-tab .product-box .lbl-2 {
  font-size: 14px;
  top: 15px;
  position: absolute;
  right: 10px;
  color: #333333;
  font-weight: 600;
  text-transform: capitalize;
  opacity: 0;
}

.tab-product .product-box a, .product-full-tab .product-box a {
  color: #0072bb;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tab-product .product-box .color-variant, .product-full-tab .product-box .color-variant {
  position: absolute;
  top: -35px;
  width: 100%;
}

.tab-product .product-box .slick-slide img, .product-full-tab .product-box .slick-slide img {
  display: block;
}

.tab-product .product-box .product-details, .product-full-tab .product-box .product-details {
  position: relative;
}

.tab-product .product-box .product-details .color-variant, .product-full-tab .product-box .product-details .color-variant {
  position: absolute;
  top: -35px;
  width: 100%;
}

.tab-product .product-box .product-details .color-variant li, .product-full-tab .product-box .product-details .color-variant li {
  opacity: 0;
  display: inline-block;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  margin: 0 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-product .product-box .product-details h6, .product-full-tab .product-box .product-details h6 {
  color: #333333;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.tab-product .product-box .product-details .price, .product-full-tab .product-box .product-details .price {
  padding-bottom: 10px;
  font-size: 16px;
  color: #000;
}

.product-full-tab {
  padding-top: 70px;
}

.product-load-more .col-grid-box {
  display: none;
}

.load-more-sec {
  margin-top: 40px;
  text-align: center;
}

.load-more-sec a {
  font-size: 18px;
  text-transform: uppercase;
  display: block;
  padding: 10px 0;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  width: 100%;
  color: #000;
}

.product_image_4>div:nth-last-child(-n + 2) {
  margin-top: 25px;
}

.btn-app1-theme {
  border: transparent !important;
  position: relative !important;
  background-color: #4E56F3 !important;
  background-image: -webkit-gradient(linear, left top, right top, from(#13B8EA), color-stop(#4E56F3), color-stop(#4E56F3), to(#13B8EA)) !important;
  background-image: linear-gradient(to right, #13B8EA, #4E56F3, #4E56F3, #13B8EA) !important;
  -webkit-transition: all 0.4s ease-in-out !important;
  transition: all 0.4s ease-in-out !important;
  background-size: 300% 100% !important;
}

.saas1-btn {
  border: 2px solid #071828 !important;
  color: #071828 !important;
}

.saas1-btn:hover {
  background-color: #071828 !important;
  color: #fff !important;
}

.saas2-btn {
  border: transparent !important;
  position: relative !important;
  background-color: #5E57EA !important;
  background-image: -webkit-gradient(linear, left top, right top, from(#9647DB), color-stop(#5E57EA), color-stop(#5E57EA), to(#9647DB)) !important;
  background-image: linear-gradient(to right, #9647DB, #5E57EA, #5E57EA, #9647DB) !important;
  -webkit-transition: all 0.4s ease-in-out !important;
  transition: all 0.4s ease-in-out !important;
  background-size: 300% 100% !important;
}

.copyright.inner-page li {
  line-height: normal;
}

.app1 .title .main-title h2 {
  line-height: 0.9;
}

.bg-shadow-top-bottom {
  -webkit-box-shadow: inset 0 70px 75px -15px rgba(0, 0, 0, 0.8), inset 0 -70px 75px -15px rgba(0, 0, 0, 0.8);
  box-shadow: inset 0 70px 75px -15px rgba(0, 0, 0, 0.8), inset 0 -70px 75px -15px rgba(0, 0, 0, 0.8);
}

.bg-shadow-top {
  -webkit-box-shadow: inset 0px -70px 90px -44px #000;
  box-shadow: inset 0px -70px 90px -44px #000;
}

.bg-unset {
  background: unset !important;
}

.about-page {
  background-color: #f8f8f8;
}

.about-page.testimonial {
  background-color: #f8f8f8;
}

.about-page.testimonial img {
  -webkit-filter: brightness(25%);
  filter: brightness(25%);
}

.about-page.testimonial .avtar-img {
  -webkit-filter: unset;
  filter: unset;
}

.about-page.testimonial .quotes .quote-text h5 {
  color: #0b0b0b;
}

.about-page.testimonial .rating .name {
  color: #000;
}

.about-page.testimonial .rating .stars i {
  color: #ddd;
}

.about-page.counter img {
  -webkit-filter: brightness(25%);
  filter: brightness(25%);
}

/*************************
  Footer ends
*************************/
/*************************
  compare start
*************************/
.layout-ecommerce section {
  padding: 70px 0;
}

.layout-ecommerce .ecommerce-footer {
  padding-top: 70px;
}

.layout-ecommerce .blog-sec.blog .blog-agency {
  margin-bottom: 0;
}

.ecommerce.collection {
  padding-top: 0;
  margin-top: -100px;
  margin-bottom: 30px;
}

.ecommerce.feature-product {
  padding-top: 0;
  margin-bottom: -5px;
}

.ecommerce .banner-three {
  background-color: #fff;
  border: 1px solid #f1f1f1;
  padding: 30px 15px;
  z-index: 1;
  position: relative;
}

.ecommerce .banner-three .main-wrapper img {
  height: 200px;
  background-blend-mode: overlay;
  background-color: rgba(245, 245, 245, 0.2);
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  width: 100%;
}

.ecommerce .banner-three .main-wrapper .banner-contain {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.ecommerce .banner-three .main-wrapper:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.ecommerce .banner-three .main-wrapper:hover .banner-contain {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.ecommerce .contain {
  height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ecommerce .contain h1 {
  color: #333333;
  margin-bottom: 30px;
  font-weight: 600;
}

.ecommerce .contain .btn-default {
  margin-top: 20px;
}

.ecommerce.ecommerce-home {
  padding-top: 90px;
  padding-bottom: 0;
}

.ecommerce.ecommerce-home .ecommerce-home-slider .owl-item, .ecommerce.ecommerce-home .ecommerce-home-slider .bg-size {
  height: 80vh;
}

.ecommerce.ecommerce-home .ecommerce-home-slider .owl-item .item-class, .ecommerce.ecommerce-home .ecommerce-home-slider .bg-size .item-class {
  background-size: cover;
  background-position: center center;
  display: block;
  height: 80vh;
}

.ecommerce .owl-nav {
  margin: 0;
}

.ecommerce .owl-nav [class*=owl-] {
  position: absolute;
  top: 50%;
  margin-top: -45px;
  color: #333333;
  font-size: 24px;
  padding: 12px 13px;
  background: #fff;
  border-radius: 100%;
  line-height: 1;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
}

.ecommerce .owl-nav [class*=owl-]:hover {
  background-color: #f8f8f8;
  color: #333333;
}

.ecommerce .owl-nav [class*=owl-].owl-prev {
  left: 15px;
}

.ecommerce .owl-nav [class*=owl-].owl-next {
  right: 15px;
}

.ecommerce.nav-fix {
  background-color: #fff;
}

.ecommerce .brand-slider .item img {
  max-width: 150px;
  margin: 0 auto;
}

.ecommerce-footer {
  background-color: #212121;
  padding-bottom: 0;
}

.ecommerce-footer .sub-footer {
  padding-top: 30px;
  background-color: black;
  margin-top: 50px;
  padding-bottom: 20px;
}

.ecommerce-footer .sub-footer p {
  padding-top: 8px;
}

.ecommerce-footer .payment-card-bottom {
  text-align: right;
}

.ecommerce-footer .payment-card-bottom ul li {
  display: inline-block;
}

.ecommerce-footer .payment-card-bottom ul li+li {
  padding-left: 10px;
}

.ecommerce-footer .footer-title h4 {
  color: #e3e3e3;
}

.ecommerce-footer .footer-contant>ul li+li {
  margin-top: 15px;
}

.ecommerce-footer .footer-contant>ul li a {
  color: #acacac;
}

.ecommerce-footer .footer-contant .contact-list li {
  color: #acacac;
  padding-left: 25px;
  position: relative;
}

.ecommerce-footer .footer-contant .contact-list li i {
  position: absolute;
  left: 0;
  top: 3px;
}

.ecommerce-footer .footer-social ul li {
  display: inline-block;
  height: 35px;
  width: 35px;
  background-color: #e3e3e3;
  text-align: center;
  line-height: 2.6;
  margin-top: 20px;
  margin-right: 10px;
  border-radius: 100%;
}

.ecommerce-footer .footer-logo, .ecommerce-footer h4 {
  margin-bottom: 30px;
}

.ecommerce-footer p {
  color: #acacac;
}

.ecommerce-footer .footer-mobile-title {
  display: none;
}

.bg-decore {
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  width: 100%;
  padding: 0 15px;
  -webkit-animation: 10s linear 0s normal none infinite animate;
  animation: 10s linear 0s normal none infinite animate;
}

.modal1 .modal-bg {
  height: 350px;
}

.modal1 p {
  padding-top: 10px;
}

.modal1 .form-group input {
  padding: 12px 20px;
  margin-bottom: 15px;
  margin-top: 20px;
}

.modal1 .offer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 30px;
  text-align: center;
}

.modal1 .offer-content>div {
  padding: 30px;
}

.modal1 .close {
  position: absolute;
  top: 10px;
  right: 30px;
}

@-webkit-keyframes animate {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 500px;
  }
}

@keyframes animate {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 500px;
  }
}

.down-banner {
  padding-top: 0 !important;
}

.down-banner>.container {
  position: relative;
}

.down-banner .banner-contain {
  margin-left: 50px;
}

.down-banner .banner-contain .btn-default {
  padding: 8px 21px;
  font-size: 13px;
}

.down-banner .small-banner {
  height: 250px;
}

.down-banner .banner-contain {
  position: absolute;
  height: 100%;
  max-width: 50%;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.parallax-banner {
  padding: 0 !important;
}

.parallax-banner .full-banner {
  height: 500px;
  background-attachment: fixed;
}

.parallax-banner .banner-contain {
  position: absolute;
  height: 100%;
  max-width: 25%;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.parallax-banner .banner-contain h2 {
  margin-bottom: 30px;
}

.parallax-banner .banner-contain .btn-default {
  padding: 8px 21px;
  font-size: 13px;
}

.ecommerce-tab .isotopeContainer {
  margin-bottom: -30px;
}

.ecommerce-tab .isotopeContainer .product-box {
  margin-bottom: 30px;
}

.ecommerce-tab .filter-section .filter-container ul.filter>li {
  display: inline-block;
}

.ecommerce-tab .filter-section .filter-container ul.filter>li.active {
  background-color: #7b7b7c;
}

.m-layout .m-width {
  padding: 0 15px;
}

.m-layout .m-width.m-3-col {
  width: 33.33%;
  max-width: 33.33%;
  -webkit-box-flex: 0;
  -ms-flex: 0 33.33%;
  flex: 0 33.33%;
}

.m-layout .m-width.m-2-col {
  width: 50%;
  max-width: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 50%;
  flex: 0 50%;
}

.m-layout .m-width.m-4-col {
  width: 25%;
  max-width: 25%;
  -webkit-box-flex: 0;
  -ms-flex: 0 25%;
  flex: 0 25%;
}

.m-layout .m-width.m-2-s-col {
  width: 525px;
}

.m-layout .m-width.m-3col-ns {
  width: 470px;
}

.m-layout .m-width .blog-agency {
  margin-bottom: 30px;
}

.m-layout .m-width .blog-agency .blog-contain {
  border: 1px solid #f3f3f3;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-filter: drop-shadow(0 0 10px #eee);
  filter: drop-shadow(0 0 10px #eee);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.m-layout .m-width .blog-agency .blog-contain img {
  width: 100%;
}

.m-layout .m-width .blog-agency .blog-contain .img-container .blog-info {
  padding: 28px;
}

.m-layout .m-width .blog-agency .blog-contain .img-container .blog-info i {
  font-size: 16px;
  margin-right: 10px;
  color: #595959;
}

.m-layout .m-width .blog-agency .blog-contain .img-container .blog-info .font-blog {
  color: #595959;
  font-weight: 400;
  text-transform: none;
}

.m-layout .m-width .blog-agency .blog-contain .img-container .blog-info .blog-head {
  color: black;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 10px;
  padding-top: 0;
}

.m-layout .m-width .blog-agency .blog-contain .img-container .blog-info .para2 {
  padding: 0;
  letter-spacing: 0;
  color: #9c9c9c;
}

.m-layout .m-width .blog-agency .blog-contain .img-container .blog-info .btn-bottom {
  margin-bottom: -5px;
}

.p-4col-width .p-width {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  padding-right: 15px;
  padding-left: 15px;
}

.p-3col-width .p-width {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding-right: 15px;
  padding-left: 15px;
}

.p-2col-width .p-width {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

.p-4col-fwidth .p-width {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.p-3col-fwidth .p-width {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
}

.p-2col-fwidth .p-width {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.success-text {
  text-align: center;
}

.success-text i {
  font-size: 50px;
  color: #4ead4e;
}

.success-text h2 {
  margin-top: 10px;
  margin-bottom: 15px;
}

.success-text p {
  font-size: 18px;
  text-transform: capitalize;
}

.success-text.order-fail i {
  color: #ff4c3b;
}

.order-success-sec h4 {
  font-weight: 700;
  text-transform: capitalize;
}

.order-success-sec .order-detail li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: capitalize;
  line-height: 24px;
  font-size: 16px;
}

.order-success-sec .payment-mode p {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
}

.delivery-sec {
  padding: 30px;
  text-align: center;
  margin-top: 20px;
  background-color: #f9f9f9;
}

.delivery-sec h2, .delivery-sec h3 {
  color: #000000;
  text-transform: capitalize;
}

.product-order h3 {
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}

.product-order .product-order-detail {
  margin-top: 15px;
}

.product-order .product-order-detail img {
  height: 130px;
}

.product-order .product-order-detail .order_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-order .product-order-detail .order_detail h4 {
  margin-bottom: 5px;
  text-transform: capitalize;
  font-weight: 700;
}

.product-order .product-order-detail .order_detail h5 {
  text-transform: capitalize;
  margin-bottom: 0;
}

.product-order .total-sec {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  margin: 15px 0;
  padding: 15px 0;
}

.product-order .total-sec ul li {
  font-size: 18px;
  display: block;
  text-transform: capitalize;
}

.product-order .total-sec ul li span {
  float: right;
}

.product-order .final-total h3 {
  display: block;
  margin-bottom: 0;
}

.product-order .final-total h3 span {
  float: right;
}

.stripe-section {
  text-transform: uppercase;
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #dddddd;
}

.stripe-section h5 {
  font-weight: 700;
}

.stripe-section .content h5 {
  color: #4f4f4f;
  font-weight: 400;
}

.stripe-section .content table {
  width: 100%;
}

.stripe-section .content table tr {
  border-bottom: 1px solid #f1f1f1;
}

.stripe-section .content table tr td {
  padding: 8px 0;
  color: #9a9a9a;
}

.stripe-section .content table tr td:last-child {
  text-align: right;
}

.margin-cls {
  margin-top: 25px;
}

.check-out {
  margin-bottom: 30px;
}

.avalibility {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ff4c3b;
}

.cart_qty_cls {
  position: absolute;
  background: #ff4c3b;
  width: 20px;
  height: 20px;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  top: -5px;
  right: -3px;
  padding: 3px;
}

.portfolio-margin figure {
  margin-bottom: 0 !important;
}

.portfolio-margin .isotopeSelector {
  margin-bottom: 0 !important;
}

.portfolio-margin .p-width {
  padding: 0 !important;
}

.openSidebar {
  right: 0px !important;
}

.filterBar {
  left: -15px !important;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #000;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.jp-audio .jp-controls {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.jp-audio .jp-type-playlist .jp-progress {
  left: 166px;
  width: 100%;
}

.jp-audio .jp-progress {
  top: 32px;
  height: 4px;
}

.jp-progress {
  overflow: hidden;
  background-color: rgba(128, 128, 128, 0.23);
}

.ng5-slider .ng5-slider-pointer {
  background-color: #000 !important;
}

.ng5-slider .ng5-slider-selection {
  background: #000 !important;
}

.compare-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 25px;
}

.jp-controls .jp-play {
  border: none;
  cursor: pointer;
  color: white;
  background-color: transparent;
  font: normal normal normal 14px/1 FontAwesome;
  padding: 0;
}

.jp-controls .jp-play:before {
  content: "\f04b";
}

.jp-controls button {
  border: none;
  cursor: pointer;
  color: white;
  background-color: transparent;
  padding: 0;
}

.button-container button {
  margin: 0 10px;
}

.jp-play, .jp-play:focus, .jp-state-playing .jp-play, .jp-state-playing .jp-play:focus, .jp-previous, .jp-previous:focus, .jp-next, .jp-next:focus, .jp-stop, .jp-stop:focus {
  font: normal normal normal 14px/1 FontAwesome;
}

.jp-previous:before {
  content: "\f048";
}

.jp-next:before {
  content: "\f051";
}

.top-header-right .account .show {
  display: none !important;
}

.top-header-right .account:hover .show {
  display: block !important;
}

header.ecommerce nav .top-header-right ul li.account .dropdown-menu {
  margin-top: 0 !important;
}

.winter-is-coming, .snow {
  z-index: 100;
  pointer-events: none;
}

.winter-is-coming {
  overflow: hidden;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 100%;
  background: #333;
}

.margin_cls>div {
  margin-bottom: 30px;
}

.snow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation: falling linear infinite both;
  animation: falling linear infinite both;
  -webkit-transform: translate3D(0, -100%, 0);
  transform: translate3D(0, -100%, 0);
}

.snow--near {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  background-image: url("../images/snow1.png");
  background-size: contain;
}

.snow--near+.snow--alt {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.snow--mid {
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  background-image: url("../images/snow2.png");
  background-size: contain;
}

.snow--mid+.snow--alt {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

.snow--far {
  -webkit-animation-duration: 30s;
  animation-duration: 30s;
  background-image: url("../images/snow3.png");
  background-size: contain;
}

.snow--far+.snow--alt {
  -webkit-animation-delay: 15s;
  animation-delay: 15s;
}

@-webkit-keyframes falling {
  0% {
    -webkit-transform: translate3D(-7.5%, -100%, 0);
    transform: translate3D(-7.5%, -100%, 0);
  }

  100% {
    -webkit-transform: translate3D(7.5%, 100%, 0);
    transform: translate3D(7.5%, 100%, 0);
  }
}

@keyframes falling {
  0% {
    -webkit-transform: translate3D(-7.5%, -100%, 0);
    transform: translate3D(-7.5%, -100%, 0);
  }

  100% {
    -webkit-transform: translate3D(7.5%, 100%, 0);
    transform: translate3D(7.5%, 100%, 0);
  }
}

/**=====================
     63. Responsive CSS Start
  ==========================**/
@media only screen and (max-width: 1600px) {
  .about.app1 .mobile {
    right: 6%;
  }

  .about.app1 .mobile.mobile-img .mobile-screen {
    height: 750px;
  }

  .agency .girl-boy {
    right: 8%;
  }

  .header .wedding-content .girl {
    left: 16%;
  }

  .header .wedding-content .girl img {
    width: 500px;
  }

  .sponsor div .sponsor-img .overlay-box {
    width: 100%;
  }

  .header .header8-content .slider-1 .owl-nav {
    left: -15%;
    bottom: -34%;
    -webkit-transform: translate(18%, 17%);
    transform: translate(18%, 17%);
  }

  .header .header8-content .slider-1 .owl-nav .owl-next {
    -webkit-transform: translate(50%, 30%);
    transform: translate(50%, 30%);
  }

  .header .saas2-content .set-abs .img-dextop {
    height: 800px;
  }

  .saas2 .set-center-div {
    min-height: 525px;
  }

  .saas2 .set-center-div .side-img {
    right: -14%;
  }

  .saas2 .set-center-div .side-img img {
    height: 525px;
  }
}

@media (min-width: 1470px) {
  .event .container, .gym .container, .agency .container, .music .container, .resume .container, .yoga .container, .wedding .container {
    max-width: 1440px;
  }

  .menu-set {
    right: unset !important;
  }
}

@media (max-width: 1469px) {
  .music div .album-list {
    padding: 30px;
  }

  header.wedding .logo-abs {
    width: 25%;
  }
}

@media (max-width: 1430px) {
  .cart-section .cart-buttons>div:last-child {
    padding-right: 38px;
  }

  .cart-section tbody tr td {
    min-width: 175px;
  }

  .cart-section tbody tr td .qty-box .input-group .form-control {
    width: 75px;
  }

  .cart-section tfoot tr td {
    padding-right: 41px;
  }

  .portfolio-metro h1 {
    font-size: 70px;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .search-count {
    width: 100%;
    border-left: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    text-align: center;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
    width: 20%;
    padding-right: 0 !important;
    border-left: 1px solid #dddddd;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view {
    padding: 20px !important;
    padding-left: 0 !important;
    width: 20%;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li:last-child {
    display: none;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
    border-right: 1px solid #dddddd;
    width: 30%;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
    width: 30%;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .collection-view {
    width: 10%;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view {
    width: 25%;
  }

  .cart-section .cart-buttons>div:last-child {
    padding-right: 38px;
  }

  .cart-section tbody tr td {
    min-width: 175px;
  }

  .cart-section tbody tr td .qty-box .input-group .form-control {
    width: 75px;
  }

  .cart-section tfoot tr td {
    padding-right: 41px;
  }

  .product-right .product-icon .product-social li {
    padding-right: 10px;
  }

  .product-form-box .timer {
    padding-left: 17px;
  }

  .product-form-box .timer span {
    width: 55px;
  }
}

@media only screen and (max-width: 1366px) and (min-width: 1200px) {
  .agency.blog .blog-agency .blog-contain .img-container .blog-head {
    margin-bottom: 10px;
  }

  .agency.blog .blog-agency .blog-contain .img-container .blog-info .m-b-20 {
    margin-bottom: 10px !important;
  }

  footer.footer2.saas2 .footer-padding {
    padding-top: 100px;
  }

  .brand-slider .saas-brand img {
    padding: 0;
  }

  .saas1.build-bg .container {
    margin-bottom: 1%;
    margin-top: 1%;
  }

  .p-b-160 {
    padding-bottom: 130px;
  }
}

@media only screen and (max-width: 1366px) {
  .saas1 .sync2 .owl-item .item img {
    opacity: 0;
  }

  .saas1 .sync2 .owl-item.active .item img {
    opacity: 1;
  }

  .saas1.build-bg {
    min-height: unset;
  }

  .saas1.build-bg .build-right-slider .work-slide {
    height: unset;
  }

  .gym .portfolio-creative .head-sub-text, .yoga .portfolio-creative .head-sub-text {
    padding: 0 50px;
    letter-spacing: 0;
  }

  .gym .trainers-slider.owl-carousel .owl-stage-outer, .yoga .trainers-slider.owl-carousel .owl-stage-outer {
    min-height: 375px !important;
  }

  .yoga.testimonial .testimonial-info {
    margin-top: 30px;
  }

  .yoga.event .event-container {
    margin-bottom: 20px;
  }

  .yoga.event .event-container .event-info .address, .yoga.event .event-container .event-info .time {
    margin-bottom: 5px;
    line-height: 1.8;
  }

  .section-404 .box_astronaut {
    top: 65%;
    right: 15%;
  }

  .section-404 .object_astronaut {
    width: 130px;
  }

  .section-404 .text-inner {
    margin-top: -48px;
    margin-bottom: -45px;
  }

  .section-404 .object_rocket {
    width: 110px;
  }

  .section-404 .object_earth {
    width: 80px;
  }

  .section-404 .object_moon {
    width: 60px;
  }

  section, footer {
    padding: 80px 0;
  }

  .p-t-100 {
    padding-top: 70px !important;
  }

  .p-b-100 {
    padding-bottom: 70px !important;
  }

  .header .rotate {
    top: 14%;
    right: 15%;
  }

  .header .rotate img {
    width: 400px;
  }

  .header .squares img {
    height: 260px;
  }

  .header .wedding-content .girl {
    left: 11%;
  }

  .header .header8-content .slider-1 .owl-nav {
    left: -18%;
    bottom: -50%;
  }

  .header .saas2-content .set-abs .img-dextop {
    height: 720px;
  }

  .header.app1 h1 {
    line-height: 56px;
  }

  .header .event-content .counter-container h2 {
    margin-top: -10px;
  }

  .header.saas2 h1 {
    margin-top: -14px;
  }

  .header.agency .girl-boy {
    right: 10%;
  }

  .header.agency .girl-boy img {
    width: 440px;
  }

  .header.agency .center-text {
    margin-left: 50px;
  }

  .about.app1 .counters .abouts {
    padding: 60px 0;
  }

  .about.app1 .mobile {
    right: 5%;
  }

  .about.app1 .mobile.mobile-img .mobile-screen {
    height: 680px;
  }

  .about.app1 .mobile.rectangle {
    top: -5%;
    right: -4%;
  }

  .about.app1 .mobile.rectangle.r-2 {
    right: -12%;
    top: -5%;
  }

  .about.app1 .mobile.galaxy {
    right: -12%;
  }

  .about.app1 .mobile.galaxy img {
    height: 120px;
  }

  .event .circle {
    top: 30px;
  }

  .event .circle:after {
    top: -33px;
    height: 30px;
  }

  .event h1 {
    margin-top: -8px;
    margin-bottom: -8px;
  }

  .schedule .cal-time.events {
    padding: 24px 40px 24px 24px;
    margin-bottom: 25px;
  }

  .schedule .cal-time.events .timing .border-dashed {
    height: 50px;
  }

  .schedule .cal-time.events .timing .event-time:last-child:before {
    height: 50px;
  }

  .schedule .cal-time.events .schedule-event .names {
    margin-bottom: 15px;
  }

  .schedule .cal-time.events .schedule-event .schedule-description {
    font-size: 140%;
  }

  .agency .girl-boy {
    right: 0;
  }

  .agency .icon-collection .about-icon {
    margin: 0;
    margin-bottom: 40px;
  }

  .agency.agency-content .blue-img {
    left: -18%;
  }

  .agency.video .d-inline-block .bg-video {
    width: 60%;
  }

  .yoga.format .girl-img-container {
    min-height: 453px;
  }

  .yoga.format .girl-img-container .girl-yoga {
    width: 500px;
  }

  .gym h1 {
    margin-top: -14px;
  }

  .gym h2 {
    margin-top: -11px;
  }

  .app2.quality .set-height {
    min-height: 592px;
  }

  .app2.quality .set-height .mobile2 {
    width: 430px;
    top: -29px;
  }

  .app2.services .service {
    padding: 40px 25px;
  }

  .app2.services .service .service-feature .feature-text {
    margin-bottom: 18px;
  }

  .app2.services .img-block {
    margin-bottom: 25px;
  }

  .app2.services .img-block img {
    height: 45px;
  }

  .saas2 .set-center-div {
    min-height: unset;
  }

  .saas2 .set-center-div .side-img {
    right: 2%;
  }

  .saas2 .set-center-div .side-img img {
    height: 455px;
  }

  .header .wave-orange {
    width: 240px;
    height: 25px;
  }

  .header .wave-orange:before, .header .wave-orange:after {
    width: 240px;
    height: 25px;
  }

  .header.app2 .img-mobile .headaer-image {
    width: 315px;
  }

  .header.event .set-bottom {
    bottom: 30px;
  }

  .header.resume .bg-pink img {
    max-height: 80vh;
  }

  .header .saas2-content .set-abs .img-dextop {
    height: 600px;
  }

  .header.saas2 .header-text {
    margin-bottom: 30px;
  }

  .header.saas2 .header-sub-text {
    margin-bottom: 16px;
    margin-top: 40px;
  }

  .collection-product-wrapper .product-top-filter {
    border-top: none;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .search-count {
    width: 100%;
    border-left: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
    text-align: center;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .collection-view, .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
    width: 15%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view, .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
    width: 30%;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
    width: 55%;
  }

  .product-right .product-icon .product-social li {
    padding-right: 10px;
  }

  .collection-filter-block .product-service .media svg {
    height: 30px;
    width: 30px;
  }

  .blog-page .blog-media .blog-right h4 {
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .blog-page .blog-media .blog-right h6 {
    margin-bottom: 5px;
  }

  .blog-page .blog-media .blog-right ul {
    margin-bottom: 10px;
  }

  .blog-page .blog-media .blog-right p {
    line-height: 1.4;
  }

  .pro_sticky_info {
    padding: 10px;
  }

  .is_stuck {
    margin-top: 30px;
  }

  .breadcrumb-section-main {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 1250px) {
  .about.app1 .mobile {
    right: 5%;
  }

  .about.app1 .mobile.mobile-img .mobile-screen {
    height: 650px;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 576px) {
  .resume .counter-container {
    padding-bottom: 30px;
  }

  .resume .counter-container+.counter-container {
    border-left: 1px solid;
  }

  .resume .counter-container+.counter-container+.counter-container {
    border-top: 1px solid;
    border-left: 0;
    padding-bottom: 0;
    padding-top: 30px;
  }

  .resume .counter-container+.counter-container+.counter-container+.counter-container {
    border-left: 1px solid;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .app2.pricing .price-container .feature-icon :before {
    font-size: 45px;
  }

  .app2.pricing .price-container .service-feature {
    padding: 30px 0 30px 0;
  }

  .app2.pricing .price-container .price-feature-container {
    padding: 35px 0 35px 0;
  }

  .screenshot .screen-container img {
    width: 380px;
    height: 580px;
  }

  .screenshot .swiper-container .swiper-wrapper .swiper-slide img {
    height: 455px;
  }

  header.agency nav ul li .dropdown {
    color: #7e8ec7;
  }
}

@media only screen and (max-width: 1199px) {
  .pricing.yoga .price-container.price-margin {
    margin: 35px 15px;
  }

  .copyright .link-horizontal ul li {
    padding-right: 20px;
  }

  .agency.testimonial-bg {
    background-size: contain;
  }

  .header .bg.agency {
    background-position: bottom;
  }

  header.nav-lg {
    padding: 1.2rem 1rem;
  }

  .ecommerce .owl-nav [class*=owl-].owl-prev {
    bottom: 20%;
    top: unset;
    left: unset;
    right: 80px;
  }

  .ecommerce .owl-nav [class*=owl-].owl-next {
    bottom: 20%;
    top: unset;
  }

  .ecommerce.ecommerce-home .ecommerce-home-slider .owl-item, .ecommerce.ecommerce-home .ecommerce-home-slider .bg-size {
    min-height: 500px;
  }

  .parallax-banner .banner-contain {
    max-width: 50%;
  }

  .parallax-banner .banner-contain {
    max-width: 50%;
  }

  .parallax-banner .full-banner {
    height: 350px;
    background-attachment: fixed;
  }

  .app2.services .animated-bg i, .app2.screenshot .animated-bg i {
    display: none;
  }

  .services .service .img-block {
    margin-bottom: 10px;
  }

  .copyright.yoga, .copyright.resume, .copyright.creative {
    padding: 30px 0;
  }

  .breadcrumb-section {
    padding: 10px 0;
  }

  header nav ul .mega-menu .mega-menu-container {
    min-width: 85VW;
  }

  header.wedding .logo-abs {
    width: 23%;
  }

  header.wedding .navbar>ul>li>a {
    text-transform: capitalize;
    font-size: 13px;
  }

  header.yoga nav ul li>a {
    text-transform: capitalize;
    font-size: 13px;
  }

  .gym .trainers-slider.owl-carousel .owl-stage-outer, .yoga .trainers-slider.owl-carousel .owl-stage-outer, .creative .trainers-slider.owl-carousel .owl-stage-outer {
    min-height: 400px !important;
  }

  .portfolio-metro h1 {
    font-size: 60px;
    margin-bottom: 30px;
  }

  .m-b-50 {
    margin-bottom: 30px;
  }

  .wedding.bg.attend-bg {
    padding-bottom: 180px;
  }

  .coming-soon .count h2 {
    padding: 0 15px;
  }

  .saas1.howitwork .work-content img {
    width: 50%;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-link {
    padding: 0 30px;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-link img {
    height: 40px;
  }

  .saas1.build-bg .build-box ul li {
    font-size: 15px;
  }

  .saas1.pricing .plan-box .price-box {
    padding: 20px;
    margin: 16px 9px;
  }

  .saas1.pricing .plan-box .price-box ul {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .saas1.pricing .plan-box .price-box h4.no-weight {
    margin: 5px 0 0 0;
  }

  .event.testimonial .center-content img {
    height: 25px;
  }

  .event.testimonial .testimonial-msg {
    width: 80px;
  }

  .event.testimonial .testimonial-msg .msg-box {
    height: 45px;
    width: 45px;
    right: -22px;
    top: -25px;
  }

  .register-page h3 {
    margin-bottom: 10px;
  }

  .register-page .text-sub {
    margin-bottom: 12px;
  }

  .register-page .theme-card {
    padding: 18px;
  }

  .register-page .theme-card .theme-form input, .register-page .theme-card .theme-form textarea {
    padding: 10px 12px;
    margin-bottom: 18px;
  }

  .pricing.saas2 .price-container.price-margin {
    margin: 25px 15px;
  }

  .pricing.yoga .price-container.price-margin {
    margin: 35px 0px;
  }

  .event .format .format-sub-text {
    margin-bottom: 25px;
  }

  .event .format .format-sub-text .about-para {
    margin-bottom: 15px;
  }

  .event .format .format-head-text {
    margin-bottom: 25px;
  }

  .cart-section tbody tr td {
    min-width: 140px;
  }

  .cart-section tbody tr td .qty-box .input-group .form-control {
    width: 52px;
  }

  .cart-section tfoot tr td {
    padding-right: 25px;
  }

  .dropdown-sec .dropdown-content.dropdown-size {
    min-width: 85VW;
  }

  .dropdown-sec .dropdown-content, .dropdown-sec .dropdown-content li ul {
    left: 0;
  }

  .counter .counters .counter-img {
    height: 35px;
  }

  .header .rotate {
    top: 15%;
    right: 12%;
  }

  .header .rotate img {
    width: 350px;
  }

  .header .wedding-content .girl {
    left: 6%;
  }

  .header .wedding-content .girl img {
    width: 450px;
  }

  .header .header8-content .slider-1 .owl-nav {
    -webkit-transform: translate(3%, 60%);
    transform: translate(3%, 60%);
    left: -20%;
    bottom: -63%;
  }

  .header .header8-content .slider-1 .owl-nav .owl-next {
    -webkit-transform: translate(30%, 30%);
    transform: translate(30%, 30%);
  }

  .header .saas2-content .set-abs {
    right: 1%;
  }

  .header .saas2-content .set-abs .img-dextop {
    height: 610px;
  }

  .header.saas1 h1 {
    margin-top: -13px;
  }

  .header .bg.gym-header .header-sub-text p {
    padding: 0;
  }

  .subscribe .button-primary button {
    padding: 16px 40px;
    font-size: 80%;
  }

  .subscribe .form-group input {
    padding: 24px 35% 24px 35px;
    font-size: 15px;
  }

  footer .footer-lists.contacts li {
    margin-bottom: 20px;
  }

  .event.testimonial .quotes .right-quote, .saas2.testimonial .quotes .right-quote {
    right: 0;
  }

  .event.testimonial .quotes .left-quote, .saas2.testimonial .quotes .left-quote {
    left: -30px;
  }

  .event.testimonial .testimonial .owl-theme .owl-next, .saas2.testimonial .testimonial .owl-theme .owl-next {
    right: -50px;
  }

  .event.testimonial .testimonial .owl-theme .owl-prev, .saas2.testimonial .testimonial .owl-theme .owl-prev {
    left: -50px;
  }

  .event.speaker .speker-container .team-img {
    margin-bottom: 20px;
  }

  .event.speaker .speker-container:nth-child(n+3) .employee {
    margin-bottom: 0;
  }

  .event.booking .form-group input {
    font-size: 14px;
    padding: 11px 20px;
  }

  .event.contact .plane, .event.contact .plane2 {
    display: none;
  }

  .event.pricing .price-container .price-feature-container, .gym.pricing .price-container .price-feature-container, .agency.pricing .price-container .price-feature-container, .resume.pricing .price-container .price-feature-container {
    padding: 30px 0 30px 0;
  }

  .event.pricing .price-container .price-feature-container .price-value, .gym.pricing .price-container .price-feature-container .price-value, .agency.pricing .price-container .price-feature-container .price-value, .resume.pricing .price-container .price-feature-container .price-value {
    margin-bottom: 35px;
  }

  .event.pricing .price-container .price-features, .gym.pricing .price-container .price-features, .agency.pricing .price-container .price-features, .resume.pricing .price-container .price-features {
    margin-bottom: 30px;
  }

  .event.pricing .price-container .price-features .price-feature, .gym.pricing .price-container .price-features .price-feature, .agency.pricing .price-container .price-features .price-feature, .resume.pricing .price-container .price-features .price-feature {
    margin-bottom: 10px;
  }

  .event.pricing .set-border, .gym.pricing .set-border, .agency.pricing .set-border, .resume.pricing .set-border {
    margin: 20px 20px;
  }

  .music h2 {
    margin-top: -10px;
  }

  .music div .album-list {
    margin-right: 0;
    margin-left: 0;
  }

  .music .cd-animation {
    height: 290px;
  }

  .music.blog .img-container .blog-info {
    padding: 10px 15px;
  }

  .wedding.format .format-head-text {
    margin-bottom: 30px;
  }

  .wedding.format .format-sub-text {
    margin-bottom: 30px;
  }

  .wedding.format .format-sub-text .about-para {
    margin-bottom: 25px;
  }

  .wedding .wedding-banner .frem {
    width: 60%;
  }

  .wedding .wedding-banner .text-container .couple-text {
    margin-bottom: 25px;
  }

  .wedding .wedding-banner .text-container .couple-text .banner-text {
    font-size: 65px;
  }

  .wedding .wedding-banner .text-container .couple-text .banner-text.small {
    font-size: 50px;
  }

  .wedding .wedding-banner .text-container .place {
    font-size: 30px;
  }

  .wedding .wedding-time {
    margin-bottom: 50px;
  }

  .wedding.copyright .link-horizontal ul {
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .wedding.copyright .copyright-text {
    text-align: center !important;
  }

  .yoga.testimonial .testimonial-info .testimonial-para {
    font-size: 16px;
    padding: 0;
  }

  .resume.services .service {
    padding: 25px 15px;
  }

  .resume.services .service .img-block {
    margin-bottom: 20px;
  }

  .resume.services .service .img-block img {
    height: 40px;
  }

  .resume.services .service .service-feature .feature-text {
    margin-bottom: 15px;
  }

  .resume.services .service .service-feature p {
    letter-spacing: 0.5px;
  }

  .sponsor .sponsor-img {
    margin-bottom: 50px;
  }

  .agency .girl-boy {
    right: 6%;
  }

  .agency .girl-boy img {
    width: 360px;
  }

  .agency .icon-collection .about-icon {
    margin-bottom: 25px;
  }

  .agency .icon-collection .about-icon a {
    padding: 25px 12px;
  }

  .agency .icon-collection .about-icon a img {
    margin-bottom: 15px;
    height: 50px;
  }

  .agency.agency-content .about-img {
    width: 200px;
  }

  .agency.agency-content .blue-img {
    width: 450px;
    left: -20%;
  }

  .agency.agency-content .agency-header-center-container .agency-head .agency-head-text {
    margin-top: -14px;
  }

  .agency.blog .img-container .blog-info p {
    line-height: 22px;
  }

  .saas1.build-bg {
    min-height: 680px;
  }

  .saas1 .title img {
    height: 20px;
  }

  .saas2 .set-center-div .side-img {
    right: 2%;
  }

  .saas2 .set-center-div .side-img img {
    height: 400px;
  }

  .saas2 .offers-container .offer-heading-text {
    margin-bottom: 20px;
  }

  .saas2 .offers-container .bottom-border {
    margin-bottom: 50px;
  }

  .saas2 .offers-container .offers-content {
    margin-bottom: 35px;
  }

  .saas2.testimonial .msg-box {
    display: none;
  }

  .saas2.testimonial .quote-margin {
    margin-left: 0;
  }

  .blog.wedding .blog-container .blog-date {
    margin-bottom: 5px;
  }

  .blog.wedding .blog-container .blog-place {
    margin-bottom: 12px;
  }

  .blog.wedding .blog-container .blog-para {
    margin-bottom: 12px;
  }

  .product-right .product-icon .product-social {
    margin-bottom: 10px;
  }

  .product-description-box .border-product {
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .product-description-box .product-icon .product-social li {
    padding-right: 4px;
  }

  .product-description-box .product-icon .wishlist-btn span {
    padding-left: 4px;
  }

  footer.app2 h5 {
    font-size: 14px;
    padding-bottom: 55px;
  }

  .cart-section tbody tr td, .wishlist-section tbody tr td {
    min-width: 186px;
  }

  .blog-detail-page .comment-section li {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .product-wrapper-grid.list-view .product-box .img-wrapper, .product-wrapper-grid.list-view .product-box .img-block {
    width: 50%;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .search-count {
    width: 100%;
    border-left: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
    width: 20%;
    padding-right: 0 !important;
    border-left: 1px solid #dddddd;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view {
    padding: 20px !important;
    padding-left: 0 !important;
    width: 26%;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view ul li:last-child {
    display: none;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
    width: 54%;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
    width: 30%;
  }

  .cart-section tbody tr td {
    min-width: 140px;
  }

  .cart-section tbody tr td .qty-box .input-group .form-control {
    width: 52px;
  }

  .cart-section tfoot tr td {
    padding-right: 25px;
  }

  .collection-collapse-block .collection-collapse-block-content .collection-brand-filter .category-list li:first-child {
    margin-top: 15px;
  }

  .collection-collapse-block.top_filter {
    padding-top: 30px;
    margin-bottom: -30px;
  }

  .collection-filter-block {
    margin-bottom: 0;
  }

  .collection-filter-block .product-service .media .media-body h4 {
    font-size: 16px;
  }

  .product-right h2 {
    font-size: 20px;
  }

  .testimonial .testimonial-slider .media .media-body {
    padding: 30px;
  }

  .testimonial .testimonial-slider .media .media-body p {
    line-height: 1.5;
  }

  .search-product>div:nth-last-child(1), .search-product>div:nth-last-child(2), .search-product>div:nth-last-child(3) {
    margin-top: 30px;
  }

  .blog-page .blog-media {
    margin-bottom: 20px;
  }

  .blog-page .blog-media .blog-right {
    display: block;
    margin-top: 15px;
  }

  .blog-page .blog-media .blog-right p {
    line-height: 1.3;
  }

  .tab-product .tab-content.nav-material .single-product-tables table {
    width: 50%;
  }

  .product-description-box .border-product {
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .product-description-box .product-icon .product-social li {
    padding-right: 4px;
  }

  .product-description-box .product-icon .wishlist-btn span {
    padding-left: 4px;
  }

  .product-form-box .border-product {
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .product-form-box .timer {
    padding-left: 17px;
  }

  .product-form-box .timer span {
    width: 55px;
  }

  .product-form-box .product-buttons .btn-default {
    padding: 7px 13px;
  }

  .product-accordion .single-product-tables table {
    width: 70%;
  }

  .tab-product .flex-column {
    -webkit-box-orient: unset !important;
    -webkit-box-direction: unset !important;
    -ms-flex-direction: unset !important;
    flex-direction: unset !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .tab-product .nav-material.nav-tabs {
    border-bottom: 1px solid #dddddd;
    border-right: 0;
  }

  .tab-product .nav-material.nav-tabs .nav-item .nav-link.active {
    background-color: unset;
  }

  .tab-border {
    padding-top: 0;
  }

  .breadcrumb-section {
    padding: 10px 0;
  }
}

@media only screen and (max-width: 1024px) {
  .header .bg.header1 h1 {
    line-height: 50px;
  }

  .services .service .service-feature p {
    font-weight: unset;
  }
}

@media (min-width: 992px) {
  .main-menu>li>ul, .main-menu>li .mega-menu-container {
    display: none;
  }

  header nav ul .dropdown:before {
    right: 0;
  }

  header nav ul ul, header nav ul .mega-menu-container {
    position: absolute;
  }

  header nav ul .sub-menu ul {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    top: -5px;
    left: 100%;
    display: none;
  }

  .dropdown-main-container {
    padding: 20px 0;
  }

  .dropdown-main-container .container {
    max-width: 100%;
  }

  .dropdown-sec .dropdown, .dropdown-sec .dropdown-submenu {
    position: relative;
    display: inline-block;
  }

  .dropdown-sec a {
    text-transform: capitalize;
  }

  .dropdown-sec .right-border {
    border-right: 1px solid #eee;
  }

  .dropdown-sec .dropdown-content, .dropdown-sec .dropdown-content li ul {
    display: none;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    position: absolute;
    right: 0;
    z-index: 1;
  }

  .dropdown-sec .drop-down-design {
    margin-top: 0;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }

  .dropdown-sec .dropdown-content.dropdown-size {
    min-width: 1030px;
  }

  .dropdown-sec .dropdown-content ul {
    width: 100%;
  }

  .dropdown-sec .dropdown:hover .dropdown-content {
    display: block;
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }

  .dropdown-sec .dropdown-submenu {
    position: relative;
    width: 100%;
  }

  .dropdown-sec .dropdown-submenu .dropdown-menu {
    border: none;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    top: 0;
    left: 100%;
    margin-top: -1px;
  }

  .dropdown-sec .dropdown-submenu:hover>ul {
    display: block;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }

  .dropbtn {
    color: #000;
  }

  .dropbtn>i {
    margin-left: 10px;
  }

  .music.sponsor .row>div:last-child .sponsor-img, .music.sponsor .row>div:nth-last-child(2) .sponsor-img, .music.sponsor .row>div:nth-last-child(3) .sponsor-img, .music.sponsor .row>div:nth-last-child(4) .sponsor-img {
    margin-bottom: 0;
  }

  .res-width {
    width: 100%;
  }

  .mega-menu .mega-menu-container .row .col {
    width: 20%;
  }

  .resize {
    min-width: 600px !important;
  }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
  .speaker .team-img .social ul li {
    margin-right: 10px;
  }

  .speaker .team-img .social ul li a i {
    height: 25px;
    width: 25px;
    font-size: 12px;
  }

  .agency.format .center-content.unset-height, .gym.format .center-content.unset-height {
    padding: 0;
  }

  .agency.footer2 .set-first, .gym.footer2 .set-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .agency.footer2 .set-last, .gym.footer2 .set-last {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
    margin-top: 30px;
  }

  .saas1.testimonial .testimonial-box {
    padding: 30px 20px;
  }

  .resume.about .col-md-3 {
    padding: 0;
  }

  footer.app2 .subscribe.subscribe-2 .form-group input {
    margin-top: 15px;
  }

  footer .logo-sec .footer-logo {
    margin-bottom: 20px;
  }

  footer.gym h5 {
    padding-bottom: 35px;
  }

  .breadcrumb-section-main .breadcrumb {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .breadcrumb-section-main .breadcrumb-text {
    text-align: center;
  }
}

@media only screen and (max-width: 991px) and (min-width: 576px) {
  .blog-sidebar .post-container {
    width: 50%;
    float: left;
  }

  .music.sponsor .row>div:nth-last-child(3) .sponsor-img, .music.sponsor .row>div:nth-last-child(2) .sponsor-img, .music.sponsor .row>div:nth-last-child(1) .sponsor-img {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 991px) {
  .mega-menu-container .row {
    display: block;
  }

  header nav .menu-head {
    color: #656565 !important;
    font-weight: 400 !important;
    border-bottom: 0 !important;
  }

  header nav .menu-head:after {
    position: absolute;
    content: "+";
    right: 20px;
  }

  .white-header header nav .main-menu>li>a {
    color: black !important;
  }

  .p-4col-width .p-width {
    max-width: 33.33%;
    -webkit-box-flex: 33.33%;
    -ms-flex: 33.33%;
    flex: 33.33%;
    margin-bottom: 0;
  }

  .m-layout .m-width.m-4-col {
    width: 33.33%;
    max-width: 33.33%;
    -webkit-box-flex: 0;
    -ms-flex: 0 33.33%;
    flex: 0 33.33%;
  }

  .music.copyright.copyright-bg .copyright-text.text-right {
    text-align: right !important;
  }

  .music.copyright.copyright-bg .container {
    max-width: 100%;
  }

  .ecommerce.ecommerce-home .ecommerce-home-slider .owl-item, .ecommerce.ecommerce-home .ecommerce-home-slider .bg-size {
    min-height: 300px;
  }

  .layout-ecommerce section {
    padding: 60px 0;
  }

  .layout-ecommerce .ecommerce-footer {
    padding-top: 60px;
  }

  .ecommerce.ecommerce-home {
    padding-top: 80px;
  }

  .ecommerce-footer .col-md-12 {
    text-align: center;
    margin-bottom: 30px;
  }

  header.ecommerce .logo-erapper~.responsive-btn {
    position: absolute;
    right: 0;
  }

  header.ecommerce nav .top-header-right {
    margin-right: 40px;
  }

  header.ecommerce nav .top-header-right ul li {
    display: inline-block;
  }

  header.ecommerce nav .top-header-right ul li a {
    padding: 12px;
  }

  header.gym nav .top-header-right {
    margin-right: 40px;
  }

  header.gym nav .top-header-right ul li {
    display: inline-block;
  }

  header.gym nav .top-header-right ul li a {
    padding: 12px;
  }

  header.ecommerce nav ul.main-menu>li>a {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  header nav ul li>a:hover {
    color: #000;
  }

  header.ecommerce .navbar {
    position: fixed;
  }

  .tab-product .tab-content.nav-material p {
    text-align: center;
  }

  .pricing.saas2 .price-container.price-margin {
    margin: 35px 25px;
  }

  .saas1-header .slider-logo {
    display: none;
  }

  footer .logo-sec .footer-para .para-address {
    line-height: 1.6;
  }

  .gym .trainers-slider h3 {
    font-size: 20px;
  }

  .agency.service-bg {
    padding-top: 0;
  }

  .navbar {
    display: block;
  }

  .navbar .responsive-btn~ul .dropdown~ul, .navbar .responsive-btn~ul .dropdown~.mega-menu-container {
    display: none;
  }

  header nav ul li ul {
    display: none !important;
  }

  header nav ul ul li:hover a, header nav ul ul li:focus a, header nav ul ul li:active a {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  header.yoga .logo-abs {
    left: 0;
    -webkit-transform: unset;
    transform: unset;
  }

  header nav ul {
    width: 100%;
    padding: 15px 0;
  }

  header nav ul li {
    display: block;
  }

  header nav ul li a {
    width: 100%;
    text-align: left;
    color: #000;
    padding: 12px 18px;
  }

  header nav ul ul {
    padding: 0 !important;
  }

  header nav ul ul li {
    padding-left: 15px !important;
  }

  header nav ul ul li a {
    color: #656565 !important;
    font-weight: 400 !important;
  }

  header nav ul .sub-menu>a:before {
    content: unset;
  }

  header nav ul .sub-menu ul {
    -webkit-box-shadow: unset;
    box-shadow: unset;
  }

  header nav ul .mega-menu .mega-menu-container {
    padding: 6px 0;
    min-width: 100%;
    -webkit-box-shadow: unset;
    box-shadow: unset;
  }

  header nav .menu-head {
    color: #000;
    margin-bottom: 0;
  }

  header .navbar {
    position: fixed;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 9;
    width: 350px;
    right: -350px;
    background: #fff;
    overflow-Y: scroll;
    height: 100vh;
    top: 0;
    padding: 0;
    -webkit-box-shadow: 0 0 11px rgba(0, 0, 0, 0.13);
    box-shadow: 0 0 11px rgba(0, 0, 0, 0.13);
  }

  header .responsive-btn {
    display: inline-block;
  }

  header.yoga .responsive-btn {
    padding: 12px;
  }

  header.yoga .responsive-btn a {
    color: #fff;
  }

  header .navbar .responsive-btn {
    display: block;
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid #dddddd;
  }

  header .navbar .responsive-btn h5 {
    text-align: right;
    font-size: calc(18px + (20 - 18) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
    cursor: pointer;
  }

  .menu-container li a:before {
    display: none;
  }

  .gym .trainers-slider.owl-carousel .owl-stage-outer, .yoga .trainers-slider.owl-carousel .owl-stage-outer {
    min-height: 330px !important;
  }

  .yoga.copyright hr {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .yoga.header .bg {
    height: unset;
  }

  .yoga.header .center-text {
    height: unset;
    min-height: 70vh;
  }

  .yoga.event .event-container .yoga-circle {
    height: 100px;
    width: 100px;
    padding: 17px 25px;
  }

  .saas2.quick-sol .set-center-div {
    min-height: unset;
  }

  .saas2.pricing .price-container .price-feature-container {
    margin-top: -100px;
  }

  .saas1.service .about-chat .service-container .feature-content hr {
    margin: 0 auto;
  }

  .saas1 .about-chat .chat-box {
    text-align: center;
  }

  .saas1 .brand-slider img {
    padding: 0 30px;
  }

  .saas1.build-bg {
    min-height: unset;
  }

  .saas1.build-bg .build-box {
    text-align: center;
  }

  .saas1.build-bg .container {
    margin-bottom: 0;
    margin-top: 0;
  }

  .saas1.testimonial .testimonial-slider .owl-carousel .owl-item .testimonial-box img {
    height: 30px;
  }

  .saas1.testimonial .testi-profile img {
    padding-left: 0;
  }

  .filter-section .filter-container {
    padding: 0 0 20px;
  }

  .header.resume .bg-pink img {
    width: 100%;
    max-height: unset;
  }

  .gym h1 {
    line-height: 1.4;
  }

  .gym .brand-slider img {
    padding: 0 15px;
  }

  .gym .about-img .format-img {
    width: unset;
  }

  .gym .borders-around .bg-black:before {
    top: -20px;
    left: -20px;
  }

  .gym .borders-around .bg-black:after {
    bottom: -20px;
    right: -20px;
  }

  .testimonial.event .rating .stars i {
    font-size: 13px;
    padding: 0;
  }

  .contact .bg-white form {
    padding: 60px 30px;
  }

  .title {
    margin-bottom: 25px;
  }

  .schedule .event-container {
    padding-right: 30px;
    max-height: 400px;
  }

  .event .event-content .container {
    max-width: unset;
  }

  .wedding .wedding-time {
    margin-bottom: 0;
  }

  .wedding .simple-text {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 50px;
  }

  .wedding .simple-text .rightfadediv {
    margin: 0 auto;
  }

  .wedding .simple-text * {
    -webkit-animation: none !important;
    animation: none !important;
  }

  .wedding.bg.attend-bg {
    padding-bottom: 100px;
  }

  .wedding .wedding-banner .text-container .couple-text {
    margin-bottom: 15px;
  }

  .wedding .wedding-banner .text-container .couple-text .banner-text {
    font-size: 50px;
  }

  .wedding .wedding-banner .text-container .couple-text .banner-text.small {
    font-size: 40px;
  }

  .wedding .wedding-banner .text-container .address {
    font-size: 13px;
    margin-top: 5px;
  }

  .wedding .wedding-banner .text-container .place {
    font-size: 20px;
  }

  footer.footer2.saas2 {
    background-position: left;
    margin-top: -170px;
  }

  .testimonial.saas2 .testimonial-msg {
    width: 80px;
  }

  .testimonial.saas2 .testimonial-msg .msg-box {
    width: 40px;
    height: 40px;
    right: -20px;
  }

  .testimonial.saas2 .testimonial-msg .msg-box img {
    width: 25px !important;
  }

  .breadcrumb-section .breadcrumb {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .breadcrumb-section .breadcrumb-text {
    text-align: center;
  }

  .saas2.quick-sol .set-center-div .saas2.services .saas2-services .row .service-container:nth-child(n+4) {
    margin-top: 30px;
  }

  .saas2 .offers-container .offers-content .offer-main-text {
    margin-bottom: 0;
  }

  .saas2 .offers-container .bottom-border {
    margin-bottom: 30px;
  }

  .saas2.laptop-slider .slider-container .trainers-slider.owl-carousel .owl-item.active.center .item:before {
    width: calc(100% + 0px);
    bottom: -11px;
    left: 0;
  }

  .saas2.laptop-slider .slider-container .trainers-slider.owl-carousel .owl-item.active.center .item:after {
    bottom: 2px;
  }

  .slider-container {
    width: 60%;
    margin: 0 auto;
  }

  .slider-container .trainers-slider .item {
    margin: 0 40px;
  }

  .saas2.laptop-slider .slider-container .trainers-slider.owl-carousel .owl-item.active.center .item img {
    border: 10px solid #ffffff;
  }

  .blog-sidebar .sidebar-container .post-container:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }

  .about.app1 .counters img {
    margin-bottom: 15px;
    height: 35px;
  }

  .about.app1 .counters .abouts {
    padding: 25px 0;
  }

  .about.app1 h3 {
    margin-bottom: 0;
  }

  .app2.team .team-slider .team-container {
    padding: 25px 10px;
  }

  .app2.brand-sliders {
    padding-bottom: 45px;
  }

  .blog-sec.blog.sider .container {
    margin-bottom: 0;
  }

  .blog-sec.blog .container.no-side {
    margin-bottom: -28px;
  }

  .blog-sec .blog-side {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dotted #dbdbdb;
  }

  .cart-section .cart-table thead th:last-child {
    display: none;
  }

  .cart-section tbody tr td {
    min-width: 135px;
  }

  .cart-section tbody tr td:last-child {
    display: none;
  }

  .cart-section .cart-buttons>div:last-child {
    padding-right: 15px;
  }

  .cart-section tfoot tr td {
    padding-right: 0;
  }

  .checkout-page .checkout-form .checkout-details {
    margin-top: 30px;
  }

  .portfolio-section .portfolio-text .head-text {
    line-height: 60px;
  }

  .login-page .right-login {
    margin-top: 20px;
  }

  .team-sec.team-grid .text-center.d-flex {
    display: block !important;
  }

  section, footer {
    padding: 60px 0;
  }

  .p-t-100 {
    padding-top: 60px !important;
  }

  .p-b-100 {
    padding-bottom: 60px !important;
  }

  .pricing .price-container .feature-icon:before {
    font-size: 40px;
  }

  .videos .video-description h3 {
    margin-bottom: 20px;
  }

  .videos .video-description p {
    margin-bottom: 15px;
  }

  .m-t-40 {
    margin-top: 30px;
  }

  .m-b-40 {
    margin-bottom: 30px;
  }

  .m-t-50 {
    margin-top: 35px;
  }

  header.top-logo .logo-sec.text-center {
    text-align: left !important;
  }

  header.gym nav ul li>a:hover {
    color: #000;
  }

  header.agency nav ul li>a:hover {
    color: #10266b;
  }

  header.app1 nav ul li>a:hover {
    color: #000;
  }

  header.app2 nav ul li>a:hover {
    color: #000;
  }

  header.event nav ul li>a:hover {
    color: #000;
  }

  header.music nav ul li>a:hover {
    color: #000;
  }

  header.wedding nav ul li>a:hover {
    color: #000;
  }

  header.yoga nav ul li>a:hover {
    color: #000;
  }

  .header .bg {
    height: 650px;
  }

  .header.saas1 .bg {
    height: 500px;
  }

  .header.saas1 .center-text {
    height: calc(500px - 63px);
    margin-top: 55px;
  }

  .header .center-text {
    height: calc(650px - 63px);
    margin-top: 63px;
  }

  .header .header-text {
    margin-bottom: 30px;
  }

  .header .header-top-line {
    margin-bottom: 35px;
  }

  .header .set-square .left {
    height: 250px;
  }

  .header .set-square .left:before {
    width: 250px;
  }

  .header .set-square .right {
    width: 250px;
  }

  .header .right-line {
    left: calc(50% + 125px);
    height: 260px;
  }

  .header ul li a i {
    font-size: 25px;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48px;
    width: 48px;
  }

  .header .rotate {
    top: 50%;
    right: 12%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
  }

  .header .rotate img {
    width: 250px;
  }

  .header .squares {
    display: none;
  }

  .header.app2 .img-mobile {
    position: relative;
    text-align: right;
    margin-right: -50px;
  }

  .header.app2 .img-mobile .headaer-image {
    width: unset;
    height: 500px;
    margin-top: 10px;
  }

  .header .wave-orange {
    display: none;
  }

  .header .bg.app2-header .header-text {
    padding-bottom: 10px;
  }

  .header .event-content .h1-margin {
    margin-bottom: 25px;
  }

  .header .event-content .header-sub-text {
    margin-bottom: 20px;
  }

  .header .event-content .set-bottom {
    bottom: 15px;
  }

  .header .event-content .counter-container h2 {
    margin-top: -9px;
  }

  .header .header8-content .slider-1 .owl-nav {
    display: none;
  }

  .header .saas2-content .bottom-content {
    bottom: 3%;
  }

  .header .saas2-content .set-abs .img-dextop {
    display: none;
  }

  .header .saas2-content .center-text div {
    text-align: center;
    width: 100%;
  }

  .header .saas2-content .center-text .link-horizontal ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header .saas2-content .center-text .header-text {
    margin-bottom: 25px;
  }

  .header .saas2-content .center-text .header-sub-text {
    margin-bottom: 20px;
  }

  .header .saas2-content .move-right-left, .header .saas2-content .move-up-down {
    display: none;
  }

  .header.saas2 h1 {
    margin-top: -20px;
    margin-bottom: 0;
  }

  .header .bg.gym-header .header-sub-text {
    padding: 0;
  }

  .about.app1 .mobile.mobile-img {
    display: none;
  }

  .about.app1 .set-padding {
    padding: 0 15px;
  }

  .app1 p {
    line-height: 26px;
  }

  .app1.screenshot .container {
    margin-bottom: 0;
  }

  .app1.screenshot .screen-container {
    display: none;
  }

  .app1.screenshot .swiper-container .swiper-wrapper .swiper-slide img {
    height: auto;
    width: auto;
  }

  .app1.services .service {
    padding: 30px 15px;
  }

  .app1.services .service .img-block {
    margin-bottom: 7px;
  }

  .app1.services .service .img-block img {
    height: 45px;
  }

  .app2 h1 {
    line-height: 42px;
  }

  .app2 .abouts .set-border {
    margin-bottom: 25px;
  }

  .app2 .abouts .logo {
    height: 100px;
  }

  .app2 h4 {
    margin-bottom: 15px;
  }

  .app2.quality .set-height {
    min-height: unset;
  }

  .app2.quality .set-height .mobile1, .app2.quality .set-height .mobile2 {
    width: auto;
    top: -23px;
    height: 350px;
  }

  .app2.services .service {
    padding: 30px 18px;
  }

  .app2.services .img-block {
    margin-bottom: 25px;
  }

  .app2 .borders-before {
    margin-bottom: 15px;
  }

  .app2.format .format-head-text {
    margin-bottom: 35px;
  }

  .app2.format .format-sub-text {
    margin-bottom: 20px;
  }

  .app2.format .m-t-50 {
    margin-top: 24px;
  }

  .title .title-img {
    margin-bottom: 15px;
  }

  .title.title2 h6.main-text {
    margin-bottom: 12px;
  }

  .title.title2 .sub-title {
    line-height: 40px;
    margin-bottom: 15px;
  }

  .title.title2 .title-text {
    line-height: 40px;
  }

  .pricing.app1 .price-container .service-feature .pricing-img {
    margin-bottom: 20px;
  }

  .pricing.app1 .price-container .price-feature-container {
    padding: 30px 0 80px 0;
  }

  .pricing.app1 .price-container .price-feature-container .price-value {
    margin-bottom: 25px;
  }

  .pricing.app1 .price-container .price-features {
    margin-bottom: 20px;
  }

  .pricing.app1 .price-container .price-features .price-feature {
    margin-bottom: 10px;
  }

  .pricing.app2 .price-container .service-feature {
    padding: 35px 0 35px 0;
  }

  .pricing.app2 .price-container .service-feature .pricing-img {
    margin-bottom: 20px;
  }

  .pricing.app2 .price-container .price-feature-container {
    padding: 35px 0 35px 0;
  }

  .pricing.app2 .format .format-head-text {
    margin-bottom: 35px;
  }

  .pricing.app2 .format .format-head-text .about-font-header {
    font-size: 220%;
  }

  .pricing.app2 .format .format-sub-text {
    margin-bottom: 35px;
  }

  .pricing.service-2 .service-feature {
    padding: 40px 0 20px 0;
  }

  .pricing.service-2 .service-feature img {
    height: 50px;
  }

  .pricing.service-2 .service-feature2 {
    padding: 40px 0 40px 0;
  }

  .pricing.service-2 .service-feature2 .features h6 {
    margin-bottom: 15px;
  }

  .pricing.service-2 .service-feature2 .price span {
    font-size: 45px;
  }

  .m-b-30 {
    margin-bottom: 20px;
  }

  .m-b-45 {
    margin-bottom: 25px;
  }

  .m-t-50 {
    margin-top: 30px;
  }

  .m-b-35 {
    margin-bottom: 22px;
  }

  .download .information p {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .borders-before {
    margin-bottom: 25px;
  }

  .app2 .icon-collection .about-icon .center-content img {
    max-height: 35px;
    max-width: 35px;
  }

  .event .icon-collection .about-icon, .music .icon-collection .about-icon, .gym .icon-collection .about-icon, .yoga .icon-collection .about-icon {
    margin: 0 12px;
  }

  .event .icon-collection .about-icon a img, .music .icon-collection .about-icon a img, .gym .icon-collection .about-icon a img, .yoga .icon-collection .about-icon a img {
    width: 25px;
  }

  .event.booking .form-inline, .music.booking .form-inline {
    display: block;
  }

  .event.booking .form-inline .col+.col, .music.booking .form-inline .col+.col {
    margin-top: 15px;
  }

  .event.booking .btn-default, .music.booking .btn-default {
    padding: 15px 40px;
  }

  .app2.about {
    padding-top: 60px;
  }

  .app2.about .set-height {
    min-height: 535px;
  }

  .app2.about .set-height .mobile1 {
    width: 300px;
  }

  .event .title.title3 .main-title {
    margin-bottom: 20px;
  }

  .event .title.title3 .sub-title p {
    line-height: 1.6;
  }

  .event .count h2 {
    font-size: 260%;
  }

  .gym .owl-carousel.trainers-slider.owl-carousel .owl-item.active.center .trainers-info, .yoga .owl-carousel.trainers-slider.owl-carousel .owl-item.active.center .trainers-info {
    padding-top: 20px;
  }

  .gym .gym-about-slider {
    text-align: center;
  }

  .gym .gym-about-slider .icon-collection {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .gym h1 {
    margin-top: -11px;
  }

  .gym.format .text-right {
    text-align: center !important;
  }

  .gym.format .borders-before {
    margin-bottom: 5px;
  }

  .gym.format .format-head-text {
    margin-bottom: 25px;
  }

  .gym.format .format-head-text .about-font-header {
    font-size: 260%;
  }

  .gym.format .format-sub-text {
    margin-bottom: 30px;
  }

  .gym.format .format-sub-text .about-para {
    margin-bottom: 22px;
  }

  .gym .calculate-bmi tr td {
    font-size: 14px;
    padding: 15px 0 15px 40px;
  }

  .music .img-height img {
    width: 600px;
  }

  .music.header .music-content .center-text {
    height: calc(503px - 58px);
    margin-top: 58px;
  }

  .music .audioplayer {
    padding: 28px;
  }

  .music div .album-list {
    padding: 35px 15px;
    margin-bottom: 30px;
  }

  .music div .album-list .list-head {
    margin-bottom: 22px;
  }

  .music div .album-list .item-sublist {
    font-weight: 300;
  }

  .music.artist .album-artist .cds {
    top: 85%;
    -webkit-transform: translate(-50%, -35%);
    transform: translate(-50%, -35%);
  }

  .music.artist .artist-text p.text-para {
    font-size: 125%;
  }

  .music.format .format-small-text {
    margin-bottom: 4px;
  }

  .music.format .hash-video {
    font-size: 12px;
  }

  .music.format .format-head-text {
    margin-bottom: 8px;
  }

  .music.format .format-head-text .about-font-header {
    font-size: 220%;
  }

  .music.format .format-sub-text {
    margin-bottom: 25px;
  }

  .music.format .format-sub-text .sub-heading {
    margin-bottom: 25px;
  }

  .music.format .format-sub-text .sub-heading .sub-small-text {
    font-size: 14px;
  }

  .music.format .format-sub-text .sub-para {
    font-size: 12px;
  }

  .music.format .link-horizontal ul li a.icon-btn i {
    font-size: 14px;
    height: 45px;
    width: 45px;
  }

  .music.format .watch {
    font-size: 95%;
  }

  .music.format .m-b-40 {
    margin-bottom: 15px;
  }

  .music .form-footer .form-group input, .music .form-footer .form-group textarea {
    padding: 15px 20px;
    font-size: 14px;
  }

  .music .form-footer .form-group::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 14px;
  }

  .music .form-footer .form-group::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 14px;
  }

  .music .form-footer .form-group:-ms-input-placeholder {
    /* IE 10+ */
    font-size: 14px;
  }

  .music .form-footer .form-group:-moz-placeholder {
    /* Firefox 18- */
    font-size: 14px;
  }

  .music .left-side {
    padding-left: 50px;
    top: 50%;
  }

  .music .right-side {
    padding-right: 50px;
    top: 50%;
  }

  .music .img-height {
    height: unset;
  }

  .music .img-height img {
    padding-top: 50px;
    position: unset;
    width: 800px;
  }

  .music h2 {
    margin-top: -10px;
  }

  .music div .album-list {
    margin-right: 0;
    margin-left: 0;
  }

  .music .cd-animation {
    height: 290px;
  }

  .agency.header .btn-default {
    padding: 12px 16px;
  }

  .agency.header .header-top-line {
    margin-bottom: 20px;
  }

  .agency.header .header-sub-text {
    margin-bottom: 25px;
  }

  .agency.header .header-sub-text p {
    line-height: 22px;
    letter-spacing: 1px;
  }

  .agency.header .circle-container {
    display: none;
  }

  .agency.header .center-text {
    margin-left: 20px;
  }

  .agency.header .girl-boy {
    right: 4%;
  }

  .agency.header .girl-boy img {
    width: 370px;
  }

  .agency.blog .m-r-25 {
    margin-right: 15px;
  }

  .agency.blog .m-r-10 {
    margin-right: 5px;
  }

  .agency.footer2 .link-horizontal ul li {
    padding-right: 5px;
  }

  .agency.footer2 .link-horizontal ul li.borders-right {
    margin-right: 5px;
  }

  .agency.footer2 .link-horizontal ul li:last-child {
    padding-right: 0;
  }

  .agency.footer2 .list ul li {
    padding-right: 5px;
    padding-left: 0;
  }

  .agency.footer2 .list ul li:last-child {
    padding-right: 0;
  }

  .agency.footer2 .footer-contant .footer-headings {
    padding-bottom: 35px;
  }

  .agency.agency-content .agency-header-center-container {
    margin-bottom: 30px;
  }

  .agency.agency-content .agency-para {
    margin-bottom: 25px;
  }

  .agency.agency-content .about-img {
    width: 160px;
  }

  .agency.agency-content .blue-img {
    width: 390px;
    left: -25%;
  }

  .agency.testimonial-bg {
    background-position: inherit;
  }

  .agency .para2 {
    letter-spacing: 1px;
  }

  .agency .icon-collection .about-icon {
    margin-bottom: 25px;
  }

  .agency .icon-collection .about-icon a {
    padding: 25px 5px;
  }

  .agency .icon-collection .about-icon a img {
    margin-bottom: 15px;
    height: 40px;
  }

  .agency.testimonial .testimonial-slider .owl-nav {
    top: unset;
    bottom: -40px;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }

  footer.footer2.agency .brand-container {
    padding: 15px;
    margin-top: 30px;
    margin-bottom: 0px;
  }

  .wedding.header .center-text {
    height: calc(650px - 65px);
    margin-top: 65px;
  }

  .wedding.header .wedding-content .girl {
    left: 0;
  }

  .wedding.header .wedding-content .girl img {
    width: 520px;
  }

  .wedding.header .wedding-content .logo-h1 {
    height: 120px;
    margin-left: 0;
  }

  .wedding .event-content.wedding-content {
    margin-bottom: 20px;
  }

  .wedding.blog .owl-theme .owl-dots {
    margin-top: 30px !important;
  }

  .wedding .title .title-img {
    height: 25px;
  }

  .yoga.header .yoga-content .right-way {
    margin-top: 0;
  }

  .yoga.header .header-text, .yoga.header .header-sub-text {
    margin-bottom: 16px;
  }

  .yoga.header .girl {
    display: none;
  }

  .yoga.header .text-right {
    text-align: center !important;
  }

  .yoga.header .header-sub-text p {
    padding: 0 120px;
    line-height: 25px;
    letter-spacing: 1px;
  }

  .yoga .meter {
    margin-top: 25px;
  }

  .yoga .meter span {
    height: 32px;
  }

  .yoga.format .format-head-text {
    margin-bottom: 15px;
  }

  .yoga.format .format-head-text .about-font-header {
    font-size: 235%;
  }

  .yoga.format .format-sub-text {
    margin-bottom: 25px;
  }

  .yoga.format .format-sub-text .about-para {
    margin-bottom: 25px;
  }

  .yoga.format .girl-img-container {
    min-height: unset;
  }

  .yoga.format .girl-img-container .girl-yoga {
    width: 400px;
  }

  .yoga.testimonial .testimonial-info .testimonial-para {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .yoga.event .event-container {
    margin-bottom: 50px;
  }

  .yoga.event .event-container .circle {
    padding: 12px;
  }

  .yoga.event .event-container .event-info {
    margin-left: 20px;
  }

  .yoga.event .event-container .event-info .address, .yoga.event .event-container .event-info .address {
    margin-bottom: 10px;
  }

  .yoga.format .experience-container {
    min-height: 360px;
  }

  .yoga.format .experience-container .exp-img {
    width: 500px;
  }

  .resume .title.title2 .title-text {
    line-height: 1.4;
  }

  .resume.about .border-container {
    margin: 5px 0;
  }

  .resume.services .p-l-0 {
    padding-left: 15px;
  }

  .saas1.service .about-chat .chat-box img {
    height: 60px;
  }

  .saas1.build-bg .build-right-slider {
    display: none;
  }

  .saas1.build-bg .build-box .build-head {
    margin-bottom: 30px;
  }

  .saas1.build-bg .build-box ul {
    margin-top: 25px;
  }

  .saas1.build-bg .build-box ul li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: normal;
  }

  .saas1.build-bg .sync1 .item {
    margin: 0;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-link {
    padding: 0 25px;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-link img {
    height: 35px;
  }

  .saas1.pricing .btn-default {
    padding: 11px 35px;
  }

  .saas1.pricing .pricing__switcher {
    margin: 0 auto 70px auto;
  }

  .saas1.pricing .plan-box .price-box {
    padding: 20px;
  }

  .saas1.pricing .plan-box .price-box h4.no-weight {
    margin: 15px 0 10px 0;
  }

  .saas1.pricing .plan-box .price-box ul {
    margin-top: 25px;
    margin-bottom: 30px;
  }

  .saas1.pricing .plan-box .price-box ul li {
    margin-bottom: 5px;
  }

  .saas1.testimonial .video-box {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .saas1.testimonial .video-box img {
    position: relative;
    padding: 150px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .saas1.testimonial .testimonial-slider {
    margin-top: 20px;
  }

  .saas1.testimonial .testimonial-slider .owl-theme .owl-dots {
    display: none;
  }

  .saas1.subscribe .media {
    display: block;
  }

  .saas1.subscribe .media img {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .saas1.subscribe .media .media-body {
    text-align: center;
  }

  .saas1.subscribe .subscribe-input {
    margin-top: 30px;
  }

  .saas1.subscribe .subscribe-input form, .saas1.subscribe .subscribe-input .text {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .saas1.subscribe h6 {
    margin-top: 5px;
  }

  .saas2 .set-center-div {
    min-height: unset;
  }

  .saas2 .set-center-div .side-img {
    display: none;
  }

  .saas2.laptop-slider .slider-container .center-img img {
    height: 246px;
    width: 442px;
  }

  .saas2.feature {
    margin-bottom: -30px;
  }

  .saas2.feature .center-content {
    margin-bottom: 30px;
  }

  .saas2.feature .center-content img {
    height: 30px;
  }

  .saas2.feature .center-content .feature-content {
    margin-left: 15px;
  }

  .saas2.services .saas2-services .row .service-container:nth-child(n+4) {
    margin-top: 30px;
  }

  .copyright .link-horizontal ul li {
    padding-right: 10px;
  }

  .copyright .copyright-text.text-right {
    text-align: center !important;
  }

  .filter-main-btn {
    display: block;
  }

  .collection-filter {
    position: fixed;
    height: 100vh;
    top: 0;
    left: -350px;
    background-color: white;
    z-index: 999;
    overflow-y: scroll;
    padding: 15px 0 15px 15px;
    max-width: 350px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-shadow: 1px 0 5px #dddddd;
    box-shadow: 1px 0 5px #dddddd;
  }

  .collection-filter .collection-sidebar-banner {
    text-align: center;
  }

  .collection-filter .theme-card {
    padding-left: 30px;
    padding-right: 30px;
  }

  .collection-filter .collection-sidebar-banner {
    padding: 0 30px;
  }

  .collection-filter-block {
    border: none;
  }

  .collection-mobile-back {
    display: block;
  }

  .dropdown-sec .dropdown-content .dropdown-main-container {
    padding: 0;
  }

  .dropdown-sec .dropdown-content.dropdown-size {
    min-width: unset;
  }

  .dropdown-sec .menu-head {
    font-size: 13px;
    color: black;
    border-bottom: 1px solid #f1f1f1;
    background: #eeeeee !important;
    margin-bottom: 0;
  }

  .dropdown-sec .drop-down-design {
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .dropdown-sec ul li {
    -webkit-transition: 0.6s;
    transition: 0.6s;
    background: #f0eeee;
    border-bottom: 1px solid #eeeeee;
  }

  .mega-menu-container .container {
    margin: 0;
  }

  .loding-header {
    padding: 10px 0;
  }

  footer.app2 section .container .row div:nth-child(3), footer.app2 section .container .row div:nth-child(4) {
    margin-top: 30px;
  }

  footer.app2 section .container .row div:nth-child(3) h5, footer.app2 section .container .row div:nth-child(4) h5 {
    padding-bottom: 25px;
  }

  footer.saas1 h5 {
    padding-bottom: 40px;
  }

  .p-b-160 {
    padding-bottom: 120px;
  }

  .sub-menu-title {
    font-weight: 500;
  }

  .login-page .authentication-right {
    height: auto;
  }

  .testimonial .testimonial-slider .media .media-body {
    padding: 0 30px;
    height: 100%;
    -ms-flex-item-align: center;
    align-self: center;
  }

  .testimonial .testimonial-slider .media .media-body p {
    margin-bottom: 0;
  }

  .testimonial .testimonial-slider .slick-track .slick-slide:nth-child(even) .media {
    border-left: none;
    padding-left: 0;
  }

  .blog-detail-page .blog-advance ul {
    margin-bottom: 20px;
  }

  .blog-detail-page .blog-advance p:last-child {
    margin-bottom: 0;
  }

  .top-banner-content h4 {
    font-size: 20px;
  }

  .collection-product-wrapper .product-top-filter {
    border-top: none;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .search-count {
    border-top: 1px solid #dddddd;
    text-align: left;
    padding: 21px 34px 21px 34px;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .collection-view {
    display: none;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view {
    display: none;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
    width: 100% !important;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view:before, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter:before {
    right: 15px !important;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select {
    border-left: 1px solid #dddddd;
    padding: 21px 34px 21px 34px;
    border-top: none;
    border-bottom: none;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select {
    border-right: none !important;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
    border-top: 1px solid #dddddd;
  }

  .filter-main-btn {
    display: block;
  }

  .collection-filter {
    position: fixed;
    height: 100vh;
    top: 0;
    left: -350px;
    background-color: white;
    z-index: 9999;
    overflow-y: scroll;
    padding: 15px 0 15px 15px;
    max-width: 350px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-shadow: 1px 0 5px #ddd;
    box-shadow: 1px 0 5px #ddd;
  }

  .collection-filter .collection-sidebar-banner {
    text-align: center;
  }

  .collection-filter .theme-card {
    padding-left: 30px;
    padding-right: 30px;
  }

  .collection-filter .collection-sidebar-banner {
    padding: 0 30px;
  }

  .collection-filter-block {
    border: none;
  }

  .collection-mobile-back {
    display: block;
  }

  .collection .section-t-space {
    padding-top: 30px;
  }

  .collection .partition-collection>div:nth-last-child(1) {
    margin-top: 30px;
  }

  .collection .partition-collection>div:nth-last-child(2) {
    margin-top: 30px;
  }

  .right-login {
    margin-top: 30px;
  }

  .contact-page .map iframe {
    height: 350px;
  }

  .contact-page .contact-right {
    padding-bottom: 0;
  }

  .contact-page .contact-right ul li {
    padding-left: 0;
    border-bottom: 1px solid #dddddd;
    text-align: center;
    padding-bottom: 10px;
    margin-top: 15px;
  }

  .contact-page .contact-right ul li .contact-icon {
    position: relative;
    margin: 0 auto;
    border-right: 0;
  }

  .contact-page .contact-right ul li p {
    margin-bottom: 10px;
  }

  .cart-section .cart-table thead th:last-child {
    display: none;
  }

  .cart-section tbody tr td {
    min-width: 135px;
  }

  .cart-section tbody tr td:last-child {
    display: none;
  }

  .cart-section .cart-buttons>div:last-child {
    padding-right: 15px;
  }

  .cart-section tfoot tr td {
    padding-right: 0;
  }

  .wishlist-section tbody tr td {
    min-width: 138px;
  }

  .product-right h2 {
    margin-top: 15px;
  }

  .product-right .payment-card-bottom .d-flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .product-right {
    text-align: center;
    margin: 20px 0 10px 0;
  }

  .product-right .detail-section, .product-right .product-icon {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .product-right .product-description .qty-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .product-right .timer {
    text-align: left;
  }

  .product-right .product-icon .product-social li {
    padding-right: 20px;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
    width: 55%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    margin-bottom: 20px;
    background: none #000;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .open-popup {
    text-align: left;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup>a {
    color: #fff;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup .collection-filter {
    height: 100vh;
    left: -350px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .search-count {
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .collection-view, .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view {
    display: none;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
    width: 50%;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view:before, .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
    top: 13px;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
    left: unset;
    right: 35px;
  }

  .tab-product {
    padding-top: 0;
  }

  .tab-product .nav-material.nav-tabs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .pro_sticky_info {
    border: none;
    padding: 10px 0;
  }

  .product-form-box {
    margin-bottom: 10px;
  }

  .dashboard-left {
    position: fixed;
    height: 100vh;
    top: 0;
    left: -350px;
    background-color: white;
    z-index: 99;
    padding: 0 35px 35px;
    max-width: 350px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-shadow: 0 0 8px 0 #dddddd;
    box-shadow: 0 0 8px 0 #dddddd;
  }

  .dashboard-left .block-title h2 {
    display: none;
  }

  .dashboard-left .block-content {
    border: none;
    padding: 0;
    margin-top: 20px;
  }

  .dashboard-left .block-content ul li:hover {
    padding-left: 0;
  }

  .account-sidebar {
    display: block;
  }

  .typography_section .row>div:first-child .typography-box:last-child {
    margin-bottom: 30px;
  }

  .product-slick .slick-prev, .product-slick .slick-next, .rtl-product-slick .slick-prev, .rtl-product-slick .slick-next, .product-right-slick .slick-prev, .product-right-slick .slick-next, .rtl-product-right-slick .slick-prev, .rtl-product-right-slick .slick-next {
    opacity: 1;
  }

  .product-slick .slick-prev, .rtl-product-slick .slick-prev, .product-right-slick .slick-prev, .rtl-product-right-slick .slick-prev {
    left: 20px;
  }

  .product-slick .slick-next, .rtl-product-slick .slick-next, .product-right-slick .slick-next, .rtl-product-right-slick .slick-next {
    right: 20px;
  }

  .order-up {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .bundle .bundle_img {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .bundle .bundle_detail .theme_checkbox {
    padding: 0 20%;
  }

  .checkout-page .checkout-form .checkout-details {
    margin-top: 30px;
  }

  .custom-scroll.header-absolute.loding-header .responsive-btn a i {
    color: #fff !important;
  }

  .portfolio-metro h1 {
    font-size: 35px;
    margin-bottom: 0;
  }

  .product-title.size-text {
    text-align: left;
  }

  .image-swatch {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .breadcrumb-section-main.inner-2 .breadcrumb-contain>div {
    width: 40%;
  }

  .breadcrumb-section-main.inner-2 .breadcrumb-contain>div:last-child {
    width: 60%;
  }

  .opensubmenu {
    display: block !important;
  }

  .openSubChildMenu {
    display: block !important;
  }

  .overlay-sidebar {
    visibility: hidden;
    opacity: 0;
    background-color: #212331;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 1s;
    transition: all 1s;
  }

  .overlay-sidebar.overlay-sidebar-open {
    opacity: 0.8;
    visibility: visible;
  }

  .overlay-sidebar-header {
    visibility: hidden;
    opacity: 0;
    background-color: #212331;
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 1s;
    transition: all 1s;
  }

  .overlay-sidebar-header.overlay-sidebar-header-open {
    opacity: 0.8;
    visibility: visible;
  }
}

@media only screen and (min-width: 768px) {
  .blog-sec.blog-list .blog-agency .blog-contain .blog-info {
    padding-top: 0;
  }

  .blog-sec.blog-list .blog-agency .blog-contain .blog-img {
    border: 1px solid #f3f3f3;
  }

  .blog-sec.blog-list .blog-agency .blog-info {
    padding: 0 !important;
  }

  .blog-sec.blog-list .blog-agency .btn-bottom {
    margin-top: 18px;
  }

  .blog-sec.blog-list .blog-agency .btn-bottom .btn-default {
    padding-left: 28px;
    margin: unset;
    -webkit-transform: unset;
    transform: unset;
  }

  .blog-sec.blog-list .img-container {
    padding: 15px 30px;
  }

  body.rtl .offset-md-2 {
    margin-right: 16.6666666667%;
  }
}

@media only screen and (max-width: 767px) {
  .product-box:hover .cart-wrap button, .product-wrap:hover .cart-wrap button {
    -webkit-animation: none !important;
    animation: none !important;
  }

  .product-box:hover .cart-wrap a i, .product-wrap:hover .cart-wrap a i {
    -webkit-animation: none;
    animation: none;
  }

  .p-3col-width .p-width {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 0;
  }

  .p-4col-width .p-width {
    max-width: 50%;
    -webkit-box-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    margin-bottom: 0;
  }

  .m-layout .m-width.m-3-col, .m-layout .m-width.m-4-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    margin-bottom: 0;
  }

  header.nav-lg {
    padding: 0.2rem 1rem;
  }

  .ecommerce-footer .footer-end {
    text-align: center;
  }

  .ecommerce-footer .sub-footer {
    margin-top: 40px;
  }

  .ecommerce-footer .payment-card-bottom {
    text-align: center;
    margin-top: 10px;
  }

  .ecommerce-footer .footer-theme>.col {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: 100%;
  }

  .ecommerce-footer h4 {
    margin-bottom: 0;
  }

  .ecommerce-footer .footer-mobile-title {
    display: block;
    padding-top: 0;
  }

  .ecommerce-footer .col-md-12 {
    text-align: left;
    margin-bottom: 0;
  }

  .banner-three>div+div {
    margin-top: 30px;
  }

  .portfolio-section .col-12.m-b-50 {
    margin-bottom: 0 !important;
  }

  .team-grid .speker-container .d-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .team-grid .employee h5, .team-grid .employee h6 {
    width: 100%;
  }

  .team-grid .employee p {
    text-align: center;
  }

  .animated-bg i {
    height: 40px;
    width: 40px;
  }

  .event.team-grid .team-para {
    margin-top: 10px;
    margin-bottom: 0;
  }

  .saas2.pricing h6 {
    line-height: 1.8;
  }

  .pricing.yoga .owl-theme .owl-dots, .pricing.saas2 .owl-theme .owl-dots {
    margin-top: 20px !important;
  }

  .saas1.faq .faq-block h6.link {
    margin-top: 20px;
  }

  .music .link-horizontal {
    padding-bottom: 10px;
  }

  .saas1.footer2 {
    padding-bottom: 10px;
  }

  .m-b-25 {
    margin-bottom: 15px;
  }

  footer .footer-title.mobile-title h3 {
    line-height: 1.4;
  }

  .event.contact .iframe-container, .event.contact .bg-white {
    border-radius: 15px;
  }

  .portfolio-section.portfolio-creative .my-auto {
    padding: 20px !important;
  }

  .portfolio-section.portfolio-creative.creative2 .set-order {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .portfolio-metro h1 {
    letter-spacing: 0;
    margin-bottom: 20px;
  }

  .coming-soon .container-fluid {
    padding: 0 15px !important;
  }

  .coming-soon .set-bg-img {
    position: absolute;
    height: 100%;
  }

  .coming-soon .set-bg-img .bg-coming-soon {
    height: 100%;
  }

  .coming-soon .bg-black {
    background: rgba(0, 0, 0, 0.67);
  }

  .blog .img-container .blog-info {
    text-align: center;
  }

  .blog .img-container .blog-info .social-list ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .wedding.format .format-head-text {
    margin-bottom: 10px;
  }

  .wedding.format .format-sub-text .about-para {
    margin-bottom: 10px;
  }

  .wedding.copyright {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }

  .yoga .subscribe .d-flex, .app1 .subscribe .d-flex {
    display: block !important;
  }

  .yoga .subscribe .d-flex .form-control, .app1 .subscribe .d-flex .form-control {
    padding: 17px 35px;
  }

  .copyright.resume hr {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  header.wedding {
    border-radius: 0;
  }

  .wedding .subscribe .d-flex {
    display: block !important;
  }

  .wedding .subscribe .d-flex .btn-default {
    margin: 0 auto;
  }

  .center-text {
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .saas1.pricing .plan-box .price-box {
    padding: 40px;
  }

  .subscribe .form-group input {
    margin-bottom: 15px;
  }

  .filter-section .filter-container ul.filter>li {
    text-decoration: line-through;
    padding: 0 8px;
  }

  .filter-section .filter-container ul.filter>li a {
    line-height: 1;
  }

  .filter-section .filter-container ul.filter>li.active {
    background-color: transparent;
    text-decoration: none;
  }

  .filter-section .filter-container ul.filter>li.active a {
    color: #000;
  }

  .testimonial.gym .testimonial-para, .testimonial.music .testimonial-para, .testimonial.wedding .testimonial-para, .testimonial.yoga .testimonial-para, .testimonial.agency .testimonial-para {
    margin-bottom: 20px !important;
  }

  .testimonial.gym .testimonial-info, .testimonial.music .testimonial-info, .testimonial.wedding .testimonial-info, .testimonial.yoga .testimonial-info, .testimonial.agency .testimonial-info {
    margin-top: 30px !important;
    padding: 0 10px !important;
  }

  footer.footer2.saas2 {
    margin-top: 0;
  }

  .event.subscribe .form-control {
    margin-bottom: 30px;
  }

  .event.about .text-right {
    width: 50%;
    margin: 0 auto;
  }

  .event.contact .p-r-0, .event.contact .p-l-0 {
    padding: 0 !important;
  }

  .event.contact .map {
    margin-bottom: 20px;
  }

  .subscribe.yoga .button-primary {
    right: unset;
  }

  .subscribe .subscribe-2 {
    padding-top: 30px;
  }

  .app2 .subscribe .subscribe {
    margin-top: 30px;
  }

  .app2 .subscribe .form-group .button-primary .btn {
    border: 1px solid #fff;
    padding: 10px 20px;
    margin-top: 20px;
  }

  .app2 .subscribe .form-group .icon {
    top: 35px;
  }

  .app2.brand-sliders {
    padding-bottom: 60px;
  }

  .agency.blog .blog-agency .blog-contain .img-container .blog-info {
    text-align: center;
    padding: 15px;
  }

  .agency.blog .blog-agency .blog-contain .img-container .blog-info>.d-flex {
    display: block !important;
  }

  .agency.blog .blog-agency .blog-contain .img-container .blog-info>.d-flex>div {
    margin-bottom: 5px;
  }

  .agency.blog .blog-agency .blog-contain .img-container .blog-info .m-b-20 {
    margin-bottom: 10px !important;
  }

  .agency.blog .blog-agency .blog-contain .img-container .blog-info p {
    letter-spacing: 0;
  }

  .agency.blog .blog-agency .blog-contain .img-container .blog-head {
    margin-bottom: 16px;
  }

  .agency.blog .blog-agency .blog-contain .img-container .m-t-20 {
    margin-top: 10px !important;
  }

  .agency.blog.blog-split .blog-list:nth-child(even) .center-text {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .videos .video {
    padding: 85px 0;
  }

  .services.app1 .row .col-md-4+.col-md-4 {
    margin-top: 15px;
  }

  .subscribe.app1 .button-primary {
    right: unset;
  }

  .subscribe .button-primary {
    position: relative;
  }

  .subscribe .button-primary button {
    margin: 0 auto;
  }

  .subscribe .form-group input {
    padding: 24px 35px;
  }

  .tap-top {
    width: 40px;
    height: 40px;
    bottom: 60px;
    right: 10px;
    line-height: 1.7;
  }

  .download-img, .link-horizontal ul {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .download .download-img .center-img-content {
    margin-left: 0 !important;
  }

  .agency.blog .blog-agency .blog-contain {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .agency.blog .blog-agency .blog-contain .img-container {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .title .main-title {
    margin-bottom: 8px;
  }

  .title .main-title h2 {
    margin-bottom: 0;
    line-height: 1.4 !important;
  }

  .accordion .register-page {
    margin-top: 25px;
  }

  .accordion .testimonial.videos {
    margin-top: 25px;
  }

  .portfolio-section.videos .m-b-50 {
    margin-bottom: 10px;
  }

  .portfolio-section.videos .w-100 {
    width: 100% !important;
  }

  .portfolio-section .portfolio-detail {
    margin-top: 20px;
  }

  .cart-section tbody tr td a, .wishlist-section tbody tr td a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cart-section .cart-table thead th:nth-last-child(-n+4) {
    display: none;
  }

  .cart-section tbody tr td:nth-last-child(-n+4) {
    display: none;
  }

  .cart-section tbody tr td .mobile-cart-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .wishlist-section .cart-table thead th:nth-last-child(-n+3) {
    display: none;
  }

  .wishlist-section tbody tr td:nth-last-child(-n+3) {
    display: none;
  }

  .wishlist-section tbody tr td .mobile-cart-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .app1.services .container {
    margin-bottom: -20px;
  }

  .app1.services .service {
    margin-bottom: 20px;
  }

  .login-modal .close {
    right: 16px;
  }

  .single-product-tables table {
    width: 100%;
  }

  .format {
    text-align: center;
  }

  .format .link-horizontal ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .icon-collection {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header .rotate {
    display: none;
  }

  .header.saas2 .center-text {
    padding: 110px 0;
  }

  .header .center-text {
    text-align: center;
    height: auto;
    margin-top: 60px;
    padding: 60px 0;
  }

  .header.wedding .center-text {
    height: auto;
  }

  .header .music-content .center-text {
    height: calc(503px - 58px);
    margin-top: 58px;
  }

  .header .img-mobile {
    display: none;
  }

  .header .wave-orange {
    display: none;
  }

  .header.app1 .link-horizontal ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header .bg.app2-header .header-text h1:before {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .header .bg.app2-header .link-horizontal ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header .header-text {
    margin-bottom: 25px;
  }

  .header .header-text {
    margin-bottom: 30px;
  }

  .header .header8-content .slider-banner {
    display: none;
  }

  .header .header8-content .center-text>div {
    width: 100%;
  }

  .header .header8-content .center-text>div .header-text .d-flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header .header8-content .center-text>div .header-text .slider-logo {
    margin-left: 5px;
  }

  .header .header8-content .center-text>div .header-text .slider-logo img {
    height: 15px;
  }

  .header .header8-content .center-text>div .header-text .header-text {
    margin-bottom: 12px;
  }

  .header .header8-content .center-text>div .header-text .header-sub-text {
    margin-bottom: 12px;
  }

  .header .header8-content .center-text>div .header-text .header-sub-text span {
    font-size: 20px;
  }

  .header .header8-content .center-text>div .link-horizontal ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header.saas1 h1 {
    margin-top: -10px;
  }

  .header.saas1 .bg {
    background-position: right;
  }

  .header.event .set-bottom {
    bottom: 5px;
  }

  .borders-before {
    margin-bottom: 20px;
  }

  .pricing .siema {
    margin: -5px;
  }

  .pricing .siema .price-container.price-margin {
    margin: 5px 15px;
  }

  .link-horizontal ul li {
    padding-right: 15px;
  }

  .link-horizontal ul li.borders-right {
    margin-right: 15px;
    height: 40px;
  }

  .link-horizontal ul li a.icon-btn i {
    font-size: 15px;
    height: 40px;
    width: 40px;
    margin: 0 auto 10px;
  }

  .videos .video {
    margin-bottom: 20px;
  }

  .videos .counters {
    text-align: center;
  }

  .videos .counters .link-horizontal ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .videos .w-100 {
    width: 70% !important;
  }

  .download .center-mobile {
    margin-top: -90px;
    margin-bottom: -80px;
    min-height: 484px;
  }

  .download .center-mobile img {
    max-height: 400px;
  }

  .services .service.app2 {
    padding: 30px 10px;
  }

  .services .service .service-feature .feature-text {
    margin-bottom: 20px;
  }

  .services.app2 .service-container .service {
    margin-bottom: 30px;
  }

  .services.app2 .service-container:nth-child(n+3) .service {
    margin-bottom: 30px;
  }

  .services.app2 .service-container:nth-child(n+5) .service {
    margin-bottom: 0;
  }

  .saas1 .app1 p {
    line-height: 22px;
  }

  .download .download-img .center-abs.elipse {
    display: none;
  }

  .download .download-img .download-icon {
    display: none;
  }

  .m-t-50 {
    margin-top: 30px;
  }

  .about.about2 .counters.set-height {
    text-align: center;
  }

  .about.about2 .counters.set-height img {
    height: 500px;
  }

  .event.booking .form-inline, .music.booking .form-inline {
    display: block;
  }

  .event.booking .form-inline .form-group, .music.booking .form-inline .form-group {
    margin-bottom: 15px;
  }

  .event.booking .btn-default, .music.booking .btn-default {
    padding: 15px 40px;
  }

  .title {
    margin-bottom: 20px;
  }

  .title.title2 .sub-title {
    line-height: 30px;
  }

  .title.title2 .para {
    font-size: 115%;
  }

  .m-b-40 {
    margin-bottom: 20px;
  }

  .m-t-50 {
    margin-top: 30px;
  }

  .booking-1 .form-inline {
    display: block;
  }

  .booking-1 .form-inline .form-group {
    margin-bottom: 15px;
  }

  .team-section .teams:nth-child(even) {
    margin-top: 0;
  }

  footer .footer-headings {
    display: none;
  }

  footer .footer-title.mobile-title {
    display: block;
  }

  footer .footer-contant {
    padding: 10px 0;
  }

  footer .footer-title {
    padding: 10px 0;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }

  footer .footer-title.active .according-menu {
    font: normal normal normal 15px/1 FontAwesome;
  }

  footer .footer-title.active .according-menu:before {
    content: "\f106";
    position: absolute;
    right: 2px;
    bottom: 10px;
  }

  footer .footer-title .according-menu {
    font: normal normal normal 15px/1 FontAwesome;
  }

  footer .footer-title .according-menu:before {
    content: "\f107";
    position: absolute;
    right: 2px;
    bottom: 10px;
  }

  footer.footer2.saas2 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#252525));
    background-image: linear-gradient(#000, #252525);
  }

  footer.footer2.saas2 .footer-padding {
    padding-top: 0;
  }

  .event.booking .form-inline, .music.booking .form-inline {
    margin-bottom: 35px;
  }

  .app2.format {
    text-align: left;
  }

  .app2.format .icon-collection {
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
  }

  .app2.format .format-head-text .about-font-header {
    font-size: 150%;
  }

  .app2.about {
    padding-top: 70px;
  }

  .app2.about .set-height {
    min-height: 445px;
  }

  .app2.about .set-height .mobile1 {
    width: 250px;
  }

  .app2 .subscribe .form-group .d-flex {
    margin-top: 50px;
  }

  .app2.footer2.bg {
    background: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#000));
    background: linear-gradient(#252525, #000);
  }

  .event.gallery .gallery-list, .wedding.gallery .gallery-list, .resume.gallery .gallery-list {
    margin-bottom: 40px;
  }

  .event.gallery .list, .wedding.gallery .list, .resume.gallery .list {
    padding: 5px 20px;
  }

  .event.gallery .list a, .wedding.gallery .list a, .resume.gallery .list a {
    font-size: 14px;
  }

  .event.testimonial .testimonial .item.p-t-30, .saas2.testimonial .testimonial .item.p-t-30 {
    padding-top: 0;
  }

  .event.testimonial .testimonial.owl-theme .owl-nav, .saas2.testimonial .testimonial.owl-theme .owl-nav {
    margin-top: 30px;
  }

  .event.testimonial .testimonial.owl-theme .owl-nav .owl-prev, .event.testimonial .testimonial.owl-theme .owl-nav .owl-next, .saas2.testimonial .testimonial.owl-theme .owl-nav .owl-prev, .saas2.testimonial .testimonial.owl-theme .owl-nav .owl-next {
    position: relative;
    margin: 0;
    padding: 0;
    top: unset;
    -webkit-transform: unset;
    transform: unset;
  }

  .event.testimonial .testimonial.owl-theme .owl-nav .owl-prev, .saas2.testimonial .testimonial.owl-theme .owl-nav .owl-prev {
    left: unset;
    margin-right: 20px;
  }

  .event.testimonial .testimonial.owl-theme .owl-nav .owl-next, .saas2.testimonial .testimonial.owl-theme .owl-nav .owl-next {
    right: unset;
  }

  .event.testimonial .quotes, .saas2.testimonial .quotes {
    text-align: center;
  }

  .event.testimonial .quotes .left-quote, .event.testimonial .quotes .right-quote, .saas2.testimonial .quotes .left-quote, .saas2.testimonial .quotes .right-quote {
    display: none;
  }

  .event.testimonial .testimonial-msg, .saas2.testimonial .testimonial-msg {
    width: 100%;
  }

  .event.testimonial .testimonial-msg img, .saas2.testimonial .testimonial-msg img {
    margin: 0 auto;
  }

  .event.testimonial .testimonial-msg .msg-box, .saas2.testimonial .testimonial-msg .msg-box {
    display: none;
  }

  .event.testimonial .rating .stars, .saas2.testimonial .rating .stars {
    margin-right: 10px;
  }

  .event.testimonial .rating .stars i, .saas2.testimonial .rating .stars i {
    font-size: 14px;
  }

  .event.speaker .container {
    margin-bottom: -20px;
  }

  .event.speaker .container .speker-container {
    margin-bottom: 30px;
  }

  .event .format .format-head-text, .event .format .format-sub-text {
    margin-bottom: 30px;
  }

  .event .format .format-head-text .about-para, .event .format .format-sub-text .about-para {
    margin-bottom: 20px;
    line-height: 18px;
  }

  .event.about .text-right {
    text-align: center !important;
  }

  .event.about .announcer-img {
    margin-bottom: 60px;
  }

  .event.sponsor .set-margin {
    margin-bottom: -30px;
  }

  .event.sponsor .sponsor-img {
    margin-bottom: 30px;
  }

  .event.contact .bg-white form {
    padding: 20px;
  }

  .event.contact .bg-white form .form-group {
    margin-bottom: 30px;
  }

  .event.contact .iframe-container iframe {
    width: 100%;
    height: 100%;
  }

  .event.copyright .d-flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .schedule .event-container {
    padding-right: 20px;
  }

  .schedule .event-container .cal-time.events .timing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right;
    padding-top: 35px;
  }

  .schedule .event-container .cal-time.events .timing .event-time {
    padding: 0 20px;
  }

  .schedule .event-container .cal-time.events .timing .event-time:first-child {
    padding-left: 0;
  }

  .schedule .event-container .cal-time.events .timing .event-time:last-child {
    padding-right: 0;
  }

  .schedule .event-container .cal-time.events .timing .event-time.active {
    padding: 0 20px;
  }

  .schedule .event-container .cal-time.events .timing .border-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
    align-self: center;
  }

  .schedule .event-container .cal-time.events .timing .border-container .border-dashed {
    width: 50px;
    height: unset;
    border-left: unset;
    border-top: 2px dashed;
  }

  .gym .about-img {
    margin-bottom: 60px;
  }

  .gym .about-img .borders-around .bg-black {
    width: 38%;
  }

  .gym .about-img .borders-around .bg-black:after, .gym .about-img .borders-around .bg-black:before {
    width: 184px;
    height: 184px;
  }

  .gym .about-img .borders-around .format-img {
    width: 70%;
  }

  .gym .calculate-bmi {
    margin-top: 20px;
  }

  .gym .default-dots .owl-dots {
    bottom: 25px !important;
  }

  .gym .counter-container+.counter-container {
    border-left: 1px solid #ddd;
    padding-bottom: unset;
  }

  .gym .counter-container+.counter-container+.counter-container {
    padding-top: unset;
    margin-top: 30px;
    border-top: 0;
  }

  .gym .calculate-bmi tr td {
    font-size: 14px;
    padding: 15px 0;
  }

  .music .img-height img {
    width: 500px;
  }

  .music .left-side, .music .right-side {
    display: none;
  }

  .music div:nth-child(n+5) .album-list {
    margin-bottom: 30px;
  }

  .music div:nth-child(n+7) .album-list {
    margin-bottom: 0;
  }

  .music.artist .artist-text p.text-para {
    font-size: 115%;
  }

  .music.sponsor div .sponsor-img {
    margin-bottom: 30px;
  }

  .music.sponsor div:nth-child(n+11) .sponsor-img {
    margin-bottom: 0;
  }

  .music.copyright .link-horizontal ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .music.bg-video .center-text .d-flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .agency.header .bg {
    background: #000;
  }

  .agency.header h1 {
    color: #fff;
    margin-top: -10px;
  }

  .agency.header p {
    color: #fff;
  }

  .agency.header .center-text {
    text-align: center;
    margin-left: 0;
  }

  .agency.header .link-horizontal ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .agency.header .girl-boy img {
    display: none;
  }

  .agency.header .plus-container {
    display: none;
  }

  .agency .format-container {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .agency .format-container .block-span {
    display: unset;
  }

  .agency .format-container .borders-before {
    margin-bottom: 15px;
  }

  .agency .format-container .format-head-text {
    margin-bottom: 25px;
  }

  .agency .format-container .format-sub-text {
    margin-bottom: 20px;
  }

  .agency.testimonial .testimonial-container.testimonial-container2 {
    padding: 20px;
  }

  .agency.testimonial .testimonial-slider .owl-nav {
    position: relative;
    line-height: 0;
    top: unset;
    text-align: center;
    bottom: unset;
  }

  .agency.testimonial .testimonial-slider .owl-nav .owl-prev, .agency.testimonial .testimonial-slider .owl-nav .owl-next {
    padding: 0;
    margin: 0;
  }

  .agency.testimonial .testimonial-slider .owl-nav .owl-prev {
    margin-right: 20px;
  }

  .agency.agency-content {
    text-align: center;
  }

  .agency.agency-content .agency-header-center-container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .agency.agency-content .agency-header-center-container .borders {
    display: none;
  }

  .agency.agency-content .agency-para, .agency.agency-content .btn-default {
    margin-left: 0;
  }

  .agency.agency-content .side-img {
    display: none;
  }

  .agency.agency-content .blue-img {
    display: none;
  }

  .agency.agency-content .agency-head .agency-head-text {
    font-size: 245%;
  }

  .agency.agency-content .agency-para {
    line-height: 26px;
  }

  .agency.testimonial-bg {
    background: #000;
  }

  .agency.speaker .team-img .social ul li {
    margin-right: 10px;
  }

  .agency.speaker .team-img .social ul li a i {
    height: 25px;
    width: 25px;
  }

  .agency.video .d-inline-block .bg-video {
    width: 70%;
  }

  .wedding.format .format-small-text {
    margin-top: 20px;
  }

  .wedding.format .about-img {
    width: 400px;
  }

  .wedding.header .header-text {
    margin-bottom: 22px;
  }

  .wedding.header .wedding-content .logo-h1 {
    height: 90px;
    margin-left: 0;
  }

  .wedding .wedding-banner .frem {
    width: 85%;
  }

  .wedding .wedding-banner .text-container .couple-text {
    margin-bottom: 0;
  }

  .wedding .wedding-banner .text-container .couple-text .banner-text {
    font-size: 45px;
  }

  .wedding .wedding-banner .text-container .couple-text .banner-text.small {
    font-size: 35px;
  }

  .wedding .wedding-banner .text-container .place {
    font-size: 25px;
  }

  .wedding .wedding-time {
    margin-bottom: 30px;
  }

  .wedding.blog .blog-container .set-skew {
    -webkit-clip-path: unset;
    clip-path: unset;
    margin-bottom: 20px;
  }

  .wedding.blog .blog-container .blog-date, .wedding.blog .blog-container .blog-place, .wedding.blog .blog-container .blog-para {
    margin-left: 0;
  }

  .wedding.blog .blog-container .blog-para {
    text-indent: unset;
  }

  .wedding.blog .blog-container .btn.btn-blog {
    margin-left: 0;
  }

  .wedding.pricing .when-slider.owl-theme .owl-nav .owl-prev, .wedding.pricing .when-slider.owl-theme .owl-nav .owl-next {
    display: none;
  }

  .yoga.header .yoga-content .owl-nav .owl-prev, .yoga.header .yoga-content .owl-nav .owl-next {
    padding: 6px 14px;
  }

  .yoga.header .yoga-content .owl-nav .owl-prev {
    left: 0;
  }

  .yoga.header .yoga-content .owl-nav .owl-next {
    right: 0;
  }

  .yoga.header .header-sub-text p {
    padding: 0 40px;
  }

  .yoga .set-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .yoga.testimonial .testimonial-info {
    padding: 0;
    margin-top: 30px;
  }

  .yoga.event .event-container {
    margin-bottom: 30px;
  }

  .yoga.event .event-container .event-info .time, .yoga.event .event-container .event-info .address {
    margin-bottom: 5px;
  }

  .yoga.event .row div:nth-child(n+5) .event-container {
    margin-bottom: 30px;
  }

  .yoga.event .row div:last-child .event-container {
    margin-bottom: 0;
  }

  .yoga.format .experience-container {
    min-height: unset;
  }

  .yoga.format .experience-container .exp-img {
    position: relative;
  }

  .yoga.format .girl-img-container .girl-yoga {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .resume.header .link-horizontal ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .resume.header .font-large {
    font-size: 120%;
  }

  .resume .bg-pink img {
    display: none;
  }

  .saas1 .work-tab-bg {
    padding-top: 30px;
  }

  .saas1 .title img {
    height: 18px;
    margin-right: 5px;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-link {
    padding: 0 15px;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-link img {
    display: none;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-link h6 {
    font-size: 16px;
    margin-top: 10px;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-link.active span {
    display: none;
  }

  .saas1.build-bg .owl-carousel .owl-item .work-slide {
    height: 400px;
  }

  .saas1.faq .faq-img-block {
    display: none;
  }

  .saas1.faq .faq-block .frequent-text {
    margin-top: -8px;
  }

  .saas2.feature .advance-feature-img {
    margin-bottom: 30px;
  }

  .saas2.feature .center-content {
    display: block;
    text-align: center;
  }

  .saas2.feature .center-content img {
    margin-bottom: 15px;
  }

  .saas2.feature .center-content .feature-content {
    margin-left: 0;
  }

  .saas2.feature .image-container .advance-feature-img {
    margin-bottom: 50px;
  }

  .saas2.services .saas2-services .row .service-container:nth-child(n+3) {
    margin-top: 30px;
  }

  .saas2.services .service .img-block {
    max-width: 70px;
    margin: 0 auto;
    margin-bottom: 15px;
  }

  .saas2.laptop-slider .slider-container .center-img img {
    height: auto;
    width: 100%;
  }

  .saas2.laptop-slider .slider-container .trainers-slider.owl-carousel .owl-item.active.center .item:after, .saas2.laptop-slider .slider-container .trainers-slider.owl-carousel .owl-item.active.center .item:before {
    display: none;
  }

  .saas2.laptop-slider .slider-container .trainers-slider.owl-carousel .owl-item.active.center img {
    margin: 0 auto;
  }

  .saas2.testimonial .container {
    margin-bottom: 0;
  }

  footer.footer2.agency .link-horizontal {
    margin-bottom: 20px;
  }

  footer.footer2.agency .link-horizontal, footer.footer2.agency .list {
    float: unset !important;
  }

  footer.footer2.agency .link-horizontal ul, footer.footer2.agency .list ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  footer.footer2.agency .link-horizontal ul li.borders-right, footer.footer2.agency .list ul li.borders-right {
    height: 30px;
  }

  footer.app2 section .container .row>div:nth-child(3), footer.app2 section .container .row>div:nth-child(4) {
    margin-top: unset;
  }

  .testimonial.music .testimonial-info .testimonial-para {
    margin-bottom: 20px;
    line-height: 28px;
    font-size: 120%;
  }

  .testimonial.music .music-testimonial-slider.owl-theme .owl-nav .owl-prev {
    left: -8px;
  }

  .testimonial.music .music-testimonial-slider.owl-theme .owl-nav .owl-next {
    right: -32px;
  }

  .counter .counters .counter-img {
    margin-bottom: 15px;
  }

  .blog .img-container .blog-info {
    padding: 15px;
  }

  .blog .img-container .blog-info .blog-text {
    font-size: 145%;
  }

  .blog .img-container .blog-info .small-font {
    margin-bottom: 10px;
  }

  .event.pricing .btn-default, .gym.pricing .btn-default, .agency.pricing .btn-default, .resume.pricing .btn-default {
    padding: 12px 25px;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .collection-view, .collection-product-wrapper .product-top-filter .popup-filter .collection-grid-view, .collection-product-wrapper .product-top-filter .product-filter-content .collection-view, .collection-product-wrapper .product-top-filter .product-filter-content .collection-grid-view {
    display: none !important;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
    width: 50%;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
    width: 50%;
  }

  .product-pagination .pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-left: 1px solid #dddddd;
  }

  .product-pagination .pagination {
    border-color: #000;
  }

  .collection-product-wrapper .pagination_sec {
    margin: 0 auto !important;
  }

  .collection-product-wrapper .product-pagination .product-search-count-bottom h5 {
    padding: 12px 0;
    text-align: center;
    width: 100%;
  }

  .collection-product-wrapper .product-pagination .theme-paggination-block nav {
    border-bottom: 1px solid;
    border-right: 1px solid;
    border-left: 1px solid;
    border-color: #dddddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .agency header nav {
    padding: 15px 0;
  }

  .agency header nav .responsive-btn i {
    color: #000 !important;
  }

  .counter-container+.counter-container {
    padding-bottom: 30px;
    border-left: 1px solid #ddd;
  }

  .counter-container+.counter-container+.counter-container {
    margin-top: 0 !important;
    border-left: 0;
    padding-top: 30px;
    border-top: 1px solid #ddd;
  }

  .counter-container+.counter-container+.counter-container+.counter-container {
    border-left: 1px solid #ddd;
  }

  .p-b-160 {
    padding-bottom: 145px;
  }

  header.agency nav a img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }

  .blog-detail-page .comment-section li {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .product-pagination .pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-left: 1px solid #dddddd;
  }

  .testimonial .testimonial-slider .media .media-body {
    padding: 0;
  }

  .about-page {
    text-align: center;
  }

  .about-page p {
    line-height: 1.5;
  }

  .team h2 {
    font-size: 25px;
  }

  .layout2-logo {
    padding-right: 70px;
  }

  .faq-section .theme-accordion .card .card-body p {
    line-height: 1.5 !important;
  }

  .faq-section .theme-accordion .card .card-header button {
    font-size: 14px !important;
    white-space: normal;
    width: 100%;
    padding: 16px 30px 16px 18px !important;
  }

  .product-wrapper-grid.list-view .product-box {
    display: block;
    border: 1px solid #eee;
    padding: 15px;
  }

  .product-wrapper-grid.list-view .product-box .img-wrapper, .product-wrapper-grid.list-view .product-box .img-block {
    margin: 0 auto 15px;
  }

  .product-wrapper-grid.list-view .product-box .product-detail {
    padding-left: 0;
    text-align: center !important;
  }

  .register-page .theme-card {
    padding: 25px;
  }

  .register-page .theme-card .theme-form input {
    margin-bottom: 25px;
    padding: 13px 18px;
  }

  .collection .partition-collection>div:nth-last-child(1), .collection .partition-collection>div:nth-last-child(2), .collection .partition-collection>div:nth-last-child(3) {
    margin-top: 30px;
  }

  .collection-product-wrapper .product-pagination .pagination .page-item a {
    padding: 15px 18px;
  }

  .collection-product-wrapper .product-pagination .product-search-count-bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-right: 0;
  }

  .collection-product-wrapper .product-pagination .product-search-count-bottom h5 {
    padding: 10px 0;
  }

  .collection-product-wrapper .product-pagination .theme-paggination-block nav {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .cart-section tbody tr td a, .wishlist-section tbody tr td a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cart-section .cart-table thead th:nth-last-child(-n+4) {
    display: none;
  }

  .cart-section tbody tr td:nth-last-child(-n+4) {
    display: none;
  }

  .cart-section tbody tr td .mobile-cart-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .wishlist-section .cart-table thead th:nth-last-child(-n+3) {
    display: none;
  }

  .wishlist-section tbody tr td:nth-last-child(-n+3) {
    display: none;
  }

  .wishlist-section tbody tr td .mobile-cart-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .search-product>div:nth-last-child(4) {
    margin-top: 30px;
  }

  .blog-page .order-sec {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .blog-page .blog-media:last-child {
    margin-bottom: 30px;
  }

  .blog-page .blog-sidebar ul li {
    display: block;
  }

  .tab-pane iframe {
    width: 100%;
  }

  .product-order .product-order-detail img {
    height: auto;
  }

  .typography_section .typography-box .typo-content.product-pagination .pagination {
    border-left: none;
  }

  .typography_section .typography-box .typo-content.typo-buttons a:last-child {
    margin-top: 5px;
  }

  .breadcrumb-section {
    padding: 10px 0;
    text-align: center;
  }

  .breadcrumb-section h2 {
    line-height: normal;
  }

  .breadcrumb-section.video-sec {
    height: 40vh;
  }

  .agency.blog.blog-sec.blog-list .blog-img, .agency.blog.blog-sec.blog-split .blog-img {
    width: 100%;
  }

  .product-box .cart-info, .product-box .cart-wrap {
    opacity: 1;
  }

  .portfolio-metro h1 {
    font-size: 30px;
  }

  .portfolio-section.metro-section .product-box .cart-wrap a i {
    opacity: 1;
    -webkit-animation: none !important;
    animation: none !important;
  }

  .portfolio-section.metro-section .product-box .product-detail {
    padding: 4px;
    opacity: 1;
    bottom: 15px;
  }

  .portfolio-section.metro-section .product-box .product-detail h6 {
    padding-bottom: 0;
  }

  .breadcrumb-section-main {
    padding: 70px 0;
    text-align: center;
  }

  .breadcrumb-section-main .breadcrumb-contain {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: block;
    text-align: center;
  }

  .breadcrumb-section-main .breadcrumb-contain>div {
    width: 100%;
  }

  .breadcrumb-section-main .breadcrumb-contain>div:last-child {
    width: 100%;
  }

  .breadcrumb-section-main .breadcrumb-contain>div .breadcrumb-txt {
    text-align: center;
  }

  .breadcrumb-section-main .breadcrumb-contain>div ul {
    text-align: center;
  }

  .breadcrumb-section-main .breadcrumb-contain>div ul li {
    margin-right: 10px;
  }

  .breadcrumb-section-main .breadcrumb-contain>div ul li a i {
    margin-right: 10px;
  }

  .breadcrumb-section-main.inner-2 {
    text-align: center;
  }

  .breadcrumb-section-main.inner-2 .breadcrumb-contain>div {
    width: 100%;
  }

  .breadcrumb-section-main.inner-2 .breadcrumb-contain>div:last-child {
    width: 100%;
  }

  .breadcrumb-section-main.inner-2 .breadcrumb-contain ul {
    text-align: center;
  }

  .breadcrumb-section-main.inner-2 .breadcrumb-contain ul li {
    margin-right: 10px;
  }

  .breadcrumb-section-main.inner-2 .breadcrumb-contain ul li a i {
    margin-right: 10px;
  }

  .breadcrumb-section-main.inner-2 .breadcrumb-contain .breadcrumb-txt {
    margin-bottom: 10px;
  }

  .breadcrumb-section-main.inner-3 .breadcrumb-contain ul li {
    margin-right: 0;
  }

  .breadcrumb-section-main.inner-3 .breadcrumb-contain ul li a i {
    margin-right: 5px;
  }

  .breadcrumb-section-main.inner-3 .breadcrumb-contain .breadcrumb-txt {
    margin-top: 2px;
  }

  .breadcrumb-section-main.inner-4 .breadcrumb-contain>div .breadcrumb-txt {
    margin-bottom: 5px;
  }

  .breadcrumb-section-main.breadcrumb-section-sm {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 767px) and (min-width: 576px) {
  .team-section .center-container {
    height: 100%;
  }

  .team-section .teams {
    margin-bottom: 20px;
  }

  .team-section .teams:nth-child(n+3) {
    margin-bottom: 0;
  }

  .resume.about div .radial {
    margin-bottom: 30px;
  }

  .resume.about div .m-t-50 {
    margin-top: 0;
  }

  .music.sponsor .row>div:nth-last-child(2) .sponsor-img {
    margin-bottom: 0;
  }

  .music.blog .img-container .blog-info {
    padding: 10px 0;
  }
}

@media only screen and (max-width: 600px) {
  .header .event-content .link-horizontal ul li a {
    margin-bottom: 30px;
  }

  .section-404 .navbar-links {
    display: none;
  }

  .section-404 .custom-navbar {
    text-align: center;
  }

  .section-404 .brand-logo img {
    width: 120px;
  }

  .section-404 .box_astronaut {
    top: 70%;
  }
}

@media only screen and (max-width: 575px) {
  .modal1 .offer-content>div {
    padding-right: 15px;
  }

  header.nav-lg {
    padding: 1.2rem 1rem;
  }

  header.ecommerce nav .top-header-right {
    margin-right: 30px;
  }

  header.ecommerce nav .top-header-right ul li a {
    padding: 5px;
  }

  header.gym nav .top-header-right {
    margin-right: 30px;
  }

  header.gym nav .top-header-right ul li a {
    padding: 5px;
  }

  .parallax-banner.full-banner {
    background-blend-mode: overlay;
    background-color: #d2d2d2;
  }

  .down-banner .banner-contain {
    max-width: 100%;
    margin: 0;
  }

  .banner-contain>div {
    background-color: rgba(128, 128, 128, 0.23);
    padding: 30px;
    margin-right: 15px;
  }

  .modal-bg {
    display: none !important;
  }

  .ecommerce .collection {
    margin: 10px 30px;
  }

  .ecommerce .banner-three {
    padding: 15px 0;
  }

  .ecommerce .banner-three>div+div {
    margin-top: 15px;
  }

  .ecommerce.nav-fix {
    padding: 0;
  }

  .ecommerce.nav-fix nav ul {
    padding: 10px 0 !important;
  }

  .ecommerce .contain h1 {
    margin-bottom: 20px;
  }

  .ecommerce.ecommerce-home {
    padding-top: 55px;
  }

  .ecommerce.ecommerce-home .ecommerce-home-slider .owl-item, .ecommerce.ecommerce-home .ecommerce-home-slider .bg-size {
    min-height: 250px;
    height: 70vh;
    background-blend-mode: overlay;
    background-color: #d6d6d6;
  }

  .ecommerce.collection {
    margin: 30px;
  }

  .ecommerce .owl-nav [class*=owl-] i {
    font-size: 10px;
  }

  .ecommerce .owl-nav [class*=owl-].owl-next {
    bottom: 10%;
    padding: 10px;
    line-height: 0;
  }

  .ecommerce .owl-nav [class*=owl-].owl-prev {
    bottom: 10%;
    padding: 10px;
    line-height: 0;
    right: 50px;
  }

  .layout-ecommerce section {
    padding: 40px 0;
  }

  .layout-ecommerce .ecommerce-footer {
    padding-top: 40px;
  }

  .btn-default {
    padding: 10px 25px;
  }

  .parallax-banner .banner-contain {
    max-width: 100%;
  }

  .portfolio_section>div {
    width: 100%;
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .blog-sidebar .sidebar-container .post-container:nth-last-child(2) {
    margin-bottom: 20px;
  }

  .music .form-footer .form-group input, .music .form-footer .form-group textarea {
    padding: 12px 20px;
  }

  .music .form-footer .form-group {
    margin-bottom: 12px;
  }

  .subscribe.music .subscribe-title {
    padding: 0;
  }

  .booking .form-group input {
    padding: 12px 20px;
  }

  .breadcrumb-section .breadcrumb-text {
    margin-bottom: 10px;
  }

  .wedding .wedding-banner .frem {
    width: 100%;
  }

  .wedding .schedule i {
    display: block;
    margin-right: 0;
  }

  header nav>a .img-fluid {
    height: 33px;
  }

  .breadcrumb-section {
    padding: 110px 0 50px 0;
  }

  header {
    border-bottom: 1px solid rgba(31, 35, 44, 0.12);
    padding: 10px 0;
  }

  header nav {
    padding: 0 !important;
  }

  .portfolio-metro .man {
    width: 80px;
    margin-bottom: 20px;
  }

  .portfolio-metro h1 {
    margin-bottom: 0;
  }

  .portfolio-metro .center-content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .yoga.pricing .price-container {
    margin: 0 30px;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }

  .yoga.pricing .price-container .service-feature {
    margin-bottom: -80px;
  }

  .yoga.format .girl-img-container .girl-yoga {
    width: 250px;
  }

  .yoga.format .experience-container .exp-img {
    width: 250px;
  }

  .yoga.format .meter {
    height: 23px;
    margin-top: 10px;
  }

  .yoga.format .meter .progress {
    height: 23px;
  }

  .section-404 .text-404 {
    margin-right: 0;
    margin-left: 0;
  }

  .section-404 .text-inner {
    margin-top: -26px;
    margin-bottom: -30px;
  }

  .section-404 .object_astronaut {
    display: none;
  }

  .section-404 .object_rocket {
    width: 70px;
  }

  .section-404 .object_earth {
    width: 50px;
  }

  .section-404 .object_moon {
    width: 40px;
  }

  .checkout-page .checkout-title {
    margin-bottom: 18px;
  }

  .checkout-page .checkout-form .form-group {
    margin-bottom: 15px;
  }

  .checkout-page .checkout-form .form-group .field-label {
    margin-bottom: 6px;
  }

  .checkout-page .checkout-form input[type="text"], .checkout-page .checkout-form input[type="email"], .checkout-page .checkout-form input[type="password"], .checkout-page .checkout-form input[type="tel"], .checkout-page .checkout-form input[type="number"], .checkout-page .checkout-form input[type="url"] {
    height: 35px;
  }

  .checkout-page .checkout-form .checkout-details {
    padding: 15px;
    margin-top: 20px;
  }

  .checkout-page .checkout-form .checkout-details .order-box {
    margin-bottom: 0;
  }

  .checkout-page .checkout-form .checkout-details .order-box .total {
    margin-bottom: 25px;
  }

  .checkout-page .checkout-form .checkout-details .order-box .sub-total .shipping {
    width: 100%;
    margin-top: 15px;
  }

  .title.title2 .borders span:before, .title.title2 .borders span:after {
    content: unset;
  }

  .pagination_sec ul li {
    height: 38px;
    width: 38px;
    margin: 0 8px;
  }

  .cart-section .cart-buttons>div:last-child {
    padding-right: 15px;
  }

  .cart-section .cart-buttons .btn-solid {
    padding: 7px 8px;
  }

  .wishlist-section .btn-solid {
    padding: 7px 8px;
  }

  .team-sec.team-grid .team-para {
    margin-top: 10px;
  }

  .header.saas2 .header-sub-text {
    margin-top: 20px;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-item {
    display: inline-block;
  }

  .gym.counter .row .counter-container+.counter-container {
    padding-bottom: 30px;
    border-left: 1px solid #ddd;
  }

  .gym.counter .row .counter-container+.counter-container+.counter-container {
    border-left: 0;
    padding-top: 30px;
    border-top: 1px solid #ddd;
  }

  .gym.counter .row .counter-container+.counter-container+.counter-container+.counter-container {
    border-left: 1px solid #ddd;
  }

  section, footer {
    padding: 50px 0;
  }

  .p-t-100 {
    padding-top: 50px !important;
  }

  .p-b-100 {
    padding-bottom: 50px !important;
  }

  .m-b-30 {
    margin-bottom: 25px;
  }

  .header .rotate {
    display: none;
  }

  .header .set-square .left {
    height: 190px;
  }

  .header .set-square .left:before {
    width: 190px;
  }

  .header .set-square .right {
    width: 190px;
  }

  .header .right-line {
    left: calc(50% + 95px);
    height: 200px;
  }

  .header.event .set-bottom {
    bottom: 20px;
  }

  .header.app1 h1 {
    line-height: 38px;
    margin-top: -5px;
  }

  .pricing .siema .price-container.price-margin {
    margin: 5px 0;
  }

  .title .sub-title {
    line-height: 20px;
  }

  .about.app1 .counters {
    border-right: unset;
  }

  .about.app1 .counters:nth-child(3) {
    border-bottom: 1px solid #fff;
  }

  .about.app1 .counters img {
    margin-bottom: 15px;
  }

  .about.app1 .counters h3 {
    font-size: 225%;
    margin-bottom: 0;
    line-height: 35px;
  }

  .about.app1 .counters .abouts {
    padding: 20px 0;
  }

  .about.app1 .counters .abouts img {
    height: 30px;
  }

  .about.app1 .counters:first-child .abouts {
    padding-top: 0;
  }

  .about.app1 .counters:last-child .abouts {
    padding-bottom: 0;
  }

  .format .counters.set-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .format .counters.set-height {
    text-align: center;
  }

  .services.app2 .service-container:nth-child(n+5) .service {
    margin-bottom: 30px;
  }

  .services.app2 .service-container:nth-child(n+7) .service {
    margin-bottom: 0;
  }

  .subscribe .form-group input {
    padding: 18px 35px;
    padding-left: 15px;
  }

  .subscribe .form-group .d-flex .button-primary button {
    padding: 12px 20px;
    font-size: 12px;
  }

  .subscribe .form-group .form-control {
    font-size: 12px;
  }

  .download .download-img.d-flex {
    display: block !important;
    text-align: center;
  }

  .download .download-img.d-flex .download-icon {
    margin-bottom: 20px;
  }

  .download .information p {
    text-align: center;
  }

  .download .link-horizontal ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .pricing .feature-text {
    margin-bottom: 30px;
  }

  .pricing .feature-text .price-value {
    font-weight: 600;
    margin-bottom: 25px;
  }

  .pricing .service .service-feature h6 {
    margin-bottom: 10px;
  }

  .pricing .price-container {
    margin-bottom: 20px;
  }

  .pricing .price-container .price-feature-container .price-value .price .large {
    font-size: 40px;
  }

  .pricing.app2 .feature-text {
    margin-bottom: 0;
  }

  .app1 p {
    line-height: 26px;
  }

  .app1 .socials-lists ul li a i {
    height: 40px;
    width: 40px;
    font-size: 15px;
  }

  .app1 .socials-lists.m-t-50 {
    margin-top: 25px;
  }

  .app1.services .container {
    margin-bottom: -20px;
  }

  .videos.app1 .video .button img {
    height: 40px;
  }

  .videos.saas1 .video .button img {
    height: 30px;
  }

  .event .wedding-time .row>div:nth-child(odd) .count {
    margin-left: auto;
  }

  .event .wedding-time .row>div:nth-child(even) .count {
    margin-right: auto;
  }

  .event h1 {
    margin-top: -5px;
  }

  .event .socials-lists ul li a i {
    height: 40px;
    width: 40px;
    font-size: 15px;
  }

  .event .wedding-time {
    margin-bottom: 30px;
  }

  .event div .event-content .count {
    max-width: 130px;
    margin-bottom: 15px;
  }

  .event div:nth-child(n+3) .event-content .count {
    margin-bottom: 0;
  }

  .event .circle {
    top: 15px;
  }

  .event .circle:after {
    top: -18px;
    height: 15px;
  }

  .videos .video-description p {
    margin-bottom: 15px;
  }

  .videos .video {
    padding: 95px 0;
  }

  .team-section .teams {
    margin-bottom: 20px;
  }

  .team-section .teams:last-child {
    margin-bottom: 0;
  }

  .event.speaker .container, .agency.speaker .container {
    margin-bottom: -30px;
  }

  .event.speaker .speker-container, .agency.speaker .speker-container {
    margin-bottom: 30px;
  }

  .event.speaker .team-img, .agency.speaker .team-img {
    margin-bottom: 15px;
  }

  .event.testimonial .testimonial .owl-theme .owl-prev, .event.testimonial .testimonial .owl-theme .owl-next, .saas2.testimonial .testimonial .owl-theme .owl-prev, .saas2.testimonial .testimonial .owl-theme .owl-next {
    display: none;
  }

  .event.testimonial .testimonial .testimonial-msg, .saas2.testimonial .testimonial .testimonial-msg {
    margin-bottom: 20px;
  }

  .event.testimonial .testimonial .testimonial-msg img, .saas2.testimonial .testimonial .testimonial-msg img {
    height: 70px;
  }

  .event.testimonial h6, .saas2.testimonial h6 {
    text-align: center;
  }

  .event.testimonial .rating, .saas2.testimonial .rating {
    display: block;
    text-align: center;
  }

  .event.testimonial .rating .stars, .saas2.testimonial .rating .stars {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .event .title.title3 .sub-title p {
    line-height: 20px;
    margin-bottom: -4px;
  }

  .event.sponsor .sponsor-img {
    margin-bottom: 30px;
  }

  .event.sponsor .sponsor-img:nth-child(n+10) {
    margin-bottom: 30px;
  }

  .event.sponsor .sponsor-img:last-child {
    margin-bottom: 0;
  }

  .event.contact .row {
    padding: 0 15px;
  }

  .event.contact .iframe-container {
    height: 250px;
  }

  .event.contact .form-footer {
    padding-left: 15px;
  }

  .event.contact .form-footer .bg-white form {
    padding: 25px;
  }

  .event.contact .form-footer .bg-white form .form-group {
    margin-bottom: 20px;
  }

  .schedule .cal-time.events {
    padding: 20px;
  }

  .event.gallery .gallery-list, .wedding.gallery .gallery-list, .resume.gallery .gallery-list {
    margin-bottom: 25px;
  }

  .event.gallery .list a, .wedding.gallery .list a, .resume.gallery .list a {
    padding: 0 10px;
  }

  .gym h1 {
    margin-top: -8px;
  }

  .gym.bg-cal-bmi .link-horizontal.m-t-40 {
    margin-top: 10px;
  }

  .gym.bg-cal-bmi .link-horizontal.m-b-40 {
    margin-bottom: 10px;
  }

  .gym.bg-cal-bmi .calculate-bmi {
    margin-top: 30px;
  }

  .gym.copyright .link-horizontal {
    margin-bottom: 15px;
  }

  .gym.bg-cal-bmi .btn-white {
    margin-bottom: 20px;
  }

  .music.header .music-content .center-text {
    height: calc(401px - 50px);
    margin-top: 50px;
  }

  .music .music-container {
    margin-top: unset;
  }

  .music .row div:nth-child(n+7) .album-list {
    margin-bottom: 30px;
  }

  .music .row div:last-child .album-list {
    margin-bottom: 0;
  }

  .music.sponsor div:nth-child(n+11) .sponsor-img {
    margin-bottom: 30px;
  }

  .music.sponsor div:nth-child(n+13) .sponsor-img {
    margin-bottom: 0;
  }

  .music .title.title3 .sub-title p {
    line-height: 20px;
  }

  .music.bg-footer .row div .contact-details {
    margin-bottom: 25px;
  }

  .music.bg-footer .row div .contact-details .contact-heading {
    margin-bottom: 10px;
  }

  .music.bg-footer .row div:last-child .contact-details {
    margin-bottom: 0;
  }

  .music .audioplayer {
    padding: 19px;
  }

  .agency.header .bg {
    background-position: unset;
  }

  .agency.header .plus-container {
    display: none;
  }

  .agency .icon-collection {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
  }

  .agency .icon-collection .about-icon {
    margin: 0 5px;
  }

  .agency .icon-collection .about-icon:first-child {
    margin-left: 0;
  }

  .agency .icon-collection .about-icon:last-child {
    margin-right: 0;
  }

  .agency .icon-collection .about-icon a {
    padding: 15px 8px;
  }

  .agency.testimonial .testimonial-slider .owl-nav {
    display: none;
  }

  .agency .para2 {
    margin-bottom: 20px;
  }

  .agency.video .d-inline-block .bg-video {
    width: auto;
  }

  .agency.copyright .link-horizontal {
    margin-bottom: 10px;
  }

  .agency.blog.blog-sec.blog-list .row, .agency.blog.blog-sec.blog-split .row, .agency.blog.blog-sec.blog-sidebar .row {
    padding-left: 15px;
    padding-right: 15px;
  }

  .agency.blog .blog-agency .blog-contain .img-container .blog-info {
    padding: 20px;
  }

  .wedding .wedding-banner .text-container .couple-text .banner-text {
    font-size: 45px;
  }

  .wedding .wedding-banner .text-container .couple-text .banner-text.small {
    font-size: 35px;
  }

  .wedding .wedding-banner .text-container .place {
    font-size: 20px;
  }

  .wedding .wedding-banner .text-container .address {
    font-size: 11px;
    margin-top: 0;
  }

  .saas1.howitwork .work-tab .nav-pills {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-link h6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
    margin-left: 20px;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-link span {
    bottom: -12px;
  }

  .saas1.pricing .pricing__switcher {
    width: 260px;
  }

  .saas1.pricing .switcher__button {
    font-size: 14px;
  }

  .saas1.pricing .pricing__switcher {
    margin: 0 auto 50px auto;
  }

  .saas1.build-bg .owl-carousel .owl-item .work-slide {
    height: 300px;
  }

  .saas1 .title .sub-title .p-padding {
    padding: 0;
  }

  .saas2.feature {
    margin-bottom: -35px;
  }

  .saas2.feature .center-content {
    margin-bottom: 35px;
  }

  .saas2.feature .center-content img {
    height: 40px;
  }

  .saas2.feature .center-content .feature-content {
    margin-left: 20px;
  }

  .saas2.laptop-slider .slider-container .center-img img {
    height: 140px;
    width: 232px;
  }

  .saas2.laptop-slider .slider-container .item img {
    height: 102px;
    width: 153px;
  }

  .saas2.laptop-slider .slider-container .trainers-slider.owl-carousel .owl-stage-outer {
    padding-top: 0;
  }

  .saas2.pricing .feature-text {
    margin-bottom: 0;
  }

  .saas2.testimonial .container {
    margin-bottom: -15px;
  }

  .resume.about .row div .radial {
    margin-bottom: 30px;
  }

  .resume.about .row div:last-child .radial {
    margin-bottom: 0;
  }

  .artist .artist-text p.text-para {
    line-height: 20px;
    font-size: 95%;
  }

  .subscribe.music .subscribe-title .subscribe-main {
    font-size: 120%;
    letter-spacing: 0.5px;
  }

  .testimonial.wedding .testimonial-container img {
    height: 30px;
  }

  .testimonial.wedding .testimonial-container .testimonial-info {
    margin-top: 30px;
  }

  .testimonial.wedding .testimonial-container .testimonial-info .testimonial-para {
    margin-bottom: 20px;
    line-height: 26px;
    font-size: 120%;
  }

  .list ul li {
    padding: 4px 20px;
  }

  .list ul li img {
    height: 15px;
  }

  .list ul li img.play {
    height: 32px;
  }

  .copyright .link-horizontal ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .copyright .link-horizontal ul li {
    padding-right: 15px;
  }

  .copyright .copyright-text {
    text-align: center !important;
  }

  .copyright.wedding {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .app2.team-section .teams .our-team .set-relative.set-border {
    padding-bottom: 30px;
  }

  .app2.team-section .teams .our-team .borders {
    height: 30px;
  }

  .app2 .subscribe {
    margin-top: 30px;
  }

  .app2 .subscribe .form-group .icon {
    top: 27px;
  }

  .app2.about, .app2.quality {
    padding-top: 50px;
  }

  .app2.about .set-height, .app2.quality .set-height {
    min-height: unset;
  }

  .app2.about .set-height .mobile1, .app2.about .set-height .mobile2, .app2.quality .set-height .mobile1, .app2.quality .set-height .mobile2 {
    width: 250px;
    position: relative;
  }

  .app2.quality .set-height .mobile2 {
    top: -17px;
  }

  .app2 .abouts .logo {
    height: 60px;
  }

  .app2 .abouts .set-border {
    margin-bottom: 12px;
  }

  .app2.about .set-height .j-img {
    display: none;
  }

  .app2.format .logo {
    padding-bottom: 10px;
  }

  .app2.format .abouts {
    text-align: center;
  }

  .app2.format .icon-collection {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .app2.format .format-head-text {
    margin-bottom: 20px;
  }

  .app2.format .format-sub-text {
    margin-bottom: 15px;
  }

  .app2.format .m-t-50 {
    margin-top: 14px;
  }

  .app2.team .team-slider .team-container {
    margin-left: 15px;
  }

  .portfolio-creative .head-sub-text {
    padding: 0 15px;
  }

  .portfolio-creative.creative3 .portfolio-text.d-flex {
    display: block !important;
    padding: 30px 0;
  }

  .portfolio-creative.creative3 .portfolio-text .w-75 {
    width: unset !important;
  }

  .portfolio-creative.creative3 .portfolio-text .w-75 .header-sub-text {
    margin-top: 0;
  }

  .portfolio-creative.creative3 .portfolio-text .text-right {
    text-align: left !important;
    margin-top: 15px;
  }

  .counter-container+.counter-container {
    padding-bottom: 30px;
    border-left: 1px solid #ddd;
  }

  .counter-container+.counter-container+.counter-container {
    border-left: 0;
    padding-top: 30px;
    border-top: 1px solid #ddd;
  }

  .counter-container+.counter-container+.counter-container+.counter-container {
    border-left: 1px solid #ddd;
  }

  .p-b-160 {
    padding-bottom: 135px;
  }

  footer.event.contact .form-footer form .row div {
    padding-left: 0;
    padding-right: 0;
  }

  .gym .trainers-slider.owl-carousel .owl-stage-outer, .yoga .trainers-slider.owl-carousel .owl-stage-outer {
    min-height: 388px !important;
  }

  .template-password #container #login {
    margin-bottom: 0;
  }

  .error-section {
    padding: 100px 0;
  }

  .error-section h1 {
    font-size: 100px;
  }

  .error-section h2 {
    margin: 20px 0;
    font-size: 18px;
  }

  .about-page .about-head {
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  .about-page .about-head .theme-breadcrumb .breadcrumb {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 0;
  }

  .blog-detail-page .blog-detail .post-social li {
    display: block;
  }

  .blog-detail-page .blog-detail .post-social li+li {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }

  .collection .collection-block .collection-content p {
    margin-bottom: 10px;
  }

  .collection .collection-block .collection-content h4, .collection .collection-block .collection-content h3 {
    margin-bottom: 5px;
  }

  .collection-product-wrapper .product-wrapper-grid .product-box {
    margin-top: 30px;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .search-count {
    padding: 10px 20px 10px 20px;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .search-count h5 {
    font-size: 14px;
    line-height: 20px;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
    width: 100%;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view select, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter select {
    padding: 10px 20px 10px 20px;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view:before, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter:before {
    top: 11px;
  }

  .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
    border-right: 1px solid #dddddd !important;
    border-bottom: 1px solid #dddddd;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .search-count {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view {
    border-bottom: 1px solid #dddddd;
    width: 100%;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view select {
    border-right: none;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view:before {
    top: 14px;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter {
    width: 100%;
    border-top: none;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter select {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter:before {
    left: unset;
    right: 35px !important;
    top: 14px;
  }

  .cart-section .cart-buttons>div:last-child {
    padding-right: 15px;
  }

  .cart-section .cart-buttons .btn-solid {
    padding: 7px 8px;
  }

  .wishlist-section .btn-solid {
    padding: 7px 8px;
  }

  .collection-wrapper .order-up {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .checkout-page .checkout-form .checkout-details {
    padding: 15px;
  }

  .search-product>div:nth-last-child(5) {
    margin-top: 30px;
  }

  .product-box .img-wrapper .lable-block .lable3 {
    font-size: 12px;
    padding: 13px 8px;
  }

  .product-box .img-block .lable-wrapper .lable1, .product-box .img-block .lable-wrapper .lable2 {
    padding: 6px 9px 8px 15px;
    font-size: 12px;
  }

  .tab-product .tab-content.nav-material p, .product-full-tab .tab-content.nav-material p {
    padding: 15px 0;
  }

  .tab-product .tab-content.nav-material p {
    line-height: 1.3;
  }

  .slider-right-nav .slick-slide:first-child>div {
    margin-top: 15px;
  }

  .lookbook .lookbook-block .lookbook-dot .dot-showbox {
    width: 90px;
    top: -70px;
  }

  .lookbook .lookbook-block .lookbook-dot .dot-showbox .dot-info h5 {
    line-height: 16px;
  }

  .layout7-product .product-box .details-product {
    padding: 5px;
  }

  .layout7-product .product-box:hover .details-product {
    -webkit-animation: none;
    animation: none;
  }

  .padding-cls {
    padding-left: 15px;
    padding-right: 15px;
  }

  .success-text i {
    font-size: 40px;
  }

  .success-text p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .success-text h2 {
    margin-bottom: 10px;
  }

  .order-success-sec>div {
    margin-top: 15px;
  }

  .delivery-sec {
    padding: 15px;
    margin-top: 15px;
  }

  .delivery-sec h3, .delivery-sec h2 {
    font-size: 20px;
  }

  .product-order h3 {
    font-size: 20px;
  }

  .product-order .product-order-detail .order_detail h4, .product-order .product-order-detail .order_detail h5 {
    font-size: 14px;
    line-height: 1.2;
  }

  .product-order .total-sec ul li {
    font-size: 16px;
  }

  .product-order .final-total h3 {
    font-size: 16px;
  }

  .beauty-about .service .service-block1 {
    margin-bottom: 20px;
  }

  .beauty-about .service .service-block1:last-child {
    margin-bottom: 0;
  }

  .main-menu .menu-left .navbar i {
    font-size: 24px;
  }

  .typography_section .typography-box .typo-content.typo-buttons a:last-child {
    margin-top: 0;
  }

  .typography_section .typography-box .typo-content.typo-buttons .btn-solid.btn-sm {
    padding: 3px 12px;
  }

  .bundle .bundle_img .img-box img {
    max-width: 70px;
  }

  .bundle .bundle_detail .theme_checkbox {
    padding: 0;
  }

  .breadcrumb-section-main {
    padding: 50px 0;
  }

  .breadcrumb-section-main .breadcrumb-text {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .p-2col-width .p-width {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .p-3col-width .p-width {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .p-4col-width .p-width {
    max-width: 100%;
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
    margin-bottom: 0;
  }

  .m-layout .m-width.m-4-col, .m-layout .m-width.m-2-col, .m-layout .m-width.m-3-col {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }

  .saas1.subscribe input[type="email"] {
    width: 220px;
  }

  .saas2.pricing .price-container .price-feature-container {
    margin-top: -50px;
  }

  .maintenance-sec .center-content button, .coming-soon .center-content button {
    margin-left: 0;
  }

  .copyright.resume .link-horizontal ul li a {
    line-height: 1.8;
  }

  .wedding.bg.countdown-bg .counter-container .gradient-text {
    margin-top: 10px;
  }

  .portfolio-metro .portfolio_section h6 {
    padding-top: 20px;
  }

  header .navbar {
    width: 300px;
  }

  footer.footer2.agency .link-horizontal ul li.borders-right {
    margin-right: 2px;
  }

  .counter .counters.hover-counter {
    padding: 15px 0;
  }

  .saas1.testimonial .testimonial-box {
    padding: 20px;
  }

  .compare-page .table-wrapper .table .featured-image {
    width: 100px;
  }

  .coming-soon .our-web-text {
    letter-spacing: 0;
  }

  .coming-soon .coming-logo {
    margin-bottom: 30px;
    width: 100px;
  }

  .coming-soon .launch-text {
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .coming-soon .launch-text2 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .coming-soon .counters-content .count {
    border-right: none;
  }

  .coming-soon .form-group .d-flex {
    display: block !important;
  }

  .coming-soon .form-group .d-flex input {
    margin-bottom: 15px;
  }

  .coming-soon.coming-soon-2 .set-bg {
    padding-top: 30px;
  }

  .side-section {
    width: 270px;
  }

  .slider-container .trainers-slider .item {
    margin: 0 0;
  }

  .saas1.howitwork .work-tab .nav-pills .nav-link {
    padding: 0 0;
  }

  .wedding.brand-slider .owl-carousel img {
    max-width: 200px;
    margin: 0 auto;
  }

  .wedding.brand-sliders .brand-slider .item img {
    height: auto;
    width: auto;
    margin: 0 auto;
  }

  .event.about .text-right {
    width: 80%;
  }

  .portfolio-section.videos .m-b-50 {
    margin-bottom: 0;
  }

  .portfolio-section.videos .video {
    padding: 120px 0;
  }

  .app2 .subscribe .form-group .button-primary .btn {
    margin-top: 0;
  }

  .app2 h1 {
    line-height: 36px;
  }

  h1 {
    line-height: 40px;
  }

  .header .wave {
    display: none;
  }

  .brand-sliders .brand-slider .item img {
    height: 25px;
    width: auto;
  }

  .m-b-25 {
    margin-bottom: 15px;
  }

  .videos .video {
    padding: 80px 0;
  }

  .videos .video-description p {
    margin-bottom: 10px;
  }

  .m-b-35 {
    margin-bottom: 20px;
  }

  .subscribe.subscribe-2 .form-group input {
    padding-left: 95px;
  }

  .saas1.build-bg .owl-carousel .owl-item .work-slide {
    height: 250px;
  }

  .saas1.testimonial .video-box img {
    padding: 100px;
  }

  .saas1.testimonial .testi-profile .media-body {
    margin-top: 20px;
  }

  .saas2.laptop-slider .slider-container .center-img img {
    display: none;
  }

  .saas2.laptop-slider .slider-container .item img {
    height: auto;
    width: auto;
    max-width: 100%;
  }

  .event.gallery .gallery-list, .wedding.gallery .gallery-list, .resume.gallery .gallery-list {
    margin-bottom: 15px;
  }

  .event.gallery .list, .wedding.gallery .list, .resume.gallery .list {
    display: block;
    -webkit-column-count: 2;
    column-count: 2;
  }

  .event.gallery .list a, .wedding.gallery .list a, .resume.gallery .list a {
    padding: 0;
    width: 100%;
    display: -webkit-box;
    margin-bottom: 10px;
  }

  .gym .about-img {
    margin: 25px 0;
    margin-bottom: 50px;
  }

  .gym .about-img .borders-around .bg-black {
    width: 140px;
  }

  .gym .about-img .borders-around .bg-black:before, .gym .about-img .borders-around .bg-black:after {
    width: 114px;
    height: 114px;
  }

  .gym .about-img .borders-around .bg-black:before {
    top: -25px;
    left: -25px;
  }

  .gym .about-img .borders-around .bg-black:after {
    bottom: -25px;
    right: -25px;
  }

  .agency .icon-collection {
    display: block;
    margin-bottom: 0;
  }

  .agency .icon-collection .about-icon {
    margin: 0;
    margin-bottom: 15px;
  }

  .agency .icon-collection .about-icon a {
    padding: 25px 10px;
  }

  .agency .icon-collection .about-icon:first-child, .agency .icon-collection .about-icon:last-child {
    margin-bottom: 15px;
  }

  .agency .row .center-content:last-child .icon-collection:last-child .about-icon:last-child {
    margin-bottom: 0;
  }

  .agency.video {
    margin-top: 20px;
  }

  .agency.video .m-b-20 {
    margin-bottom: 10px;
  }

  .agency.video .abs-center {
    width: 100%;
  }

  .agency.video .video-img {
    height: 50px;
  }

  .agency.video .video-heading {
    margin-bottom: 12px;
  }

  .wedding .wedding-banner .text-container .couple-text {
    margin-bottom: 5px;
  }

  .wedding .wedding-banner .text-container .couple-text .banner-text {
    font-size: 35px;
  }

  .wedding .wedding-banner .text-container .couple-text .banner-text.small {
    font-size: 27px;
  }

  .wedding .wedding-banner .text-container .place {
    font-size: 18px;
  }

  .wedding .wedding-time {
    margin-bottom: 10px;
  }

  .wedding .wedding-time .count h2 {
    font-size: 310%;
  }

  .wedding .wedding-time .count .days {
    font-size: 85%;
  }

  .wedding .wedding-time .count .counter-container {
    padding: 35px 0;
  }

  .wedding .schedule .m-r-15 {
    margin-right: 5px;
  }

  .testimonial.music .testimonial-info {
    margin-top: 20px;
  }

  .testimonial.music .music-testimonial-slider.owl-theme .item img {
    height: 30px;
  }

  .testimonial.wedding .testimonial-container {
    margin-bottom: 10px;
    padding: 15px;
  }

  .testimonial.wedding .testimonial-container .border-around {
    padding: 15px 0;
  }

  .testimonial.wedding .testimonial-container img {
    height: 25px;
  }

  .testimonial.wedding .testimonial-container .testimonial-info {
    margin-top: 25px;
  }

  .testimonial.wedding .testimonial-container .testimonial-info .testimonial-para {
    line-height: 20px;
    font-size: 12px;
  }

  .testimonial .testimonial-slider .testi-profile {
    text-align: center;
  }

  .testimonial .testimonial-slider .media {
    display: inline-block;
  }

  .testimonial .testimonial-slider .media img {
    margin: 0 auto;
    height: 100px;
    width: 100px;
  }

  .testimonial .testimonial-slider .media .media-body {
    padding: 0;
    text-align: center;
  }

  .event.gallery .list ul li, .wedding.gallery .list ul li, .resume.gallery .list ul li {
    padding: 3px 10px;
  }

  .event.gallery .list ul li a, .wedding.gallery .list ul li a, .resume.gallery .list ul li a {
    font-size: 12px;
  }

  .yoga.event .event-container {
    text-align: center;
    display: block !important;
  }

  .yoga.event .event-container .yoga-circle {
    position: relative;
    left: 0;
    margin-bottom: 10px;
  }

  .yoga.event .event-container .event-info {
    margin-left: 0;
  }

  .gym .trainers-slider.owl-carousel .owl-stage-outer, .yoga .trainers-slider.owl-carousel .owl-stage-outer {
    min-height: 380px !important;
  }

  .select_input select {
    padding: 12px 15px;
    margin-bottom: 18px;
  }

  .about-page p {
    line-height: 1.5;
  }

  .blog-detail-page .blog-contact h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .blog-detail-page .blog-contact .theme-form input, .blog-detail-page .blog-contact .theme-form textarea {
    padding: 12px 20px;
    margin-bottom: 20px;
  }

  .blog-detail-page .blog-detail h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .blog-detail-page .blog-detail img {
    margin-bottom: 25px;
  }

  .blog-detail-page .blog-advance ul {
    line-height: 1.5;
  }

  .blog-detail-page .blog-advance img {
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .blog-detail-page .blog-advance p {
    line-height: 1.5;
  }

  .blog-detail-page .comment-section li {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .blog-detail-page .comment-section li p {
    line-height: 1.5;
  }

  .blog-detail-page .comment-section li h6 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .blog-detail-page .comment-section li h6 span {
    display: inherit;
    margin-left: 0;
  }

  .blog-detail-page .comment-section .media {
    display: inline-block;
    text-align: center;
  }

  .faq-section .theme-accordion .card .card-body p {
    line-height: 1.5 !important;
  }

  .faq-section .theme-accordion .card .card-header button {
    line-height: 1.3;
    padding: 12px 35px 12px 12px !important;
  }

  .faq-section .accordion.theme-accordion .card .card-header button:before {
    top: 20px;
  }

  .pwd-page {
    padding: 70px 0;
  }

  .pwd-page h2 {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .login-page .authentication-right h6 {
    margin-bottom: 10px;
  }

  .login-page .theme-card {
    padding: 25px;
  }

  .register-page .theme-card {
    padding: 18px;
  }

  .register-page .theme-card .theme-form input {
    margin-bottom: 20px;
    padding: 12px 15px;
  }

  .search-block .btn-solid {
    padding: 10px 15px;
  }

  .contact-page .map iframe {
    height: 275px;
  }

  .contact-page .theme-form input {
    padding: 12px 15px;
    margin-bottom: 18px;
  }

  .blog-page .blog-media .blog-right h6 {
    margin-bottom: 0;
  }

  .blog-page .blog-media .blog-right p {
    line-height: 1.3;
  }

  .blog-page .blog-media .blog-right h4 {
    margin-bottom: 5px;
  }

  .blog-page .blog-media .blog-right ul {
    margin-bottom: 5px;
  }

  .blog-page .blog-media .blog-right ul li {
    display: block;
  }

  .blog-page .blog-media .blog-right ul li+li {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }

  .account-sidebar {
    width: 45%;
  }

  .success-text h2 {
    font-size: 20px;
  }

  .success-text p {
    font-size: 14px;
  }

  .delivery-sec h3, .delivery-sec h2 {
    font-size: 18px;
  }

  .typography_section .typography-box .typo-content.typo-buttons a {
    margin: 5px 0;
  }
}

@media only screen and (max-width: 420px) {
  .weeding~.tap-top {
    bottom: 100px;
  }

  .saas2.laptop-slider .slider-container {
    margin-bottom: -30px;
  }

  section.gym.trainers .title {
    margin-bottom: -30px;
  }

  .yoga.brand-slider .owl-carousel .item img {
    max-width: 250px;
    margin: 0 auto;
  }

  .yoga .title.title2 .borders span:before, .yoga .title.title2 .borders span:after {
    width: 55px;
  }

  footer.wedding.copyright {
    padding: 20px 0;
  }

  footer.wedding.copyright .footer-titles.mobile-title h3 {
    text-align: center;
    margin-bottom: 5px;
  }

  footer.wedding.copyright .link-horizontal ul.link li {
    text-align: center;
  }

  footer.wedding.copyright .link-horizontal ul {
    margin-bottom: 0px;
  }

  footer.wedding.copyright .link-horizontal ul li a i {
    font-size: 15px;
  }

  footer.wedding .footer-headings {
    display: none;
  }

  footer.wedding .footer-titles.mobile-title {
    display: block;
  }

  footer.wedding .footer-contants {
    padding: 10px 0;
  }

  footer.wedding .footer-titles {
    padding: 5px 0;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }

  footer.wedding .footer-titles.active .according-menu {
    font: normal normal normal 15px/1 FontAwesome;
  }

  footer.wedding .footer-titles.active .according-menu:before {
    content: "\f106";
    position: absolute;
    right: 2px;
    bottom: 10px;
  }

  footer.wedding .footer-titles .according-menu {
    font: normal normal normal 15px/1 FontAwesome;
  }

  footer.wedding .footer-titles .according-menu:before {
    content: "\f107";
    position: absolute;
    right: 2px;
    bottom: 10px;
  }

  .header.music .music-content .center-text {
    height: calc(401px - 45px);
    margin-top: 45px;
  }

  .header.wedding .center-text {
    height: auto;
    margin-top: 63px;
  }

  .subscribe .form-group {
    margin: 0;
  }

  .subscribe .form-group input {
    height: 50px;
    margin-bottom: 20px;
  }

  .subscribe .form-group .d-flex {
    display: block !important;
    text-align: center;
  }

  .subscribe .form-group .d-flex .button-primary {
    width: 100%;
    position: relative;
  }

  .subscribe .form-group .d-flex .button-primary button {
    margin: 0 auto;
  }

  .subscribe .social i {
    height: 40px;
    width: 40px;
  }

  .subscribe.subscribe-2 .form-group .icon {
    font-size: 25px;
    top: 25%;
    left: 35px;
  }

  .subscribe.subscribe-2 .form-group .btn-default {
    border: 1px solid #fff;
  }

  .app2 .link-horizontal .btn-default {
    padding: 15px 20px;
  }

  .title.title2 .para {
    font-size: 80%;
  }

  .wedding.bg.attend-bg {
    padding-bottom: 80px;
  }

  .wedding .wedding-banner .text-container .couple-text {
    margin-bottom: 25px;
  }

  .wedding .wedding-banner .text-container .couple-text .banner-text.small {
    font-size: 16px;
  }

  .wedding .wedding-banner .text-container .place {
    font-size: 16px;
  }

  .wedding.copyright .link-horizontal ul.link {
    display: block;
  }

  .wedding.copyright .link-horizontal ul.link li {
    padding-right: 5px;
  }

  .videos .w-100 {
    width: 100% !important;
  }

  .agency.header .btn-default {
    padding: 10px 12px;
  }

  .yoga.copyright .link-horizontal.social-link, .resume.copyright .link-horizontal.social-link {
    margin-bottom: 15px;
  }

  .yoga.copyright hr, .resume.copyright hr {
    margin-top: 20px;
    margin-bottom: 25px;
  }

  .saas1.build-bg .owl-carousel .owl-item .work-slide {
    height: 220px;
  }

  .saas1.build-bg .build-right-slider {
    margin-left: 40px;
  }

  .saas1.build-bg .owl-dots {
    -webkit-transform: translate(-25%, -50%);
    transform: translate(-25%, -50%);
  }

  .saas1.build-bg .owl-theme .owl-dots .owl-dot span {
    margin-bottom: 20px;
    width: 45px;
  }

  .saas1.build-bg .owl-theme .owl-dots .owl-dot.active span {
    width: 55px;
  }

  .saas1.subscribe .subscribe-input .text {
    margin-top: 20px;
    display: block;
  }

  .saas2.pricing .price-container .price-features {
    margin-top: 30px;
  }

  .inner-pages-footer.resume .link-horizontal.social-link {
    margin-bottom: -5px;
  }

  .blog-details p {
    font-size: 14px;
    line-height: 1.3;
  }

  .login-page .authentication-right p {
    line-height: 1.5;
  }

  .login-page .theme-card .theme-form input {
    padding: 15px 20px;
    margin-bottom: 25px;
  }

  .tab-product .nav-tabs {
    display: block;
  }

  .tab-product .nav-tabs .nav-item {
    width: 100%;
  }

  .tab-product .nav-tabs .nav-item .nav-link {
    padding: 10px 20px;
  }

  .vertical-tab.tab-product .nav-material.nav-tabs .nav-item .nav-link, .vertical-tab .product-full-tab .nav-material.nav-tabs .nav-item .nav-link {
    padding: 10px 20px;
  }

  .product-right .product-buttons .btn-default {
    padding: 7px 13px;
  }

  .product-right.product-form-box .timer {
    padding-left: 29px;
  }

  .product-right.product-form-box .timer span {
    width: 45px;
  }

  .product-right .timer {
    padding-left: 35px;
  }

  .product-right .timer span {
    width: 45px;
  }

  .product-right .product-icon .product-social {
    margin-top: 0;
  }

  .product-right .product-icon .product-social li {
    padding-right: 5px;
  }

  .product-right .product-icon .product-social li a i {
    font-size: 14px;
  }

  .product-right .product-icon .wishlist-btn i {
    font-size: 14px;
  }

  .product-right .product-icon .wishlist-btn span {
    font-size: 14px;
  }

  .tab-product .theme-form input, .tab-product .theme-form textarea {
    font-size: 12px;
    padding: 8px 15px;
  }

  .order-box .sub-total .shipping {
    width: unset;
    float: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .order-box .sub-total .shipping .shopping-option:last-child {
    padding-left: 20px;
  }

  .checkout-page .checkout-form .form-group {
    margin-bottom: 15px;
  }

  .checkout-page .checkout-form input[type="text"], .checkout-page .checkout-form input[type="email"], .checkout-page .checkout-form input[type="password"], .checkout-page .checkout-form input[type="tel"], .checkout-page .checkout-form input[type="number"], .checkout-page .checkout-form input[type="url"] {
    height: 40px;
  }

  .checkout-page .checkout-form select, .checkout-page .checkout-form textarea {
    height: 40px;
  }

  .team h6 {
    line-height: 15px;
  }

  .gym .trainers-slider.owl-carousel .owl-stage-outer, .yoga .trainers-slider.owl-carousel .owl-stage-outer {
    min-height: 310px !important;
  }
}

@media only screen and (max-width: 360px) {
  .yoga.pricing .price-container .service-feature {
    margin-bottom: -50px;
  }

  .yoga.pricing .owl-theme .owl-dots {
    margin-top: 20px !important;
  }

  .agency.blog .blog-info>.d-flex {
    display: block !important;
  }

  .cart-section .btn-default, .wishlist-section .btn-default {
    padding: 14px 12px;
  }

  .cart-section tbody tr td, .wishlist-section tbody tr td {
    min-width: 115px;
  }

  .cart-section tbody tr td .mobile-cart-content .col-xs-3, .wishlist-section tbody tr td .mobile-cart-content .col-xs-3 {
    margin-left: 5px;
    margin-right: 5px;
  }

  .cart-section tbody tr td a img, .wishlist-section tbody tr td a img {
    height: 80px;
  }

  .cart-section tfoot tr td, .wishlist-section tfoot tr td {
    padding-right: 27px;
  }

  .cart-section tfoot tr td h2, .wishlist-section tfoot tr td h2 {
    font-size: 21px;
  }

  .wishlist-section .wishlist-buttons:last-child a {
    margin-left: 0;
  }

  .filter-main-btn span {
    width: 100%;
  }

  .header.wedding .center-text {
    margin-top: 63px;
  }

  .header.wedding .center-text .header-sub-text {
    font-size: 12px;
  }

  .header.wedding .wedding-content .girl img {
    height: 330px;
  }

  .header.wedding .wedding-content .logo-h1 {
    height: 50px;
  }

  .header.wedding .wedding-content .btn-default {
    padding: 10px 20px;
  }

  .header.saas1 h1 {
    letter-spacing: 1px;
  }

  .header.music .music-content .center-text {
    height: calc(401px - 40px);
    margin-top: 40px;
  }

  .app2 .link-horizontal .btn-default {
    padding: 10px 16px;
  }

  .app2 .title .title-img {
    height: 55px;
  }

  .schedule .cal-time i.fa-angle-left {
    left: 10px;
  }

  .schedule .cal-time i.fa-angle-right {
    right: 10px;
  }

  .gym .default-dots .owl-dots, .yoga .default-dots .owl-dots, .saas2 .default-dots .owl-dots {
    bottom: 30px !important;
  }

  .gym .btn-default, .yoga .btn-default, .saas2 .btn-default {
    padding: 10px 18px;
  }

  .gym .owl-carousel.trainers-slider.owl-carousel .owl-item.active.center .item img, .yoga .owl-carousel.trainers-slider.owl-carousel .owl-item.active.center .item img, .saas2 .owl-carousel.trainers-slider.owl-carousel .owl-item.active.center .item img {
    margin-bottom: 30px;
  }

  .music .cd-animation {
    height: 250px;
  }

  .music.side-section .jp-type-playlist .jp-gui .girls {
    width: 150px;
    padding: 15px;
  }

  .music.side-section .jp-type-playlist .jp-gui .gradient-block .now-play {
    padding-top: 15px;
  }

  .music.side-section .side-player .jp-progress {
    margin-top: 20px;
  }

  .music.side-section .jp-audio .jp-time-holder {
    padding-top: 8px;
  }

  .music.side-section .jp-controls .button-container {
    padding: 15px;
  }

  .music.side-section .jp-playlist {
    margin-top: 15px;
  }

  .music.side-section .btn-sidebar {
    padding: 12px 18px;
  }

  .wedding .bottom-img {
    height: 20px;
  }

  .wedding .wedding-banner .text-container .couple-text {
    margin-bottom: 0;
  }

  .wedding .wedding-banner .text-container .couple-text .banner-text.small {
    font-size: 16px;
  }

  .wedding .wedding-banner .text-container .place {
    font-size: 15px;
  }

  .wedding.pricing .m-4 {
    margin: 0 !important;
  }

  .event div .event-content .count {
    margin-left: 5px;
    margin-right: 5px;
  }

  .saas1.build-bg .owl-carousel .owl-item .work-slide {
    height: 180px;
  }

  .saas1.testimonial .testimonial-box {
    padding: 30px 20px;
  }

  .saas1.testimonial .testimonial-box h6 {
    line-height: 24px;
  }

  .list ul li {
    padding: 4px 10px;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-per-view, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-per-view {
    width: 100%;
    border-bottom: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .product-page-filter, .collection-product-wrapper .product-top-filter .product-filter-content .product-page-filter {
    width: 100%;
    border-right: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
  }

  .blog-detail-page .blog-detail p {
    line-height: 1.5;
  }

  .blog-detail-page .blog-contact h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .about-page p {
    line-height: 1.2;
  }

  .login-page .theme-card {
    padding: 18px;
  }

  .search-block .btn-solid {
    padding: 10px 5px;
  }

  .search-block .form-header .input-group input {
    padding: 10px 12px;
  }

  .contact-page .map iframe {
    height: 200px;
  }

  .collection-product-wrapper .product-pagination .pagination .page-item a {
    padding: 15px 13px;
  }

  .collection-product-wrapper .product-pagination .product-search-count-bottom {
    padding-left: 10px;
  }

  .collection-product-wrapper .product-pagination .product-search-count-bottom h5 {
    line-height: 15px;
  }

  .collection-product-wrapper .product-top-filter .popup-filter .sidebar-popup {
    width: 80%;
  }

  .cart-section tbody tr td, .wishlist-section tbody tr td {
    min-width: 115px;
  }

  .cart-section tbody tr td .mobile-cart-content .col-xs-3, .wishlist-section tbody tr td .mobile-cart-content .col-xs-3 {
    margin-left: 5px;
    margin-right: 5px;
  }

  .cart-section tbody tr td a img, .wishlist-section tbody tr td a img {
    height: 80px;
  }

  .cart-section tfoot tr td, .wishlist-section tfoot tr td {
    padding-right: 27px;
  }

  .cart-section tfoot tr td h2, .wishlist-section tfoot tr td h2 {
    font-size: 21px;
  }

  .wishlist-section .wishlist-buttons:last-child a {
    margin-left: 0;
  }

  .product-buttons .btn-default {
    padding: 7px 16px;
  }

  .product-description .qty-box .input-group {
    width: 100%;
  }

  .single-product-tables.detail-section table {
    width: 70%;
  }

  .product-right .timer {
    padding-left: 25px;
  }

  .product-right .timer span .padding-l {
    padding-left: 10px;
  }

  .product-form-box .timer span {
    width: 47px;
  }

  .product-form-box .timer span .padding-l {
    padding-left: 9px;
  }

  .product-form-box .product-buttons .btn-default {
    padding: 5px 5px;
  }

  .product-form-box .timer span, .border-product .timer span {
    width: 45px;
  }

  .product-form-box .timer span .padding-l, .border-product .timer span .padding-l {
    padding-right: 5px;
  }

  .portfolio-metro h1 {
    font-size: 20px;
  }

  .breadcrumb-section-main.inner-2 .breadcrumb-contain ul li:last-child {
    display: block;
  }
}

@media only screen and (max-width: 320px) {
  .m-l-24 {
    margin-left: 10px;
  }

  .agency.agency-content .agency-header-center-container .agency-head .agency-head-text {
    margin-top: -10px;
  }

  .saas1.testimonial .testi-profile img {
    padding-left: 0;
  }

  .collection-banner .contain-banner.banner-3 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .collection-banner .contain-banner.banner-3 h2 {
    font-size: 15px;
  }

  .collection-banner .contain-banner.banner-4 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .collection-banner .contain-banner.banner-4 h2 {
    font-size: 15px;
  }
}

/**=====================
       63. Responsive CSS end
  ==========================**/
.modal-header .close {
  padding: 0px !important;
  margin: 0px !important;
  position: absolute !important;
  right: 20px !important;
}

.display-m {
  display: none;
}

.display {
  display: block;
}

@media (min-width: 320px) and (max-width: 767px) {
  .display-m {
    display: block;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  }

  .display {
    display: none;
  }
}