.or-container {
    align-items: center;
    color: #ccc;
    display: flex;
    margin: 25px 0;
}
.line-separator {
    background-color: #ccc;
    flex-grow: 5;
    height: 1px;
}

.custom-row {
    margin-left: 0px;
    margin-right: 0px;
}
.custom-row .col-12 {
    padding-left: 0px;
    padding-right: 0px;
}
/* Wild card with class */
.custom-row [class~="col"] {
    padding-left: 0px;
    padding-right: 0px;
}
.custom-row [class*="col-"] {
    padding-left: 0px;
    padding-right: 0px;
}
/* Wild card with global */
[class*="col-"] {
    padding-left: 0px;
    padding-right: 0px;
}

p {
    line-height: 22px;
}

.row {
    margin: 0px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: inherit;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: black;
}

input:focus + .slider {
    box-shadow: 0 0 1px black;
}

input:checked + .slider:before {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
li {
    list-style-type: none;
}

.pr-feature li::before {
    content: "✔ ";
}
.pack-name {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}
.price {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

.price sub {
    font-size: 15px;
    margin-left: 5px;
}

.faqs-btn {
    color: black;
    border: transparent;
    background-color: transparent;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.faqs-btn-text {
    text-align: start;
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid rgb(217, 217, 217);
}

.btn-nav {
    color: black;
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    background-color: rgb(219, 219, 219);
    transition: all 0.1s ease-in-out;
}

.btn-nav:hover {
    text-decoration: none;
    color: black;
    /* border: 1px solid #6ad3ff; */
    background-color: rgb(175, 175, 175);
    transition: all 0.1s ease-in-out;
}

.btn-nav-register {
    color: black;
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    background-color: #6ad3ff;
    transition: all 0.1s ease-in-out;
}

.btn-nav-register:hover {
    text-decoration: none;
    color: black;
    background-color: #56a9cd;
    transition: all 0.1s ease-in-out;
}

#mobile-menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#mobile-menu ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #ebebeb;
}

#cloud-1 {
    position: absolute;
    top: 100px;
    left: 50px;
    opacity: 0.7;
}

#cloud-2 {
    position: absolute;
    top: 1000px;
    right: 0px;
    opacity: 0.3;
}

#paper-plane {
    position: absolute;
    top: 100px;
    right: 50px;
    opacity: 0.3;
}

@media (max-width: 576px) {
    #cloud-2 {
        top: 900px;
        right: 0px;
    }
}

@media (max-width: 768px) {
    #cloud-2 {
        top: 900px;
        right: -300px;
    }

    #cloud-1 {
        opacity: 0.4;
    }
}

@media (max-width: 1024px) {
    #paper-plane {
        display: none;
    }

    #cloud-2 {
        right: -300px;
    }
}

@media (max-width: 1200px) {
    #cloud-2 {
        right: -300px;
    }
}
