@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Noto+Sans:wght@200;300;400;500;600;700;800&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200&family=Rubik+Bubbles&family=Spicy+Rice&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h2 {
    font-size: 27px;
    font-weight: 600;
}

h3 {
    font-size: 21px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

h5 {
    font-size: 16px;
    font-weight: 600;
}

h6 {
    font-size: 15px;
    font-weight: 600;
}

p {
    font-size: 14px;
    font-weight: 500;
}

/* scroll section design  */
::-webkit-scrollbar {
    width: 6px;
    scroll-snap-align: center;
}

button {
    cursor: pointer;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: rgb(243, 160, 67);
    border-radius: 50px;
    border: 1px solid black;
    transition: all 1s ease-in;
}

::-webkit-scrollbar-thumb:hover {
    border: 1px solid white;
}

::-moz-selection {
    /* Code for Firefox */
    color: rgb(0, 0, 0);
    background: rgb(0, 247, 255, .5);
}

::selection {
    color: rgb(0, 0, 0);
    background: rgb(0, 255, 221, .5);
}

#myModal {
    display: none;
}

.validation_error {
    position: absolute;
    top: 16%;
    right: 0;
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.footer .validation_error {
    color: red !important;
    letter-spacing: .5px;
    font-size: 10px;
}

.myform .form_group,
.myform .form_group-1 {
    position: relative;
}

.mouse-pointer {
    position: fixed;
    width: 25px;
    height: 25px;
    border: 2px solid rgb(243, 160, 67);
    border-radius: 50%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s ease;
    pointer-events: none;
    /* animation: mouser 1s ease-in infinite; */
}


.mouse-pointer::before {
    position: absolute;
    content: '';
    border-radius: 50%;
    width: 30%;
    height: 30%;
    background-color: rgb(243, 160, 67);
}

.justify-content-between {
    justify-content: space-between;
}

.slick-next.slick-arrow {
    position: absolute;
    padding: 2rem;
    right: 1rem;
    opacity: 0.3;
}

.slick-prev.slick-arrow {
    padding: 2rem;
    z-index: 1;
    opacity: 0.3;
}

.slider:hover .slick-arrow {
    transition: all .5s;
    opacity: 1;
}

.slick-next::before,
.slick-prev:before {
    /* color: red !important; */
    font-size: 30px !important;
}


.slick-dots li {
    position: absolute;
    background-color: brown;
    width: 20px !important;
    height: 3px !important;
    border-radius: 50px;
    transition: all .9s;
    margin: 0 3px !important;
}

.slick-dots li button {
    display: none !important;
}

.slick-dots li.slick-active {
    background-color: red;
    width: 40px !important;
    margin-left: -700px !important;

}

.slick_custme {
    background-color: rgb(255, 255, 255) !important;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    position: absolute;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.226);
}

.slick_custme.prev {
    top: 50%;
    left: -10%;
}

.slick_custme.next {
    top: 50%;
    right: -10%;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.space-between {
    justify-content: space-between;
}

.space-around {
    justify-content: space-around;
}

.all-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section {
    padding: 50px 0;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.container1 {
    width: 100%;
    margin: 0 auto;
    padding: 0px 70px;
}

a {
    text-decoration: none;
    color: black;
}

li {
    list-style: none;
}

.scroll-up {
    position: relative;
}

.scroll-up span i {
    position: absolute;
    bottom: 50px;
    right: 15px;
    width: 38px;
    height: 38px;
    padding-left: 11px;
    padding-top: 8px;
    border-radius: 10%;
    background-color: darkorange;
    color: white;
    font-size: 19px;
    cursor: pointer;
    animation: scroll-up 3s ease-in-out infinite;
    transition: all 0.5s ease-in-out;
}

.scroll-up span i:hover {
    animation: none;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.heading {
    padding-bottom: 40px;
}

.text-center {
    text-align: center;
}

.p-bottom {
    padding-bottom: 20px;
}

.p-top {
    padding-top: 40px;
}

.ptb {
    padding: 5px 0;
}


.btn {
    padding: 8px 20px;
    background: white;
    color: #ffffff;
    border-radius: 2px;
    transition: all .5s ease-out;
    box-shadow: 1px 1px 1px 0px #b0b0b0;
}

.btn:hover {
    background: #fff;
    color: #000;
}

.btn1 {
    padding: 8px 35px;
    background: #000;
    color: #ffffff;
    border-radius: 2px;
    transition: all .5s ease-out;
    box-shadow: 2px 2px 0px 1px green;
    line-height: 5;
}

.btn1:hover {
    background: green;
    box-shadow: 2px 2px 0px 1px #000;
    color: #fff;
}

.btn2 {
    padding: 8px 35px;
    background: #fff;
    color: #000;
    border-radius: 2px;
    transition: all .5s ease-out;
    box-shadow: 2px 2px 0px 1px green;
    line-height: 5;
}

.btn2:hover {
    background: green;
    box-shadow: 2px 2px 0px 1px #000;
    color: #fff;
}

.btn3 {
    padding: 8px 35px;
    background: green;
    color: #ffffff;
    border-radius: 2px;
    transition: all .5s ease-out;
    box-shadow: 2px 2px 0px 1px green;
    line-height: 5;
}

.btn3:hover {
    background: #fff;
    box-shadow: 2px 2px 0px 1px #000;
    color: #000;
}

#submit2 {
    padding: 8px;
    width: 100%;
    text-align: center;
    background: #545454;
    color: #fff;
}

.help-inline {
    /* position: absolute; */
    background-color: transparent;
    color: #f33066;
    border-radius: 5px;
    padding: 0px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    top: 100%;
    left: 0;
    width: auto;
    height: auto;
  }