﻿:root {
  --yello: #431258;
  --blue: #210726;
}
/* .loader {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    width: 200px;
    height: 200px
}

.loader-icon {
    width: 80px;
    height: 80px;
    border: 5px solid var(--yello);
    border-right-color: #eee;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    margin: 0 auto
}

@keyframes loader-rotate {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
} */

.hero-banner {
  background-image: url("../image/home-banner.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 90vh;
}

@media (orientation: portrait) {
  .hero-banner {
    background-image: url("../image/home-banner.webp");
    background-position: 70% center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 90vh;
  }
}
a:hover,
a:active {
  /* color: unset !important; */
  text-decoration: none;
}

.white-hover:hover {
  color: #fff !important;
}

.text-primary {
  color: var(--yello) !important;
}

.text-primary-hover:hover,
.text-primary-hover:active,
.text-primary-hover:focus {
  color: var(--yello) !important;
}

.text-secondary {
  color: var(--blue) !important;
}

.text-dark {
  color: #081c2b !important;
}

.bg-primary {
  background-color: var(--yello) !important;
}

.bg-secondary {
  background-color: var(--blue) !important;
}

.bg-dark {
  background-color: #142f43 !important;
}

.primary-overlay[data-overlay-dark]:before {
  background: var(--yello);
}

.secondary-overlay[data-overlay-dark]:before {
  background: var(--blue);
}

.dark-overlay[data-overlay-dark]:before {
  background: #142f43;
}

.border-primary {
  border-color: var(--yello) !important;
}

.border-secondary {
  border-color: var(--blue) !important;
}

.border-dark {
  border-color: #142f43 !important;
}

.height-400 {
  height: 400px;
}

.min-height-700 {
  min-height: 550px;
}

.map-h500 {
  height: 600px;
  width: 100%;
}

.ani-01 {
  animation: animation1 15s linear infinite;
}

.ani-02 {
  animation: animation2 3s linear infinite;
}

.ani-03 {
  animation: animation3 20s linear infinite;
}

.ani-04 {
  animation: animation4 5s linear infinite;
}

.ani-05 {
  animation: animation5 8s linear infinite;
}

.ani-06 {
  animation: animation6 6s linear infinite;
}

@keyframes animation1 {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes animation2 {
  0% {
    opacity: 0.2;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.2;
  }
}

@keyframes animation3 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animation4 {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(30px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes animation6 {
  0% {
    transform: translate(0px, 0px);
  }

  15% {
    transform: translate(0px, 20px);
  }

  30% {
    transform: translate(-20px, 20px);
  }

  45% {
    transform: translate(-20px, 40px);
  }

  60% {
    transform: translate(-25px, 30px);
  }

  75% {
    transform: translate(-20px, 20px);
  }

  90% {
    transform: translate(0px, 20px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes animation5 {
  0% {
    transform: translate(0px, 0px);
  }

  25% {
    transform: translate(20px, 0px);
  }

  50% {
    transform: translate(30px, -20px);
  }

  75% {
    transform: translate(20px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

.cursor-pointer {
  cursor: pointer;
}

.vw-55 {
  width: 55vw;
}

@media screen and (max-width: 1399px) {
  .vw-55 {
    width: 60vw;
  }
}

@media screen and (max-width: 1199px) {
  .vw-55 {
    width: 100%;
  }
}

.border-top-radius {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.image-hover {
  transition: all 0.3s ease-out;
  position: relative;
}

.image-hover:hover,
.image-hover:active,
.image-hover:focus {
  transform: translate(0, -10px);
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
}

.scroll-to-top {
  font-size: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: #d95b74;
  border: 1px solid #ffffff;
  width: 40px;
  height: 40px;
  line-height: 35px;
  z-index: 9999;
  outline: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.scroll-to-top i {
  color: #fff;
}

.scroll-to-top:hover {
  color: #232323;
  background: #fff;
}

.scroll-to-top:hover i {
  color: #232323;
}

.scroll-to-top:visited {
  color: #232323;
  text-decoration: none;
}

.butn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 14px !important;
    color: #431258 !important;
    font-weight: 600;
    text-align: center;
    padding: 8px 20px;
    text-transform: uppercase;
    z-index: 1;
    transition: all 500ms ease;
    background-color: #f5f5ee;
    letter-spacing: 1.3px;
    border: none;
    border-radius: 35px;
}

.butn:before {
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: 110%;
    left: 50%;
    background-color: #4e0463;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}

.butn:hover,
.butn:active,
.butn:focus {
  color: #fff !important;
}

.butn:hover:before,
.butn:active:before,
.butn:focus:before {
  top: -40%;
}

.butn.white:before {
  background-color: #fff;
}

.butn.white:hover,
.butn.white:active,
.butn.white:focus {
  color: var(--yello) !important;
}

.butn.secondary {
  background-color: var(--blue);
}

.butn.secondary:before {
  background-color: var(--yello);
}

.butn.md {
  padding: 12px 28px !important;
}

.butn.sm {
  padding: 8px 24px !important;
}

.list-style1 {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.list-style1 li {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 15px;
  color: white;
  display: flex;
}

.list-style1 li:last-child {
  margin-bottom: 0;
}

.list-style1 li:before {
  content: "\f30b";
  font-family: Font Awesome\5 Free;
  font-weight: 600;
  /* color: var(--yello); */
  color: white;
  font-size: 16px;
  vertical-align: middle;
  padding-right: 18px;
}

.list-style2 li {
  position: relative;
  display: block;
  text-transform: capitalize;
  padding: 15px 0;
  font-weight: 500;
  z-index: 1;
  font-size: 16px;
  transition: all 0.3s ease 0s;
  border-bottom: 1px solid #ededed;
}

.list-style2 li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.list-style2 li:after {
  position: absolute;
  content: "\f30b";
  font-family: Font Awesome\5 Free;
  font-weight: 600;
  top: 16px;
  font-size: 18px;
  right: 15px;
  color: var(--blue);
  border-radius: 50%;
  transition: all 500ms ease;
}

.list-style3 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-style3 li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.list-style3 li a {
  position: relative;
  display: block;
  text-transform: capitalize;
  color: #fff;
  padding: 18px 0;
  font-weight: 500;
  z-index: 1;
  font-size: 16px;
  transition: all 0.3s ease 0s;
}

.list-style3 li:first-child a {
  padding-top: 0;
}

.list-style3 li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.list-style3 li a:after {
  position: absolute;
  content: "\f30b";
  font-family: Font Awesome\5 Free;
  font-weight: 600;
  top: 16px;
  font-size: 18px;
  right: 15px;
  color: var(--yello);
  border-radius: 50%;
  transition: all 500ms ease;
  transform: scale(0, 0);
}

.list-style3 li.active a:after,
.list-style3 li a:hover:after {
  transform: scale(1, 1);
  color: var(--yello);
}

.list-style3 li.active a,
.list-style3 li a:hover {
  color: var(--yello);
}

.top-bar-info {
  display: inline-block;
  vertical-align: middle;
}

.top-bar-info ul {
  margin-bottom: 0;
}

.top-bar-info li {
  font-weight: 500;
  color: #fff;
  list-style-type: none;
  font-size: 14px;
  padding: 0 5px 0;
  display: inline-block;
  margin-bottom: 0;
}

.top-bar {
  display: block;
  position: relative;
  z-index: 999;
  padding: 7px 0;
}

.top-bar-info li i {
  font-size: 16px;
  color: #fff;
  margin-right: 8px;
  margin-top: 0;
  display: inline-block;
  vertical-align: text-bottom;
}

.top-social-icon {
  padding: 0;
  float: right;
  margin: 0;
}

.top-social-icon li {
  font-size: 14px;
  list-style-type: none;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0 7px;
}

.top-social-icon li:last-child {
  padding-right: 0;
}

.top-social-icon li:last-child a {
  padding-right: 0;
}

.top-social-icon li a {
  color: #fff;
  line-height: 28px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 0 3px;
}

.top-social-icon li a:hover {
  color: rgba(255, 255, 255, 0.65);
}

.navbar-nav li.current > a,
.navbar-nav li.active > a {
  color: var(--yello);
}

.attr-nav > ul > li > a.butn {
  color: #fff;
}

.navbar > ul > li.current > a:after {
  border-color: transparent var(--yello) var(--yello) transparent;
}

.menu_area-light .navbar-nav li.current > a,
.menu_area-light .navbar-nav li.active > a {
  color: var(--yello);
  /* padding-top: 45px; */
}

.menu_area-light .navbar > ul > li.current > a:after {
  border-color: transparent var(--yello) var(--yello) transparent;
}

.menu_area-light.scrollHeader .navbar-nav li.current > a {
  color: var(--yello);
}

.menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
  color: var(--yello);
}

.menu_area-light.scrollHeader .navbar-nav li.active > a {
  color: var(--yello);
}

.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent var(--yello) var(--yello) transparent;
}

@media screen and (min-width: 992px) {
  .menu_area-light .navbar-nav li.has-sub ul li a:hover {
    color: white;
  }
  .menu_area-light .navbar-nav li.has-sub ul li:hover {
    color: white;
    background-color: #210726;
  }

  .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
    border-color: white;
  }

  .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
    /* color: #ffffff; */
  }

  .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
    color: var(--yello);
  }

  .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
    border-color: transparent var(--yello) var(--yello) transparent;
  }

  .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
    border-color: transparent var(--yello) var(--yello) transparent;
  }

  .header-style2.scrollHeader .navbar-nav li.current > a {
    color: var(--yello);
  }

  .header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: var(--yello);
  }

  .header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent var(--yello) var(--yello) transparent;
  }

  .header-style2 .navbar ul ul li.active > a {
    color: var(--yello);
  }

  .header-style2 .navbar-nav li.has-sub a:hover,
  .header-style2 .navbar-nav li.has-sub a:active,
  .header-style2 .navbar-nav li.has-sub a:focus {
    color: var(--yello);
  }

  .header-style2 .navbar-nav li.current > a,
  .header-style2 .navbar-nav li.active > a {
    color: var(--yello);
  }

  .header-style2 .navbar > ul > li.has-sub > a:hover:after,
  .header-style2 .navbar > ul > li.has-sub > a:active:after,
  .header-style2 .navbar > ul > li.has-sub > a:focus:after {
    border-color: transparent var(--yello) var(--yello) transparent;
  }
}

@media screen and (max-width: 991px) {
  .header-style1 .navbar-toggler {
    background: #f0f0de;
  }
  .header-style1 .navbar-toggler:after {
    border-top: 2px solid #7b2292;
    border-bottom: 2px solid #7b2292;
  }
  .header-style1 .navbar-toggler:before {
    background: #7b2292;
  }

  .header-style1 .navbar-toggler.menu-opened:after,
  .header-style1 .navbar-toggler.menu-opened:before {
    background: #7b2292;
  }
}

.header-style2 .navbar-nav li.current > a {
  color: var(--yello);
}

.header-style2 .navbar > ul > li.current > a:after {
  border-color: transparent var(--yello) var(--yello) transparent;
}

.header-style2.scrollHeader .navbar-nav li.current > a {
  color: var(--yello);
}

.header-style2.scrollHeader .navbar-nav li.current > a:hover {
  color: var(--yello);
}

.header-style2.scrollHeader .navbar > ul > li.current > a:after {
  border-color: transparent var(--yello) var(--yello) transparent;
}

@media screen and (min-width: 992px) {
  .header-style2 .navbar ul ul li.active > a {
    color: var(--yello);
  }

  .header-style2 .butn.secondary:before {
    background: #ffffff;
  }

  .header-style2 .butn.secondary:hover,
  .header-style2 .butn.secondary:focus,
  .header-style2 .butn.secondary:active {
    color: var(--blue) !important;
  }

  .header-style2.scrollHeader .butn.secondary:before {
    background: var(--yello);
  }

  .header-style2.scrollHeader .butn.secondary:hover,
  .header-style2.scrollHeader .butn.secondary:focus,
  .header-style2.scrollHeader .butn.secondary:active {
    color: #fff !important;
  }
}

.title-sm {
  font-weight: 400;
  position: relative;
  z-index: 2;
  display: inline-block;
}

.title-sm:before {
  /* content: ''; */
  background: #ffdf90;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 4px;
  z-index: -1;
}
.title-sm.banner:before {
  bottom: 15px;
}

@media screen and (max-width: 991px) {
  .title-sm.banner:before {
    bottom: 7px;
  }

  .title-sm:before {
    display: none;
    bottom: 3px;
  }
}

.video-banner h1 {
  font-size: 4vw;
  /* letter-spacing: -0.7px; */
  white-space: normal;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  /* text-align: center */
}

.video-banner:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /* background: rgba(20, 47, 67, 0.35); */
    background: linear-gradient(-90deg, transparent, #15011a 105%);
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: 1;
}

.page-title-section {
  padding: 120px 0 120px;
}

.page-title-section.style2 {
  padding: 150px 0;
}

.page-title-section .breadcrumb ul li a {
  color: #fff;
  padding: 0 10px;
}

.page-title-section .breadcrumb ul li a:hover,
.page-title-section .breadcrumb ul li a:active,
.page-title-section .breadcrumb ul li a:focus {
  color: var(--yello);
}

.page-title-section .breadcrumb ul li:last-child a {
  color: var(--yello);
}

.breadcrumb ul li:after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: white;
  margin: 0px 1px 0 2px;
  display: inline-block;
  border-radius: 2px;
}

.breadcrumb ul li:last-child:after {
  content: none;
}

@media screen and (max-width: 1199px) {
  .page-title-section {
    padding: 170px 0 95px;
  }

  .page-title-section.style2 {
    padding: 120px 0;
  }
}

@media screen and (max-width: 991px) {
  .page-title-section {
    padding: 150px 0 100px;
  }

  .page-title-section.style2 {
    padding: 100px 0;
  }
}

@media screen and (max-width: 575px) {
  .page-title-section {
    padding: 140px 0 90px;
  }

  .page-title-section.style2 {
    padding: 80px 0;
  }
}

.about-area .second-line {
  margin-right: -170px;
}

@media screen and (max-width: 767px) {
  .about-area .second-line {
    margin-right: -50px;
  }
}

@media screen and (max-width: 575px) {
  .about-area .second-line {
    margin-right: 0px;
  }
}

.service-carousel .center .card-style1 .card-heading {
  /* margin-right: 30px;
    margin-left: -20px;
    margin-top: -28px; */
  overflow: hidden;
  z-index: 9;
  transition: all 0.3s ease;
}

/* .service-carousel .center .card-style1 .card-heading a {
    background: var(--blue) !important;
} */

.card-style1 .card-heading {
  overflow: hidden;
  z-index: 9;
  transition: all 0.3s ease;
}

.card-style1 .card-heading a {
  background: var(--blue);
  padding: 18px 30px;
  display: block;
  font-size: 17px;
}

.card-style1:hover .card-heading a,
.card-style1:active .card-heading a,
.card-style1:focus .card-heading a {
  background: var(--yello);
}

/* .card-style1 img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px
} */

.card-style1.faq-info .card-heading {
  position: absolute;
  margin: 0;
  width: 92%;
  left: -15px;
  bottom: 30px;
}

/* @media screen and (max-width: 575px) {
    .card-style1 .card-heading {
        padding: 14px 20px;
        margin-right: 15px;
        margin-left: -15px;
        margin-top: -28px
    }
} */

.card-style2 .card-body {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 0 0 / 69%);
  padding: 20px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  /* border-radius: 10px; */
}

.card-style2:hover .card-body {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
}

.card-style2 .team-icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-style2:hover .team-icon {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-style2 .card-body .team-data h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #d7926b;
  transform: translateY(16px);
}

.card-style2:hover .card-body .team-data h4 {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: none;
}

.card-style2 .card-body .team-data span {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  transform: translateY(16px);
}

.card-style2:hover .card-body .team-data span {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.08s;
  transform: none;
}

@media screen and (max-width: 1199px) {
  .card-style2 .team-icon {
    top: 35%;
  }
}

.card-style3 img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-style3 span {
  position: absolute;
  bottom: -8%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  background: var(--blue);
  display: inline-table;
  padding: 5px 15px;
  color: #fff;

  font-size: 14px;
}

.card-style3.blog-list span {
  bottom: -3%;
}

@media screen and (max-width: 767px) {
  .card-style3 span {
    bottom: -5%;
  }
}

.card-style4 .award-name {
  background: var(--blue);
  width: 80%;
  height: 200px;
  display: table;
  margin: 0 auto;
  border-radius: 10px;
}

.card-style4 .card-body {
  background-color: #ffffff;
  width: 50%;

  margin-top: -9%;
  z-index: 9;
  padding: 5px 0;
  display: table;
}

.card-style4 .card-body span {
  display: table-cell;
  letter-spacing: 2px;
  font-size: 29px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--blue);
  color: transparent;
  text-align: center;
  justify-content: center;
}

.card-style4 .year-img {
  position: absolute;
  bottom: -6%;
  right: -6%;
  opacity: 0.1;
  transform: rotate(339deg);
}

@media screen and (max-width: 1199px) {
  .card-style4 .award-name {
    width: 90%;
  }
}

.filtering {
  margin-bottom: 40px;
}

.filtering span {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  margin-right: 12px;
  display: inline-block;
  margin-bottom: 5px;
  padding: 6px 15px;
  background: transparent;
  color: #212529;
  text-transform: uppercase;
  border: 1px solid var(--yello);
  letter-spacing: 2px;
  border-radius: 5px;
}

.filtering span:last-child {
  margin: 0;
}

.filtering .active {
  color: #ffffff;
  background: var(--blue);
  border: 1px solid var(--blue);
}

@media screen and (max-width: 767px) {
  .filtering span {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 575px) {
  .filtering span {
    padding: 6px 8px;
    margin-right: 5px;
    font-size: 13px;
  }
}

.portfolio-style-01 .portfolio-image {
  position: relative;
  display: block;

  overflow: hidden;
}

.portfolio-style-01 .portfolio-image img {
  width: 100%;
  transform: scale(1.01);
  transition: all 700ms ease;
}

.portfolio-style-01:hover .portfolio-image img {
  transform: scale(1.1) rotate(1deg);
}

.portfolio-style-01 .portfolio-image .portfolio-content {
    position: absolute;
    left: 0px;
    bottom: 0;
    right: 0px;
    display: flex;
    padding: 70px 23px 23px 23px;
    /* opacity: 0; */
    background: linear-gradient(3deg, #000000, #0000009c, #00000029, transparent);
    /* margin: 0 50px; */
    z-index: 9;
    justify-content: space-between;
    align-items: center;
}

/* .portfolio-style-01:hover .portfolio-image .portfolio-content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
} */

.portfolio-style-01 .portfolio-content .link-btn a {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border: 1px solid var(--yello);

  text-align: center;
  transition: 0.5s;
}

.portfolio-style-01 .portfolio-content .link-btn a i {
  color: #212529;
  transition: 0.5s;
}

.portfolio-style-01 .portfolio-content .link-btn a:hover {
  background-color: var(--blue);
  border: 1px solid var(--blue);
}

.portfolio-style-01 .portfolio-content .link-btn a:hover i {
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .portfolio-style-01 .portfolio-image .portfolio-content {
    /* margin: 0 30px; */
    padding: 60px 8px 10px;
  }
  .portfolio-link{
        font-size: 15px;
  }
}

@media screen and (max-width: 991px) {
  .portfolio-style-02 .owl-thumbs .owl-thumb-item img {
    width: 120px;
  }
}

@media screen and (max-width: 767px) {
  .portfolio-style-02 .owl-thumbs .owl-thumb-item img {
    width: 90px;
  }
}

@media screen and (max-width: 575px) {
  .portfolio-style-02 .owl-thumbs .owl-thumb-item img {
    width: 48px;
  }
}

.video_btn {
  position: relative;
  height: 80px;
  width: 80px;
  background: var(--yello);
  text-align: center;
  display: inline-block;
  line-height: 80px;
  color: #fff;
  border-radius: 50%;
  transition-duration: 0s;
  -ms-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
}

.video_btn:hover i,
.video_btn:focus i {
  color: #fff;
}

.video_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}

.video_btn:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 95px;
  width: 95px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  opacity: 0.3;
  animation: pulse-border 1500ms ease-out infinite;
}

.video_btn.small {
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.video_btn.small:after {
  height: 50px;
  width: 50px;
}

.video_btn.small:before {
  height: 65px;
  width: 65px;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@media screen and (max-width: 1199px) {
  .video_btn {
    height: 75px;
    width: 75px;
    line-height: 75px;
  }

  .video_btn:after {
    height: 75px;
    width: 75px;
  }

  .video_btn:before {
    height: 90px;
    width: 90px;
  }
}

@media screen and (max-width: 991px) {
  .video_btn {
    height: 70px;
    width: 70px;
    line-height: 70px;
  }

  .video_btn:after {
    height: 70px;
    width: 70px;
  }

  .video_btn:before {
    height: 85px;
    width: 85px;
  }

  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    }

    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
    }
  }
}

@media screen and (max-width: 767px) {
  .video_btn {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }

  .video_btn:after {
    height: 60px;
    width: 60px;
  }

  .video_btn:before {
    height: 75px;
    width: 75px;
  }
}

.pagination {
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.pagination ul {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
}

.pagination li {
  display: inline;
}

.pagination a {
  float: left;
  font-size: 16px;
  padding: 0 18px;
  line-height: 40px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #ededed;
  background: #fff;
  color: #575a7b;
  border-radius: 5px;
}

.pagination a:hover {
  background-color: var(--yello);
  border: 1px solid var(--yello);
  color: #ffffff;
}

.pagination .active a {
  background-color: var(--yello);
  color: #ffffff;
  border: 1px solid var(--yello);
  cursor: default;
}

@media screen and (max-width: 575px) {
  .pagination a {
    padding: 0 16px;
    font-size: 14px;
  }
}

.owl-theme .owl-nav.disabled {
  margin-top: 40px !important;
}

.owl-theme .owl-dots {
  margin-top: 40px !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 3px;
  background-color: white;

  transition: width 0.35s ease-in-out;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--yello);
  width: 30px;
}

.owl-carousel .owl-item img {
  display: inline-block;
  /* width: auto; */
}

.dots-white.owl-theme .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
}

.dots-white.owl-theme .owl-dots .owl-dot:hover span,
.dots-white.owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
}

.portfolio-details-carousel2.owl-theme .owl-nav [class*="owl-"] {
  margin: 0;
  transition: all 500ms ease;
  border-radius: unset;
}

.portfolio-details-carousel2.owl-carousel .owl-nav button.owl-prev,
.portfolio-details-carousel2.owl-carousel .owl-nav button.owl-next {
  width: 60px;
  height: 60px;
  background: #1158e7;
  color: #fff;
  position: absolute;
  top: 38%;
}

.portfolio-details-carousel2.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #fcaf17;
}

.portfolio-details-carousel2.owl-carousel .owl-nav button.owl-prev {
  left: 0;
}

.portfolio-details-carousel2.owl-carousel .owl-nav button.owl-next {
  right: 0;
}

.accordion .card {
  background: transparent;
  box-shadow: none;
  margin-bottom: 20px;
  border: 1px solid rgba(217, 145, 106, 0.2);
  border-radius: 10px;
}

.accordion .card:last-child {
  margin-bottom: 0;
}

.accordion .card-header {
  border: 0;
  padding: 0;
  background: none;
}

.accordion .accordion-collapse {
  border: none;
}

.accordion .accordion-button {
  border-bottom: none;
  color: #282b2d;
  font-size: 18px;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  white-space: normal;
  box-shadow: none;
  line-height: 28px;
  font-weight: 500;
  padding: 15px 30px;
  text-decoration: none;
  background: none;
  border-top: 0;
  border-bottom: 0;
  border-radius: 10px;
}

.accordion .accordion-button:hover {
  text-decoration: none;
}

.accordion .accordion-button.collapsed {
  background: transparent;
  color: #282b2d;
  border-top: 0;
}

.accordion .accordion-button.collapsed:after {
    right: 20px;
    }


.accordion .accordion-button:after {
  background: none;
  border: none;
  border-radius: 0;
  content: "\2d";
  font-family: Font Awesome\5 Free;
  font-weight: 600;
  right: 40px;
  left: inherit;
  font-size: 14px;
  height: 0;
  line-height: 0;
  transform: none;
  width: 0;
  top: 28px;
  position: absolute;
  color: var(--yello);
  text-align: center;
  padding-left: 2px;
  letter-spacing: -2px;
}

.accordion .card-body {
  font-size: 16px;
  padding: 0 30px 20px 30px;
  line-height: 28px;
}

@media screen and (max-width: 1199px) {
  .accordion .accordion-button {
    padding: 15px 36px 15px 30px;
  }

  .accordion .accordion-button:after,
  .accordion .accordion-button.collapsed:after {
    right: 30px;
  }
}

@media screen and (max-width: 991px) {
  .accordion .accordion-button {
    font-size: 16px;
    padding: 15px 20px;
  }

  .accordion .card-body {
    padding: 0 20px 20px 20px;
  }
}

@media screen and (max-width: 575px) {
  .accordion .accordion-button {
    padding: 15px 40px 15px 20px;
  }
}

ul.resp-tabs-list {
  margin: 0px;
  padding: 0px;
  padding-left: 0;
}

.resp-tabs-list li {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  padding: 8px 15px;
  margin: 0 4px 0 0;
  list-style: none;
  cursor: pointer;
  min-width: 180px;
}

.resp-tabs-list li:last-child {
  margin-right: 0;
}

.resp-tabs-list li i {
  font-size: 28px;
  margin-bottom: 8px;
  color: #6f6f6f;
}

.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left;
}

.resp-tab-content {
  display: none;
  padding: 0;
}

.resp-tabs-list li.resp-tab-active i {
  color: #fff;
}

.resp-content-active,
.resp-accordion-active {
  display: block;
}

.resp-tab-content {
  float: left;
  width: 100%;
}

h2.resp-accordion {
  background: #fff !important;
  cursor: pointer;
  display: none;
  font-size: 16px;
  border: 1px solid #ededed;
  border-top: 0px solid #ededed;
  margin: 0px;
  padding: 15px 21px;
  float: left;
  width: 100%;
}

h2.resp-tab-active {
  border-bottom: 0px solid #ededed !important;
  background: var(--blue) !important;
  color: #fff;
}

h2.resp-tab-title:last-child {
  border-bottom: 12px solid #ededed !important;
  background: #00baee;
}

.resp-arrow {
  border-color: transparent #232323 #232323 transparent;
  border-style: solid;
  border-width: 0 1px 1px 0;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 4px;
}

h2.resp-tab-active span.resp-arrow {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 1px 0 0 1px;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 7px;
}

@media screen and (max-width: 767px) {
  ul.resp-tabs-list {
    display: none !important;
  }

  h2.resp-accordion {
    display: block;
  }

  h2.resp-accordion i {
    margin-right: 8px;
    font-size: 18px;
  }

  .resp-vtabs .resp-tab-content {
    border: 1px solid #c1c1c1;
  }

  .resp-vtabs .resp-tabs-container {
    border: none !important;
    float: none;
    width: 100%;
    min-height: 100px;
    clear: none;
  }

  .resp-accordion-closed {
    display: none !important;
  }

  .resp-vtabs .resp-tab-content:last-child {
    border-bottom: 1px solid #ededed !important;
  }

  .resp-tab-content {
    background-color: #fff;
  }

  h2.resp-accordion:first-child {
    border-top: 1px solid #ededed;
  }
}

.resp-vtabs ul.resp-tabs-list {
  float: left;
  width: 15%;
}

.resp-vtabs .resp-tabs-list li {
  display: block;
  padding: 0 15px 8px 0 !important;
  margin: 0 0 4px;
  cursor: pointer;
  float: none;
}

.resp-vtabs .resp-tabs-container {
  padding: 0px;
  background-color: transparent;
  float: left;
  width: 85%;
  min-height: 250px;
  clear: none;
}

.resp-vtabs .resp-tab-content {
  border: none;
  word-wrap: break-word;
}

.resp-vtabs .resp-tabs-list li:last-child {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.resp-arrow {
  border-color: transparent #282b2d #282b2d transparent;
  border-style: solid;
  border-width: 0 1px 1px 0;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 4px;
}

h2.resp-tab-active span.resp-arrow {
  border-color: #fff transparent transparent #fff;
  border-style: solid;
  border-width: 1px 0 0 1px;
  float: right;
  display: block;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
  margin-top: 7px;
}

@media screen and (max-width: 1399px) {
  .resp-vtabs .resp-tabs-container {
    float: right;
    width: 84%;
  }
}

@media screen and (max-width: 1199px) {
  .resp-vtabs .resp-tabs-list li {
    padding: 0 39px 8px 0 !important;
  }

  .resp-vtabs .resp-tabs-container {
    width: 83%;
  }
}

.tab-style1 .resp-tab-content {
  border: none;
  border-top-color: #e4e4e4;
  padding: 30px 0 0 0 !important;
  /* margin-top: 20px; */
  background: #1730540f;
}

.tab-style1 .resp-tab-content h4 {
  font-weight: 400;
  font-size: 34px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 45px;
}

.tab-style1 .resp-tabs-list li {
  position: relative;
  font-size: 16px;
  text-align: left;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 600;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  display: inline-block;
  padding: 0 0 4px 0px;
  margin-right: 21px;
  text-align: center;
  list-style: none;
  cursor: pointer;
  min-width: 130px;
  flex: 1 1 auto;
  background: none !important;
  margin-bottom: 10px;
}

.tab-style1 .resp-tabs-list li:last-child {
  margin-right: 0;
}

.tab-style1 .resp-tabs-list li.resp-tab-active {
  color: var(--blue);
}

.tab-style1 .resp-tabs-list li.resp-tab-active:after {
  content: "";
  background: #daa108;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
  margin: 0 auto;
  right: 0;
}

@media only screen and (max-width: 991px) {
  .tab-style1 .resp-tabs-list li {
    padding: 0 15px 15px 15px;
  }
}

@media screen and (max-width: 767px) {
  .tab-style1 .resp-tab-content {
    border: 1px solid #ededed;
    padding: 20px !important;
  }
}

.image-wrappers {
  /* margin-top: -5%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px */
  border-radius: 10px;
}

.history-wrapper .history-box-right {
  margin-left: -30%;
}

.history-wrapper .history-box-left {
  margin-right: -30%;
}

.history-wrapper .history-date {
  font-size: 60px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--yello);
  color: transparent;
}

@media screen and (max-width: 991px) {
  .history-wrapper .history-box-right,
  .history-wrapper .history-box-left {
    margin-top: -20%;
    margin-left: 55px;
    margin-right: 55px;
  }
}

@media screen and (max-width: 767px) {
  .history-wrapper .history-box-right,
  .history-wrapper .history-box-left {
    margin-top: -20%;
    margin-left: 15px;
    margin-right: 15px;
  }

  .history-wrapper .history-date {
    line-height: 1.5;
    font-size: 45px;
  }
}

@media screen and (max-width: 575px) {
  .history-wrapper .history-date {
    font-size: 35px;
  }
}

.pricing-wrapper .pricing-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--blue);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.pricing-wrapper .pricing-tag {
  background: #ffffff;
  padding: 18px 15px 18px 40px;

  margin-right: 50px;
  margin-left: -60px;
  margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .pricing-wrapper .pricing-tag {
    margin-left: -50px;
  }
}

@media screen and (max-width: 575px) {
  .pricing-wrapper .pricing-tag {
    margin-right: 40px;
    padding: 15px 15px 15px 40px;
  }
}

.client-box .client-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
  max-width: 225px;
  margin: 0 auto;
  border-radius: inherit;
}

.client-box .client-wrapper img {
  border-radius: inherit;
  transition: 0.3s;
}

.client-box .client-wrapper .hover-img {
  display: block;
  transform: translateY(-100%);
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  visibility: hidden;
}

.client-box:hover .client-wrapper .hover-img {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}

.client-box:hover .client-wrapper .hover-img + .main-img {
  transform: translateY(100%);
}

.team-detail-wrapper .team-personal-data {
  margin-left: -30%;
}

.team-detail-wrapper .team-text-area {
  margin-top: -8%;
}

.team-info li {
  font-size: 15px;
  margin-bottom: 15px;
}

.team-info li:last-child {
  margin-bottom: 0;
}

.team-info li span {
  margin-right: 10px;
  font-weight: 700;
}

@media screen and (max-width: 1399px) {
  .team-detail-wrapper .team-text-area {
    margin-top: -12%;
  }
}

@media screen and (max-width: 991px) {
  .team-detail-wrapper .team-personal-data {
    margin-left: 0;
  }
}

.faq-block:before {
  content: "";
  position: absolute;
  width: 65%;
  height: 100%;
  background-color: rgba(242, 242, 242, 0.5);
  top: 0;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .faq-block:before {
    width: 100%;
  }
}

.contact-data {
  margin-top: -60%;
}

.contact-info .info-box {
  margin-bottom: -15%;
}

@media screen and (max-width: 767px) {
  .contact-info .info-box {
    margin-bottom: -8%;
  }
}

.service-details-sidebar .widget {
  position: relative;
  margin-bottom: 30px;
  background-color: #142f43;
  border: 1px solid #142f43;
  padding: 35px 30px;
  border-radius: 10px;
}

.service-details-sidebar .widget:last-child {
  margin-bottom: 0;
}

.service-details-sidebar .widget-brochure ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-details-sidebar .widget-brochure li {
  margin-bottom: 15px;
}

.service-details-sidebar .widget-brochure li a {
  position: relative;
  display: block;
  padding: 15px 15px 15px 65px;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
}

.service-details-sidebar .widget-brochure li a:hover {
  color: var(--yello);
}

.service-details-sidebar .widget-brochure li a i {
  position: absolute;
  left: 0px;
  top: 8px;
  width: 50px;
  height: 45px;
  line-height: 46px;
  text-align: center;
  font-size: 20px;
  background: var(--blue);

  color: #ffffff;
}

.service-details-sidebar .widget-brochure li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .service-details-sidebar .widget {
    padding: 25px;
  }
}

.service-details-sidebar .side-bar h6 {
  color: #fff;
  position: relative;
  display: inline-block;
  z-index: 1;
  font-size: 1.5rem;
}

.service-details-sidebar .side-bar h6:before {
  content: "";
  background: var(--yello);
  height: 5px;
  width: 100%;
  position: absolute;
  bottom: 6px;
  z-index: -1;
}

.pricing-info {
  border-bottom: 1px solid #ededed;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-info:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.countdown {
  padding: 0;
}

.countdown li {
  background: var(--blue);
  display: inline-block;
  text-align: center;
  min-width: 130px;
  padding: 25px;
  border: 1px solid #ededed;
  margin: 0 5px;
  border-radius: 10px;
}

.countdown li span {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  line-height: normal;
  position: relative;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
  color: transparent;
}

.countdown li span:before {
  content: "";
  height: 1px;
  position: absolute;
  width: 100%;
}

.countdown li p.timeRefDays,
.countdown li p.timeRefHours,
.countdown li p.timeRefMinutes,
.countdown li p.timeRefSeconds {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}

.coming-soon:before {
  content: "";
  position: absolute;
  width: 65%;
  height: 100%;
  background-image: url("../img/bg/bg-05.jpg");
  top: 0;
  right: 0;
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1199px) {
  .countdown li {
    min-width: 115px;
    padding: 20px;
  }

  .countdown li span {
    font-size: 35px;
  }
}

@media screen and (max-width: 767px) {
  .countdown li {
    min-width: 98px;
    padding: 15px;
    margin: 10px 5px;
  }

  .countdown li span {
    font-size: 30px;
  }

  .coming-soon:before {
    width: 100%;
  }
}

.error-content {
  text-align: center;
}

.error-box {
  background-color: rgba(58, 99, 81, 0.15);
  height: 230px;
  max-width: 230px;
  width: 100%;
  margin: 0 auto;
  display: table;

  text-shadow: 10px 10px 0 rgba(58, 99, 81, 0.2);
}

.error-box h4 {
  font-size: 170px;
  letter-spacing: 2px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--blue);
  color: transparent;
  text-align: center;
  justify-content: center;
}

.error-box.center {
  text-shadow: 10px 10px 0 rgba(255, 255, 255, 0.2);
}

.error-box.center h4 {
  -webkit-text-stroke-color: #ffffff;
}

@media screen and (max-width: 1399px) {
  .error-box {
    height: 204px;
  }
}

@media screen and (max-width: 767px) {
  .error-box {
    height: 156px;
  }

  .error-box h4 {
    font-size: 130px;
  }
}

@media screen and (max-width: 575px) {
  .error-box {
    height: 82px;
  }

  .error-box h4 {
    font-size: 70px;
  }
}

.modal-backdrop {
  z-index: 99999;
}

.modal {
  z-index: 999999;
}

.icon-gallery .d-table {
  margin-top: 30px;
}

.icon-gallery .d-table-cell {
  width: 125px;
  height: 125px;
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 0, 0, 0.075);
  vertical-align: middle;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  padding: 10px;
  background: #fff;
}

.icon-gallery i {
  display: block;
  margin-bottom: 15px;
  font-size: 28px;
  color: #20476f;
}

pre[class*="language-"] {
  max-height: 45vh;
  height: 100%;
  margin: 35px 0 15px 0;
  padding-top: 0;
}

.html-code {
  background-color: #fbfbfb;
  position: relative;
  box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
  padding: 30px;

  border: 1px solid #ededed;
}

.html-code:before {
  color: #c8dfab;
  content: "•••";
  font-size: 30px;
  left: 24px;
  letter-spacing: 4px;
  line-height: 12px;
  position: absolute;
  top: 24px;
}

.copy-element {
  position: absolute;
  top: 0;
  right: 85px;
  transition: opacity 0.3s ease-in-out;
}

.source-element {
  position: absolute;
  top: 0;
  right: 0;
  transition: opacity 0.3s ease-in-out;
}

.html-code .copy-element {
  top: 15px;
  right: 30px;
}

.html-code:hover .copy-element,
.html-code:hover .source-element {
  opacity: 1;
}

.box-hover:hover .copy-element,
.box-hover:hover .source-element {
  opacity: 1;
}

.copy-element > a,
.source-element > a {
  background: #dde1e6;
  color: #777 !important;
  display: inline-block;
  padding: 5px 15px;
  font-size: 14px;
  text-transform: capitalize;
  cursor: pointer !important;
  font-weight: 600;
}

.copy-element > a:hover,
.source-element > a:hover {
  background: var(--yello);
  color: #fff !important;
}

.copy-clipboard {
  cursor: pointer;
  padding: 5px 15px;
}

.white-popup-block {
  background-color: #fbfbfb;
  position: relative;
  max-width: 650px;
  box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
  padding: 60px 30px 30px 30px;

  margin: 40px auto;
  border: 1px solid #ededed;
}

.white-popup-block.popup-copy.mfp-hide {
  display: block !important;
  height: 0;
  position: absolute;
  z-index: -1;
  padding: 0;
  opacity: 0;
  margin: 0;
}

.white-popup-block:before {
  color: rgba(3, 169, 245, 0.2);
  content: "•••";
  font-size: 30px;
  left: 24px;
  letter-spacing: 4px;
  line-height: 12px;
  position: absolute;
  top: 24px;
}

.white-popup-block:hover .copy-element {
  opacity: 1;
}

.white-popup-block .copy-element {
  top: 45px;
  right: 30px;
}

.box-hover {
  position: relative;
}

.box-hover .container {
  position: relative;
}

/* .inner-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    margin-bottom: 35px;
    padding-bottom: 20px
} */
.inner-title {
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.09); */
  margin-bottom: 9px;
  padding-bottom: 23px;
}

@media screen and (max-width: 767px) {
  .elements-block .inner-title {
    margin-bottom: 65px;
  }

  .copy-element,
  .source-element {
    top: 65px;
  }
}

.blog-sidebar .widget {
  position: relative;
  margin-bottom: 30px;
  background-color: #142f43;
  padding: 1.9rem;
  border-radius: 10px;
}

.blog-sidebar .widget:last-child {
  margin-bottom: 0;
}

.blog-sidebar .side-bar h6 {
  color: #fff;
  position: relative;
  display: inline-block;
  z-index: 1;
  font-size: 1.5rem;
}

.blog-sidebar .side-bar h6:before {
  content: "";
  background: var(--yello);
  height: 5px;
  width: 100%;
  position: absolute;
  bottom: 6px;
  z-index: -1;
}

.side-bar h6 {
  position: relative;
  font-size: 1.5rem;
}

.search-bar {
  position: relative;
}

.blog-sidebar .widget .search-bar input[type="search"] {
  display: block;
  width: 100%;
  padding: 10px 40px 10px 25px;
  font-size: 15px;
  color: #4b4342;
  border: 1px solid #ededed;
  background: none;
  background: #ffffff;
  margin-bottom: 0;
  border-radius: 5px;
}

.blog-sidebar .widget .search-bar .btn-newsletter {
  position: absolute;
  color: var(--yello);
  right: 18px;
  top: 10px;
  padding: 0px;
  font-size: 18px;
  z-index: 3;
  outline: none;
}

.blog-sidebar .widget-reviews .client-carousel .seprator {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.blog-sidebar .widget-reviews .client-carousel .seprator:before {
  position: absolute;
  content: "";
  left: -70px;
  top: 12px;
  background: #ededed;
  width: 50px;
  height: 2px;
}

.blog-sidebar .widget-reviews .client-carousel .seprator:after {
  position: absolute;
  content: "";
  right: -70px;
  top: 12px;
  background: #ededed;
  width: 50px;
  height: 2px;
}

.blog-sidebar .widget.widget-post .widget-body h6 a {
  color: #fff;
}

.blog-sidebar .widget.widget-post .widget-body h6 a:hover {
  color: var(--yello);
}

.blog-tags {
  margin: 0;
  padding: 0;
}

.blog-tags li {
  display: inline-block;
}

.blog-tags li a {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  background-color: transparent;
  margin: 5px 5px 5px 0;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 5px;
}

.blog-tags li a:hover {
  background: var(--yello);
  color: #ffffff !important;
  border: 1px solid var(--yello);
}

.blog-tags.tag-list li a {
  border: 1px solid rgba(33, 37, 41, 0.1);
  color: #575a7b;
}

.blog-detail .separator-line {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ededed;
  text-align: left;
}

.process-wrapper {
  /* width: 167px; */
  height: 167px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  margin: 0 auto;
  margin-bottom: 45px;
  border-radius: 10px;
}

.process-wrapper .process-count {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  right: 54px;
  top: 30px;
  z-index: -1;
}

.process-wrapper .process-count span {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}

.process-wrapper .process-icon {
  width: 100px;
  height: 100px;
  background: var(--yello);
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: -25px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-50%);
}

@media screen and (max-width: 1199px) {
  .process-wrapper {
    width: 150px;
    height: 150px;
  }

  .process-wrapper .process-icon {
    width: 70px;
    height: 70px;
    left: 50%;
  }

  .process-wrapper .process-count {
    right: 50px;
  }
}

.blog-wrapper:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: var(--yello);
  top: 0;
  right: 0;
}

.call-to-action .video-img {
  margin-bottom: -9%;
}

@media screen and (max-width: 1199px) {
  .call-to-action .video-img {
    margin-bottom: -12%;
  }
}

.gallery-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--yello);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.4s;
  border-radius: 10px;
}

.gallery-wrapper .gallery-icon {
  opacity: 0;
  transition: 0.5s;
}

.gallery-wrapper:hover:before,
.gallery-wrapper:hover .gallery-icon {
  opacity: 1;
}

.social-icon-style {
  margin: 0;
  display: inline-block;
  padding: 0;
  list-style: none;
}

.social-icon-style li {
  padding-right: 15px;
  display: inline-block;
  text-align: center;
}

.social-icon-style li a {
  color: #ffffff;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: var(--yello);
  text-align: center;
  display: block;
  color: #ffffff;
  font-size: 16px;
  overflow: hidden;
  border-radius: 5px;
}

.social-icon-style.white li a {
  background-color: #fff;
  color: var(--yello);
}

.social-icon-style.white li a:hover,
.social-icon-style.white li a:active,
.social-icon-style.white li a:focus {
  color: #ffffff;
  background-color: var(--blue);
}

.social-icon-style li a:hover,
.social-icon-style li a:active,
.social-icon-style li a:focus {
  background-color: var(--blue);
}

.social-icon-style li:last-child {
  padding-right: 0;
}

.social-icon-style li a:hover i,
.social-icon-style li a:active i,
.social-icon-style li a:focus i {
  animation: bottomtotop 0.6s linear forwards;
}

@media screen and (max-width: 575px) {
  .social-icon-style li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
  }
}

.page-navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: rgba(58, 99, 81, 0.3);
  border-radius: 10px;
}

.prev-page,
.next-page {
  position: relative;
  width: 50%;
  max-width: 350px;
  margin: 10px;
}

.prev-page:before,
.next-page:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
  transform: scale(1.04, 1.12);
  transition: 0.3s ease-in-out;
  pointer-events: none;
  border-radius: 5px;
}

.prev-page .page-info > a,
.next-page .page-info > a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px 20px;
  min-height: 110px;
  transition: 0.8s;
}

.prev-page .page-info .image-prev,
.prev-page .page-info .image-next {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  transition: inherit;
  border-radius: 0;
  overflow: hidden;
}

.next-page .page-info .image-prev,
.next-page .page-info .image-next {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  transition: inherit;
  border-radius: 0;
  overflow: hidden;
}

.prev-page .page-info .prev-title,
.prev-page .page-info .next-title {
  display: inline-block;
  position: relative;
  max-width: 220px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  word-wrap: break-word;
  vertical-align: middle;
  transition: 0.45s;
}

.next-page .page-info .prev-title,
.next-page .page-info .next-title {
  display: inline-block;
  position: relative;
  max-width: 220px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  word-wrap: break-word;
  vertical-align: middle;
  transition: 0.45s;
}

.prev-page .page-info .prev-title:empty,
.prev-page .page-info .next-title:empty {
  display: none;
}

.next-page .page-info .prev-title:empty,
.next-page .page-info .next-title:empty {
  display: none;
}

.prev-page:hover:before,
.next-page:hover:before {
  background-color: white;
  transform: scale(1);
  box-shadow: 0px 5px 19px 2px rgba(0, 0, 0, 0.05);
}

.prev-page a {
  justify-content: flex-start;
  text-align: left;
}

.prev-page a:hover .image-prev:after {
  visibility: visible;
  opacity: 1;
}

.prev-page a:hover .image-prev:before {
  visibility: visible;
  opacity: 1;
  margin-left: 0;
}

.prev-page .image-prev {
  margin-right: 20px;
}

.prev-page .image-prev:after {
  background-color: var(--yello);
}

.next-page .image-next:after {
  background-color: var(--yello);
}

.prev-page .image-prev:before {
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin-left: 20px;
  content: "\e64a";
  font-family: "themify";
  font-size: 21px;
  line-height: 70px;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

.prev-page .image-prev:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
}

.next-page {
  margin-left: auto;
}

.next-page a {
  justify-content: flex-end;
  text-align: right;
}

.next-page a:hover .image-next:after {
  visibility: visible;
  opacity: 1;
}

.next-page a:hover .image-next:before {
  visibility: visible;
  opacity: 1;
  margin-right: 0;
}

.next-page .image-next {
  margin-left: 20px;
}

.next-page .image-next:before {
  display: block;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin-right: 20px;
  content: "\e64a";
  font-family: "themify";
  font-size: 21px;
  line-height: 70px;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  transform: scaleX(-1);
}

.next-page .image-next:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
}

.next-page .next-title {
  text-align: right;
}

.prev-link-page-info > span,
.next-link-page-info > span {
  display: block;
}

.prev-link-page-info .date-details,
.next-link-page-info .date-details {
  font-size: 14px;
  letter-spacing: 0.025em;
  line-height: 20px;
  margin-bottom: -2px;
}

.prev-link-page-info .date-details > div,
.prev-link-page-info .date-details > span {
  line-height: inherit;
  transition: 0.45s;
  font-weight: 500;
}

.next-link-page-info .date-details > div,
.next-link-page-info .date-details > span {
  line-height: inherit;
  transition: 0.45s;
  font-weight: 500;
}

.prev-link-page-info .date-details:only-child,
.next-link-page-info .date-details:only-child {
  margin-top: 0;
}

@media (max-width: 767px) {
  .prev-page,
  .next-page {
    width: calc(100% - 20px);
    max-width: unset;
  }

  .prev-page + .next-page {
    margin-top: 0;
  }

  .page-navigation {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .prev-page .page-info > a,
  .next-page .page-info > a {
    padding: 10px;
  }

  .prev-page .page-info .prev-title,
  .prev-page .page-info .next-title {
    max-width: 168px;
  }

  .next-page .page-info .prev-title,
  .next-page .page-info .next-title {
    max-width: 168px;
  }
}

.lg-backdrop {
  z-index: 99999;
}

.lg-outer {
  z-index: 999999;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: var(--yello);
}

.lg-progress-bar .lg-progress {
  background-color: var(--yello);
}

.lg-backdrop.in {
  opacity: 0.85;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  margin-bottom: 0.5rem;
}

.form-control {
  border-color: #ededed;
  min-height: 50px;
  border-radius: 5px;
}

.form-control:focus {
  border-color: var(--yello);
}

.form-check-input:checked {
  border-color: var(--yello);
  background-color: var(--yello);
}

.form-check-input:focus {
  box-shadow: none;
}

.quform-input {
  position: relative;
}

.quform-input .quform-errors-wrap {
  position: absolute;
  right: 8px;
  top: 0;
  line-height: normal;
  z-index: 1;
}

.quform-element > label {
  font-weight: normal;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #6a747b;
  font-size: 14px;
}

.quform-element > label .quform-required {
  color: #cc0101;
  font-size: 10px;
}

.quform-inner input {
  width: 100%;
}

.quform-elements .quform-element textarea {
  margin-bottom: 0;
  padding: 8px 15px;
  vertical-align: top;
}

.quform-elements .quform-element select {
  margin-bottom: 0;
  padding: 8px 35px 8px 15px;
}

.quform-errors {
  padding: 0;
  margin: 0;
  line-height: normal;
}

.quform-errors > .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}

.quform-outer-no-js .quform-error {
  padding: 0;
  background: none;
  border: none;
  float: none;
  color: #f5543f;
  font-size: 11px;
  line-height: normal;
  letter-spacing: normal;
}

.quform-outer-no-js .quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.quform-has-error input,
.quform-has-error textarea,
.quform-has-error select,
.quform-has-error input[type="file"],
.quform-has-error .custom-file-label {
  border-color: #f5543f;
}

.quform-success-message {
  padding: 0.75rem 1.25rem 0.75rem 3rem;
}

.quform-submit-inner {
  float: none;
}

.quform-loading-wrap {
  float: none;
}

.quform-loading-wrap .quform-loading {
  display: inline-block;
}

.quform-element {
  margin-bottom: 1rem;
}

.light-validation .quform-errors > .quform-error {
  color: #fff;
}

.newsletter-form .quform-elements {
  position: relative;
}

.newsletter-form .quform-submit-inner {
  position: absolute;
  right: 9px;
  top: 11px;
  width: auto;
  height: 45px;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.newsletter-form .quform-submit-inner .btn {
  background-color: var(--blue);
}

.newsletter-form .quform-submit-inner .btn:hover,
.newsletter-form .quform-submit-inner .btn:active,
.newsletter-form .quform-submit-inner .btn:focus {
  background-color: var(--yello);
}

.newsletter-form .quform-loading-wrap {
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 0;
}

.newsletter-form input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 65px;

  padding: 0.5rem 4rem 0.5rem 2rem;
}

.newsletter-form .quform-has-error input,
.newsletter-form .quform-has-error textarea,
.newsletter-form .quform-has-error select {
  border-color: #f5543f;
}

.newsletter-form .quform-input .quform-errors-wrap {
  right: 15px;
}

.newsletter-form i {
  font-size: 1.2rem;
  line-height: 2rem;
}

footer {
  padding: 80px 0 0;
}

@media screen and (max-width: 767px) {
  footer {
    padding-top: 60px;
  }
}

.footer-logo {
  max-width: 230px;
  width: 100%;
  display: inline-block;
}

.footer-logo > a {
  display: inline-block;
}

.footer-bar {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer-bar {
    margin-top: 60px;
  }
}

.footer-bg {
  background-image: url(../img/bg/bg-03.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
}

.footer-bg .footer-overlay {
  opacity: 0.96;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.footer-title {
  font-size: 18px;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  padding: 0px 8px 8px 0px;
  border-style: solid;
  border-width: 0px 2px 2px 0px;
  border-color: rgba(205, 162, 116, 0.5);
}

.footer-icon:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(205, 162, 116, 0.8);
  opacity: 0;
  transition: 0.5s all ease-in-out;
}

.footer-icon:hover:before {
  opacity: 1;
}

.footer-icon .hover-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  height: 100%;
  opacity: 0;
  transition: 0.5s all ease-in-out;
}

.footer-icon:hover .hover-icon {
  opacity: 1;
}

.footer-list li a {
  color: #fff;
}

.footer-list li a:hover {
  /* color: var(--yello); */
}

/* .conatct-info {
    margin-top: -70%
} */
.conatct-info p {
  /* transition: scale 200ms ease-in-out; */
  cursor: pointer;
}

.conatct-info p:hover {
  color: #daa108 !important;
}

@media screen and (max-width: 1199px) {
  .conatct-info {
    margin-top: 0;
  }
}

.footer-social-icon {
  margin-left: 0;
  display: block;
  padding-left: 0;
  list-style: none;
}

.footer-social-icon li {
  padding-right: 5px;
  display: inline-block;
  text-align: center;
}

.footer-social-icon li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: #d95b74;
  text-align: center;
  display: block;
  color: #ffffff;
  font-size: 16px;
  overflow: hidden;
  /* border-radius: 5px; */
  border: 1px solid white;
}
.footer-social-icon li a:hover {
  background-color: var(--yello);
  color: #fff;
}

.footer-social-icon li:last-child {
  padding-right: 0;
}

.footer-social-icon li a:hover i {
  animation: bottomtotop 0.6s linear forwards;
}

@keyframes bottomtotop {
  49% {
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

.footer-menu {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.footer-menu li {
  display: inline-block;
}

.footer-menu li:after {
  content: "|";
  margin: 0 15px;
  top: 0;
  margin-top: -2px;
  color: rgba(255, 255, 255, 0.5);
  height: auto;
  width: auto;
}

.footer-menu li a {
  color: #ffffff;
}

.footer-menu li.last:after {
  content: none;
}

@media screen and (max-width: 575px) {
  .footer-menu li:after {
    margin: 0 12px;
  }
}

.whatsapp {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  position: fixed;
  top: 150px;
  right: -74px;
  background: linear-gradient(45deg, #25d366, #128c7e, #075e54);
  color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.instagram {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  position: fixed;
  top: 276px;
  right: -78px;
  background: linear-gradient(
    45deg,
    #fcaf45,
    #f56040,
    #e1306c,
    #c13584,
    #833ab4,
    #5b51d8,
    #405de6
  );
  color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
.whatsapp i {
  font-size: 22px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: #fff;
}

.facebook i {
  font-size: 20px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: #fff;
}

.quote i {
  font-size: 19px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: #fff;
}
.instagram i {
  font-size: 22px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  color: #fff;
}

.whatsapp:hover,
.facebook:hover,
.instagram:hover,
.quote:hover {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  right: 0px;
}

.whatsapp span,
.facebook span,
.instagram span,
.quote span {
  padding: 0 9px;
  position: relative;
  top: 0;
  opacity: 0;
}

.whatsapp:hover span,
.instagram:hover span,
.facebook:hover span,
.quote:hover span {
  opacity: 1;
  color: #fff;
}

.whatsapp:hover i,
.instagram:hover i,
.facebook:hover i {
  color: #fff;
}

.whatsapp a,
.facebook a,
.instagram a,
.quote a {
  color: #232323;
  font-size: 10px;
  text-transform: uppercase;
  padding: 10px;
  display: block;
  text-decoration: none;
  font-weight: 500;
}

.facebook {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  position: fixed;
  top: 193px;
  right: -74px;
  background: #356cca;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
.quote {
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  position: fixed;
  top: 235px;
  right: -76px;
  background: var(--yello);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}
.text-justify {
  text-align: justify;
}

.modal-dialog {
  max-width: 925px !important;
}
.navbar-nav li.active {
  position: relative;
}
.navbar-nav li.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--yello);
}

.package-small {
    width: 100%;
    padding: 19px 5px;
    box-shadow: 0 0 5px #ebe9e99e;
    background-color: #fff;
    /* border: 1px solid #98989826; */
    margin: 5px;
    background: radial-gradient(#431258, #350d46);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(5px);
    /* background-size: 10px 10px; */
    /* background: radial-gradient(#431258, #2e093d); */
    border: 2px solid #5e1f79;
}
.package-small * {
    text-align: center;
    color: white;
}

.butn {
  border: 1px solid #5b2865;
}
.butn:hover {
  border: 1px solid #5b2865;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  outline: none;
  margin: 10px 0;
}

/* Track */
input[type="range"]::-webkit-slider-runnable-track {
  background: #f5b410;
  height: 0.5rem;
}
input[type="range"]::-moz-range-track {
  background: #f5b410;
  height: 0.5rem;
}

/* Thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #142f43;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #142f43;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

input#customRange3 {
  -webkit-appearance: none; /* Removes default styling */
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  accent-color: #9ebd4f; /* Changes the color of checkboxes, radio buttons, and range inputs */
}

/* .preloader-child {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
} */

/* .preloader-images {
  position: relative;
  width: 30vw;  
  height: 30vw;
  max-width: 250px;
  max-height: 250px;
  background: #ffffff;
  z-index: 99;
} */

/* .preloader-images img {
  transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out,
    top 1.5s ease-in-out, left 1.5s ease-in-out, bottom 1.5s ease-in-out;
  position: absolute;
  width: 70%;  
  max-width: 150px;
  min-width: 90px;
}
.preloader-images .logo-title {
  transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out,
    bottom 1.5s ease-in-out;
  position: absolute;
} */

/* Initial positions */
/* .preloader-images img.top {
  top: -50%;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
}

.preloader-images img.left {
  top: 50%;
  left: -50%;
  transform: translate(0, -50%);
  opacity: 0;
}

.preloader-images img.bottom {
  bottom: -50%;
  left: 50%;
  max-width: 134px;
  transform: translate(-50%, 0);
  opacity: 0;
}
.preloader-images .logo-title {
  position: absolute;
  left: 50%;
  width: 100%;
  bottom: -90%;
  transform: translate(-50%, 0);
  opacity: 0;
  color: #173054;
} */

/* Final positions */
/* .preloader-images img.top.fade-in {
  top: 3%;
  transform: translate(-50%, 0);
  opacity: 1;
}

.preloader-images img.left.fade-in {
  top: 50%;
  left: 0;
  transform: translate(1%, -53%);
  opacity: 1;
}

.preloader-images img.bottom.fade-in {
  bottom: 6%;
  transform: translate(-50%, 0);
  opacity: 1;
}
.preloader-images .logo-title.fade-in {
  bottom: -28%;
  transform: translate(-50%, 0);
  opacity: 1;
  min-width: 190px;
} */

/* Center image */
/* .preloader-images img.center {
  top: 50%;
  left: 50%;
  transform: translate(-30%, -55%);
  opacity: 1;
  transition: transform 1.5sease-in-out, opacity 1.5sease-in-out;
} */

/* Preloader full-screen */
#preloading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* background color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999 !important;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Inner content */
.preloader-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image animation (pulse/scale) */
.preloader-images img {
  width: 120px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* Hide loader */
#preloading.hidden {
  opacity: 0;
  visibility: hidden;
}

.top-nav {
  background: #173054;
  padding: 5px 0;
}

.service-carousel {
  position: relative;
}
.service-carousel .owl-nav {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
}
.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
  position: absolute;
  height: 100px;
  color: inherit;
  background: none;
  border: none;
  z-index: 100;
}
.service-carousel .owl-nav .owl-prev i,
.service-carousel .owl-nav .owl-next i {
  font-size: 27px;
  color: #ffffff;
  background: #142f439c;
  padding: 10px 16px;
  border-radius: 50%;
}
.service-carousel .owl-nav .owl-prev {
  left: -35px;
}
.service-carousel .owl-nav .owl-next {
  right: -37px;
}

@media only screen and (max-width: 720px) {
  .service-carousel .owl-nav .owl-prev {
    left: -14px;
  }
  .service-carousel .owl-nav .owl-next {
    right: -13px !important;
  }
}
.calculator-bg {
  position: relative;
  z-index: 0;
}
.calculator-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0.94;
  z-index: -1;
}
.phone-number {
    line-height: 45px;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}
#choose-area {
  position: relative;
}
#choose-area:before {
  position: absolute;
  top: 5px;
  left: 5px;
  content: "";
}

@media only screen and (max-width: 350px) {
  .phone-number {
    display: none;
  }
}
@media only screen and (max-width: 990px) and (min-width: 350px) {
  .phone-number {
    margin-right: 60px !important;
    font-size: 14px !important;
  }
}

.card.card-style1:hover h3.card-heading a {
  background-color: #daa108 !important;
}
.card.card-style1:hover h3.card-heading {
  background-color: #daa108 !important;
}
.package-small a:hover {
  transform: scale(1.04);
}
.package-small a {
  transition: transform 200ms ease-in-out;
}

@media only screen and (min-width: 600px) {
  .about-image {
    width: 72% !important;
    padding-right: 30px !important;
  }
}

.line-height-38 {
  line-height: 38px;
}

.why-us i {
  font-size: 40px !important;
}

.why-us {
  margin: 0 auto;
  max-width: 400px;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* readmore and readless  */
.add-read-more.show-less-content .second-section,
.add-read-more.show-less-content .read-less {
  display: none;
}

.add-read-more.show-more-content .read-more {
  display: none;
}

.add-read-more .read-less,
.add-read-more .read-more {
  margin-left: 2px;
  color: #d9a20e;
  cursor: pointer;
  font-size: 13px;
}
.add-read-more {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

/* readmore and readless  */

/* .div-border {
    position: absolute;
    left: -35px;
    bottom: -33px;
    content: "";
    border-left: 28px solid #daa10891;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-bottom: 28px solid #142f438f;
    border-right: 28px solid #142f4300;
    border-top: 28px solid #142f4300;
} */

.div-border {
  position: absolute;
  left: -5px;
  bottom: -5px;
  content: "";
  border: 5px solid #ec6680;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-bottom: 5px solid #431258;
  border-right: 3px solid #431258;
  border-top: 6px solid #ec6680;
}

.gray-bg {
  background: #f1f1f1;
}

@media only screen and (max-width: 1250px) {
  .video-banner h1 {
    font-size: 5vw;
  }
}
@media only screen and (max-width: 550px) {
  .video-banner h1 {
    font-size: 8vw;
  }
}

.section_title {
  background: -webkit-linear-gradient(45deg, #431258, #ed7990);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-light-1 {
  color: #f0f0de !important;
}
.text-light-2 {
  color: #ffffff !important;
}

.why-icon {
  width: 80px;
  display: inline-block;
  background: -webkit-linear-gradient(45deg, #431258, #ed7990);
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 45px;
  color: white;
  background: -webkit-linear-gradient(45deg, #431258, #ed7990);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.line-height-35 {
  line-height: 34px !important;
}
.starting::first-letter {
  font-size: 30px;
  color: #7b2292;
}

.gray-bg {
  background: #f8f8f8;
}

.bg-pattern {
  position: relative; /* Ensure parent is relative */
  z-index: 1;
}

.bg-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(255 255 255 / 60%), rgb(255 255 255)), url(../image/bg-pattern/line-pattern.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}


.animated-box {
  width: 100px;
  height: 100px;
  position: absolute;
  left: -15px;
  bottom: -20px;
  background-color: transparent;
  border: 3px solid;
  z-index: -1;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, #ec6680, #431258);
  border-radius: 8px;
}

/* animation css */
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-y {
  animation: floatY 2.5s ease-in-out infinite;
}

/* .frame-box {
  background-color: #1158e7;
  padding: 50px;
  position: absolute;
  bottom: 20px;
  right: 0;
  transform: translateX(-50%, 50%);
  width: 100%;
} */

/* .frame-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #f9f9f9;
  z-index: 0;
} */

.title-rotate {
  position: relative;
  width: 100%;
  height: 100%;
}

.title-rotate p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 60px;
  font-weight: 700;
  white-space: nowrap;
  color: #431258;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  -webkit-text-stroke: 1px white; 
}

.menu_area-light .navbar>ul>li.has-sub>a:after ,.menu_area-light.scrollHeader .navbar>ul>li.has-sub>a:after{
    
    border-color: transparent #ffffff #ffffff transparent !important;
}


.form-control {
    border-radius: 0 !important;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: #f0f0f0;
    background-clip: padding-box;
    border: 1px solid #c9c9c9;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.butn{
    cursor: pointer;
}


#standard-package .package-small{
  background: radial-gradient(#833860, #671842) !important;
}
.standard.package-small{
  background: radial-gradient(#833860, #671842) !important;
  border-color: #833860;
}


@media (min-width: 992px) { /* lg breakpoint */
  .rounded-lg-0 {
    border-radius: 0 !important;
  }
}

@media (min-width: 992px) { /* lg and up */
  .bg-lg-transparent {
    background-color: transparent !important;
  }
}
