/*

TemplateMo 583 Festava Live

https://templatemo.com/tm-583-festava-live

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #F8CB2E;
  --secondary-color: #EE5007;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #EE5007;
  --custom-btn-bg-hover-color: #c01f27;
  --dark-color: #717275;
  --p-color: #717275;
  --border-color: #7fffd4;
  --link-hover-color: #B22727;

  --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: 17px;
  --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               
  -----------------------------------------*/


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);
  font-weight: bold;
}

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 .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .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 .2s .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 .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
    SECTION               
  -----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.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: 45px;
}

.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, .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(--secondary-color);
}


/*---------------------------------------
    CUSTOM BUTTON               
  -----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.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);
}


/*---------------------------------------
    VIDEO              
  -----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
    SITE HEADER              
  -----------------------------------------*/
.site-header {
  background-color: rgb(210, 205, 205);
  padding-top: 12px;
  padding-bottom: 12px;
}


/*---------------------------------------
    NAVIGATION              
  -----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 51px;
}

.nav_new_bg {
  background-color: var(--dark-color);

}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.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);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 7px;
  padding: 0px 20px;
}

.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: 5px;
  padding-bottom: 5px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--secondary-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: #704010;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.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(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  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: 35px;
}


/*---------------------------------------
    TICKET               
  -----------------------------------------*/
.ticket-section {
  background-image: url('../images/nicholas-green-unsplash-blur.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-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%;
}


/*---------------------------------------
    ARTISTS              
  -----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-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;
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-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);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: var(--secondary-color);
  background-image: url('../images/nainoa-shizuru-NcdG9mK3PBY-unsplash.jpg');
  background-repeat: no-repeat;
  margin-bottom: 70px;
  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(--secondary-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(--primary-color);
  color: var(--white-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: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 10px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 10px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr,
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-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;
  }
}

/*================ CARD DESIGN ================*/


.cad {
  background-color: rgba(76, 168, 151, 0.37);
  border-radius: .5rem;

}

.cad-text {
  font-size: 1rem;
  opacity: 1;
}


/*================ ABOUT ================*/

.para {
  font-weight: 600;
}

.btn1 {
  background-color: #23c660;
  color: #fff;
  border: 1px solid #23c660;
  padding: .37rem .5rem;
  border-radius: .3rem;
  font-size: .7rem;
}

.btn1:hover {
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgb(35 198 96/50%);
}

.btn2 {
  background-color: #039be5;
  color: #fff;
  border: 1px solid #039be5;
  padding: .37rem .5rem;
  border-radius: .3rem;
  font-size: .7rem;
}

.btn2:hover {
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgb(35 198 96/50%);
}

.btn3 {
  background-color: #40baf5;
  color: #fff;
  border: 1px solid #40baf5;
  padding: .37rem .5rem;
  border-radius: .3rem;
  font-size: .7rem;
}

.btn3:hover {
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgb(35 198 96/50%);
}





.btn4 {
  border: 1px solid #40baf5;
  padding: 10px 30px;
  display: inline-block;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 600;
  background: #1f2633;
  color: #fff;
  letter-spacing: 2px;
}


.cad1 {
  padding: 10px 24px;
  background-color: #fff;
  border-radius: 10px;
  transition: .5s;
  overflow: hidden;
  z-index: 9;


  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
}


.tex {
  text-align: center;
  border-bottom: 3px solid red;
  align-items: center;
}


.img-maT {
  margin-top: 1.25rem;
}


@media only screen and (max-width: 480px) {
  .img-maT {
    margin-top: 0rem;
  }
}

.mb-25 {
  margin-bottom: 25px;
}


.rounded {
  border-radius: 0.25rem;
}



@media only screen and (max-width: 770px) {
  .mob-none {
    display: none;
  }
}

.sec-title4 {
  position: relative;
  z-index: 1;
}


.sec-title4 .subtitle {
  color: #c12527;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 500;
}


.sec-title4 .title {
  color: #043d72;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin: 0 0 26px;
}

.left-line-v {
  position: relative;
  padding-left: 20px;
}

.desc {
  font-weight: 500;
}

.img-UP-but {
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  padding: 0;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  line-height: 12;
  backface-visibility: hidden;
  z-index: 1;
  opacity: 1;
}

.btn {
  transition: .3s;
}

.img-UP-but h2 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: cursive;

}

.left-line-v .draw-line.start-draw {
  position: absolute;
  content: '';
  left: 0;
  top: 3px;
  width: 4px;
  height: 70px;
  background: #c12527;
  animation: 1.5s forwards start-draw;
}

.pattern-img {
  position: absolute;
  content: '';
  left: 0;
  top: 175;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  padding: 0;
  list-style: none;
}

.estimate-info li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0px;
  font-size: 1rem;


}

.estimate-info li:before {
  position: absolute;
  content: '';
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #202531;
}

h2.span {

  opacity: 0;
  filter: blur(4px);
}


.cad_2 {
  display: flex;
  padding: 10px;
  background-color: #c12527;
  margin: 0 1px 0 0;
  color: #fff;
  border-radius: .5rem;
}

.card_tex2 {
  font-size: .85rem;
  color: #fff;
}

.card_tit {
  color: #fff;
  font-size: 1.2rem;
}


/* /FOOTER */


.fon {
  font-size: calc(1.2vw + .6vh + .6vmin);
  font-weight: bold;
}

.overflow-hidden {
  overflow: hidden !important;
  position: absolute;
  width: 100%;
  top: -81px;
}



.rs-footer.style1 {
  background: 0 0/cover #121212;
  position: relative;
  margin-top: 5em;
}

.rs-footer.style1 .footer-bottom {
  padding: 20px 0;
  background: #000
}

.text-lg-end {
  text-align: right !important
}

.rs-footer.style1 .footer-bottom .copy-right-menu li {
  display: inline-block;
  position: relative;
  padding: 0 14px 0 13px
}

.rs-footer.style1 .footer-bottom .copy-right-menu li a {
  color: #fff;
  font-size: 13px
}

.rs-footer.style1 .footer-bottom .copy-right-menu li a:hover {
  color: #bb0b0b
}

.rs-footer.style1 .footer-bottom .copy-right-menu li:before {
  display: block;
  content: "";
  position: absolute;
  font-size: 18px;
  background: #bb0b0b;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%
}

.rs-footer.style1 .footer-bottom .copyright p {
  margin: 0;
  color: #fff;
  font-size: 12px
}

.rs-footer.style1 .footer-top {
  padding: 92px 0 65px
}

.pb-40 {
  padding-bottom: 40px
}

.rs-footer.style1 .footer-top p {
  margin: 30px 0 0;
  position: relative
}

.rs-footer.style1 .footer-top .footer-social li a i {
  padding: 0;
  font-size: 15px;
  margin-right: 3px;
  transition: .8s;
  background: #1c2024;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 0;
  color: #fff;
  text-align: center
}

*/ @media only screen and (max-width:480px) {
  .overflow-hidden {
    overflow: hidden !important;
    position: absolute;
    width: 100%;
    top: -25px !important
  }

  .img-maT {
    margin-top: 0 !important
  }

  .for-desktop,
  .mob-none {
    display: none
  }

  .video-background-content .display-4 {
    font-size: 40px;
    line-height: 50px
  }

  .video-background-content {
    height: 80%
  }

  .video-background-holder {
    height: calc(100vh - 225px)
  }

  .display-5 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-top: 3px;
    margin-bottom: 15px;
    font-weight: 400
  }

  .btn-contactClick {
    padding: .4rem 1.9rem
  }

  .rs-services.style6 .services-box-area .services-item {
    border-style: dashed;
    border-width: 0 0 1px;
    border-color: #c125273d;
    text-align: center
  }

  .rs-about.style4 .about-img {
    margin-top: 35px
  }

  .rs-about p {
    text-align: justify
  }

  .consult_btn {
    padding: .375rem .4rem;
    font-size: .9rem
  }
}






.text-lg-end {
  text-align: right !important
}




/*================================ End Footer ================================*/



/*================================ About ovreviw ================================*/

.ab_card {
  background-color: #23c660;
  color: #fff;
  border: 1px solid #23c660;
  padding: .37rem .5rem;
  border-radius: 2rem .5rem;


}


.num1 {
  background-color: #007bff;
  padding: .5rem;
  border-radius: 1rem 5rem;

}


.ab_card1 {
  background-color: #ac1416;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.op {
  opacity: .7;
}

/* .icon1{
  width: 80px;
  height: 80px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.9);
  position: relative;
  top: 2px;
  -webkit-transition: .4s;
  transition: .4s;
  padding-left: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
} */



.service-icon {
  color: #21bcb8;
  font-size: 50px;
  line-height: 50px;
  margin: 0 0 8px
}


.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .9);
  position: relative;
  top: 2px;
  -webkit-transition: .4s;
  transition: .4s;
  padding-left: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.service-icon img {
  width: 80%
}

.service-icon:after,
.service-icon:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .8);
  -webkit-transition: .4s;
  transition: .4s
}

.service-icon:after {
  bottom: 10px;
  right: -4px
}

.service-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.service-icon:before {
  top: 10px;
  left: -4px;
  -webkit-animation: 3s ease-in-out infinite slide_up;
  animation: 3s ease-in-out infinite slide_up
}

.service-icon {
  font-size: 45px;
  margin: 0 auto 15px
}
















.section-block-bg-service {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 90px 0
}



#blog .post .post-meta,
.entry-meta.meta-color-light,
.entry-meta.meta-color-light2,
.section-block-about .section-heading,
.section-heading {
  margin-bottom: 10px
}

.section-block-about .section-heading h4,
.section-heading h4 {
  position: relative;
  font-size: 30px;
  font-weight: 600;
  color: #111;
  line-height: 160%;
  margin-bottom: 10px
}

.section-heading-line-left {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: #d21e2b;
  border-radius: 25px;
  margin-top: 15px;
  margin-bottom: 5px
}

.company-profile span,
.section-heading span {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #d21e2b;
  line-height: 200%;
  margin-bottom: 10px
}



.section-heading-line {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: #d21e2b;
  border-radius: 25px;
  margin: 15px auto 5px
}

.section-heading p {
  font-size: 15px;
  font-weight: 400;
  color: #090606;
  line-height: 160%;
  padding-top: 15px;
  margin-bottom: 0
}


.section-heading h3 {
  position: relative;
  font-size: 35px;
  font-weight: 600;
  color: #111;
  line-height: 130%;
  margin-bottom: 10px
}


.section-heading h1 {
  position: relative;
  font-size: 36px;
  font-weight: 600;
  color: #111;
  line-height: 172%;
  margin-bottom: 10px
}


.text-content-big p {
  font-size: 15px;
  font-weight: 400;
  color: #222;
  line-height: 200%;
  margin-bottom: 15px
}



.feature-flex-square {
  position: relative;
  border-radius: 5px;
  margin: 30px 0;
  -webkit-transition-duration: .3s;
  transition-duration: .3s
}

.feature-flex-square-icon {
  float: left;
  width: 25%;
  margin-top: 5px;
  -webkit-transition-duration: .3s;
  transition-duration: .3s
}

.feature-flex-square-icon i {
  color: #d21e2b;
  border-radius: 10px;
  padding: 10px;
  font-size: 55px;
  -webkit-transition-duration: .3s;
  transition-duration: .3s
}

.feature-flex-content,
.feature-flex-square-content {
  float: left;
  width: 75%;
  padding-left: 10px
}

.feature-flex-square-content h4,
.feature-flex-square-content h4 a {
  color: #111;
  font-size: 19px;
  font-weight: 500
}

.feature-flex-square-content p {
  color: #999;
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 15px
}

.feature-flex-square-content-button {
  display: inline-block;
  color: #111;
  font-size: 14px;
  font-weight: 500
}




.single-features-box {
  margin-bottom: 30px;
  -webkit-box-shadow: 0 -2px 20px 0 rgb(0 0 0/6%);
  box-shadow: 0 -2px 20px 0 rgb(0 0 0/6%);
  background-color: var(--whiteColor);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .5s;
  transition: .5s;
  text-align: left
}

.single-features-box .icon-single-features-box {
  display: inline-block;
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 63px;
  font-size: 30px;
  border-radius: 50%;
  background: #d21e2b;
  margin-right: 15px;
  -webkit-transition: .5s;
  transition: .5s;
  padding: 0 16px
}

.single-features-box h3 {
  font-size: 20px;
  margin-bottom: 0;
  -webkit-transition: .5s;
  transition: .5s;
  width: 130px
}

.react-bg {
  background: #01a7f9 !important
}


.AWS-bg {
  background: #f9f9f9 !important
}

.python-bg {
  background: #3771a1 !important
}

.nodeJs-bg {
  background: #7dbe42 !important
}

.webflow-bg {
  background: #4353ff !important
}

.nativeJs-bg {
  background: #61dafb !important
}

.Javascript-bg {
  background: #f7df1e !important
}

.solidity-bg {
  background: #63698e !important
}

.ethereum-bg {
  background: #627eea !important
}


/*================================ End About Overview ================================*/

/*================================ start About Career ================================*/



.ca_style {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 1rem;
}

.btn_1 {
  float: right;
  padding: .5rem 1rem;
  background-color: #007bff;
  border-radius: .5rem;
  color: #fff;
}

/*================================ End About Career ================================*/



/*================================ start Recharge Api ================================*/

.section-block-services {
  padding: 70px 0 50px;
  background-color: #fff
}


.services-single-left-heading h4 {
  color: #111;
  font-size: 18px;
  font-weight: 500
}

.services-single-left-heading h1:after,
.services-single-left-heading h4:after {
  content: " ";
  display: block;
  background: #d21e2b;
  width: 50px;
  height: 2px;
  margin-top: 8px
}

.services-single-menu {
  border: 1px solid #ececec
}

.services-active {
  -webkit-box-shadow: 3px 0 0 0 rgb(210 30 43) inset;
  -moz-box-shadow: 3px 0 0 0 #d21e2b inset;
  box-shadow: 3px 0 0 0 rgb(210 30 43) inset
}

.services-single-menu ul li {
  border-bottom: 1px solid #ececec;
  background: #fff
}

.services-single-menu ul li a {
  display: block;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 0 14px 15px;
  -webkit-transition-duration: .3s;
  transition-duration: .3s
}




.services-single-left-heading h4 {
  color: #111;
  font-size: 18px;
  font-weight: 500
}

.services-single-left-heading h1:after,
.services-single-left-heading h4:after {
  content: " ";
  display: block;
  background: #d21e2b;
  width: 50px;
  height: 2px;
  margin-top: 8px
}


.services-single-left-heading h1 {
  color: #111;
  font-size: 20px;
  font-weight: 500
}

.primary-list li {
  list-style-type: none;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  margin-top: 19px;
  line-height: 23px
}

.primary-list li i {
  color: #d21e2b;
  padding-right: 10px
}

.primary-list li {
  list-style-type: none;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  margin-top: 19px;
  line-height: 23px
}

.primary-list li i {
  color: #d21e2b;
  padding-right: 10px
}

.rounded-border {
  border-radius: 10px !important
}

.text-content-big p {
  font-size: 15px;
  font-weight: 400;
  color: #222;
  line-height: 200%;
  margin-bottom: 15px
}


.cryptmlmwhatsappbtn_color,
.cryptmlmwhatsappbtn_color:hover {
  background: #23c660;
  color: #fff;
  border: 1px solid #23c660
}

.cryptmlmwhatsappbtn_color:hover {
  box-shadow: 0 0 0 .2rem rgb(35 198 96/50%)
}


.cryptmlmskypebtn_color:hover,
.cryptmlmtelegrambtn_color:hover {
  box-shadow: 0 0 0 .2rem rgb(3 155 229/50%)
}

.cryptmlmtelegrambtn_color,
.cryptmlmtelegrambtn_color:hover {
  background: #039be5;
  color: #fff;
  border: 1px solid #039be5
}

.cryptmlmskypebtn_color:hover,
.cryptmlmtelegrambtn_color:hover {
  box-shadow: 0 0 0 .2rem rgb(3 155 229/50%)
}

.cryptmlmtelegrambtn_color,
.cryptmlmtelegrambtn_color:hover {
  background: #039be5;
  color: #fff;
  border: 1px solid #039be5
}

.cryptmlmskypebtn_color,
.cryptmlmskypebtn_color:hover {
  background: #40baf5;
  border: 1px solid #40baf5;
  color: #fff
}






/*================================ End Recharge Api ================================*/



/*================================ Start Domestic Api ================================*/

.shadow-primary {
  -webkit-box-shadow: 0 20px 40px rgb(0 0 0/20%);
  box-shadow: 0 20px 40px rgb(0 0 0/20%)
}

.section-block-features,
.section-dmt-api {
  padding: 70px 0
}

.feature-box-2 {
  position: relative;
  background: #fff;
  border-radius: 5px;
  margin: 15px 0;
  -webkit-transition-duration: .3s;
  transition-duration: .3s
}

.feature-box-2 h4 {
  color: #111;
  font-size: 18px;
  font-weight: 500;
  line-height: 170%;
  margin: 8px 0 5px
}

.feature-box-2 img {
  width: 65px
}


/*================================ End Domestic Api ================================*/



/*================================ End Payout Api ================================*/


.mb-25,
.rs-achievement.style1 .rs-counter .rs-counter-list .counter-icon {
  margin-bottom: 25px
}

.left-line-v {
  position: relative;
  padding-left: 20pxs
}

.rs-achievement.style1 .rs-counter {
  display: flex;
  justify-content: center;
  border-top: 1px solid #e8e8e8
}

.rs-achievement.style1 .rs-counter .rs-counter-list {
  text-align: center;
  width: 100%;
  transition: .3s;
  padding: 40px 0 35px
}

.rs-achievement.style1 .rs-counter .rs-counter-list .counter-icon i {
  height: 46.3px;
  line-height: 46.3px;
  display: block;
  color: #e94d65
}

.rs-achievement.style1 .rs-counter .rs-counter-list .counter-number {
  font-size: 40px;
  line-height: 1;
  color: #222;
  font-weight: 700;
  margin-bottom: 8px
}

.rs-achievement.style1 .rs-counter .rs-counter-list .counter-number:after {
  content: "+"
}

.rs-achievement.style1 .rs-counter .rs-counter-list .counter-text {
  font-weight: 500;
  text-transform: capitalize
}

.rs-achievement.style1 .rs-counter:hover .rs-counter-list:hover,
.rs-achievement.style1 .rs-counter:not(:hover) .active {
  box-shadow: 0 6px 30px 0 rgb(0 0 0/8%)
}

.rs-achievement.style1 .img-part {
  position: relative;
  right: -70px
}

.rs-achievement.style1 .img-part img {
  border-radius: 50px 0 0
}

.rs-achievement.style1 .pattern-img {
  position: absolute;
  content: '';
  left: 0;
  top: 175px;
  z-index: -1
}


.rs-vertical-middle,
.y-middle {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center
}

.sec-title3 .sub-text:after,
.sec-title3 .sub-text:before {
  height: 4px;
  top: 12px;
  background-color: #c12527;
  transition: .3s;
  z-index: 0
}


.sec-title3 .sub-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  text-transform: uppercase;
  color: #c12527;
  margin: 0 0 3px;
  display: block;
  position: relative;
  padding-left: 94px
}

.sec-title3 .sub-text:before {
  content: '';
  position: absolute;
  left: 0;
  width: 12px;
  border-radius: 2px
}

.sec-title3 .sub-text:after {
  content: "";
  position: absolute;
  border: 0;
  width: 55px;
  margin-left: 0;
  left: 24px;
  border-radius: 2px
}

.sec-title3 .heading-border-line:after,
.sec-title3 .heading-border-line:before {
  bottom: -4px;
  left: 50%;
  border-radius: 2px;
  content: "";
  height: 4px;
  background: #c12527
}

.pb-25 {
  padding-bottom: 25px
}

.sec-title3 .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  color: #0a0a0a;
  margin: 0
}

.sec-title3:hover .sub-text:before {
  width: 65px;
  background: #c12527
}

.sec-title3:hover .sub-text:after {
  margin-left: 46px;
  width: 12px;
  background: #c12527
}



.sec-title3 .heading-border-line:before {
  width: 12px;
  position: absolute;
  margin-left: -35px;
  transform: translateX(-50%);
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 1
}

.sec-title3 .heading-border-line:after {
  width: 65px;
  position: absolute;
  right: 0;
  margin-left: -20px;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 0
}

.sec-title3:hover .heading-border-line:before {
  margin-left: -5px;
  width: 65px;
  background: #c12527
}

.sec-title3:hover .heading-border-line:after {
  width: 12px;
  margin-left: 35px;
  background: #c12527
}

.btn.btn-circle-sm {
  padding: 0;
  border-radius: 100% !important;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.btn-soft-primary {
  background-color: #feece9;
  color: #c12527
}

.me-4 {
  margin-right: 1rem !important
}

.fontW-700 {
  font-weight: 700
}


.btn.btn-circle-sm {
  padding: 0;
  border-radius: 100% !important;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}


.btn.btn-circle .number {
  display: table-cell;
  text-align: center;
  margin: 0 auto;
  vertical-align: middle;
  font-size: 1.1rem;
  font-weight: 700
}


.counter-wrap,
.ct-heading,
.sec-title4,
.service-wrap.style3 .container {
  position: relative;
  z-index: 1
}

.service-wrap.style3 .container .service-shape-one {
  position: absolute;
  top: 100px;
  right: -10px;
  z-index: -1
}

.service-wrap.style3 .container .service-shape-two {
  position: absolute;
  bottom: 100px;
  left: -35px;
  z-index: -1
}

.counter-wrap:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  content: "";
  /* background-color: #c12527; */
  z-index: -1
}

.counter-card-wrap .counter-card {
  width: 100%;
  position: relative;
  padding: 45px 30px 50px
}

.counter-card-wrap {
  background: #272727;
  border-radius: 5px
}

.consultant-1.text {
  font-size: 23px;
  padding-left: 20px
}

.w-60 {
  width: 50%
}







.serviceBox-payout {
  color: #c12527;
  font-family: zen maru gothic, sans-serif;
  text-align: center;
  padding: 30px 35px 40px;
  border-radius: 0 80px;
  border: 2px dashed #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 30px
}

.serviceBox-payout:before {
  content: "";
  background: #fff;
  border-radius: 0 70px;
  box-shadow: 5px 5px 12px rgba(0, 0, 0, .3);
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  top: 50%;
  left: 50%;
  z-index: -1
}

.serviceBox-payout .service-icon {
  font-size: 45px;
  margin: 0 auto 15px
}

.serviceBox-payout .title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 12px
}

.serviceBox-payout .description {
  color: #444;
  font-size: 15px;
  line-height: 22px
}

.serviceBox-payout.yellow {
  color: #d38a0c;
  border-color: #d38a0c
}

.serviceBox-payout.yellow:after {
  background-color: #d38a0c;
  height: 130px;
  width: 100px;
  border-radius: 0 0 0 80px;
  top: auto;
  bottom: -9px
}

.serviceBox-payout.purple {
  color: #8455d0;
  border-color: #8455d0
}

.serviceBox-payout.purple:after {
  background-color: #8455d0;
  top: auto;
  bottom: -9px;
  left: auto;
  right: -9px
}

.serviceBox-payout.red {
  color: #cd4b4c;
  border-color: #cd4b4c
}

.serviceBox-payout.red:after {
  background-color: #cd4b4c;
  width: 100px;
  height: 130px;
  border-radius: 0 85px 0 0;
  left: auto;
  right: -9px
}

@media only screen and (max-width:990px) {
  .serviceBox {
    margin: 0 0 30px
  }

  .serviceBox-payout {
    margin: 0 10px 30px
  }
}




#experienceTab {
  border-left: 1px solid #bfc7df
}

#experienceTab .nav-item {
  padding-left: 35px;
  margin-bottom: 10px;
  position: relative
}

#experienceTab.nav-pills .nav-item .nav-link.active {
  color: #080808 !important;
  background-color: transparent;
  padding: 0;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .7px;
  opacity: 1
}

#experienceTab.nav-pills .nav-item .desc {
  font-size: 1.09375vw;
  line-height: 1.64063vw;
  color: #727781;
  padding-top: .19063vw;
  font-weight: 400;
  cursor: pointer
}

#experienceTab.nav-pills .nav-item .nav-link {
  padding: 0;
  color: #080808;
  opacity: .24;
  cursor: pointer
}

#experienceTab.nav-pills .nav-item {
  border-radius: 0;
  color: #080808;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .7px
}

#experienceTab.nav-pills .nav-item .nav-link.active:before {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 80px;
  background: #d21e2b;
  left: -2px
}

.section-block-grey {
  padding: 70px 0;
  background-color: #f9f9f9
}

/*================================ End Payout Api ================================*/


/*================================ Software Development Api ================================*/



.features-box .icon {
  width: 85px;
  height: 85px;
  background-color: #bb0b0b;
  color: #fff;
  font-size: 50px;
  border-radius: 10px;
  margin-bottom: 22px;
  transition: .5s;
  padding: .8rem;
}



/*================================ End Software Development Api ================================*/


/*================================ MLM Software ================================*/


.myCard {
  background-color: transparent;
  width: 100%;
  height: 254px;
  perspective: 1000px;
}

.title {
  font-size: 1.5em;
  font-weight: 900;
  text-align: center;
  margin: 0;
}

.innerCard {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.myCard:hover .innerCard {
  transform: rotateY(180deg);
}

.frontSide,
.backSide {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  color: white;
  box-shadow: 0 0 0.3em rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.frontSide,
.frontSide::before {
  background: linear-gradient(43deg, rgb(65, 88, 208) 0%, rgb(200, 80, 192) 46%, rgb(255, 204, 112) 100%);
}

.backSide,
.backSide::before {
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
}

.backSide {
  transform: rotateY(180deg);
}

.frontSide::before,
.backSide::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 110%;
  height: 110%;
  position: absolute;
  z-index: -1;
  border-radius: 1em;
  filter: blur(20px);
  animation: animate 5s linear infinite;
}

@keyframes animate {
  0% {
    opacity: 0.3;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

/*================================ END MLM Software ================================*/


/*================================ Recharge Application ================================*/

.list_p {
  list-style-type: none;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  margin-top: 19px;
  line-height: 23px;
}

.cad2 {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 1rem;
  padding-top: 1rem;
}


/*================================ Recharge Application  ================================*/

.text-navy {
  --bs-text-opacity: 1;
  color: #000 !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

:not(svg) {
  transform-origin: 0px 0px;
}


.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  text-align: center;
  vertical-align: baseline;
  border-radius: 0.25rem;

}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}





/* Brand Responsive */

@media only screen and (max-width: 480px) {
  .consult_btn {
    padding: 0.375rem 0.4rem;
    font-size: .9rem;
  }

}


/* footer */
@media only screen and (max-width: 480px) {
  .divider {
    display: none;
  }

}




/* contact */

.contact-country,
.form-1,
.mt-20 {
  margin-top: 20px
}

.contact-country-one {
  background-size: cover;
  width: 100%;
  padding: 120px 70px 50px;
  height: 450px;
}


.contact-country-one {
  background-size: cover;
  width: 100%;
  padding: 120px 70px 50px;
  height: 450px;
}

.contact-country-one i {
  color: #fff;
  font-size: 60px;
}

.contact-country-one h4 {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  margin-top: 20px;
}

.contact-country li {
  color: #fff;
  font-size: 15px;
  padding: 10px 0;
}

.contact-country li i {
  color: #fff;
  font-size: 15px;
  margin-right: 15px;
}




/*==================== POPUP ====================*/


.modalDialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}

.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
}

.modalDialog>div {
  width: 500px;
  height: 500px;
  position: relative;
  margin: 10% auto;
  padding: 5px 20px 13px 20px;
  border-radius: 10px;
  background: #fff;
  background: #339999;
  border-radius: 50%;
}

.mtt_top{
  margin-top: 6rem;
}

.close {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
}

.close:hover {
  background: #00d9ff;
}

.pop_text {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;

}


@media only screen and (max-width:480px) {
  .modalDialog>div {
    width: 80%;
    height: 500px;
    position: relative;
    margin: 40% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: #fff;
    background: #339999;
  }

   .mtt_top{
    margin-top: 1rem;
   }
}





/* IMAGES MOVES */

img.vert-move {
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
 }

@-webkit-keyframes mover {
  0% {
      transform: translateY(0);
  }

  100% {
      transform: translateY(-3px);
  }
}

/* IMAGES MOVES1 */

img.vert-move1 {
  -webkit-animation: mover 3s infinite alternate;
  animation: mover 3s infinite alternate;
 }

@-webkit-keyframes mover {
  0% {
      transform: translateY(0);
  }

  100% {
      transform: translateY(-3px);
  }
}




/* ZOOM IMGES */

.icon_zoom {
  /* [1.1] Set it as per your need */
  overflow: hidden;
  /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.icon_zoom img {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.icon_zoom:hover img {
  transform: scale(1.2);
}

/* END ZOOM IMGES */

 
/* ZOOM Icons */

.icon_zoom {
  /* [1.1] Set it as per your need */
  overflow: hidden;
  /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.icon_zoom i {
  transition: transform .5s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.icon_zoom:hover i {
  transform: scale(1.2);
}

/* END ZOOM IMGES */

 



/*----------------- LOGIN -----------------*/

 

.login {
  box-shadow: rgba(190, 180, 180, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
 border-radius: 50px;
 height: 100%;
 margin: 20px auto 0;
 width: 358px;
 padding: 3rem 0rem;
 opacity: .8;
}

select{
  background: url('http://i.minus.com/ibhqW9Buanohx2.png') center left no-repeat, linear-gradient(top, #d6d7d7, #dee0e0);
  border: 1px solid #a1a3a3;
  border-radius: 4px;
  box-shadow: 0 1px #fff;
  box-sizing: border-box;
  color: #696969;
  height: 39px;
  margin: 31px 0 0 29px;
  padding-left: 37px;
  transition: box-shadow 0.3s;
  width: 290px;
}



input.pass1,
input.input1 {
 background: url('http://i.minus.com/ibhqW9Buanohx2.png') center left no-repeat, linear-gradient(top, #d6d7d7, #dee0e0);
 border: 1px solid #a1a3a3;
 border-radius: 4px;
 box-shadow: 0 1px #fff;
 box-sizing: border-box;
 color: #696969;
 height: 39px;
 margin: 31px 0 0 29px;
 padding-left: 37px;
 transition: box-shadow 0.3s;
 width: 290px;
}

input.pass1:focus,
input.input1:focus {
 box-shadow: 0 0 4px 1px rgba(55, 166, 155, 0.3);
 outline: 0;
}



input.pass2,
input.input2 {
 background: url('http://i.minus.com/ibhqW9Buanohx2.png') center left no-repeat, linear-gradient(top, #d6d7d7, #dee0e0);
 border: 1px solid #a1a3a3;
 border-radius: 4px;
 box-shadow: 0 1px #fff;
 box-sizing: border-box;
 color: #696969;
 height: 39px;
 margin: 31px 0 0 29px;
 padding-left: 37px;
 transition: box-shadow 0.3s;
 width: 200px;
}


input.otp {
 background: url('http://i.minus.com/ibhqW9Buanohx2.png') center left no-repeat, linear-gradient(top, #d6d7d7, #dee0e0);
 border: 1px solid #a1a3a3;
 border-radius: 4px;
 box-shadow: 0 1px #fff;
 box-sizing: border-box;
 color: #043d72;
 height: 39px;
  padding-left: 3px;
 transition: box-shadow 0.3s;
 width: 80px;
 font-size: .9rem;
 font-weight: bold;
}


.show-password {
 display: block;
 height: 16px;
 margin: 26px 0 0 28px;
 width: 87px;
}




.forgot {
 color: #7f7f7f;
 font-weight: bold;
 display: inline-block;
 float: right;
 font-size: 12px;
 left: -19px;
 position: relative;
 text-decoration: none;
 top: 5px;
 transition: color .4s;
}

.forgot:hover {
 color: #3b3b3b
}

input[type="submit"] {
 width: 290px;
 height: 35px;
 display: block;
 font-family: Arial, "Helvetica", sans-serif;
 font-size: 16px;
 font-weight: bold;
 color: #fff;
 text-decoration: none;
 text-transform: uppercase;
 text-align: center;
 text-shadow: 1px 1px 0px #37a69b;
 padding-top: 6px;
 margin: 29px 0 0 29px;
 position: relative;
 cursor: pointer;
 border: none;
 background-color: #043d72;
 background-image: linear-gradient(top, #b06b3d, rgb(223, 52, 52));
 border-top-left-radius: 5px;
 border-top-right-radius: 5px;
 border-bottom-right-radius: 5px;
 border-bottom-left-radius: 5px;
 box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #497a78, 0px 10px 5px #999;
}



input[type="submit"]:active {
 top: 3px;
 width: 290px;
 box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #31524d, 0px 5px 3px #999;
}


.btna1 {
 padding: .5rem 1rem;
 border-radius: 1rem;
 text-decoration: none;
 box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #a75c16, 0px 5px 3px #999;
 color: #043d72;
 font-weight: bold;

}


