/*

TemplateMo 583 Festava Live

https://templatemo.com/tm-583-festava-live

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #f8f9fa;
  --secondary-color: #343a40;
  --section-bg-color: #dee2e6;
  --custom-btn-bg-color: #ccc9dc;
  --custom-btn-bg-hover-color: #faa916;
  --dark-color: #212529;
  --p-color: #495057;
  --border-color: #495057;
  --link-hover-color: #faa916;
  --daniel-color: rgb(0, 45, 171, 1);

  --body-font-family: "Outfit", sans-serif;

  --h1-font-size: 74px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --btn-font-size: 14px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  /* color: var(--p-color); */
  font-size: var(--p-font-size);
  /* font-weight: var(--font-weight-light); */
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform 0.2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.2s 0.1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform 0.2s 0.1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.2s;
}

.link-fx-1 .icon line {
  transition: transform 0.4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 15px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color);
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5,
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--primary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  border-radius: 15px;
  z-index: 1;
  background-color: #faa916;
  color: #fff;
  font-size: var(--p-font-size);
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.5s;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -25px 18px -14px inset,
    rgba(0, 0, 0, 0.15) 0 1px 2px, rgba(0, 0, 0, 0.15) 0 2px 4px,
    rgba(0, 0, 0, 0.15) 0 4px 8px, rgba(0, 0, 0, 0.15) 0 8px 16px,
    rgba(0, 0, 0, 0.15) 0 16px 32px;
}

.custom-btn:hover {
  /* background: var(--custom-btn-bg-hover-color);
  color: var(--white-color); */
  color: #fff;
  background-color: #faa916;
  box-shadow: rgba(250, 169, 22, 0.35) 0 -25px 18px -14px inset,
    rgba(250, 169, 22, 0.25) 0 1px 2px, rgba(250, 169, 22, 0.25) 0 2px 4px,
    rgba(250, 169, 22, 0.25) 0 4px 8px, rgba(250, 169, 22, 0.25) 0 8px 16px,
    rgba(250, 169, 22, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

/*---------------------------------------
  IMAGE              
-----------------------------------------*/
.img-wrap {
  z-index: -100;
}

.custom-img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* HIGHLIGHT */

.highlight-section {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 15px;
  /* height: 90vh; */
}

/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  position: relative;
  /* height: 100%; */
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--border-radius-medium);
  /* padding: 15px; */
  /* box-shadow: rgb(50 50 93 / 25%) 0px 6px 12px -2px,
    rgb(0 0 0 / 30%) 0px 3px 7px -3px; */
}

.video-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  border-radius: var(--border-radius-medium);
}

span.bi.bi-pause {
  color: #fff;
  position: absolute;
  font-size: 150px;
  bottom: 0;
}
.custom-video {
  /* position: absolute;
  top: 0;
  left: 0; */
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-medium);
  cursor: pointer;
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}

.scroll-container {
  /* border: 3px solid black;
  border-radius: 5px; */
  overflow: hidden;
}

.scroll-text {
  /* animation properties */
  white-space: nowrap;
  width: 100%;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);

  -moz-animation: my-animation 15s cubic-bezier(0.65, 0.65, 1, 0.59) infinite;
  -webkit-animation: my-animation 15s cubic-bezier(0.65, 0.65, 1, 0.59) infinite;
  animation: my-animation 15s cubic-bezier(0.65, 0.65, 1, 0.59) infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
  }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from {
    -webkit-transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 48px;
}

/* @media screen and (max-width: 535px) {
  .sticky-wrapper {
    margin-top: 78px;
  }
} */

.sticky-wrapper.is-sticky .navbar {
  /* background-color: var(--dark-color); */
  background: var(--daniel-color);
  background: linear-gradient(
    180deg,
    rgba(0, 45, 171, 1) 0%,
    rgba(0, 47, 153, 1) 50%,
    rgba(1, 37, 118, 1) 100%
  );
}

.navbar {
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  display: flex;
  flex-direction: row;
}

.navbar-brand {
  margin-left: 10px;
}

/* .navbar-brand:hover {
  box-shadow: rgba(250, 169, 22, 0.35) 0 -25px 18px -14px inset,
    rgba(250, 169, 22, 0.25) 0 1px 2px, rgba(250, 169, 22, 0.25) 0 2px 4px,
    rgba(250, 169, 22, 0.25) 0 4px 8px, rgba(250, 169, 22, 0.25) 0 8px 16px,
    rgba(250, 169, 22, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
} */

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 0px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: bold;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--link-hover-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 51px);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  /* background-image: url('../images/edward-unsplash-blur.jpg'); */
  /* background-color: var(--dark-color); */
  background: var(--daniel-color);
  background: linear-gradient(
    180deg,
    rgba(0, 45, 171, 1) 0%,
    rgba(0, 47, 153, 1) 50%,
    rgba(1, 37, 118, 1) 100%
  );
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
/* 
.services-image {
  border-radius: var(--border-radius-medium);
  display: block;
  max-height: 320px;
} */

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
  padding: 15px;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(100%);
  -webkit-backdrop-filter: blur(5px) saturate(100%);
  /* background-color: rgba(255, 255, 255, 0.75); */
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 10px;
}

/*---------------------------------------
  CLIENT               
-----------------------------------------*/
.clients-section {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 15px;
  /* height: 90vh; */
}

.clients-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.clients-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.clients-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}

/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.services-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.services-thumb:hover .services-hover {
  transform: translateY(0);
  opacity: 1;
}

.services-hover {
  background-color: var(--primary-color);
  background-color: rgba(248, 203, 46, 0.75);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.services-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.services-hover p a {
  color: var(--secondary-color);
}

.services-hover p a:hover {
  color: var(--white-color);
}

.services-hover hr {
  margin: 1.5rem 0;
}

/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  /* background-image: url('../images/nainoa-shizuru-unsplash-blur.jpg'); */
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
  filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url("../images/artists/joecalih-UmTZqmMvQcw-unsplash.jpg");
}

.schedule-table .rock-background-image {
  background-image: url("../images/artists/abstral-official-bdlMO9z5yco-unsplash.jpg");
}

.schedule-table .country-background-image {
  background-image: url("../images/artists/soundtrap-rAT6FJ6wltE-unsplash.jpg");
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}

/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  /* background-color: var(--dark-color); */
  background: var(--daniel-color);
  background: linear-gradient(
    180deg,
    rgba(0, 45, 171, 1) 0%,
    rgba(0, 47, 153, 1) 50%,
    rgba(1, 37, 118, 1) 100%
  );
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: #fff;
  background-repeat: no-repeat;
  margin-bottom: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  /* margin-top: 60px; */
}

.site-footer-title {
  color: var(--primary-color);
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--dark-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--white-color);
  color: var(--custom-btn-bg-hover-color);
}

.social-icon-link span {
  display: block;
}

/* .social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
} */

@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar {
    /* background-color: var(--dark-color); */
    background: var(--daniel-color);
    background: linear-gradient(
      130deg,
      rgba(4, 56, 202, 1) 0%,
      rgba(1, 37, 118, 1) 62%
    );
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr,
  .schedule-table td {
    padding: 25px;
  }

  .clients-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

/* ADDED CSS */

.events {
  margin-top: 10px;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  background-image: url(../img/events-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.events .filter-categories {
  list-style: none;
  margin-top: 0px;
  padding-right: 0px;
  text-align: center;
  margin-bottom: 60px;
}

.events .filter-categories li {
  display: inline;
  text-align: center;
  margin: 8px 0px;
}

.events .filter-categories li {
  display: block;
  transition: all 0.5s;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #121212;
  font-size: 17px !important;
  font-weight: 600;
  display: inline-block;
  max-width: 200px;
  width: 200px;
  height: 70px;
  line-height: 70px;
  background-color: #fff;
  cursor: pointer;
}

.filter-categories ul li.active span {
  color: var(--custom-btn-bg-hover-color);
}

.project-item {
  width: 100%;
  cursor: pointer;
  margin-bottom: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.project-item:hover {
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, */
  /* rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
  box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.event-list {
  background-color: #fff;
}

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

.event-list ul li {
  border-radius: var(--border-radius-medium);
  display: block;
  text-align: left;
}

.event-list ul li:last-child {
  margin-bottom: 0px;
}

.event-list ul .first-child {
  background-color: #eee;
}

.event-list ul .second-child {
  background-color: #ddd;
}

.event-list ul .third-child {
  background-color: #eee;
}

.event-list ul .fourth-child {
  background-color: #ddd;
}

.event-list ul .fivth-child {
  background-color: #eee;
}

.event-list ul li .date span {
  background-color: var(--custom-btn-bg-hover-color);
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 25px;
  margin-right: 0px;
}

.event-list .event-item {
  margin: 0;
  padding: 10px;
  list-style: none;
}

.event-list .event-item li {
  display: inline-block;
  padding: 10px;
}

.event-list .event-item li:last-child {
  float: right;
  /* margin-top: 30px;
	margin-right: 20px; */
}

.event-list .event-item .time span {
  text-align: center;
  margin-left: 50px;
  color: #4a4a4a;
  font-weight: 300;
  font-size: 15px;
  display: inline-block;
}

.event-list ul li .date span {
  padding-top: 15px;
  margin-top: 0px;
  font-size: 18px;
  display: block;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.event-list h4 {
  width: 300px;
  margin-top: 0px;
  font-size: 18px;
  text-transform: uppercase;
  color: #121212;
  font-weight: 700;
  margin-bottom: 5px;
  display: inline-block;
}

.event-list .web span {
  font-size: 13px;
  font-weight: 600;
  color: #b94e5e;
  display: inline-block;
}

.event-list .design span {
  font-size: 13px;
  font-weight: 600;
  color: #e86859;
  display: inline-block;
}

.event-list .app span {
  font-size: 13px;
  font-weight: 600;
  color: var(--custom-btn-bg-hover-color);
  display: inline-block;
}

.event-list .white-button a:hover {
  /* background-color: var(--custom-btn-bg-hover-color); */
  /* color: #fff !important; */
  box-shadow: rgba(250, 169, 22, 0.35) 0 -25px 18px -14px inset,
    rgba(250, 169, 22, 0.25) 0 1px 2px, rgba(250, 169, 22, 0.25) 0 2px 4px,
    rgba(250, 169, 22, 0.25) 0 4px 8px, rgba(250, 169, 22, 0.25) 0 8px 16px,
    rgba(250, 169, 22, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

.event-list {
  transition: all 0.5s;
  /* height: 545px; */
}

.testimonial {
  margin-top: 10px;
}

.testimonial .col-md-8 {
  padding-left: 5px;
  padding-right: 0px;
}

.testimonial .col-md-4 {
  padding-right: 5px;
  padding-left: 0px;
}

.testimonial-image {
  text-align: center;
  background-image: url(../img/testimonial-left-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 600px;
  height: 600px;
}

#owl-testimonial {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  background-image: url(../img/testimonial-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 600px;
  height: 600px;
}

#owl-testimonial .item {
  text-align: center;
}

#owl-testimonial .item img {
  width: 130px;
}

#owl-testimonial .item span {
  margin-top: 28px;
  display: block;
  color: #e86859;
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
}

#owl-testimonial .item h4 {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
  color: #121212;
}

#owl-testimonial .item p {
  font-size: 17px;
  font-style: italic;
  color: #4a4a4a;
  padding: 0px 120px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.5px;
}

.owl-pagination {
  margin-top: 15px;
  margin-left: -30px;
  opacity: 1;
  display: inline-block;
  position: absolute;
  text-align: center;
  z-index: 9999;
}

.owl-page span {
  text-align: center;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0px 5px;
  filter: alpha(opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #e86859;
}

.services-section {
  padding-top: 30px;
  padding-bottom: 30px;
}
.services {
  margin-top: 10px;
  padding-top: 0vh;
  padding-bottom: 0vh;
  text-align: center;
  /* background-image: url(../img/services-bg.png); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.services .col-md-3 {
  padding-left: 0px;
  padding-right: 0px;
}

.services .col-md-3 {
  padding-right: 0px;
  padding-left: 0px;
}

.flip-container {
  perspective: 1000;
}
/* turning on hover */

.flip-container:hover .flipper {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.flip-container,
.front,
.back {
  width: 100%;
  height: 350px;
  text-align: center;
  font-size: 30px;
}
/* flipping speed here */

.front {
  padding: 40px 30px;
}

.front .icon {
  width: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  margin: 30px auto;
}

.front h4 {
  margin-top: 0px;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
}

.flipper {
  -webkit-transition: 0.3s all;
  -webkit-transition-delay: 0.3s;
  -moz-transition: 0.3s all;
  -moz-transition-delay: 5s;
  -ms-transition: 0.3s all;
  -ms-transition-delay: 5s;
  -o-transition: 0.3s all;
  -o-transition-delay: 5s;
  transition: 0.3s all;
  transition-delay: 0.3s;
  transform-style: preserve-3d;
  position: relative;
}
/* making the the other side hidden while flipping */

.front,
.back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
/* front side is in front of a back side */

.front {
  z-index: 2;
  color: white;
  /* for firefox 31 */
  transform: rotateY(0deg);
}
/* back side */

.back {
  transform: rotateY(180deg);
}

.back p {
  color: #fff;
  padding: 90px 30px;
}

.first-service .front,
.first-service .back {
  background-color: rgba(244, 188, 81, 0.9);
}

.second-service .front,
.second-service .back {
  background-color: rgba(243, 158, 75, 0.9);
}

.third-service .front,
.third-service .back {
  background-color: rgba(185, 78, 94, 0.9);
}

.fourth-service .front,
.fourth-service .back {
  background-color: rgba(232, 104, 89, 0.9);
}

.contact-us .col-md-8 {
  padding-left: 0px;
  padding-right: 5px;
}

.contact-us .col-md-4 {
  padding-right: 0px;
  padding-left: 5px;
}

#contact .col-md-4 {
  padding-right: 15px;
  padding-left: 15px;
}

.contact-us {
  margin-top: 10px;
}

.contact-us #contact {
  min-height: 500px;
  height: 500px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 120px;
  padding-right: 120px;
  text-align: center;
  background-image: url(../img/contact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#contact input {
  border-radius: 0px;
  padding-left: 15px;
  font-size: 13px;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.1);
  border-bottom: 2px solid #fff;
  outline: none;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: none;
  line-height: 40px;
  height: 40px;
  width: 100%;
  margin-bottom: 30px;
}

#contact textarea {
  border-radius: 0px;
  padding-left: 15px;
  padding-top: 10px;
  font-size: 13px;
  color: #fff;
  background-color: rgba(250, 250, 250, 0.1);
  border-bottom: 2px solid #fff;
  outline: none;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: none;
  height: 165px;
  max-height: 165px;
  min-height: 165px;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  margin-bottom: 25px;
}

#contact button {
  float: left;
  padding: 14px 20px;
  background-color: #f39e4b;
  border-radius: 30px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s;
  outline: none;
}

.contact-right-content {
  min-height: 500px;
  height: 500px;
  line-height: 500px;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
  background-image: url(../img/contact-right-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.contact-right-content .icon {
  text-align: center;
  margin: 0 auto;
  width: 140px;
  height: 140px;
  line-height: 140px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
}

.contact-right-content h4 {
  margin-top: 33px;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .event-list h4 {
    width: 230px;
  }

  .event-list .event-item .time span {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .banner .col-md-8 {
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .banner .col-md-4 {
    margin-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .banner .left-banner-content {
    padding-left: 0px;
    text-align: center;
  }

  .left-banner-content h1 {
    font-size: 64px;
    font-weight: 300;
    color: #fff;
    line-height: 80px !important;
  }

  .banner .left-banner-content .line-dec {
    margin: 0 auto;
  }

  .best-offer .col-md-8 {
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .best-offer .col-md-4 {
    margin-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .best-offer-right-content {
    text-align: center;
  }

  .best-offer-right-content {
    background-color: #eee;
    padding: 30px 30px;
    min-height: 550px;
    height: auto;
  }

  .best-offer-right-content .pink-button {
    margin-bottom: 50px;
  }

  .events {
    margin-right: 10px;
    margin-left: 10px;
  }

  .event-item {
    text-align: center !important;
    display: inline-block;
  }

  .event-item h4 {
    text-align: center !important;
  }

  .event-item span {
    text-align: center !important;
    display: inline-block;
    width: 100%;
  }

  .event-list h4 {
    width: 300px;
  }

  .event-list .event-item .time span {
    margin-left: 50px;
  }

  .event-list .project-item li:first-child {
    float: none;
  }

  .event-list .project-item li:last-child {
    float: none;
    margin-top: 0px;
    margin-right: 0px;
    padding-bottom: 25px;
  }

  .events .filter-categories li {
    text-align: center;
    display: inline-block;
    margin-bottom: -5px;
  }

  .event-list {
    transition: all 0.5s;
    height: auto;
  }

  .event-list .event-item li:last-child {
    float: right;
    /* margin-top: 30px;
		margin-right: 20px; */
  }

  .event-list .event-item .time {
    margin-left: 0px;
  }

  .events .filter-categories li {
    cursor: pointer;
    display: block;
    transition: all 0.5s;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #121212;
    font-size: 14px !important;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    padding: 0px 10px;
  }

  .event-list .event-item .time span {
    margin-left: 0px;
  }

  .testimonial .col-md-8 {
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .testimonial .col-md-4 {
    margin-top: 0px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .owl-pagination {
    margin-top: -15px;
  }

  #owl-testimonial {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  #owl-testimonial .item p {
    padding: 0px 60px;
    font-size: 15px;
  }

  .services {
    margin-left: 10px;
    margin-right: 10px;
  }

  .contact-us .col-md-8 {
    margin-top: 0px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-us .col-md-4 {
    margin-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .contact-us #contact {
    padding-left: 60px;
    padding-right: 60px;
  }

  .contact-us #contact {
    min-height: 600px;
    height: 600px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 843px) {
  .event-item {
    text-align: center;
    width: 100%;
  }

  .event-item li:first-child {
    float: none !important;
    width: 100px;
  }

  .event-item li {
    text-align: center !important;
    width: 49% !important;
  }

  .event-item li:last-child {
    display: block;
    /* margin-top: 5px!important;
		margin-right: 0px!important; */
  }

  .event-list ul li .date span {
    background-color: var(--custom-btn-bg-hover-color);
    width: 100%;
    height: 80px;
    text-align: center;
    line-height: 25px;
    margin-right: 0px;
  }
  .event-list h4 {
    width: auto;
  }
}

@media (max-width: 1045px) {
  .event-list h4 {
    width: 250px;
  }
}

@media (max-width: 620px) {
  .event-list h4 {
    width: auto;
  }
}

@media (max-width: 500px) {
  .event-item {
    text-align: center;
    width: 100%;
  }

  .event-item li:first-child {
    float: none !important;
    width: 100px;
  }

  .event-item li {
    text-align: center !important;
    width: 100% !important;
  }

  .event-item li:last-child {
    float: none !important;
    /* margin-top: 15px!important;
		margin-right: 0px!important; */
  }

  .event-list h4 {
    width: auto;
  }
}

.white-button a {
  display: block;
  z-index: 1;
  padding: 14px 20px;
  background-color: #fff;
  border-radius: 30px;
  color: #121212;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s;
  /* box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px,
    rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px,
    rgba(0, 0, 0, 0.07) 0px 16px 16px; */
  box-shadow: rgba(0, 0, 0, 0.2) 0 -25px 18px -14px inset,
    rgba(0, 0, 0, 0.15) 0 1px 2px, rgba(0, 0, 0, 0.15) 0 2px 4px,
    rgba(0, 0, 0, 0.15) 0 4px 8px, rgba(0, 0, 0, 0.15) 0 8px 16px,
    rgba(0, 0, 0, 0.15) 0 16px 32px;
}
.white-button a span {
  color: inherit !important;
}

.clients {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.clients-border > li {
  position: relative;
}
.clients li {
  height: 100px;
  margin: 0 41px;
  width: 100px;
  display: inline-block;
  cursor: pointer;
}
.clients > li img {
  filter: gray;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  position: relative;
  z-index: 9;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.clients li img {
  max-width: 90%;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: 0.35s all ease-in-out;
  transition: all 0.35s ease-in-out;
}
.clients-border > li:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #eee;
  left: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff;
  top: 0;
}

CSS.g-6,
.gx-6 {
  --bs-gutter-x: 4.5rem;
}
.g-6,
.gy-6 {
  --bs-gutter-y: 4.5rem;
}
@media (min-width: 576px) {
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 768px) {
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 992px) {
  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 1200px) {
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 4.5rem;
  }
}
@media (min-width: 1400px) {
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 4.5rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 4.5rem;
  }
}
.mb-6 {
  margin-bottom: 4.5rem !important;
}
.py-6 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}
@media (min-width: 576px) {
  .mb-sm-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-sm-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 768px) {
  .mb-md-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-md-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 992px) {
  .mb-lg-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-lg-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 1200px) {
  .mb-xl-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-xl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}
@media (min-width: 1400px) {
  .mb-xxl-6 {
    margin-bottom: 4.5rem !important;
  }
  .py-xxl-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
}

body::-webkit-scrollbar {
  width: 12px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: var(--primary-color); /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color); /* color of the scroll thumb */
}

.services-spek {
  display: none;
}

.services-spek.show-service {
  display: block;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.project-item .tooltiptext {
  visibility: hidden;
  width: 320px;
  background-color: #00000080;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  margin-top: 22px;
  margin-left: 22px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.project-item:hover .tooltiptext {
  visibility: visible;
}

.slider-card {
  /* background-color: whitesmoke; */
  border-radius: 20px;
  padding: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
/* Slider */
/* .slide svg,
.slide img {
  padding: 15px;
} */
.slide {
  vertical-align: middle;
}

.review-section {
  /* background-image: url('../images/edward-unsplash-blur.jpg'); */
  /* background-color: var(--dark-color); */
  /* background-repeat: no-repeat;
  background-size: cover; */
  position: relative;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  margin: 15px;
}
.review-card {
  background-color: whitesmoke;
  border-radius: 20px;
  padding: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.review svg,
.review img {
  padding: 10px;
  height: 80px;
  width: 100%;
}

.review-text-wrap {
  position: relative;
  padding: 15px;
}

.review-text-info {
  height: 80px !important;
  backdrop-filter: blur(5px) saturate(100%);
  -webkit-backdrop-filter: blur(5px) saturate(100%);
  /* background-color: rgba(255, 255, 255, 0.75); */
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 10px;
}

.review-image {
  height: 380px !important;
  /* width: auto; */
  border-radius: var(--border-radius-medium);
  display: block;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.review-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-medium);
}
/* REASON */

.reason-section {
  /* background-image: url('../images/edward-unsplash-blur.jpg'); */
  /* background-color: var(--dark-color); */
  background: var(--daniel-color);
  background: linear-gradient(
    180deg,
    rgba(0, 45, 171, 1) 0%,
    rgba(0, 47, 153, 1) 50%,
    rgba(1, 37, 118, 1) 100%
  );
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  position: relative;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  /* margin: 15px; */
}
/* .reason-card {
  backdrop-filter: blur(5px) saturate(100%);
  -webkit-backdrop-filter: blur(5px) saturate(100%);
  border: 1px solid rgba(209, 213, 219, 0.3);
  color: #fff;
  background-color: whitesmoke;
  border-radius: 20px;
  padding: 15px;
  max-width: 512px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
} */
.reason-dark-button {
  height: unset !important;
  /* position: absolute; */
  /* top: 0; */
  align-self: center;
  margin-top: 1rem;
  z-index: 3;
}

.reason-dark-button a {
  display: block;
  float: right;
  z-index: 1;
  padding: 10px 20px;
  background-color: #faa916c7;
  border-radius: 15px;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s;
  /* box-shadow: rgba(255, 255, 255, 0.07) 0px 1px 1px,
    rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(255, 255, 255, 0.07) 0px 4px 4px,
    rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(255, 255, 255, 0.07) 0px 16px 16px; */
  box-shadow: rgba(0, 0, 0, 0.2) 0 -25px 18px -14px inset,
    rgba(0, 0, 0, 0.15) 0 1px 2px, rgba(0, 0, 0, 0.15) 0 2px 4px,
    rgba(0, 0, 0, 0.15) 0 4px 8px, rgba(0, 0, 0, 0.15) 0 8px 16px,
    rgba(0, 0, 0, 0.15) 0 16px 32px;
}

.reason-dark-button a:hover {
  /* background-color: var(--custom-btn-bg-hover-color);
  color: #fff !important; */
  box-shadow: rgba(250, 169, 22, 0.35) 0 -25px 18px -14px inset,
    rgba(250, 169, 22, 0.25) 0 1px 2px, rgba(250, 169, 22, 0.25) 0 2px 4px,
    rgba(250, 169, 22, 0.25) 0 4px 8px, rgba(250, 169, 22, 0.25) 0 8px 16px,
    rgba(250, 169, 22, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}
.reason-white-button {
  height: unset !important;
  /* position: absolute; */
  /* top: 0; */
  align-self: start;
  z-index: 3;
}

.reason-white-button a {
  display: block;
  float: right;
  z-index: 1;
  padding: 10px 20px;
  background-color: #faa916;
  border-radius: 15px;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s;
  /* box-shadow: rgba(255, 255, 255, 0.07) 0px 1px 1px,
    rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(255, 255, 255, 0.07) 0px 4px 4px,
    rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(255, 255, 255, 0.07) 0px 16px 16px; */
  box-shadow: rgba(0, 0, 0, 0.2) 0 -25px 18px -14px inset,
    rgba(0, 0, 0, 0.15) 0 1px 2px, rgba(0, 0, 0, 0.15) 0 2px 4px,
    rgba(0, 0, 0, 0.15) 0 4px 8px, rgba(0, 0, 0, 0.15) 0 8px 16px,
    rgba(0, 0, 0, 0.15) 0 16px 32px;
}

/* @media screen and (max-width: 991px) {
  .reason-white-button a {
    margin-top: 50px;
    float: left;
  }
} */

.reason-white-button a:hover {
  /* background-color: var(--custom-btn-bg-hover-color);
  color: #fff !important; */
  box-shadow: rgba(250, 169, 22, 0.35) 0 -25px 18px -14px inset,
    rgba(250, 169, 22, 0.25) 0 1px 2px, rgba(250, 169, 22, 0.25) 0 2px 4px,
    rgba(250, 169, 22, 0.25) 0 4px 8px, rgba(250, 169, 22, 0.25) 0 8px 16px,
    rgba(250, 169, 22, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

.reason-card {
  /* background-image: url(../images/main-bg.jpg); */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /* padding: 60px 0px; */
  position: relative;
}

.reason-card .section-heading .line-dec {
  margin-left: 0%;
  background-color: #fff;
}

.reason-card .section-heading {
  text-align: left;
  margin-bottom: 50px;
}

.reason-card .main-button {
  text-align: right;
}

.reason-card .item {
  margin-top: 30px;
  position: relative;
}

.reason-card .first-item .number {
  position: absolute;
  right: 0;
  top: -20px;
}

.reason-card .first-item:after {
  position: absolute;
  width: 1px;
  height: 95%;
  background-color: rgb(255, 255, 255);
  content: "";
  right: 5px;
  top: 5%;
}

.reason-card .second-item .number {
  position: absolute;
  right: 0;
  top: -20px;
}

.reason-card .second-item:after {
  position: absolute;
  width: 1px;
  height: 95%;
  background-color: rgba(255, 255, 255);
  content: "";
  right: 5px;
  top: 5%;
}

.item .icon {
  /* width: 62px;
  height: 62px;
  display: inline-block; */
  font-size: 40px;
  text-align: center;
  /* line-height: 62px; */
  /* background-color: #fff; */
  /* border-radius: 50%; */
  /* margin-bottom: 15px; */
}

.reason-card .item .icon img {
  max-width: 31px;
}

.reason-card h4 {
  color: white;
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.reason-card p {
  margin-right: 30px;
}

.reason-card .item a {
  color: #3cf;
}

.slick-dots {
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0px;
  display: flex;
  justify-content: center;

  /* margin: -60px; */
  padding: 1rem 0;

  list-style-type: none;
}

.slick-dots li {
  margin: 0 0.25rem;
}

.slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;

  border: none;
  border-radius: 100%;
  background-color: #f8f9fa69;

  text-indent: -9999px;
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
  box-shadow: rgba(0, 0, 0, 0.2) 0 -25px 18px -14px inset,
    rgba(0, 0, 0, 0.15) 0 1px 2px, rgba(0, 0, 0, 0.15) 0 2px 4px,
    rgba(0, 0, 0, 0.15) 0 4px 8px, rgba(0, 0, 0, 0.15) 0 8px 16px,
    rgba(0, 0, 0, 0.15) 0 16px 32px;
}

.slick-dots button:hover {
  box-shadow: rgba(250, 169, 22, 0.35) 0 -25px 18px -14px inset,
    rgba(250, 169, 22, 0.25) 0 1px 2px, rgba(250, 169, 22, 0.25) 0 2px 4px,
    rgba(250, 169, 22, 0.25) 0 4px 8px, rgba(250, 169, 22, 0.25) 0 8px 16px,
    rgba(250, 169, 22, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}
.slick-dots li.slick-active button {
  /* background-color: var(--custom-btn-bg-hover-color); */
  box-shadow: rgba(250, 169, 22, 0.35) 0 -25px 18px -14px inset,
    rgba(250, 169, 22, 0.25) 0 1px 2px, rgba(250, 169, 22, 0.25) 0 2px 4px,
    rgba(250, 169, 22, 0.25) 0 4px 8px, rgba(250, 169, 22, 0.25) 0 8px 16px,
    rgba(250, 169, 22, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

.slick-list,
.slick-track,
.slick-track .slick-slide div {
  height: 100%;
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  margin: 10px;
  border-radius: 20px;
  position: absolute;
  float: right;
  z-index: 1;
  /* background-color: #fff; */
  color: #2f2929;
  font-size: 0px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -25px 18px -14px inset,
    rgba(0, 0, 0, 0.15) 0 1px 2px, rgba(0, 0, 0, 0.15) 0 2px 4px,
    rgba(0, 0, 0, 0.15) 0 4px 8px, rgba(0, 0, 0, 0.15) 0 8px 16px,
    rgba(0, 0, 0, 0.15) 0 16px 32px;
}

.slick-prev {
  background: url(../icons/arrow-left-circle.svg) no-repeat;
  background-size: 40px 40px;
  left: 5px;
  bottom: 50%;
}

.slick-next {
  background: url(../icons/arrow-right-circle.svg) no-repeat;
  background-size: 40px 40px;
  right: 5px;
  bottom: 50%;
}

.slick-prev:hover,
.slick-next:hover {
  /* background: var(--custom-btn-bg-hover-color);
  color: var(--white-color); */
  box-shadow: rgba(250, 169, 22, 0.35) 0 -25px 18px -14px inset,
    rgba(250, 169, 22, 0.25) 0 1px 2px, rgba(250, 169, 22, 0.25) 0 2px 4px,
    rgba(250, 169, 22, 0.25) 0 4px 8px, rgba(250, 169, 22, 0.25) 0 8px 16px,
    rgba(250, 169, 22, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

.slick-slide {
  /* height: 100%; */
}

.slick-slide .slide-card {
  /* padding: 10px; */
  padding: 10px;
  height: 180px !important;
  width: 100%;
  display: inline-flex;
  justify-content: center;
}
.slick-slide .slide-card img {
  /* box-shadow: rgb(50 50 93 / 25%) 0px 6px 12px -2px,
    rgb(0 0 0 / 30%) 0px 3px 7px -3px; */
  margin: 10px;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  /* or
    object-fit: cover; */
}

/* CSS */
/* .button-33 {
  background-color: #c2fbd7;
  border-radius: 100px;
  box-shadow: rgba(0, 0, 0, .2) 0 -25px 18px -14px inset,rgba(0, 0, 0, .15) 0 1px 2px,rgba(0, 0, 0, .15) 0 2px 4px,rgba(0, 0, 0, .15) 0 4px 8px,rgba(0, 0, 0, .15) 0 8px 16px,rgba(0, 0, 0, .15) 0 16px 32px;
  color: green;
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-33:hover {
  box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
} */

.hero-slider {
  /* z-index: -100; */
  position: absolute !important;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  /* background-color: whitesmoke; */
  /* border-radius: 20px; */
  /* padding: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
}

.hero-text-wrap {
  /* position: relative; */
  /* padding: 15px; */
  /* height: 100%; */
  position: relative;
  /* padding: 15px; */
}

.hero-text-info {
  z-index: 3;
  /* backdrop-filter: blur(5px) saturate(100%); */
  /* -webkit-backdrop-filter: blur(5px) saturate(100%); */
  /* background-color: rgba(255, 255, 255, 0.75); */
  /* border-radius: var(--border-radius-medium); */
  /* border: 1px solid rgba(209, 213, 219, 0.3); */
  height: unset !important;
  position: absolute;
  top: 40%;
  /* margin-left: 200px; */
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s;
  border: none;
  width: 100%;
  align-items: center;
  flex-direction: column;
  /* flex-flow: wrap; */
  padding: 0px 100px;
  padding-bottom: 1rem;
}

/* @media screen and (min-width: 900px) {
  .hero-text-info {
    flex-direction: column; */
/* margin-left: 200px; */
/* } */
/* } */

/* HOME */

.hero-bottom-info {
  z-index: 3;
  /* display: block; */
  position: absolute;
  bottom: 40px;
  padding: 20px;
}
.hero-text-info h2 {
  align-self: flex-start;
  /* width: max-content; */
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s;
  border: none;
}

.hero-text-info h2:hover {
  transform: scale(1.05) rotate(-1deg);
}

.hero-text-info h6 {
  align-self: flex-start;
  /* text-transform: uppercase; */
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s;
  border: none;
}

.hero-text-info h6:hover {
  transform: scale(1.05) rotate(-1deg);
}

.hero-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* SERVICES */

/* .slick-track div .services-text-wrap {
 height: 312px !important;
  width: 312px !important; 
} */

.services-about-info {
  padding: 0px 15px;
}

.services-text-wrap {
  position: relative;
  padding: 15px;
  cursor: pointer;
}

.services-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.services-text-info {
  backdrop-filter: blur(5px) saturate(100%);
  -webkit-backdrop-filter: blur(5px) saturate(100%);
  /* background-color: rgba(255, 255, 255, 0.75); */
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 10px;
}

.services-image {
  border-radius: var(--border-radius-medium);
  display: block;

  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: rgb(50 50 93 / 25%) 0px 6px 12px -2px,
    rgb(0 0 0 / 30%) 0px 3px 7px -3px;
}

.services-descriptions {
  position: absolute;
  bottom: 4vw;
  left: 0;
  width: 100%;
  height: auto !important;
  display: flex;
  justify-content: center;
}

.services-descriptions h6 {
  border-radius: 10px;
  font-size: 16px;
  padding: 5px 10px;
  backdrop-filter: blur(5px) saturate(100%);
  -webkit-backdrop-filter: blur(5px) saturate(100%);
  background-color: #0000004f;
  text-transform: uppercase;
}

.services-text-wrap:hover .services-descriptions h6 {
  box-shadow: rgba(250, 169, 22, 0.35) 0 -25px 18px -14px inset,
    rgba(250, 169, 22, 0.25) 0 1px 2px, rgba(250, 169, 22, 0.25) 0 2px 4px,
    rgba(250, 169, 22, 0.25) 0 4px 8px, rgba(250, 169, 22, 0.25) 0 8px 16px,
    rgba(250, 169, 22, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

.services-text-wrap:hover .services-image {
  box-shadow: rgba(250, 169, 22, 0.35) 0 -25px 18px -14px inset,
    rgba(250, 169, 22, 0.25) 0 1px 2px, rgba(250, 169, 22, 0.25) 0 2px 4px,
    rgba(250, 169, 22, 0.25) 0 4px 8px, rgba(250, 169, 22, 0.25) 0 8px 16px,
    rgba(250, 169, 22, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

@media screen and (max-width: 568px) {
  .services-descriptions {
    bottom: 8vw;
  }

  .services-descriptions h6 {
    font-size: 4vw;
  }
}

@media screen and (min-width: 569px) and (max-width: 768px) {
  .services-descriptions {
    bottom: 8vw;
  }

  .services-descriptions h6 {
    font-size: 20px;
  }
}

.bi-google-business {
  background: url(../icons/google-my-business.svg) no-repeat;
  background-size: 40px 40px;
}

.visi-misi {
  width: 50px;
}

.pr-4 {
  padding-right: 1rem;
}

.renan-text {
  color: var(--white-color);
  text-align: right;
}

@media screen and (max-width: 991px) {
  .renan-text {
    /* color: var(--white-color); */
    text-align: left;
  }
}
.wa-float {
  display: block;
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 45px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  /* box-shadow: 2px 2px 3px #999; */
  box-shadow: rgba(0, 0, 0, 0.2) 0 -25px 18px -14px inset,
    rgba(0, 0, 0, 0.15) 0 1px 2px, rgba(0, 0, 0, 0.15) 0 2px 4px,
    rgba(0, 0, 0, 0.15) 0 4px 8px, rgba(0, 0, 0, 0.15) 0 8px 16px,
    rgba(0, 0, 0, 0.15) 0 16px 32px;
  z-index: 100;
  animation-duration: 0.5s;
  animation-name: animate-fade;
  animation-delay: 0.5s;
  animation-fill-mode: backwards;
}

.wa-float a span {
  border-radius: 10px;
  cursor: pointer;
  position: absolute;
  left: -30px;
  bottom: -30px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: rgb(0 0 0 / 20%) 0 -25px 18px -14px inset,
    rgb(0 0 0 / 15%) 0 1px 2px, rgb(0 0 0 / 15%) 0 2px 4px,
    rgb(0 0 0 / 15%) 0 4px 8px, rgb(0 0 0 / 15%) 0 8px 16px,
    rgb(0 0 0 / 15%) 0 16px 32px;
  padding-right: 10px;
  padding-left: 10px;
  backdrop-filter: blur(5px) saturate(100%);
  -webkit-backdrop-filter: blur(5px) saturate(100%);
  background-color: #0000004f;
}

@keyframes animate-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.my-float {
  margin-top: 7px;
  margin-left: 2px;
  display: block;
}

.wa-float:hover a span {
  box-shadow: rgba(250, 169, 22, 0.35) 0 -25px 18px -14px inset,
    rgba(250, 169, 22, 0.25) 0 1px 2px, rgba(250, 169, 22, 0.25) 0 2px 4px,
    rgba(250, 169, 22, 0.25) 0 4px 8px, rgba(250, 169, 22, 0.25) 0 8px 16px,
    rgba(250, 169, 22, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}
.wa-float:hover {
  box-shadow: rgba(250, 169, 22, 0.35) 0 -25px 18px -14px inset,
    rgba(250, 169, 22, 0.25) 0 1px 2px, rgba(250, 169, 22, 0.25) 0 2px 4px,
    rgba(250, 169, 22, 0.25) 0 4px 8px, rgba(250, 169, 22, 0.25) 0 8px 16px,
    rgba(250, 169, 22, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

.title-text {
  display: flex;
  flex-direction: column;
  margin-top: -3px;
  color: #fff;
}

.title-text .title-top {
  font-weight: bold;
}

.title-text .title-middle {
  font-size: 19px;
  font-weight: 400;
  margin-top: -12px;
}

.title-text .title-bottom {
  font-size: 7px;
  font-weight: 500;
  margin-top: -5px;
}

.footer-brand {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
  display: flex;
  flex-direction: row;
}

.loading-wrapper {
  backdrop-filter: blur(5px) saturate(100%);
  z-index: 101;
  height: 100%;
  padding: 2rem;
  display: grid;
  place-items: center;
  text-align: center;
  background-image: radial-gradient(
    circle at center,
    rgba(0, 45, 171, 1) 0%,
    rgb(0, 38, 127) 50%,
    rgb(0, 24, 81) 100%
  );
  overflow-y: hidden;
  position: fixed;
  width: 100%;
}

.loader {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 150px;
  height: 50px;
  margin: 0 auto;
}

@keyframes leap {
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  animation: leap 1s infinite;
}

.dot:nth-child(1) {
  background-color: #cfcfcf;
  box-shadow: 0px 0px 5px 0.1px rgba(20, 20, 20, 0.6);
}

.dot:nth-child(2) {
  background-color: #de9729;
  animation-delay: 0.15s;
  box-shadow: 0px 0px 5px 0.1px rgba(20, 20, 20, 0.6);
}

.dot:nth-child(3) {
  background-color: #212529;
  animation-delay: 0.3s;
  box-shadow: 0px 0px 5px 0.1px rgba(20, 20, 20, 0.6);
}
