html {
    line-height: 1.15;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #fff
}

* {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
}

p, li, ul, pre, div, h1, h2, h3, h4, h5, h6, figure, blockquote, figcaption {
    margin: 0;
    padding: 0;
}

button {
    background-color: transparent;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button, select {
    text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

    button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
        border-style: none;
        padding: 0;
    }

    button:-moz-focus, [type="button"]:-moz-focus, [type="reset"]:-moz-focus, [type="submit"]:-moz-focus {
        outline: 1px dotted ButtonText;
    }

a {
    color: inherit;
    text-decoration: inherit;
}

input {
    padding: 2px 4px;
}

img {
    display: block;
}

html {
    scroll-behavior: smooth
}



html {
    font-family: Inter;
    font-size: 16px;
}

body {
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.15;
    color: var(--dl-color-theme-neutral-dark);
    background-color: var(--dl-color-theme-neutral-light);
    fill: var(--dl-color-theme-neutral-dark);
}

.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 85px;
    right: 50px;
    background-color: #FED900;
    color: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 1000;
    font-weight: bold;
}

    .scroll-to-top:hover {
        background-color: #0056b3;
    }

    .scroll-to-top.show {
        display: block;
    }

.header {
    /*padding: 10px 16px;*/
    background: #ffffff;
    color: #f1f1f1;
    height: 100px;
    z-index: 100;
    box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
}

/* Page content */
.content {
    /* padding: 16px;*/
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

    /* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
    .sticky + .content {
        /* padding-top: 102px;*/
    }


.checkbox-round {
    width: 1.3em;
    height: 1.3em;
    background-color: white;
   /* border-radius: 50%;*/
    vertical-align: middle;
    border: 1px solid #ddd;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

.checkbox-round:checked {
    background-color: #FED900;
}

.slider {
    width: 100%;
    margin: 0px;
}
.slick-list{
    margin:0px 20px;
}
.slick-slide {
    margin-left: 20px;
    margin-right: 20px;
}

    .slick-slide img {
        width: 100%;
    }

.slick-prev:before,
.slick-next:before {
    color: black;
}


.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}

.slick-active {
    opacity: 1;
}

.slick-current {
    opacity: 1;
}

.has-error {
    box-shadow: 0px 1px 4px red;
    outline: 0;
}


/*body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}*/

.btn-open-popup {
    padding: 12px 24px;
    font-size: 18px;
    background-color: green;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-open-popup:hover {
        background-color: #4caf50;
    }

.overlay-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-box {
    position: absolute;
    top: 115px;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    width: 63vh;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInUp 0.5s ease-out forwards;
}

.form-container {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 10px;
    font-size: 16px;
    color: #444;
    text-align: left;
}

.form-input {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}
.modal {
    /*padding-left: 5px !important;
    padding-right: 16px !important;*/
    margin-top: 100px !important;
}
.btn-submit,
.btn-close-popup {
    /*padding: 12px 24px;*/
    /*border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: backgr*/ound-color 0.3s ease, color 0.3s ease;
}

.btn-submit {
    background-color: #fed900 !important;
    color: #000;
}

/*.btn-close-popup {
    margin-top: 12px;
    background-color: #e74c3c;
    color: #fff;
}

    .btn-submit:hover,
    .btn-close-popup:hover {
        background-color: #fed900;
    }*/

/* Keyframes for fadeInUp animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for popup */
.overlay-container.show {
    display: flex;
    opacity: 1;
}
/*.g-4, .gy-4 {
    --bs-gutter-y: 0.8rem !important;
    --bs-gutter-x: 1.5rem !important;
}*/
.rowtest {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 0.3rem !important;
    padding-left: 0.5rem !important;
    margin-top: 0.8rem !important;
}

.rowtest1 {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 0.1rem !important;
    padding-left: 0.1rem !important;
    margin-top: 0.8rem !important;
}
.row {
    margin-right: 0px !important;
    margin-left: 0px !important;
}
.toast-message{
    font-size:15px !important;
}

#home {
    padding: 0 0 !important;
}

    


