/*
========================
GOBAL CSS START
========================
*/

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/khaleefa");

body {
    font-family: "Noto Sans", serif;
    font-size: 16px;
    font-weight: 400;
    background: #1f6437;
    color: #fff;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: white;
    background: #ff7675;
}

::-webkit-selection {
    color: white;
    background: #ff7675;
}

::-moz-selection {
    color: white;
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #1ebe73;
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

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

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: #1ebe73;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*===============
 GOBAL CSS END  
 ============== */

/* header style start hare  */

.site-header {
    padding-top: 20px;
    padding-bottom: 20px;
}
.tab-nav ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 46px;
}
.tab-nav ul li button {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 29.203px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-content h2 {
    color: #ff8c01;
    font-family: "Khaleefa", sans-serif;
    font-size: 73.008px;
    font-style: normal;
    font-weight: 400;
}
.hero-content p {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    text-transform: capitalize;
}

.right-wrapper {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.social-list ul {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 30px;
    padding-bottom: 50px;
}
.tab-content {
    display: none;
    width: 100%;
    flex: 1;
    max-height: 100%;
}
.tab-content.active {
    display: flex;
    flex-direction: column;
}

.about-wrapper h4 {
    color: #fff;
    font-size: 29px;
    font-style: normal;
    font-weight: 400;
    line-height: 36.5px;
    letter-spacing: 0.58px;
    text-align: center;
}
.about-wrapper h4 span {
    font-style: italic;
}

.about-images img {
    max-width: 450px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.about-wrapper p {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    line-height: 36.504px;
}

.content-wrapper {
    height: calc(100vh - 84px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 100%;
}
.about-tab.active {
    visibility: hidden;
}
/* @keyframes moveTab {
    0% {
        position: relative;
        bottom: 0;
        right: 0;
        font-size: 16px;
    }
    100% {
        position: relative;
        bottom: -150px;
        right: -208px;
        font-size: 43px;
        pointer-events: none;
    }
} */

.map-wrapper iframe {
    width: 100%;
    max-width: 625px;
    height: 318px;
}

.dance-class-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 560.883px;
    margin-left: auto;
    text-align: center;
}
.map-wrapper {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.pera-block h4 {
    font-size: 29px;
    font-weight: 600;
}

.dance-classes.active {
    visibility: hidden;
}

/* @keyframes moveTab2 {
    0% {
        position: relative;
        bottom: 0;
        right: 0;
        font-size: 16px;
    }
    100% {
        position: relative;
        bottom: -150px;
        right: -50px;
        font-size: 43px;
        pointer-events: none;
    }
} */

.contact-form-wrapper {
    display: flex;
    width: 677px;
    max-width: 100%;
    min-height: 729px;
    padding: 24.946px;
    align-items: center;
    border-radius: 24.946px;
    border: 2.495px solid rgba(10, 13, 23, 0.05);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(236.98741149902344px);
}

.card-form-card {
    display: flex;
    padding: 49.892px;
    flex-direction: column;
    align-items: center;
    gap: 51.139px;
    width: 100%;
}

.card-form-card p {
    color: #fff;
    text-align: center;
    font-size: 19.957px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.2px;
}

.single-input input,
.single-input textarea {
    padding: 10px 17.462px;
    border-radius: 6.237px;
    border: 1.247px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 18.71px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.187px;
    width: 100%;
    transition: 0.3s;
}
.single-input input::placeholder,
.single-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.single-input input:focus,
.single-input textarea:focus {
    border-color: #fff;
}
.group-input {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-direction: column;
}
.group-input .single-input {
    flex: 1 0 0;
    width: 100%;
}
.card-form-card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.submit-btn button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px 12.473px;
    border: none;
    outline: none;
    border-radius: 6.237px;
    background: linear-gradient(0deg, #e1acbf 0%, #e1acbf 100%);
    color: #1e1e1e;
    font-size: 22.451px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.225px;
}

.contact-details-wp ul {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 500px;
    margin-left: auto;
}
.contact-details-wp ul li {
    display: flex;
    align-items: center;
    gap: 35px;
}
.contact-details-wp ul li .contact-icons {
    max-width: 28px;
    text-align: center;
}
.contact-details-wp ul li a {
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
}

.tab.contact-us.active {
    visibility: hidden;
}
/* 
@keyframes moveTab3 {
    0% {
        position: relative;
        bottom: 0;
        right: 0;
        font-size: 16px;
    }
    100% {
        position: relative;
        top: 10vh;
        right: 20vw;
        font-size: 43px;
        pointer-events: none;
    }
} */

.tab-nav ul li button:hover {
    opacity: 0.8;
}
.social-list ul a:hover {
    opacity: 0.8;
}


.main-content {
	height: calc(100vh - 105px);
	display: flex;
	width: 100%;
	flex-direction: column;
}

.tab-content .container {
	display: flex;
	flex-direction: column;
}


.about-us-title h1 {
	font-size: 29px;
	text-align: center;
	padding-bottom: 20px;
    transform: translateY(-13vh) translateX(-9vw);
}

.tab-content.active .about-us-title h1 {
    animation: moveTab66 0.5s ease-in-out forwards;
}

@keyframes moveTab66 {
    0% {
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
        font-size: 43px;
    }
}


.dance-class-title h1 {
	font-size: 29px;
	text-align: center;
	padding-bottom: 0;
	transform: translateY(-13vh) translateX(0vw);
}

.tab-content.active .dance-class-title h1 {
    animation: moveTab77 0.5s ease-in-out forwards;
}

@keyframes moveTab77 {
    0% {
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
        font-size: 43px;
    }
}


.contact-us-title h1 {
	font-size: 29px;
	text-align: center;
	padding-bottom: 20px;
	transform: translateY(-31vh) translateX(13vw);
}
.tab-content.active .contact-us-title h1 {
    animation: moveTab88 0.5s ease-in-out forwards;
}

@keyframes moveTab88 {
    0% {
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
        font-size: 43px;
    }
}


.content-wrapper .row {
	align-items: center;
}