@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background: #000000;
    color: #ffffff;
    line-height: 25px;
    font-family: 'Montserrat', sans-serif;}

h2 {
    font-size: 36px;
    font-weight: 700;
}

.slider {
}

.slider h1 {
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
}

.slider p {
    color: #fff;
    font-weight: 400;
    font-size: 21px;
}

.form-content {
    background: #222222;
    border-radius: 30px;
}

.form-content h2 {
    color: #fff;
    text-align: center;
    font-size: 24px;
}

.form-content .chatbot-form-integration-wrapper {
    background: none;
    width: 100%;
    max-width: 100%;
    min-height: 507px;
}

.form-content .chatbot-form-integration-wrapper input, textarea {
    padding: 10px 20px;
    border-radius: 12px !important;
    height: 62px;
}

.form-content .chatbot-form-integration-wrapper .btn-primary {
    background: #11998e; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #D8B15E, #98772D); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #D8B15E, #98772D); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.bg-dark {
    background: #191919;
}


.circle {
    position: relative;
    width: 100px;
    height: 100px;
}

.circle svg {
    fill: none;
    stroke: #8a3ab9;
    stroke-linecap: round;
    stroke-width: 3;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    animation: stroke-draw 6s ease-out infinite alternate;
}

.circle img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    border-radius: 50%;
}

@keyframes stroke-draw {
    from {
        stroke: #8a3ab9;
        stroke-dasharray: 1;
    }
    to {
        stroke: #cd486b;
        transform: rotate(180deg);
        stroke-dasharray: 8;
    }
}

.card-img-overlay {
    background: #00000000;
    background: -webkit-linear-gradient(to top, #000000, #00000000);
    background: linear-gradient(to top, #000000, #00000000);
}

.card-img-overlay .card-title {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
    left: 0;
}

section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

section h2 {
    color: #D5AE5B;
}

ul.checklist {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul.checklist li {
    font-size: 22px;
    margin-bottom: 20px;
}

.bg-dark h2 {
    color: #ffffff;
}

.card-bg-dark {
    background: #191919;
    border-radius: 20px;
    min-height: 650px;
}

footer {
    font-size: 18px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover, focus {
    color: #D5AE5B;
    text-decoration: none;
}


@media (max-width: 575.98px) {
    h2 {
        font-size: 32px;
    }

    .slider h1 {
        font-size: 32px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
}

@media (min-width: 768px) and (max-width: 991.98px) {
}

@media (min-width: 992px) and (max-width: 1199.98px) {
}

@media (min-width: 1200px) {
    #zuck-modal-content .story-viewer .slides .item > .media {
        width: auto !important;
        height: 100% !important;
    }
}

.item-preview {
    position: relative;
    top: 0;
    left: 0;
    width: 118px;
    overflow: hidden;
}

.item-preview img {
    width: 70px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 46%;
    transform: translate(-50%, -50%);
}

.item-preview svg {
    fill: none;
    stroke: #8a3ab8;
    stroke-width: 4px;
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: loading 4500ms ease-in-out infinite alternate;
    width: 100px;
    margin-left: -11px;
    margin-top: -5px;
}

@keyframes loading {
    100% {
        stroke: #CBA552;
        stroke-dasharray: 10;
        transform: rotate(200deg);
    }
}

@keyframes whatsapp-animation {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.whatsapp {
    bottom: 1rem;
    position: fixed;
    left: 1rem;
    z-index: 999;
}

.whatsapp .btn-whatsapp {
    align-items: center;
    background-color: #61D466;
    background-image: linear-gradient(to bottom, #61D466 0%, #52B43E 100%);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    height: 4rem;
    position: relative;
    width: 4rem;
    z-index: 1;
}

.whatsapp .btn-whatsapp span {
    font-size: 3.5rem;
}

.whatsapp .btn-whatsapp::before, .whatsapp .btn-whatsapp::after {
    background-image: linear-gradient(180deg, rgba(7, 94, 84, 0.2) 0%, rgba(18, 140, 126, 0.2) 100%);
    content: "";
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8.5rem;
    height: 8.5rem;
    z-index: -1;
    margin-left: -4.3rem;
    margin-top: -4.3rem;
    transform-origin: 50% 50%;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-name: whatsapp-animation;
    animation-delay: 0.2s;
    animation-timing-function: ease-out;
}

.whatsapp .btn-whatsapp::after {
    animation-delay: 0.6s;
    animation-timing-function: ease-in;
}
.iti--allow-dropdown { width: 100%;}
.iti--allow-dropdown input{padding-left: 55px !important;}
.iti__country { color: #000;}
.swiper-pagination-bullet {  background: #FFFFFF !important;}
.swiper-pagination { margin-top: 30px;}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {color: #D5AE5B; margin-left: -25px;background: #000;
    padding: 10px;
    border-radius: 8px;}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {color: #D5AE5B; margin-left: 25px;background: #000;padding: 10px;border-radius: 8px;}