/* scrollbar */
/* width */
:root {
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #f98f2b;
    border-radius: 10px;

    cursor: pointer;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #145589;
}

.swiper {
    width: 600px;
    height: 300px;
}

/* Font Inserted Manually */
.font-poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.font-poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.font-poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.font-poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.font-poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.font-poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.font-poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.font-poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.font-poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.font-poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.font-poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.font-poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.font-poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.font-poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.font-poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.font-poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.font-poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.font-poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}
.font-quicksand {
    font-family: "Quicksand", sans-serif;
}

.font-rajdhani-light {
    font-family: "Rajdhani", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.font-rajdhani-regular {
    font-family: "Rajdhani", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.font-rajdhani-medium {
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.font-rajdhani-semibold {
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.font-rajdhani-bold {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.font-bona-nova-sc-regular {
    font-family: "Bona Nova SC", serif;
    font-weight: 400;
    font-style: normal;
}

.font-bona-nova-sc-bold {
    font-family: "Bona Nova SC", serif;
    font-weight: 700;
    font-style: normal;
}

.font-bona-nova-sc-regular-italic {
    font-family: "Bona Nova SC", serif;
    font-weight: 400;
    font-style: italic;
}
.font-raleway {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.font-noto-serif {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.font-playwrite-de-grund {
    font-family: "Playwrite DE Grund", cursive;
    font-optical-sizing: auto;
    font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-style: normal;
}

/* dropdown */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: #1454899e;
    color: aliceblue;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* flip container */

.flip-container {
    perspective: 1000px;
}

.flip-container:hover .flipper {
    transform: rotateY(180deg);
}

.flipper {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.front,
.back {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
}

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

.border-custom-50 {
    color: rgb(137 20 20);
}
.border-custom-100 {
    color: rgb(137 20 20);
}
.border-custom-200 {
    color: rgb(137 20 20);
}
.border-custom-300 {
    color: rgb(137 20 20);
}
.border-custom-400 {
    color: rgb(137 20 20);
}
.border-custom-500 {
    color: rgb(137 20 20);
}
.border-custom-600 {
    color: rgb(137 20 20);
}
.border-custom-700 {
    color: rgb(137 20 20);
}
.border-custom-800 {
    color: rgb(137 20 20);
}
.border-custom-900 {
    color: rgb(137 20 20);
}
.border-custom-950 {
    color: rgb(137 20 20);
}

.bg-custom-50 {
    color: rgb(137 20 20);
}
.bg-custom-100 {
    color: rgb(137 20 20);
}
.bg-custom-200 {
    color: rgb(137 20 20);
}
.bg-custom-300 {
    color: rgb(137 20 20);
}
.bg-custom-400 {
    color: rgb(137 20 20);
}
.bg-custom-500 {
    color: rgb(137 20 20);
}
.bg-custom-600 {
    color: rgb(137 20 20);
}
.bg-custom-700 {
    color: rgb(137 20 20);
}
.bg-custom-800 {
    color: rgb(137 20 20);
}
.bg-custom-900 {
    color: rgb(137 20 20);
}
.bg-custom-950 {
    color: rgb(137 20 20);
}

.text-custom-50 {
    color: rgb(137 20 20);
}
.text-custom-100 {
    color: rgb(137 20 20);
}
.text-custom-200 {
    color: rgb(137 20 20);
}
.text-custom-300 {
    color: rgb(137 20 20);
}
.text-custom-400 {
    color: rgb(137 20 20);
}
.text-custom-500 {
    color: rgb(137 20 20);
}
.text-custom-600 {
    color: rgb(137 20 20);
}
.text-custom-700 {
    color: rgb(137 20 20);
}
.text-custom-800 {
    color: rgb(137 20 20);
}
.text-custom-900 {
    color: rgb(137 20 20);
}
.text-custom-950 {
    color: rgb(137 20 20);
}

.bg-cta {
    background-image: url(http://127.0.0.1:8000/assets/uploads/png/selfie.png);
}
.footer-img {
    background-image: url(/uploads/footerDrop.png);
}

/* water */

.water-effect {
    position: relative;
}

.water-effect h2 {
    color: #fff;
    /* font-size: 8em; */
    position: absolute;
    left: 0;
    /* transform: translate(-50%, -50%); */
}

.water-effect h2:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px #38c2ec;
}

.water-effect h2:nth-child(2) {
    color: #63abe6;
    animation: animate 4s ease-in-out infinite;
}

/* environment-effect */

.environment-effect {
    position: relative;
}

.environment-effect h2 {
    color: #fff;
    /* font-size: 8em; */
    position: absolute;
    left: 0;
    /* transform: translate(-50%, -50%); */
}

.environment-effect h2:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px rgb(0, 75, 0);
}

.environment-effect h2:nth-child(2) {
    color: green;
    animation: animate 4s ease-in-out infinite;
}

/* health-effect */

.health-effect {
    position: relative;
}

.health-effect h2 {
    color: #fff;
    /* font-size: 8em; */
    position: absolute;
    left: 0;
    /* transform: translate(-50%, -50%); */
}

.health-effect h2:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px red;
}

.health-effect h2:nth-child(2) {
    color: #145589;
    animation: animate 4s ease-in-out infinite;
}

/* youth-effect */

.youth-effect {
    position: relative;
}

.youth-effect h2 {
    color: #fff;
    /* font-size: 8em; */
    position: absolute;
    left: 0;
    /* transform: translate(-50%, -50%); */
}

.youth-effect h2:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px orangered;
}

.youth-effect h2:nth-child(2) {
    color: #145589;
    animation: animate 4s ease-in-out infinite;
}

/* theatre-effect */

.theatre-effect {
    position: relative;
}

.theatre-effect h2 {
    color: #fff;
    /* font-size: 8em; */
    position: absolute;
    left: 0;
    /* transform: translate(-50%, -50%); */
}

.theatre-effect h2:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px black;
    background: -webkit-linear-gradient(#eee, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theatre-effect h2:nth-child(2) {
    color: red;
    animation: animate 4s ease-in-out infinite;
}

/* band-effect */

.band-effect {
    position: relative;
}

.band-effect h2 {
    color: #fff;
    /* font-size: 8em; */
    position: absolute;
    left: 0;
    /* transform: translate(-50%, -50%); */
}

.band-effect h2:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px black;
    background: -webkit-linear-gradient(#eee, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.band-effect h2:nth-child(2) {
    color: black;
    animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
    0%,
    100% {
        clip-path: polygon(
            0% 5%,
            16% 24%,
            33% 50%,
            54% 60%,
            70% 61%,
            84% 59%,
            100% 52%,
            100% 100%,
            0% 100%
        );
    }

    50% {
        clip-path: polygon(
            0% 70%,
            15% 73%,
            34% 66%,
            51% 62%,
            67% 50%,
            84% 45%,
            100% 46%,
            100% 100%,
            0% 100%
        );
    }
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.circle .share {
    position: relative;
    width: 100%;
    height: 100%;
    line-height: 70px;
    text-align: center;
    font-size: 30px;
    color: #fff;
    background: #607d8b;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 2px #112833;
}
.circle ul {
    position: absolute;
    top: -65px;
    left: -65px;
    margin: 0;
    padding: 0;
    width: 170px;
    height: 170px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #1b3646, 0 0 0 4px #fff;
    transition: 1s;
    transform: scale(0.3) rotate(-180deg);
    z-index: -1;
    opacity: 0;
}
.circle:hover ul {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 0 2px #1b3646, 0 0 0 4px #fff, 0 5px 30px rgba(0, 0, 0, 1);
    opacity: 1;
}
.circle ul li {
    position: absolute;
    list-style: none;
}
.circle ul li:nth-child(1) {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
}
.circle ul li:nth-child(2) {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}
.circle ul li:nth-child(3) {
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
.circle ul li:nth-child(4) {
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.circle ul li a .fa {
    transition: 0.5s;
    color: #112833;
    font-size: 20px;
}
.circle ul li:hover a .fa {
    transform: scale(1.5);
}

.circle ul li:hover:nth-child(1) .fa {
    color: #3b5999;
}
.circle ul li:hover:nth-child(2) .fa {
    color: #55acee;
}
.circle ul li:hover:nth-child(3) .fa {
    color: #dd4b39;
}
.circle ul li:hover:nth-child(4) .fa {
    color: #0077b5;
}
.circle ul:before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background: #112833;
    transform: rotate(45deg);
}
.circle ul:after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    background: #112833;
    transform: rotate(-45deg);
}
