:root {
    --theme-primary: #fff;
    --theme-secondary: #000;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

button,
button:focus,
.btn,
.btn:focus {
    outline: 0;
}

section {
    overflow: hidden;
}

.fw-600 {
    font-weight: 600;
}

.text-theme {
    color: var(--theme-primary);
}

.btn-theme {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    color: white;
    font-weight: 600;
}

.btn-theme:hover {
    background-color: var(--theme-secondary);
    border-color: var(--theme-secondary);
    color: white;
    box-shadow: 0 0 8px -2px rgb(217 113 46 / 50%);
}

.btn-theme:focus {
    box-shadow: 0 0 0 0.25rem rgb(245 131 30 / 25%);
}


/* Back To Top */

#backToTop {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-primary);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 4px 10px 0px rgb(0 0 0 / 40%);
}

#backToTop i {
    color: #000;
}

#backToTop:hover {
    cursor: pointer;
    background-color: var(--theme-secondary);
}

#backToTop:hover i {
    color: #fff;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

body::-webkit-scrollbar {
    display: none;
}


header {
    background: linear-gradient(45deg, rgb(0, 0, 0, 0.3), rgb(0, 0, 0, 0.6)), url('../images/hero_bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 100vh;
    padding: 0px 0px 100px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

header .navbar {
    position: absolute;
    top: 0px;
}

header .nav_socials i,
header .nav_socials a i {
    font-size: 25px;
    background: linear-gradient(to right, #ffbfe0, #decaff, #a0ffa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.2s ease-in-out;
}

.navbar-nav .nav-link {
    font-size: 25px;
    font-family: 'Luckiest Guy', cursive;
    font-weight: 500;
    color: white !important;
    transition: all 0.3s ease-in-out;
    background: none;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(to right, #ffbfe0, #decaff, #a0ffa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header .nav_socials i:hover {
    transform: scale(1.3);
}

header .timer {
    background-color: rgb(0, 0, 0, 0.6);
    padding: 50px 100px;
}

.hero_img img {
    height: 80vh;
    position: relative;
    bottom: -15%;
}

header h1 {
    font-size: 70px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    font-family: 'Luckiest Guy', cursive;
    background: linear-gradient(to right, #f4785c, #f4e7c7, #f4e7c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header p {
    font-size: 65px;
    color: white;
}

header .hours {
    font-size: 15px;
    padding-left: 0px;
    font-weight: 500;
}

.about_us {
    /* top: 100vh; */
    min-height: 100vh;
    padding: 100px 0px;
    position: relative;
    background-color: #141414;
    z-index: 2;
}

.about-img img {
    height: 400px;
}

.about_text h3,
.services h6 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 25px;
    font-weight: 600;
    color: #f5b984;
    position: relative;
    z-index: 2;
}

/*.about_text h3:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0px;*/
/*    height: 130%;*/
/*    width: 20%;*/
/*    z-index: -2;*/
/*    left: -10%;*/
/*    background-color: black;*/
/*}*/

.about_text h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 50px;
    font-weight: 800;
    /* color: white; */
    background: linear-gradient(to right, #f4785c, #f4e7c7, #f4e7c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 3;
    letter-spacing: 4px;
}

.about_text p {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 20px;
    font-weight: 500;
    color: #a4a7b1;
}

.style_1 {
    position: absolute;
    right: 0px;
    z-index: 0;
    top: 50%;
    transform: translateY(-50%);
    filter: contrast(0);
}


.about_us .about-img:before {
    content: '';
    position: absolute;
    top: -50px;
    right: 0;
    width: 400px;
    height: 400px;
    background-repeat: repeat;
    background-image: url(../images/dottede.png);
    opacity: .3;
    z-index: -1;
}

.about_us .about-img .stauts {
    position: absolute;
    bottom: 20px;
    left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.about_us .about-img .stauts .item {
    padding: 20px 30px;
    background: #272727;
    margin-right: 50px;
    position: relative;
    animation: updown 5s linear infinite;
}

@keyframes updown {
    0% {
        transform: translateY(0px);
    }

    30% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateX(-20px);
    }


    100% {
        transform: translateX(0px);
    }
}

.about_us .about-img .stauts .item:after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about_us .about-img .stauts .item {
    background: #d5d4ff;
    color: #121a21;
}

.about_us .about-img .stauts .item2 {
    background: #121a21;
    color: #fff;
}

.about_us .about-img .stauts .item h4 {
    font-size: 45px;
    font-weight: 800;
    display: table-cell;
    vertical-align: middle;
    padding-right: 20px;
}

.about_us .about-img .stauts .item h4 span {
    font-size: 30px;
    font-weight: 500;
    margin-left: 5px;
}

.about_us .about-img .stauts .item h6 {
    font-size: 15px;
    display: table-cell;
    vertical-align: middle;
}


.bar_image {
    height: 60vh;
    background: linear-gradient(45deg, rgb(0, 0, 0, 0.3), rgb(0, 0, 0, 0.6)), url('../images/parrallax_bg.jpg');
    background-position: center;
    /*background-attachment: fixed;*/
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    /* top: 100vh; */
}

.bar_image2 {
    background: url('../images/parrallax_bg.jpg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 30px 0px;
}

/* ====================== [ Start services ] ====================== */
.services {
    /* top: 100vh; */
    position: relative;
    min-height: 100vh;
    padding: 100px 0px;
    background-color: #7a93a9;
    background-image: url(../images/nft-bg.png);
    background-attachment: fixed;
    z-index: 2;
}

.services h5 {
    font-size: 25px;
    color: white;
}

.sec-head h3 {
    font-size: 60px;
    font-weight: 700;
    background: linear-gradient(to right, #f4785c, #f4e7c7, #f4e7c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Luckiest Guy', cursive;
}

.sec-head {
    position: relative;
    margin: 0 auto 80px;
}

.services .item-box p {
    font-size: 16px;
    color: #fff;
}

.services .item-box i {
    font-size: 45px;
    color: white;
    margin-bottom: 10px;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services.box .item-box {
    border: 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.01);
}

.services.box .item-box .icon {
    font-size: 60px;
}

.services.box .item-box .icon:after {
    display: none;
}

.services .item-box {
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgb(196 176 223 / 75%);
    height: 280px;
    position: relative;
    z-index: 2;
}

.services .item-box:before {
    content: "";
    position: absolute;
    background-color: rgb(196 176 223 / 75%);
    height: 90%;
    width: 90%;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

.services .item-box:hover:before {
    width: 100%;
    height: 100%;
}

.services .item-box .icon {
    position: relative;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 40px;
    margin-bottom: 30px;
}

.services .item-box .icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;

    background: linear-gradient(to right, #ffbfe0, #decaff, #a0ffa0);
    z-index: -1;
    opacity: .05;
}

.services .item-box h6 {
    line-height: 1.8;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.services .rone>div {
    position: relative;
}

.services .rone>div:nth-of-type(2) {
    margin-bottom: -50px;
    margin-top: auto;
}

.services .rtwo>div {
    position: relative;
}

.services .rtwo>div:nth-of-type(2) {
    margin-bottom: -50px;
    margin-top: auto;
}

.services .mas-item {
    padding: 40px;
    margin: 50px 0;
    background: #18191d;
    position: relative;
    z-index: 2;
}

.services .mas-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #18191d;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    z-index: -1;
}

.services .mas-item .bg-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffbfe0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    z-index: -2;
}

.services .mas-item:hover .bg-color {
    top: 10px;
    left: 10px;
}

.services .mas-item .icon {
    font-size: 45px;
    color: #ffbfe0;
    margin-bottom: 30px;
}

.services .mas-item h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.7;
}

.services .mas-item .more {
    margin-top: 20px;
    width: 100%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.services .step-item {
    text-align: center;
    padding: 60px;
    margin: 60px auto;
    background: #18191d;
    position: relative;
}

.services .step-item.xbottom {
    bottom: -60px;
}

.services .step-item.xtop {
    top: -60px;
}

.services .step-item.xcolor {
    background: #fff;
    color: white;
}

.services .step-item.xcolor p {
    color: #333;
}

.services .step-item .icon {
    color: #ffbfe0;

    background: linear-gradient(to right, #ffbfe0, #decaff, #a0ffa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px;
    margin-bottom: 30px;
}

.services .step-item h6 {
    margin-bottom: 20px;
}

.services .item {
    text-align: center;
    padding: 60px;
    background: #151921;
    position: relative;
}

.services .item .icon {
    color: #ffbfe0;
    font-size: 40px;
    margin-bottom: 40px;
}

.services .item h6 {
    margin-bottom: 15px;
}

.services.lficon .item-box {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    padding: 60px 40px;
    border-radius: 20px;
}

.services.lficon .item-box.no-curve {
    border-radius: 5px;
}

.services.lficon .item-box .icon {
    text-align: center;
}

.services.lficon .item-box .cont {
    padding-left: 30px;
}

.feat .items {
    padding: 60px 40px;
    position: relative;
    z-index: 3;
}

.feat .items:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 1px;
    background: #18191d;
    z-index: -1;
}

.feat .items:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: 0px;

    background: linear-gradient(to right, #d89dbb, #decaff, #a0ffa0);
    z-index: -2;
    opacity: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.feat .items .icon {
    color: #aaa;
    font-size: 70px;
    margin-bottom: 30px;
}

.feat .items .icon svg {
    width: 1em;
    height: 1em;
}

.feat .items h5 {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.feat .items .more-stroke {
    margin-top: 30px;
}

.feat .items .more-stroke span {
    width: 0;
    height: 2px;
    background: #fff;
    position: relative;
}

.feat .items .more-stroke span:after,
.feat .items .more-stroke span:before {
    content: '';
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    right: -1px;
}

.feat .items .more-stroke span:after {
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
    top: -4px;
}

.feat .items .more-stroke span:before {
    -webkit-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    transform: rotate(-40deg);
    top: 4px;
}

.feat .items.active:before {
    opacity: 1;
}

.feat .items.active .more-stroke span {
    width: 30px;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
}

.feat .items.active .more-stroke span:after,
.feat .items.active .more-stroke span:before {
    width: 12px;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

.feat .items:hover .more-stroke span {
    width: 30px;
}

.feat .items:hover .more-stroke span:after,
.feat .items:hover .more-stroke span:before {
    width: 12px;
}

.serv-arch .item {
    padding: 50px 30px;
    position: relative;
    z-index: 2;
}

.serv-arch .item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #232323;
    border: 1px solid rgba(255, 255, 255, 0.04);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    z-index: -1;
}

.serv-arch .item.active:after {
    opacity: .85;
}

.serv-arch .item:hover:after {
    opacity: .75;
}

.serv-arch .item:hover p {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.serv-arch .item .numb {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
    color: transparent;
    -webkit-text-stroke: 1px #b19777;
}

.serv-arch .item h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.serv-arch .item p {
    margin-top: 60px;
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.serv-arch .item .more {
    margin-top: 50px;
}

.min-area .img {
    padding: 120px 0 120px 80px;
    position: relative;
    z-index: 3;
}

.min-area .img:after {
    content: '';
    position: absolute;
    top: 0;
    right: 120px;
    bottom: 0;
    left: -300px;
    background: #18191d;
    z-index: -1;
}

.min-area .content {
    padding-left: 40px;
}

.min-area .content h4 {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.min-area .content ul {
    margin: 0;
}

.min-area .content ul li {
    margin-top: 25px;
    padding-left: 25px;
    position: relative;
}

.min-area .content ul li:after {
    content: '';
    width: 10px;
    height: 10px;
    border: 1px solid #999;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 2px;
}

.min-area .content ul.feat li {
    padding: 0 0 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.min-area .content ul.feat li:last-of-type {
    padding: 0;
    border: 0;
}

.min-area .content ul.feat li:after {
    display: none;
}

.min-area .content ul.feat li h6 {
    font-weight: 500;
    margin-bottom: 5px;
}

.min-area .content ul.feat li h6 span {
    color: #d89dbb;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 13px;
    border: 1px solid #d89dbb;
    border-radius: 50%;
    margin-right: 10px;
}

.min-area .content ul.feat li p {
    font-size: 13px;
    padding-left: 45px;
}

/* ====================== [ End services ] ====================== */

.team {
    position: relative;
    /* top: 100vh; */
    background-color: white;
    min-height: 100vh;
    padding: 100px 0px;
}

.team h3 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 20px;
    font-weight: 600;
    color: #ffb1b1;
    position: relative;
}

.team h2 {
    font-size: 60px;
    font-weight: 700;

    background: linear-gradient(to right, #d89dbb, #decaff, #a0ffa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Luckiest Guy', cursive;
}

.team p {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 20px;
    font-weight: 500;
    color: #a4a7b1;
}

.team_member {
    overflow: hidden;
}

.team_member img {
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.team_text {
    position: relative;
    width: 85%;
    background-color: black;
    box-shadow: 0px 0px 10px rgba(97, 97, 97, 0.1);
    padding: 10px 0px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.team_text h1 {
    font-size: 30px;
    font-weight: 700;
    /* font-family: 'Roboto', sans-serif; */
    color: white;
}

.style-2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    filter: contrast(0);
}

.icons i {
    font-size: 20px;
    line-height: 1;

    background: linear-gradient(to right, #d89dbb, #decaff, #a0ffa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

.icons i:hover {
    transform: rotate(360deg);
    transform: scale(1.5);
}

.team_member:hover img {
    transform: scale(1.1);
}

/* images */
.images {
    background: rgb(0, 0, 0);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    /* top: 100vh; */
    min-height: 120vh;
    background: url('../images/bg-5.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0px 0px;
    /* padding-bottom: 120vh; */
}

.images h1 {
    font-size: 60px;
    font-weight: 700;
    width: max-content;
    background: linear-gradient(to right, #d89dbb, #decaff, #a0ffa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Luckiest Guy', cursive;
    margin-bottom: 50px;
    width: 100%;
}

.images h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 20px;
    font-weight: 600;
    color: #ffb1b1;
    position: relative;
}

.gallery-imgs {
    /* position: fixed; */
    top: 0px;
    position: relative;
}

.gallery-imgs .col-md-6 {
    width: 50vw;
    background-color: black;
}

.gallery-imgs img {
    width: 50vw;
    height: 100%;
}

.gallery-imgs p {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 20px;
    font-weight: 500;
    color: #4d4d4d;
}


.parallax_text1,
.parallax_text2,
.parallax_text3,
.parallax_text4,
.parallax_text5 {
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.gallery-imgs1 {
    background: url('../images/chicken.png');
    background-position: 0px 0px;
    height: 80vh;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    transition: all 0.9s ease-in-out;
    opacity: 0;
    animation: alternate;
}

.gallery-imgs2 {
    background: url('../images/40\ percent.png');
    background-position: right;
    height: 80vh;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    transition: all 0.9s ease-in-out;
    opacity: 0;
}

.gallery-imgs3 {
    background: url('../images/60\ percent\ merch.png');
    background-position: 0px 0px;
    height: 80vh;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    transition: all 0.9s ease-in-out;
    opacity: 0;

}

.gallery-imgs4 {
    background: url('../images/Sand_box.png');
    background-position: right;
    height: 80vh;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    transition: all 0.9s ease-in-out;
    opacity: 0;

}

.gallery-imgs5 {
    background: url('../images/Blue\ Chip\ Giveaway.png');
    background-position: 0px 0px;
    height: 80vh;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    transition: all 0.9s ease-in-out;
    opacity: 0;

}



/* accordion */
.accordion {
    background: linear-gradient(45deg, rgb(0, 0, 0, 0.2), rgb(0, 0, 0, 0.4)), url('../images/bg-2.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    /* top: 100vh; */
    min-height: 100vh;
    padding: 100px 0px;
}

.accordion img {
    height: 50vh;
}

.faq_head h2 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #f5b984;
    position: relative;
}

.faq_head h1 {
    font-size: 60px;
    font-weight: 700;

    background: linear-gradient(to right, #f4785c, #f4e7c7, #f4e7c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Luckiest Guy', cursive;
}

.card-header {
    background-color: black;
}

.faq_card {
    border-color: black !important;
}

.faq_card i {
    background: linear-gradient(to right, #d89dbb, #decaff, #a0ffa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
}

.faq_card button.faq_q.collapsed+i {
    background: linear-gradient(to right, #d89dbb, #decaff, #a0ffa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: unset;
}

.faq_q {
    width: 100%;

    background: linear-gradient(to right, #d89dbb, #decaff, #a0ffa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: none !important;
    font-weight: 700;
    text-align: left;
}

.faq_body {
    color: whitesmoke;
    background-color: rgb(20, 20, 20);
}


footer {
    /* top: 100vh; */
    position: relative;
    background-color: black;
    background: url('../images/bg-4.jpg');
    padding: 50px 0px;
}

footer ul li {
    list-style: none;
}

footer li a {
    color: whitesmoke;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

footer li a:hover {
    color: white;
    text-decoration: #a0ffa0 underline;
}

footer ul {
    flex-wrap: wrap;
}

#scroll-percentage {
    position: absolute;
    top: 0;
    width: 100vw;
    color: #000;
    margin: 0;
    padding: 0;
}

[data-scrollPercentage] .percentage {
    display: inline-block;
    background-color: rgb(130, 130, 245);
    height: 4px;
    width: 0;
}

#percentage-value {
    position: absolute;
    top: 5%;
    left: 45%;
    height: 180px;
    width: 130px;
    color: rgb(130, 130, 245);
    background-color: white;
    text-align: center;
    line-height: 200px;
    border-radius: 50% 60% 50% 50% / 70% 70% 40% 40%;
    box-shadow: 1px 1px 8px 2px rgb(130, 130, 245),
        -1px -1px 8px 2px rgb(130, 130, 245);
    font-size: 3em;
    z-index: 1;
    transition: all 0.5s;
    /* display: none; */
}

@keyframes bounce {

    from,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.instruction {
    position: fixed;
    z-index: 2;
    top: 60%;
    width: 100%;
    text-align: center;
    color: darkrgb(130, 130, 245);
    animation: bounce 1s infinite;
}

@media only screen and (max-width: 1100px) {

    .about_text h2,
    .sec-head h3,
    .images h1,
    .team h2,
    .faq_head h1 {
        font-size: 40px;
    }

    #percentage-value {
        font-size: 2em;
        height: 170px;
        width: 120px;
    }

    .services h5 {
        font-size: 20px;
    }

    p {
        font-size: 16px !important;
    }

    .about_us .about-img .stauts .item h4 {
        font-size: 35px;
    }

    .about_us .about-img .stauts .item {
        margin-right: 25px;
    }

    .navbar-nav .nav-link {
        font-size: 20px;
    }
}

@media only screen and (max-width: 900px) {
    p {
        font-size: 16px !important;
    }

    .images h1,
    .team h2,
    .sec-head h3,
    .about_text h2,
    .faq_head h1 {
        font-size: 35px;
    }


    .gallery-imgs3,
    .gallery-imgs2,
    .gallery-imgs1,
    .gallery-imgs4,
    .gallery-imgs5 {
        background-position: center;
    }

    #percentage-value {
        height: 150px;
        width: 120px;
        background-color: white;
    }

}

@media only screen and (max-width: 700px) {
    .hero_img img {
        bottom: 10%;
    }

    #percentage-value {
        position: absolute;
    }

    .about_us .about-img .stauts .item {
        padding: 10px 15px;
    }

    .about_text {
        padding: 20px 10px;
    }

    .about_us,
    .team,
    .accordion {
        padding: 20px 0px;
    }

    .images h1,
    .team h2,
    .sec-head h3,
    .about_text h2 {
        font-size: 30px;
    }

    .gallery-imgs1,
    .gallery-imgs2,
    .gallery-imgs3,
    .gallery-imgs4,
    .gallery-imgs5 {
        height: 30vh;
    }

    header .timer {
        padding: 30px 25px;
    }

    footer {
        font-size: 12px;
    }

}