/********** Template CSS **********/
p

color:"#000000"}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -60px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .7);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid #FFFFFF;
    overflow: hidden;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 0%;
    height: 0%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 300px;
    }
    
    .carousel .carousel-item img {
        position: absolute;
        width: 0%;
        height: 0%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 0px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}

.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1) 50%), url(../img/carousel-1.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) left center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}

.main-div {
  width: 350px;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  transform: perspective(500px) rotateY(-42deg);
  -webkit-transform: perspective(500px) rotateY(-42deg);
  -moz-transform: perspective(500px) rotateY(-42deg);
  -ms-transform: perspective(500px) rotateY(-42deg);
  -o-transform: perspective(500px) rotateY(-42deg);
  animation-name: rotate-windows;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

.main-div div {
  background-color: #00adef;
  width: 47.5%;
  height: 47%;
}

@keyframes rotate-windows {
  0% {
    transform: perspective(500px) rotateY(-42deg);
    -webkit-transform: perspective(500px) rotateY(-42deg);
    -moz-transform: perspective(500px) rotateY(-42deg);
    -ms-transform: perspective(500px) rotateY(-42deg);
    -o-transform: perspective(500px) rotateY(-42deg);
  }
  50% {
    transform: perspective(500px) rotateY(0deg);
    -webkit-transform: perspective(500px) rotateY(0deg);
    -moz-transform: perspective(500px) rotateY(0deg);
    -ms-transform: perspective(500px) rotateY(0deg);
    -o-transform: perspective(500px) rotateY(0deg);
  }
  100% {
    transform: perspective(500px) rotateY(-42deg);
    -webkit-transform: perspective(500px) rotateY(-42deg);
    -moz-transform: perspective(500px) rotateY(-42deg);
    -ms-transform: perspective(500px) rotateY(-42deg);
    -o-transform: perspective(500px) rotateY(-42deg);
  }
}




/* Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);

/* Cursor */
.cursor{
    position: relative;
    width: 24em;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 50px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}
/* Animation */
.typewriter-animation {
  animation: 
    typewriter 5s steps(50) 1s 1 normal both, 
    blinkingCursor 500ms steps(50) infinite normal;
}
@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blinkingCursor{
  from { border-right-color: rgba(255,255,255,.75); }
  to { border-right-color: transparent; }
}


// Partner Logos
.partner-logos {
  background-color: #eeeeee;
  padding: 12px;
}

.partner-logos__title {
  color: blue;
}

.partner-logos__body {
  
}

.partner-logo {
  max-width: 150px;
  height: auto;
}

.partner-logo + .partner-logo {
  margin-left: 10px;
}




// Generic Objects

.box {
  border: 1px dashed grey;
  padding: 12px;
}


// Utility classes

.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

.float--left {
  float: left;
}

.float--right {
  float: right;
}

.logos__marquee {
	display: flex;
	overflow-x: hidden;
	user-select: none;
	mask-image: linear-gradient(
		to right,
		hsl(0 0% 0% / 0),
		hsl(0 0% 0% / 1) 20%,
		hsl(0 0% 0% / 1) 80%,
		hsl(0 0% 0% / 0)
	);
}

.marquee__logos {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 1rem;
	min-width: 100%;
	animation: loop 20s linear infinite;
}
.marquee__logos img {
	display: block;
	margin-inline: 2rem;
}

@keyframes loop {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

.fab.fa-twitter{
	font-family:sans-serif;
}
.fab.fa-twitter::before{
	content:"𝕏";
	font-size:1.2em;
}

html{
	box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

*, *:after,*:before{
	box-sizing: border-box;
}

body::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

body::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #41b93c;
}

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


.menu-wrapper {
  max-width: 500px;
  height: 40px;
  padding: 0 30px;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
}
.menu-wrapper .menu-item {
  height: 100%;
  overflow: auto;
  white-space: nowrap;
}
.menu-wrapper .menu-item a {
  display: inline-block;
  padding: 5px 20px;
  color: #333;
  height: 100%;
}
.menu-wrapper .menu-item a:hover {
  text-decoration: none;
}
.menu-wrapper .menu-item a:first-child {
  padding-left: 5px;
}
.menu-wrapper .menu-item::-webkit-scrollbar {
  display: none;
}
.menu-wrapper .pointer {
  height: 40px;
  width: 30px;
  line-height: 38px;
  text-align: center;
  position: absolute;
  top: 0;
}
.menu-wrapper .pointer i {
  color: #333;
  cursor: pointer;
}
.menu-wrapper .left-pointer {
  left: 0;
}
.menu-wrapper .right-pointer {
  right: 0;
}
.menu-wrapper .dis i {
  color: #ccc;
}
a.active{
  color: red;
}

// layout
.button-premium-user {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  width: 16em;
}

.button-premium-team, 
.button-premium-gift {
  // takes care of breaking whole button into second line 
  // which is a problem with display: inline;
  display: inline-block; 
  margin: 1em 2em;
  max-width: 90%;
  padding: 0.9em 1em 0.8em;
  width: 20em;
}

// general sizing and spacing
.buttons-premium,
[class^="button-"]{
  box-sizing: border-box;
  line-height: 1.6;
  text-align: center;
}

[class^="button-"] {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.2em;
  padding: 0.6em 1.6em; 
}

// visual styling

$orange: #FFA500;
$red   : #cc0000;
$tealy : #2BE2A2;
$tealy-dark : scale-color(#2BE2A2, $lightness: -20%);

body {
  background-color: #000;
  color: #ccc;
  font-size: (14rem / 16);
  padding: 1vw;
}

a {
  color: $tealy;
  text-decoration: none;
  
  &:focus,
  &:hover {
    text-decoration: underline;
  }
}

.buttons-premium {
  background-color: #222;
  border-radius: 0.4em;
  font-family: "helvetica neue", helvetica, arial, sans-serif;
  margin: 1vw;
  overflow-wrap: break-word;
  padding: 2em 1% 1em;
}

.button-premium-user {
  background-color: $orange;
  border-radius: 14vw;
  box-shadow: 0 (-3em / 32) (42em / 32) red inset, 
              0 (-13em / 32) (26em / 32) black inset, 
              0 0 (20em / 32) black inset, 
              0 (1em / 32) (6em / 32) #805300, 
              0 0 (10em / 32) black;
  color: #FFFDD5;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-shadow: 0 2px 2px #983300, 0 -2px 2px white;
  transition: text-shadow 0.4s ease 0s, box-shadow 0.2s ease 0s;
}

.button-premium-user:focus, 
.button-premium-user:hover {
  box-shadow: 0px (3em / 32) (42em / 32) red inset, 0px (13em / 32) (26em / 32) black inset, 0 0 (20em / 32) black inset, 0 -0.06em 0.2em #805300, 0 0 (30em / 32) black;
  text-decoration: none;
  text-shadow: 0 2px 2px white, 0 -2px 2px #983300;
}

// team and gift buttons
  
.button-premium-team, 
.button-premium-gift {
  background: transparent;
  border: 1px solid $tealy-dark;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0 0 3px $tealy inset, 0 0 3px $tealy;
  color: $tealy;
  font: normal 12px/1.3 "helvetica neue",helvetica,arial,sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-shadow: 0 0 1px #000;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.button-premium-team:focus, 
.button-premium-team:hover,
.button-premium-gift:focus, 
.button-premium-gift:hover {
  border-color: scale-color($tealy-dark, $lightness: 30%);
  box-shadow: 0 0 5px $tealy inset, 0 0 5px $tealy;
  color: scale-color($tealy-dark, $lightness: 80%);
  text-decoration: none;
  text-shadow: 0 0 1px $tealy;
.rectangle {
	width: 20rem;
	height: 10rem;
}
.square {
	width: 10rem;
	height: 10rem;
}
.rectangle-small {
	width: 10rem;
	height: 5rem;
	background: radial-gradient(circle at 15% 20%, dodgerblue, blue);
	box-shadow: 3px 3px 6px 0 rgba(0 0 0 / 0.4);
}
.square-small {
	width: 5rem;
	height: 5rem;
	background: radial-gradient(circle at 20% 20%, dodgerblue, blue);
	box-shadow: 3px 3px 6px 0 rgba(0 0 0 / 0.4);
}

.border-radius {
	border-radius: 10rem;
}
.corner-shape {
	border-radius: 10rem;
	corner-shape: squircle;
}

/* general div styling */
section {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 2rem;
	margin-block: 1rem;
}
div {
	display: grid;
	place-content: center;
	border: 1px solid black;
	text-align: center;
}
article {
	display: grid;
	place-items: center;
	margin-block-start: 2rem;

	& > img {
		width: calc(100% - 4vmin);
		display: block;
		max-width: 40rem;
		object-fit: cover;
	}
}
h1 + p {
	width: 100%;
	line-height: 1.2;
	text-align: center;
}
img {
	max-width: 300px;
	object-fit: cover;
}

/* bodywork */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	display: grid;
	place-items: center;
	margin: 2rem;
	font-family: sans-serif;
	font-size: clamp(0.6rem, 0.8rem + 1cqi, 1rem);
	line-height: 1.3;
}
