/* #########################################################################
                          COMMON CSS START
######################################################################### */
@import url('https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&amp;family=Oswald:wght@200;300;400;500;600;700&amp;display=swap');


* {
  margin: 0;
  padding: 0;
}

:root {
  --font1: 'Nothing You Could Do', cursive;
  --font2: 'Oswald', sans-serif;
  --brand: #d63384;
}

body {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  background: #000000;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  margin: 0;
  padding: 0;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  text-decoration: none !important;
}

dl,
ol,
ul,
li {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.brand {
  color: var(--brand);
}

.red-text {
  color: red;
}

/* Section Spacing css*/
.section-padding {
  padding: 60px 0;
}

/* Section Header css */
.header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: inline-block;
}

.header-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #fff;
  display: inline-block;
}

.header-content img {
  margin-bottom: 26px;
}

.header_after {
  position: relative;
}

.header_after::after {
  position: absolute;
  content: attr(data-name);
  left: 17%;
  top: -23px;
  font-size: 20px;
  text-transform: uppercase;
  font-family: var(--font1);
  font-weight: 800;
  transform: rotate(-4deg);
  color: var(--brand);
  animation: text-flicker 3s linear infinite;
}

@keyframes text-flicker {
  0% {
    opacity: 0.1;
    text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
  }

  2% {
    opacity: 1;
    text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
  }

  8% {
    opacity: 0.1;
    text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
  }

  9% {
    opacity: 1;
    text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
  }

  12% {
    opacity: 0.1;
    text-shadow: 0px 0px rgba(242, 22, 22, 1);
  }

  20% {
    opacity: 1;
    text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
  }

  25% {
    opacity: 0.3;
    text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
  }

  30% {
    opacity: 1;
    text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
  }

  70% {
    opacity: 0.7;
    text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
  }

  72% {
    opacity: 0.2;
    text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
  }

  77% {
    opacity: .9;
    text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
  }

  100% {
    opacity: .9;
    text-shadow: 0px 0px 29px rgba(242, 22, 22, 1)
  }
}

/* Few box Animation css */
.box_animation {
  position: relative;
}

.box_animation::after {
  position: absolute;
  content: "";
  left: 52%;
  bottom: -9%;
  width: 50%;
  background: url(../img/core-img/love.png) no-repeat center;
  animation: grow-and-shrink 4000ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  z-index: 999;
  height: 50%;
}

@keyframes grow-and-shrink {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.box2_animation {
  position: relative;
}

.box2_animation::after {
  position: absolute;
  content: "";
  left: 57%;
  top: 50%;
  width: 50%;
  background: url(../img/core-img/love.png) no-repeat center;
  animation: grow-and-shrink 4000ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  z-index: 1;
  height: 50%;
}

@keyframes grow-and-shrink {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.box3_animation {
  position: relative;
}

.box3_animation::after {
  position: absolute;
  content: "";
  right: -38%;
  top: -28%;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url(../img/core-img/flower.png) no-repeat center;
  animation-name: myframes;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes myframes {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}


.box4_animation {
  position: relative;
  overflow: hidden;
}

.box4_animation::after {
  position: absolute;
  content: "";
  left: 2%;
  bottom: -4%;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../img/core-img/love2.png) no-repeat center;
  animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
  -webkit-animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  overflow: hidden;
  opacity: 0.4;
}

@keyframes shake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

/* IMAGE ANIMATION START*/
.images-animation {
  background: transparent;
  border-radius: 12px;
  flex-shrink: 0;
  height: 600px;
  overflow: hidden;
  position: relative;
  width: 80%;
  z-index: 1;
}

.images-animation img {
  border-radius: 12px;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.images-animation img:nth-child(1) {
  animation: image1 13s infinite;
  z-index: 10;
}

.images-animation img:nth-child(2) {
  animation: image2 13s infinite;
  z-index: 9;
}

.images-animation img:nth-child(3) {
  animation: image3 13s infinite;
  z-index: 8;
}

@keyframes image1 {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1);
  }

  20% {
    transform: scale(0.3);
  }

  30% {
    transform: scale(0.3) translate(-50%, -25%);
  }

  35% {
    opacity: 1;
    transform: scale(0.5) translate(-220%, 0%);
  }

  36% {
    opacity: 0;
  }

  90% {
    opacity: 0;
    transform: scale(1);
  }

  95% {
    opacity: 0.5;
    transform: scale(0.3);
  }

  100% {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }
}

@keyframes image2 {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1);
  }

  20% {
    transform: scale(0.3);
  }

  30% {
    transform: scale(0.3) translate(0%, 0%);
  }

  35% {
    transform: scale(1) translate(0%, 0%);
    transform-origin: center center;
  }

  55% {
    transform: scale(1) translate(0%, 0%);
    transform-origin: 0% 80%;
  }

  60% {
    animation-timing-function: ease-out;
    transform: scale(0.3);
  }

  65% {
    transform: scale(0.3);
  }

  70% {
    transform: scale(0.3) translate(-250%, 0%);
    transform-origin: 0% 80%;
  }

  100% {
    transform: scale(0.3) translate(-250%, 0%);
  }
}

@keyframes image3 {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  10% {
    transform: scale(1);
  }

  20% {
    transform: scale(0.3);
  }

  30% {
    transform: scale(0.3) translate(50%, 25%);
  }

  35% {
    height: 600px;
    transform: scale(0.5) translate(200%, 0%);
  }

  55% {
    height: 300px;
    transform: scale(0.5) translate(200%, 0%);
  }

  60% {
    transform: scale(0.6) translate(100px, 0%);
  }

  65% {
    height: 300px;
    transform: scale(0.6) translate(100px, 0%);
  }

  70% {
    height: 600px;
    transform: scale(1) translate(0%, 0%);
  }

  90% {
    opacity: 1;
    transform: scale(1) translate(0%, 0%);
  }

  95% {
    opacity: 0.5;
    transform: scale(0.3);
  }

  100% {
    opacity: 0;
    transform: scale(1) translate(0%, 0%);
  }
}

/* Scrollbar style css */
html::-webkit-scrollbar {
  width: 1.30vw;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--brand);
}

html::-webkit-scrollbar-thumb:hover {
  background-color: #ed7eb6;
}

html::-webkit-scrollbar-track {
  background-color: #000000;
}

html::-webkit-scrollbar-track:hover {
  background-color: #000000;
}

html {
  scrollbar-width: bold;
  scrollbar-color: var(--brand) #000000;
}

/* Preloader css */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  top: 0;
  left: 0;
  background-color: #d63384;
  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;
}

.wrapper {
  padding-left: 1em;
  padding-right: 1em;
  margin: auto;
  display: block;
  width: 195px;
}

.cssload-loader {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  margin: 3em;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  background: #ffffff;
}

.cssload-loader,
.cssload-loader:after,
.cssload-loader:before {
  animation: 1.15s infinite ease-in-out;
  -o-animation: 1.15s infinite ease-in-out;
  -ms-animation: 1.15s infinite ease-in-out;
  -webkit-animation: 1.15s infinite ease-in-out;
  -moz-animation: 1.15s infinite ease-in-out;
}

.cssload-loader:after,
.cssload-loader:before {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.cssload-loader {
  animation-name: cssload-loader;
  -o-animation-name: cssload-loader;
  -ms-animation-name: cssload-loader;
  -webkit-animation-name: cssload-loader;
  -moz-animation-name: cssload-loader;
}

@keyframes cssload-loader {
  from {
    transform: scale(0);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 0;
  }
}

@-o-keyframes cssload-loader {
  from {
    -o-transform: scale(0);
    opacity: 1;
  }

  to {
    -o-transform: scale(1);
    opacity: 0;
  }
}

@-ms-keyframes cssload-loader {
  from {
    -ms-transform: scale(0);
    opacity: 1;
  }

  to {
    -ms-transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes cssload-loader {
  from {
    -webkit-transform: scale(0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@-moz-keyframes cssload-loader {
  from {
    -moz-transform: scale(0);
    opacity: 1;
  }

  to {
    -moz-transform: scale(1);
    opacity: 0;
  }
}

/* Cursor Animation css */
.cursor__inner {
  z-index: 999999;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

.cursor__inner--dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
}

.cursor__inner--circle {
  width: 20px;
  height: 20px;
  background: rgba(214, 51, 132, 0.4);
}

/* Go-Top Button */
.go-top {
  color: #ffffff;
  position: fixed;
  z-index: 4;
  top: 0;
  right: 15px;
  width: 45px;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  line-height: 45px;
  border-radius: 5px;
  background-color: var(--brand);
  -webkit-transition: .9s;
  transition: .9s;
  cursor: pointer;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.go-top i {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0 auto;
}

.go-top i:last-child {
  top: 60%;
  opacity: 0;
  visibility: hidden;
}

.go-top::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  background-color: #a74676;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.go-top:hover,
.go-top:focus {
  color: #ffffff;
}

.go-top:hover::before,
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

/* #########################################################################
                          COMMON CSS START
######################################################################### */

/* #########################################################################
                          HEADER AREA CSS START
######################################################################### */
.classy-navbar-toggler .navbarToggler span {
  background-color: #ffffff;
}

.classycloseIcon .cross-wrap span {
  background-color: #ffffff;
}

.breakpoint-on .classynav ul li.has-down.active>a::after,
.breakpoint-on .classynav ul li.megamenu-item.active>a::after {
  color: #ffffff;
}

#header-area {
  position: fixed;
  z-index: 600;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
}

#header-area .main-header-area.sticky {
  top: 0;
  width: 100%;
  position: fixed;
  background-color: #000;
  box-shadow: 0 3px 50px rgba(255, 255, 255, 0.2);
  border-bottom: none;
  left: 0;
  z-index: 650;
  border-bottom-color: transparent;
}

.main-header-area {
  background: #000;
}

#header-area .phone-search {
  display: none;
  padding: 0 27px;
  margin-top: 12px;
  margin-bottom: 27px;
}

#header-area .phone-search .form-control {
  margin-right: 5px;
}

#header-area .phone-search button {
  background: #fff;
  border: 1px solid #888;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
}

#header-area .search-icon {
  position: relative;
  z-index: 1;
  margin-left: 30px;
}

#header-area .search-icon i {
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
}

.classy-nav-container {
  background-color: #0000;
  padding: 0;
}



.classy-nav-container .classy-navbar {
  height: 100px;
  padding: 0 3%;
}

.classy-nav-container .classy-navbar .bg-curve {
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}

.classy-nav-container .classy-navbar .classynav ul li a {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  color: #ffffff;
}

.classy-nav-container .classy-navbar .classynav ul li a:focus,
.classy-nav-container .classy-navbar .classynav ul li a:hover {
  color: #ffffff;
}

.classy-nav-container .classy-navbar .classynav ul li.cn-dropdown-item ul li a {
  font-size: 14px;
  text-transform: capitalize;
}

.classy-nav-container .classy-navbar .classynav ul li.current-item a::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 2px;
  background-color: #f6a4ce;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.classynav ul li.has-down>a::after,
.classynav ul li.has-down.active>a::after,
.classynav ul li.megamenu-item>a::after {
  color: #ffffff;
}

.breakpoint-off .classynav ul li .dropdown {
  background-color: #d63384;
}

.classynav ul li .dropdown li a {
  border-bottom: none;
  height: 40px;
}

.classynav ul li .dropdown li .dropdown li .dropdown li a,
.classynav ul li .dropdown li .dropdown li a {
  border-bottom: none;
}

.top-search-area .modal-content {
  border: none;
}

.top-search-area .modal-content .modal-body {
  padding: 50px;
}

.modal-backdrop.show {
  z-index: 1;
}

.top-search-area .modal-content .modal-body button.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  font-size: 14px;
}

.top-search-area .modal-content .modal-body button.close-btn.btn {
  padding: 0;
  background-color: transparent;
}

.top-search-area .modal-content .modal-body button.close-btn.btn:focus,
.top-search-area .modal-content .modal-body button.close-btn.btn:hover {
  box-shadow: none;
  color: #d63384;
}

.top-search-area form {
  width: 100%;
  position: relative;
  z-index: 1;
}

.top-search-area form input {
  width: 100%;
  height: 50px;
  border: none;
  box-shadow: 0 0 30px 15px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  font-size: 12px;
  font-style: italic;
  padding: 0 20px;
}

.top-search-area form input:focus {
  box-shadow: 0 0 30px 15px rgba(0, 0, 0, 0.08);
}

.top-search-area form button {
  position: absolute;
  width: 100px;
  height: 50px;
  top: 0;
  right: 0;
  z-index: 10;
  border-radius: 0 6px 6px 0;
  border: none;
  background-color: #d63384;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
}


/* #########################################################################
                          HEADER AREA CSS END
######################################################################### */

/* #########################################################################
                          MAIN SLIDER CSS START
######################################################################### */
.main-slides-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

.main-slides-area .owl-next {
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  text-align: center;
  line-height: 100px;
  color: #232323;
  font-size: 30px;
  z-index: 10;
}

.main-slides-area .owl-next:focus,
.main-slides-area .owl-next:hover {
  background-color: #d63384;
  color: #ffffff;
}

.single-model-slide {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 900px;
  background-color: #000000;
}

.single-model-slide .bg-curve {
  position: absolute;
  width: 60%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  top: 0;
  right: 0;
}

.single-model-slide .main-bg-img {
  position: absolute;
  width: 50%;
  height: calc(100% - 100px);
  bottom: 0;
  right: 15%;
  z-index: 1;
}

.single-model-slide .social-info {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 1%;
}

.single-model-slide .social-info a {
  display: inline-block;
  margin-left: 22px;
  text-transform: uppercase;
  color: #a6a6a6;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.single-model-slide .social-info a:first-child {
  margin-left: 0;
}

.single-model-slide .social-info a:focus,
.single-model-slide .social-info a:hover {
  color: #d63384;
  box-shadow: none;
}

.single-model-slide .slide-pager a {
  position: absolute;
  width: 15%;
  height: 100px;
  font-size: 24px;
  color: #ffffff;
  bottom: 0;
  right: 0;
  z-index: 10;
  background-color: #232323;
  font-weight: 600;
  line-height: 100px;
  text-align: center;
  padding: 0 15px;
  overflow: hidden;
}

.welcome-text {
  position: relative;
  z-index: 1;
  margin-top: 100px;
}

.welcome-text h2 {
  font-size: 100px;
  color: #ffffff;
  display: block;
  text-transform: capitalize;
  margin-left: 0;
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: var(--font1) !important;
}

.welcome-text h4 {
  font-size: 18px;
  color: #a6a6a6 !important;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.welcome-text a {
  padding: 0;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d63384;
  font-weight: 600;
}

.welcome-text a:focus,
.welcome-text a:hover {
  color: #ffffff;
}


/* #########################################################################
                          MAIN SLIDER CSS END
######################################################################### */

/* #########################################################################
                          BREADCRUMB CSS START
######################################################################### */
.banner-area {
  position: relative;
  min-height: 360px;
  color: #fff;
  background-position: 50% 50%;
  background-size: cover;
  margin-top: 100px;
}

.banner-area::after {
  content: '';
  width: 100%;
  height: 20px;
  position: absolute;
  left: 0;
  background: url(../img/core-img/section_notch_bottom.png);
  background-repeat: no-repeat;
  bottom: 0;
}

.banner-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 58px;
  font-weight: 900;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
  transform: translateY(-50%);
}

.banner-heading {
  text-align: center;
}

.breadcrumb {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
}

.breadcrumb li.breadcrumb-item a i {
  margin-right: 5px;
}

.breadcrumb li a,
.breadcrumb .breadcrumb-item,
.breadcrumb li a:focus,
.breadcrumb li a:hover {
  color: #fff !important;
  align-items: center;
  display: flex;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

/* #########################################################################
                          BREADCRUMB CSS END
######################################################################### */

/* #########################################################################
                          ABOUT US CSS START
######################################################################### */
.about-us-thumbnail {
  justify-content: center;
  display: flex;
}

.about-us-thumbnail img {
  width: 100%;
  -webkit-transition-duration: 800ms;
  -o-transition-duration: 800ms;
  transition-duration: 800ms;
}

.about-us-thumbnail .line {
  width: 100px;
  height: 15px;
  background-color: #d63384;
  position: absolute;
  z-index: 10;
  top: -15px;
  right: -15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
}

.about-us-thumbnail .line::after {
  content: '';
  height: 100px;
  width: 15px;
  background-color: #d63384;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.about-us-thumbnail .line2 {
  width: 100px;
  height: 15px;
  background-color: #d63384;
  position: absolute;
  z-index: 10;
  bottom: -15px;
  left: -15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
}

.about-us-thumbnail .line2::after {
  content: '';
  height: 100px;
  width: 15px;
  background-color: #d63384;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.about-us-content p {
  font-size: 30px;
  color: #fff;
  font-weight: 800;
}

/* #########################################################################
                          ABOUT US CSS END
######################################################################### */

/* #########################################################################
                          CLIENT FEEDBACK CSS START
######################################################################### */
#clients-feedback {
  position: relative;
  z-index: 1;
}

#clients-feedback .client-feedback-text {
  position: relative;
  z-index: 1;
}

#clients-feedback .client-feedback-text .quote-icon i {
  display: block;
  font-size: 72px;
  color: var(--brand);
}

#clients-feedback .client-feedback-text .client-description p {
  margin-bottom: 30px;
  color: #fff;
  font-family: var(--font2);
  font-size: 22px;
}


#clients-feedback .client-feedback-text .ratings {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

#clients-feedback .client-feedback-text .ratings i {
  color: #e99d19;
  font-size: 14px;
}

#clients-feedback .client-feedback-text .client-name h2 {
  font-size: 22px;
  margin-bottom: 0;
  color: var(--brand);
}

#clients-feedback .client-feedback-text .client-name span {
  color: #a6a6a6;
  text-transform: uppercase;
  margin-bottom: 0;
}

#clients-feedback .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#clients-feedback .slick-dots li button {
  width: 35px;
  height: 5px;
  border: 3px solid #ebebeb;
  background-color: #ffffff;
  margin: 5.5px;
  outline: none;
}

#clients-feedback .slick-dots li.slick-active button {
  background-color: #d63384;
  border-color: #d63384;
}

#clients-feedback .slick-slide.client-thumbnail {
  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: 129px;
}

#clients-feedback .slick-slide img {
  display: block;
  width: 80px !important;
  height: 80px !important;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#clients-feedback .slick-slide.slick-current:focus {
  box-shadow: none;
  outline: none;
}

#clients-feedback .slick-slide.slick-current img {
  width: 100px !important;
  height: 100px !important;
  border-color: var(--brand);
}

#clients-feedback .slick-slide.slick-current img:focus {
  box-shadow: none;
  outline: none;
}

#clients-feedback .slick-arrow {
  position: absolute;
  width: 30px;
  background-color: #000;
  height: 100%;
  text-align: center;
  font-size: 24px;
  color: #fff;
  display: block;
  line-height: 550%;
  left: 0;
  z-index: 90;
  cursor: pointer;
}

#clients-feedback .slick-arrow.fa-angle-right {
  left: auto;
  right: 0;
  top: 0;
}

/* #########################################################################
                          CLIENT FEEDBACK CSS END
######################################################################### */

/* #########################################################################
                          MODEL AREA CSS START
######################################################################### */
.model-block-pic img {
  width: 100%;
  -webkit-transition: transform 0.9s ease;
  -o-transition: transform 0.9s ease;
  -moz-transition: transform 0.9s ease;
  transition: transform 0.9s ease;
}

.model-block-pic:hover img {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

.model-block-pic {
  display: block;
  overflow: hidden;
}

.model-block {
  border: 3px solid #2f2f33;
  padding: 15px;
  margin: 0 2px;
}

.model-block-content {
  color: #fff;
}

.model-block-content h2 {
  font-family: var(--font2);
  color: #fff;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  font-size: 30px;
}

.model-block-content p {
  color: #a6a6a6 !important;
  font-size: 16px;
}

.model-block-content a:hover {
  color: var(--brand);
}

.model-block-txt .star {
  color: #fea41c;
  margin: 8px 0;
}

.model-block-pic {
  position: relative;
  border: 1px solid #2f2f33;
}

.model-tab-area {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.model-tab-area .nav-pills {
  border-bottom: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.model-tab-area .nav-pills .nav-link {
  border: 1px solid var(--brand);
  border-radius: 0;
  font-size: 19px;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  margin: 0 8px;
  width: 50px;
  height: 50px;
  text-align: center;
  padding: 0;
  align-content: center;
}

.model-tab-area .nav-pills .nav-link.active {
  color: #fff;
  background: var(--brand);
}

.web-tab-content {
  position: relative;
  z-index: 1;
  padding: 0 3%;
}

.single-model-item {
  position: relative;
  z-index: 1;
}

.single-model-item .model-thumbnail {
  position: relative;
}

.single-model-item .model-thumbnail img {
  width: 100%;
}

.single-model-item {
  position: relative;
}

.model-info {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 50%;
  color: #000;
  background-color: rgba(214, 51, 132, 0.4);
}

/* New model part */
.web-all-model-slide .owl-next,
.web-all-model-slide .owl-prev {
  width: 40px;
  height: 68px;
  background-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  text-align: center;
  font-size: 36px;
  position: absolute;
  top: 40% !important;
  left: -40px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  align-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
}

.web-all-model-slide .owl-next.owl-next,
.web-all-model-slide .owl-prev.owl-next {
  left: auto;
  right: -40px;
}

.web-all-model-slide .owl-next:focus,
.web-all-model-slide .owl-next:hover,
.web-all-model-slide .owl-prev:focus,
.web-all-model-slide .owl-prev:hover {
  background-color: var(--brand);
}

/* #########################################################################
                          MODEL AREA CSS END
######################################################################### */

/* #########################################################################
                          MODEL PROFILE CSS START
######################################################################### */
.profile_item {
  margin-top: -180px;
  position: relative;
}

.profile_item img {
  border: 10px solid #fff;
}

.profile_info .star {
  color: #fea41c;
}

.profile_info h2 {
  color: var(--brand);
  text-align: center;
  margin: 16px 0;
  font-size: 25px;
}

.general-btn {
  margin-top: 50px;
}

.profile_info p {
  color: #fff;
  text-align: center;
}

.profile_info button {
  position: relative;
  z-index: 1;
  min-width: 180px;
  height: 50px;
  line-height: 46px;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  padding: 0 20px;
  text-align: center;
  text-transform: capitalize;
  color: var(--brand);
  border-radius: 40px;
  background-color: #ffffff;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  border: 2px solid var(--brand);
}

.profile_info button:focus,
.profile_info button:hover {
  color: #ffffff;
  background-color: #d63384;
}


.profile_text h3 {
  color: #fff;
  font-size: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.profile_more {
  justify-content: center;
  width: 180px;
}

.profile_title {
  color: var(--brand);
  font-weight: 800;
  font-size: 25px;
}

.profile {
  border: 1px solid #444;
  padding: 30px;
  margin-bottom: 30px;
}

.profile:last-child {
  margin-bottom: 0;
}

.profile p {
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
}

.profile .chart {
  margin-top: 30px;
}

.profile_text {
  padding: 30px 0;
}

.profile_services li {
  margin: 30px 10px 0 0;
}

.profile_services li a {
  background: var(--brand);
  color: #fff;
  font-family: var(--font2);
  padding: 10px 20px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.profile_services a:hover {
  background: #fff;
  color: var(--brand);
}

.label {
  color: #fff;
  font-size: 33px;
}

.chart_bar {
  line-height: 30px;
  font-size: 14px;
  background-color: var(--brand);
  color: #fff;
  padding: 10px 5px 10px 8px !important;
}

.item-gallery img {
  margin: 8px;
}

.profile-video-area {
  position: relative;
  z-index: 1;
}

.mfp-iframe-holder .mfp-close {
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--brand);
  text-align: center;
  color: #fff;
  right: 0;
  padding-right: 0;
  line-height: 32px;
}

.profile-video-area .video-play-btn {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: red;
  width: 75px;
  height: 75px;
  justify-content: center;
  display: flex;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  font-size: 33px;
}

/* #########################################################################
                          MODEL PROFILE CSS END
######################################################################### */

/* #########################################################################
                          CORE VALUE CSS START
######################################################################### */
.single-benefits-area {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
  border-right: 5px solid var(--brand);
  border-left: 5px solid var(--brand);
  border-radius: 17px;
}

.single-benefits-area:last-child {
  margin-bottom: 0;
}

.single-benefits-area .benefits-icon {
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
}

.single-benefits-area .benefits-icon i {
  color: #d63384;
  font-size: 56px;
}

.single-benefits-area .benefits-content h2 {
  font-size: 25px;
}

.single-benefits-area .benefits-content p {
  margin-bottom: 0;
  color: #ddd;
  font-size: 15px;
}

.web-video-area {
  position: relative;
  z-index: 1;
}

.web-video-area .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99;
  padding: 0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: var(--brand);
  color: #ffffff;
  line-height: 50px;
  align-items: center;
  display: grid;
}

.web-video-area .video-play-btn:focus,
.web-video-area .video-play-btn:hover {
  box-shadow: none;
  background-color: #232323;
}

/* #########################################################################
                          CORE VALUE CSS END
######################################################################### */

/* #########################################################################
                          BLOG CSS START
######################################################################### */
.single-blog-post {
  position: relative;
  z-index: 1;
}

.single-blog-post.three,
.single-blog-post.four,
.single-blog-post.five,
.single-blog-post.six,
.single-blog-post.seven {
  margin-top: 30px;
}

.single-blog-post .post-thumbnail {
  position: relative;
  z-index: 1;
}

.single-blog-post .post-thumbnail a {
  display: block;
}

.single-blog-post .post-thumbnail a img {
  width: 100%;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
}

.single-blog-post .post-content {
  position: absolute;
  z-index: 1;
  margin-top: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 23px 23px;
  background: rgba(0, 0, 0, 0.2);
}

.post-content a h2 {
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.post-content a:hover h2 {
  color: var(--brand);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.single-blog-post .post-content .post-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  color: #fff;
}

.single-blog-post .post-content .post-title:focus,
.single-blog-post .post-content .post-title:hover {
  color: var(--brand);
}

.single-blog-post .post-content .post-date {
  font-size: 14px;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0;
  font-weight: 600;
}

.single-blog-post:focus .post-content .post-title,
.single-blog-post:hover .post-content .post-title {
  color: #d63384;
}

.single-blog-post:focus .post-thumbnail a img,
.single-blog-post:hover .post-thumbnail a img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.single-blog-post.featured-post {
  position: relative;
  z-index: 1;
}

.single-blog-post.featured-post .post-content {
  margin-top: 0;
  position: absolute;
  width: 270px;
  height: 100%;
  background-color: #d63384;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-blog-post.featured-post .post-content .post-date,
.single-blog-post.featured-post .post-content .post-title {
  color: #ffffff;
}

.blog-details-content {
  position: relative;
  z-index: 1;
}

.post-details-text h2 {
  color: #ffffff;
  font-size: 30px;
  display: block;
  margin: 15px 0;
}

.post-details-text {
  position: relative;
  z-index: 1;
}

.post-details-text .post-date-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--brand);
  width: 80px;
  height: 80px;
  text-align: center;
  align-content: center;
  font-weight: 600;
}

.blog-details-content .post-details-text .post-date-tag .tag-border {
  border: 2px solid #ffffff;
  width: 70px;
  height: 70px;
  display: inline-block;
  align-content: center;
}

.blog-details-content .post-details-text .post-date-tag h2 {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  margin: 5px 0;
}

.blog-details-content .post-details-text .post-date-tag p {
  color: #ffffff;
}

.blog-details-content .post-content .post-date {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a6a6a6;
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
}

.blog-details-content .post-content h2 {
  color: #ffffff;
  font-size: 30px;
  display: block;
  margin: 15px 0;
}

.blog-details-content .post-content .post-meta a {
  font-size: 16px;
  color: #a6a6a6;
  display: inline-block;
  margin-right: 15px;
}

.blog-details-content .post-content .post-meta a:last-child {
  margin-right: 0;
}

.blog-details-content .post-content .post-meta a:focus,
.blog-details-content .post-content .post-meta a:hover {
  color: var(--brand);
}

.blog-details-content p {
  font-size: 16px;
  color: #a6a6a6;
}

.blog-blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-top: 30px;
}

.blog-blockquote .icon {
  width: 123px;
}

.blog-blockquote .icon i {
  font-size: 60px;
  color: #d63384;
}


.blog-blockquote .text h3 {
  font-size: 22px;
  font-style: italic;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.6;
  font-weight: 400;
}

.blog-blockquote .text span {
  color: #a6a6a6;
  font-size: 16px;
}

.blog-post-share h2 {
  margin-right: 5px;
  font-size: 18px;
}

.blog-post-share {
  position: relative;
  z-index: 1;
}

.blog-post-share .social-info a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  background: #444;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog-post-share .social-info a:last-child {
  margin-right: 0;
}

.blog-post-share .social-info a:focus,
.blog-post-share .social-info a:hover {
  color: #fff;
  background: var(--brand);
}

/* Blog Comment Area */
.commentbox-button button {
  background: var(--brand);
  width: 14%;
  padding: 8px;
  margin-top: 15px;
  border-color: transparent;
}

.commentbox-button button:hover {
  background: #2f2f33;
  border-color: #2f2f33;
}

.blog-comment-form .form-control:focus {
  box-shadow: none;
}

.blog-comment-form .form-control {
  color: #fff;
  background-color: #2f2f33;
  border: none;
}

.commentbox-top button {
  background: var(--brand);
  border-color: transparent;
}

.commentbox-top button:hover {
  background: #2f2f33;
}

.btn-check:checked+.commentbox-top button,
.commentbox-top button.active,
.commentbox-top button.show,
.commentbox-top button:first-child:active,
:not(.btn-check)+.commentbox-top button:active {
  color: #fff;
  background-color: #0e0e0e;
  border-color: #888;
}

.commentbox-top {
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 2px solid #2f2f33;
}

.commentbox-top h3 {
  color: #ffffff;
  font-size: 24px;
  padding: 1px 0;
}

.commentbox-top .dropdown-menu {
  min-width: 23%;
  background: #2f2f33;
  backdrop-filter: blur(10px);
  padding: 0;
}

.commentbox-top .dropdown-menu i {
  margin-right: 5px;
  font-size: 14px;
  padding: 5px;
  border-radius: 5px;
  color: #fff;
}

.commentbox-top .dropdown-menu .fa-facebook {
  background: #0866ff;
}

.commentbox-top .dropdown-menu .fa-square-x-twitter {
  background: #000000;
}

.commentbox-top .dropdown-menu .fa-google {
  background: #d31e2e;
}

.commentbox-top .dropdown-menu .dropdown-item {
  color: #fff;
  padding: 8px 8px;
}

.commentbox-top .dropdown-menu .dropdown-item:focus,
.commentbox-top .dropdown-menu .dropdown-item:hover {
  color: #fff;
  background: #858585;
}

.blog-comment-form .form-floating>label {
  color: #888;
  z-index: 1;
}

.blog-comment-form .form-floating>label::after {
  color: #888;
  background: #2f2f33 !important;
}

.comment_area {
  padding-top: 0;
  padding-bottom: 0;
}

.blog-comment-form h5.title {
  font-size: 24px;
  color: #fff;
  text-transform: capitalize;
}

.comments-header {
  margin-bottom: 30px;
}

.comment-nav .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background: var(--brand);
}

.comment-nav .nav-link {
  color: #fff;
  background: #2f2f33;
  border-color: #fff;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.comment_area .comment-content {
  position: relative;
  margin-bottom: 30px;
  background: #2f2f33;
  padding: 14px 26px;
  border-radius: 10px;
}

.comment_area .comment-content .comment-author {
  width: 70px;
  margin-right: 20px;
  border-radius: 50%;
}

.comment_area .comment-content .comment-author img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.comment-meta {
  width: 100%;
}

.comment_area .comment-content .comment-meta .post-date {
  color: #888;
  font-size: 9px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.comment_area .comment-content .comment-meta h3 {
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 16px;
}


.comment_area .comment-content .comment-meta p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}

.comment_area .comment-content .comment-meta a.like,
.comment_area .comment-content .comment-meta a.reply {
  display: inline-block;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  text-transform: uppercase;
  color: #f1f1f1;
  transition: all linear .3s;
}

.comment_area .comment-content .comment-meta a.like,
.comment_area .comment-content .comment-meta a.reply {
  color: #888;
}

.comment_area .comment-content .comment-meta a.like:focus,
.comment_area .comment-content .comment-meta a.like:hover,
.comment_area .comment-content .comment-meta a.reply:focus,
.comment_area .comment-content .comment-meta a.reply:hover {
  background: #242428;
  color: #ffffff;
}

.comment_area .children {
  margin-left: 50px !important;
  position: relative;
}

.comment_area .children::after {
  position: absolute;
  content: "\f122";
  left: -37px;
  top: 40px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: rotate(180deg);
  font-size: 25px;
  color: #999;
}

.comment_area .children .single_comment_area:last-of-type {
  margin-bottom: 0;
}

.post-catagories {
  position: relative;
  z-index: 1;
  margin: 50px 0;
}

.post-catagories ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.post-catagories ul li a {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #444;
  background-color: #444;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  margin: 3px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.post-catagories ul li a:focus,
.post-catagories ul li a:hover {
  background-color: #d63384;
  color: #ffffff;
}

.related-news-area {
  position: relative;
  z-index: 1;
  padding-top: 30px;
}

.search-widget-area form {
  position: relative;
  z-index: 1;
}

.search-widget-area form .form-control::placeholder {
  color: rgb(255, 255, 255);
  opacity: 1;
}

.search-widget-area form input {
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  width: 100%;
  height: 45px;
  border: 1px solid #ebebeb;
  background-color: transparent;
  padding: 0 15px;
  color: #ffffff;
  font-size: 14px;
  border-radius: 0;
}

.search-widget-area form input:focus {
  box-shadow: none;
  border: 1px solid #d63384;
}

.search-widget-area form button {
  width: 50px;
  height: 45px;
  background-color: #d63384;
  padding: 0 15px;
  color: #ffffff;
  font-size: 14px;
  border: none;
  border-radius: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  cursor: pointer;
  line-height: 45px;
}

.single-widget-area {
  position: relative;
  z-index: 1;
}

.single-widget-area .widget-title {
  margin-bottom: 30px;
  font-size: 30px;
  text-transform: capitalize;
}

.catagories-widget,
.news-widget,
.adds-widget,
.tags-widget {
  margin-top: 30px;
}


.catagories-list {
  position: relative;
  z-index: 1;
}

.catagories-list li a {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  color: #a6a6a6;
  font-weight: bold;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

@media only screen and (max-width: 767px) {
  .catagories-list li a {
    font-size: 16px;
  }
}

.catagories-list li a i {
  margin-right: 10px;
}

.catagories-list li a:focus,
.catagories-list li a:hover {
  color: #d63384;
}

.catagories-list li:first-child a {
  padding-top: 0;
}

.catagories-list li:last-child a {
  padding-bottom: 0;
}

.single-news-area {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.single-news-area:last-child {
  margin-bottom: 0;
}

.single-news-area .blog-thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 82px;
  flex: 0 0 82px;
  max-width: 82px;
  width: 82px;
}

.single-news-area .blog-content {
  margin-left: 20px;
}

.single-news-area .blog-content .post-title {
  font-size: 18px;
  color: #ffffff;
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.single-news-area .blog-content .post-title:focus,
.single-news-area .blog-content .post-title:hover {
  color: #d63384;
}

.single-news-area .blog-content .post-date {
  color: #a6a6a6;
  display: block;
  margin-bottom: 0;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
}

.tags-list li a {
  display: inline-block;
  padding: 5px 16px;
  border: 1px solid #444;
  background-color: #444;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  margin: 3px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.tags-list li a:focus,
.tags-list li a:hover {
  background-color: #d63384;
  color: #ffffff;
}

/* #########################################################################
                          BLOG CSS END
######################################################################### */

/* #########################################################################
                          CTA AREA CSS START
######################################################################### */
#cta-area {
  position: relative;
  z-index: 1;
  background-color: #d63384;
  padding: 160px 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-size: 70px;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--font1) !important;
  font-weight: 800;
}

.cta-content p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
}

.cta-content a {
  position: relative;
  z-index: 1;
  min-width: 180px;
  height: 50px;
  line-height: 46px;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  padding: 0 20px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  border-radius: 40px;
  background-color: #d63384;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  border: 2px solid #ffffff;
}

.cta-content a:focus,
.cta-content a:hover {
  box-shadow: none;
  background-color: #fff;
  color: var(--brand);
  border-color: var(--brand);
}

/* #########################################################################
                          CTA AREA CSS END
######################################################################### */

/* #########################################################################
                          TEAM CSS START
######################################################################### */
.single-team-member-area {
  position: relative;
  z-index: 1;
}

.single-team-member-area .team-member-thumbnail {
  position: relative;
  z-index: 1;
}

.single-team-member-area .team-member-thumbnail img {
  width: 100%;
}



.single-team-member-area .team-member-info {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  text-align: center;
}

.single-team-member-area .team-member-info h2 {
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  margin-bottom: 5px;
  font-size: 25px;
}

.single-team-member-area .team-member-info p {
  margin-bottom: 0;
  letter-spacing: 2px;
  color: #a6a6a6;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.single-team-member-area:focus .team-member-info h2,
.single-team-member-area:hover .team-member-info h2 {
  color: #d63384;
}

/* :: 21.0 Team CSS */
.single-team-member-area {
  position: relative;
  z-index: 1;
  background: #222;
  padding-bottom: 20px;
}

.single-team-member-area .team-member-thumbnail {
  position: relative;
  z-index: 1;
}

.single-team-member-area .team-member-thumbnail img {
  width: 100%;
}

.single-team-member-area .team-member-thumbnail .share-info {
  -webkit-transition-duration: 800ms;
  -o-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 0;
}

.single-team-member-area .team-member-thumbnail .share-info .share-icon a {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #232323;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
}

.single-team-member-area .team-member-thumbnail .share-info .share-icon a i {
  -webkit-transition-duration: 800ms;
  -o-transition-duration: 800ms;
  transition-duration: 800ms;
}

.single-team-member-area .team-member-thumbnail .share-info .share-icon a:focus,
.single-team-member-area .team-member-thumbnail .share-info .share-icon a:hover {
  background-color: #d63384;
}

.single-team-member-area .team-member-thumbnail .share-info .share-icon a:focus i,
.single-team-member-area .team-member-thumbnail .share-info .share-icon a:hover i {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.single-team-member-area .team-member-thumbnail .share-info .others-icon {
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  position: absolute;
  width: calc(100% - 50px);
  height: 50px;
  visibility: hidden;
  opacity: 0;
}

.single-team-member-area .team-member-thumbnail .share-info .others-icon a {
  display: inline-block;
  position: absolute;
  text-align: center;
  width: 20%;
  height: 50px;
  top: 0;
  left: 0;
  color: #ffffff;
  line-height: 50px;
  background-color: #232323;
}

.single-team-member-area .team-member-thumbnail .share-info .others-icon a:focus,
.single-team-member-area .team-member-thumbnail .share-info .others-icon a:hover {
  background-color: #d63384;
}

.single-team-member-area .team-member-thumbnail .share-info .others-icon a:nth-child(2) {
  top: 0;
  left: 20%;
}

.single-team-member-area .team-member-thumbnail .share-info .others-icon a:nth-child(3) {
  top: 0;
  left: 40%;
}

.single-team-member-area .team-member-thumbnail .share-info .others-icon a:nth-child(4) {
  top: 0;
  left: 60%;
}

.single-team-member-area .team-member-thumbnail .share-info .others-icon a:nth-child(5) {
  top: 0;
  left: 80%;
}

.single-team-member-area .team-member-thumbnail .share-info:focus,
.single-team-member-area .team-member-thumbnail .share-info:hover {
  width: 100%;
}

.single-team-member-area .team-member-thumbnail .share-info:focus .others-icon,
.single-team-member-area .team-member-thumbnail .share-info:hover .others-icon {
  visibility: visible;
  opacity: 1;
}

.single-team-member-area .team-member-info {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  text-align: center;
}

.single-team-member-area .team-member-info h3 {
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  margin-bottom: 5px;
  font-size: 25px;
}

.single-team-member-area .team-member-info p {
  margin-bottom: 0;
  letter-spacing: 2px;
  color: #a6a6a6;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.single-team-member-area:focus .team-member-info h4,
.single-team-member-area:hover .team-member-info h4 {
  color: #d63384;
}

/* #########################################################################
                          TEAM CSS END
######################################################################### */

/* #########################################################################
                          FOOTER CSS START
######################################################################### */
#footer-area {
  position: relative;
  z-index: 1;
  background-color: #000;
  padding: 135px 0;
}

.single-footer-widget {
  position: relative;
  z-index: 1;
}

.single-footer-widget p {
  color: var(--brand);
  font-size: 16px;
  line-height: 1.8;
}

.single-footer-widget .footer-social-info a {
  display: inline-block;
  color: #ffffff;
  margin-right: 5px;
  background-color: var(--brand);
  width: 50px;
  height: 50px;
  text-align: center;
  align-content: center;
  font-size: 23px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.single-footer-widget .footer-social-info a.facebook {
  background-color: #4c60ac;
}

.single-footer-widget .footer-social-info a.twitter {
  background-color: #8899AC;
}

.single-footer-widget .footer-social-info a.pinterest {
  background-color: #aa0301;
}

.single-footer-widget .footer-social-info a.instagram {
  background-color: #f70c10;
}

.single-footer-widget .footer-social-info a.discord {
  background-color: #6966fa;
}

.single-footer-widget .our-link {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.single-footer-widget .our-link li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
}

.single-footer-widget .our-link li a {
  font-size: 14px;
  color: #666666;
  margin-bottom: 17px;
  display: block;
  font-weight: 500;
}

.single-footer-widget .our-link li a:focus,
.single-footer-widget .our-link li a:hover {
  color: #232323;
}

.single-footer-widget .our-link li:last-child a {
  margin-bottom: 0;
}

.single-footer-widget .footer-content {
  position: relative;
  z-index: 1;
}

.single-footer-widget .footer-content a {
  color: #ffffff;
  margin-bottom: 10px;
  display: block;
  font-size: 30px;
}

.single-footer-widget .footer-content p {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 18px;
}

.copywrite-text {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  text-align: center;
}

.copywrite-text p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font1);
}

.copywrite-text p a {
  color: #fff;
}

.copywrite-text p a:focus,
.copywrite-text p a:hover {
  color: var(--brand);
}

/* #########################################################################
                          FOOTER CSS END
######################################################################### */

/* #########################################################################
                          CONTACT CSS START
######################################################################### */
#contact-area {
  position: relative;
  z-index: 1;
}

#contact-area .google-maps {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 460px;
}

#contact-area .google-maps iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#formFileMultiple {
  color: #fff;
  padding: 12px 20px;
}

.web-contact-form {
  position: relative;
  z-index: 1;
}

.web-contact-form .form-control::placeholder {
  color: #a6a6a6;
}

.web-contact-form .form-control {
  width: 100%;
  height: 50px;
  border-radius: 0;
  background: #444;
  color: #fff;
  font-weight: 800;
  border: 0;
}

.web-contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--brand);
}

.web-contact-form textarea.form-control {
  height: 110px;
}

.form-group {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #fff;
  opacity: .7;
  transition: all .2s linear;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  opacity: 0;
  transition: all .2s linear;
}

.form-style {
  padding: 13px 20px;
  padding-left: 55px;
  height: 48px;
  width: 100%;
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.5px;
  outline: none;
  color: #ffffff;
  background-color: #2f2f33;
  border: none;
  box-shadow: 0px 4px 8px 0 rgba(21, 21, 21, .2);
}

.form-style:focus,
.form-style:active {
  border: none;
  outline: none;
  box-shadow: 0px 4px 8px 0 rgba(21, 21, 21, .2);
}

.form-style.form-control:focus {
  color: #fff;
  background-color: #2f2f33;
}

.input-icon {
  position: absolute;
  top: 12px;
  left: 18px;
  height: 48px;
  font-size: 24px;
  text-align: left;
  color: var(--brand);
  transition: all .2s linear;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -ms-transition: all .2s linear;
  -o-transition: all .2s linear;
}

.web-contact-form .btn {
  background-color: var(--brand);
  color: #fff;
  font-size: 19px;
  padding: 4px 32px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 800;
}

/* #########################################################################
                          CONTACT CSS END
######################################################################### */

/* #########################################################################
                          CASTING CSS START
######################################################################### */
.casting-form-thumbnail {
  overflow: hidden;
  height: 567px;
}

.casting-slider {
  margin-left: -124px;
  white-space: nowrap;
}

.casting-slide img {
  width: 195px;
  height: 214px;
  transform: rotate(-90deg);
  padding: 13px;
}

.single-casting-slider {
  background: transparent;
  position: relative;
  width: 27%;
  transform: rotate(75deg);
}

.single-casting-slider .casting-slide-track {
  -webkit-animation: download-scroll 20s linear infinite;
  animation: download-scroll 20s linear infinite;
  display: flex;
  white-space: nowrap;
  width: calc(250px * 14);
}

.single-casting-slider .casting-slide-track-up-to-down {
  -webkit-animation: download-scroll-up-to-down 20s linear infinite;
  animation: download-scroll-up-to-down 20s linear infinite;
  display: flex;
  white-space: nowrap;
  width: calc(250px * 14);
}

@-webkit-keyframes download-scroll {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
    -webkit-transform: translateX(calc(-250px * 7));
    -moz-transform: translateX(calc(-250px * 7));
    -ms-transform: translateX(calc(-250px * 7));
    -o-transform: translateX(calc(-250px * 7));
  }
}

@keyframes download-scroll {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
    -webkit-transform: translateX(calc(-250px * 7));
    -moz-transform: translateX(calc(-250px * 7));
    -ms-transform: translateX(calc(-250px * 7));
    -o-transform: translateX(calc(-250px * 7));
  }
}

@keyframes download-scroll-up-to-down {
  0% {
    transform: translateX(calc(-250px * 7));
    -webkit-transform: translateX(calc(-250px * 7));
    -moz-transform: translateX(calc(-250px * 7));
    -ms-transform: translateX(calc(-250px * 7));
    -o-transform: translateX(calc(-250px * 7));
  }

  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

@-webkit-keyframes download-scroll-up-to-down {
  0% {
    transform: translateX(calc(-250px * 7));
    -webkit-transform: translateX(calc(-250px * 7));
    -moz-transform: translateX(calc(-250px * 7));
    -ms-transform: translateX(calc(-250px * 7));
    -o-transform: translateX(calc(-250px * 7));
  }

  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
}

/* #########################################################################
                          CASTING CSS END
######################################################################### */