.form-label {
    font-size: 15px;
    font-family: var(--primary-regular-font);
    color: var(--dark-color);
    margin-bottom: 5px;
}
.form-group {
    margin-bottom: 15px;
}
.form-control {
    box-shadow: #1d0000 0 0px, #1d0000 0 4px, #1d0000 0 5px, #1d0000 0 2px;
    background-color: #fff;
    border-radius: 9px;
    font-size: 16px;
    color: #a7a7a7;
    text-align: center;
    font-family: var(--primary-bold-font);
    padding: 13px 17px;
    transition: 0.8s;
    border: 3px solid #1d1d1d;
    text-align: start;
    text-transform: uppercase;
    resize: none;
}
.form-control-1 {
    background-color: transparent;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 11px 16px;
    font-size: 14px;
    resize: none;
    color: var(--dark-color);
    resize: none;
    display: block;
    width: 100%;
}
.form-control:focus,
.form-control-1:focus {
    background-color: #fff;
    box-shadow: 0 0 0 1px var(--extra-color-3);
}
.form-control::placeholder {
    color: #8e8e8e;
}
.form-control-1::placeholder {
    color: #4f4f4f;
    text-transform: capitalize;
}
a:hover {
    color: #fff;
}
.btn {
    box-shadow: #1d0000 0 0px, #1d0000 0 4px, #1d0000 0 5px, #1d0000 0 2px;
    background-color: var(--extra-color-1);
    border-radius: 9px;
    font-size: 16px;
    color: var(--dark-color);
    text-align: center;
    font-family: var(--primary-black-font);
    padding: 10px 30px;
    transition: 0.8s;
    border: 3px solid #1d1d1d;
    text-transform: capitalize;
}
.social-icons-wrapper .social-icon {
    box-shadow: #1d0000 0 0px, #1d0000 0 4px, #1d0000 0 5px, #1d0000 0 2px;
    border: 3px solid #1d1d1d;
    padding: 5px 15px;
    border-radius: 9px;
    transition: 0.8s;
}
.social-icons-wrapper .social-icon:hover {
    transform: scale(1.1);
}
.btn:hover {
    background-color: transparent;
    color: var(--extra-color-1);
}
.dark-mode .btn {
    background-color: var(--secondary-color-bg);
    color: var(--body-color);
}
.btn-transparent {
    color: var(--dark-color);
    background-color: transparent;
    border-color: 1px solid var(--dark-color);
}
.btn-color {
    background-color: var(--extra-color-1) !important;
}
.btn-color:hover {
    background-color: var(--color-5) !important;
}
.view-btn {
    height: 169px;
    width: 170px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid var(--body-color);
    font-size: 13px;
    font-family: var(--primary-medium-font);
    color: var(--body-color);
    transition: 0.6s all;
}
.custom-checkbox label {
    position: relative;
    cursor: pointer;
}
.custom-checkbox label:before {
    content: "";
    appearance: none;
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0 -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 6px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 5px;
}
.custom-checkbox input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 5px;
    width: 4px;
    height: 9px;
    border: solid var(--secondary-color);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}
.custom-radio-1:checked ~ .radio-here,
.custom-radio-1:not(:checked) ~ .radio-here {
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    display: block;
    width: 18px;
    height: 15px;
}
.custom-radio-1:checked ~ .radio-here:before,
.custom-radio-1:not(:checked) ~ .radio-here:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid var(--secondary-color);
    border-radius: 100%;
    background: #fff;
}
.custom-radio-1:checked ~ .radio-here:after,
.custom-radio-1:not(:checked) ~ .radio-here:after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.custom-radio-1:not(:checked) ~ .radio-here:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.custom-radio-1:checked ~ .radio-here:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.bee-rex-img-wrap img {
    transform: translateY(-10%);
    animation: floater 1.5s infinite;
    transition: ease 0.5s;
}
@keyframes floater {
    0% {
        transform: translateY(-10%);
        transition: ease 0.5s;
    }
    50% {
        transform: translateY(10%);
        transition: ease 0.5s;
    }
}
.music-instrument-img-wrap img.img-fluid {
    animation: floatDown 4s ease-in-out infinite;
    transform: translateY(40px);
}
@keyframes floatDown {
    0%,
    100% {
        transform: translateY(-40px);
    }
    25% {
        transform: translateY(40px);
    }
    50% {
        transform: translateY(40px);
    }
    75% {
        transform: translateY(-40px);
    }
}
* {
    transition: 0.6s all;
}
.dark-mode .light-image {
    filter: brightness(0) invert(1);
}
.border-rounded {
    border-radius: 60px;
}
.border-7 {
    border-radius: 7px;
}
.border-27 {
    border-radius: 27px;
}
.radius-100 {
    border-radius: 50%;
}
.border-down {
    border-bottom: 1px solid #a7a9aa;
}
.border-roundness-0 {
    border-radius: 0;
}
.cursor-pointer {
    cursor: pointer;
}
.right-0 {
    right: 0;
}
.left-0 {
    left: 0;
}
.space-nowrap {
    white-space: nowrap;
}
.icon-badge {
    background-color: var(--extra-color-1);
    border-radius: 7px;
    color: var(--dark-color);
    padding: 6px 15px;
    box-shadow: #1d0000 0 0px, #1d0000 0 4px, #1d0000 0 5px, #1d0000 0 2px;
    border: 3px solid #1d1d1d;
    font-size: 25px;
}
.line-height-1 {
    line-height: 1;
}
.icon-badge.sm {
    height: 29px;
    width: 29px;
}
.icon-badge.md {
    height: 33px;
    width: 33px;
}
.icon-badge.sm i {
    font-size: 13px;
}
.icon-badge.md i {
    font-size: 16px;
}
.writting-mode-lr {
    writing-mode: vertical-lr;
    rotate: 180deg;
}
figure {
    margin-bottom: 0;
}
.secondary-border {
    border: 1px solid var(--secondary-color);
}
.box-shadow-1 {
    box-shadow: rgba(0, 0, 0, 0.08) 0 4px 12px;
}
.w-fit {
    width: fit-content;
}
.column-count-3 {
    column-count: 3;
}
.border-line {
    background-color: var(--text-color);
    width: 15%;
    height: 2px;
    display: block;
    margin: auto;
}
.z-index-1 {
    z-index: 1;
}
.letter-spacing-1 {
    letter-spacing: 1px;
}
.dark-color-hover:hover {
    color: var(--dark-color);
}
.link-here {
    position: relative;
    transition: 0.8s;
}
.link-here:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: 0.8s;
}
.link-here:hover:before {
    width: 100%;
}
.line-clamp-1,
.line-clamp-2,
.line-clamp-3,
.line-clamp-4,
.line-clamp-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-1 {
    -webkit-line-clamp: 1;
}
.line-clamp-2 {
    -webkit-line-clamp: 2;
}
.line-clamp-3 {
    -webkit-line-clamp: 3;
}
.line-clamp-4 {
    -webkit-line-clamp: 4;
}
.line-clamp-5 {
    -webkit-line-clamp: 5;
}
.figure-me {
    margin-left: -30px;
}
.object-cover {
    object-fit: cover;
}
.inner-space {
    padding-top: 120px;
}
.section {
    padding: 60px 0 68px;
}
.bg-img {
    background-image: url(../img/author-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
}
.number-input::-webkit-outer-spin-button,
.number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.counter-here .counter-btn {
    border: 0;
    height: 46px;
    display: flex;
    align-items: center;
}
.counter-here {
    border: 1px solid var(--extra-color-7);
    width: fit-content;
}
.counter-here .counter-input {
    width: 58px;
    text-align: center;
    border-width: 0 1px;
    border-color: #00000080;
    height: 46px;
}
.counter-here .counter-input:focus-visible {
    outline: none;
}
.number-input[type="number"] {
    -moz-appearance: textfield;
}
.page-banner {
    background-image: url(../img/pages-banner.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    background-color: var(--color-5);
}
.secondary-regular-font,
.heading-font {
    font-family: var(--heading-font);
}
.primary-regular-font,
.text-font {
    font-family: var(--primary-regular-font);
}
.primary-black-font {
    font-family: var(--primary-black-font);
}
.primary-bold-font {
    font-family: var(--primary-bold-font);
}
.primary-italic-font {
    font-family: var(--primary-italic-font);
}
.primary-semibold-font {
    font-family: var(--primary-semibold-font);
}
.level-1 {
    font-size: 28px;
}
.level-2 {
    font-size: 26px;
}
.level-3 {
    font-size: 24px;
}
.level-4 {
    font-size: 22px;
}
.level-5 {
    font-size: 20px;
}
.level-6-lg {
    font-size: 19px;
}
.level-6 {
    font-size: 16px;
}
.level-7 {
    font-size: 13px;
}
.link-hover:hover {
    color: var(--bg-color-1);
}
.font-unset {
    font-size: unset;
}
.line-height-normal {
    line-height: normal;
}
.line-height-para {
    line-height: 1.8;
}
.opacity-03 {
    opacity: 0.3;
}
.z-index-99 {
    z-index: 99;
}
.video-player {
    position: relative;
}
.video-player .custom-controls {
    position: absolute;
}
.video-player .custom-controls button {
    cursor: pointer;
    color: #402e2e;
    border-radius: 50%;
    height: 118px;
    width: 118px;
    overflow: hidden;
    background-image: url(../img/play-bg.webp);
    background-position: center;
}
.video-player .custom-controls button i {
    font-size: 58px;
}
.video-wrapper .custom-controls button {
    cursor: pointer;
    color: #402e2e;
    border-radius: 18px;
    height: 55px;
    width: 100px;
    background-color: #e72d2d;
    overflow: hidden;
    background-position: center;
}
.video-wrapper .custom-controls button i {
    font-size: 25px;
    color: var(--nav-color);
}
.swiper-scrollbar-drag {
    background-color: var(--border-color-1);
}
.slider-sec .slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    border-radius: 7px;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    background-color: var(--extra-color-1);
    box-shadow: #1d0000 0 0px, #1d0000 0 4px, #1d0000 0 5px, #1d0000 0 2px;
    border: 3px solid #1d1d1d;
}
.slider-sec .slick-prev:before {
    content: "\f104";
    font-family: "FontAwesome";
    opacity: 1 !important;
    color: var(--extra-color-3);
    font-size: 32px;
}
.slider-sec .slick-next:before {
    content: "\f105";
    font-family: "FontAwesome";
    opacity: 1 !important;
    color: var(--extra-color-3);
    font-size: 32px;
}
.slider-sec .slick-prev {
    left: 10px;
}
.slider-sec .slick-next {
    right: 10px;
}
.slider-sec .slider-space {
    padding: 0 50px;
}
.site-pagination .page-item.active .page-link {
    background-color: transparent;
    color: var(--extra-color-6);
}
.site-pagination .page-item .page-link {
    color: #14252a;
}
@media (max-width: 1400px) {
    .level-1 {
        font-size: 50px;
    }
    .level-2 {
        font-size: 47px;
    }
    .level-4-lg {
        font-size: 22px;
    }
    .level-4 {
        font-size: 19px;
    }
    .level-5 {
        font-size: 16px;
    }
    .level-6 {
        font-size: 14px;
    }
    .level-7 {
        font-size: 13px;
    }
    .form-control {
        padding: 9px 14px;
    }
    .icon-badge {
        height: 39px;
        width: 39px;
    }
    .icon-badge.sm {
        height: 27px;
        width: 27px;
    }
    .icon-badge.md {
        height: 31px;
        width: 31px;
    }
    .shop-btn {
        height: 155px;
        width: 155px;
        font-size: 19px;
    }
}
@media (max-width: 1200px) {
    .level-1 {
        font-size: 43px;
    }
    .level-2 {
        font-size: 40px;
    }
    .level-4-lg {
        font-size: 21px;
    }
    .level-4 {
        font-size: 18px;
    }
    .level-5 {
        font-size: 15px;
    }
    .level-6 {
        font-size: 17px;
    }
    .level-7 {
        font-size: 13px;
    }
    .form-control {
        font-size: 13px;
        padding: 8px 12px;
    }
    .form-control-1 {
        padding: 10px 14px;
        font-size: 13px;
    }
    .icon-badge {
        height: 37px;
        width: 37px;
    }
    .icon-badge.sm {
        height: 25px;
        width: 25px;
    }
    .icon-badge.md {
        height: 29px;
        width: 29px;
    }
    .shop-btn {
        height: 140px;
        width: 140px;
        font-size: 17px;
    }
    .section {
        padding: 50px 0 56px;
    }
    .form-label {
        font-size: 14px;
    }
}
@media (max-width: 991px) {
    .level-1 {
        font-size: 30px;
    }
    .level-2 {
        font-size: 37px;
    }
    .level-4 {
        font-size: 16px;
    }
    .level-5 {
        font-size: 14px;
    }
    .level-6 {
        font-size: 17px;
    }
    .level-7 {
        font-size: 13px;
    }
    .level-8 {
        font-size: 13px;
    }
    .form-control {
        font-size: 13px;
        padding: 7px 13px;
    }
    .form-control-1 {
        padding: 9px 13px;
        font-size: 12px;
    }
    .icon-badge {
        height: 34px;
        width: 34px;
    }
    .icon-badge.sm {
        height: 23px;
        width: 23px;
    }
    .icon-badge.md {
        height: 27px;
        width: 27px;
    }
    .shop-btn {
        height: 115px;
        width: 115px;
        font-size: 15px;
    }
    .section {
        padding: 40px 0 44px;
    }
    .form-label {
        font-size: 13px;
    }
}
@media (max-width: 768px) {
    .level-1 {
        font-size: 35px;
    }
    .level-2 {
        font-size: 31px;
    }
    .level-4-lg {
        font-size: 18px;
    }
    .level-4 {
        font-size: 15px;
    }
    .level-5 {
        font-size: 13px;
    }
    .level-6 {
        font-size: 11px;
    }
    .level-7 {
        font-size: 10px;
    }
    .icon-badge {
        height: 32px;
        width: 32px;
    }
    .icon-badge.sm {
        height: 21px;
        width: 21px;
    }
    .icon-badge.md {
        height: 25px;
        width: 25px;
    }
    .shop-btn {
        height: 110px;
        width: 110px;
        font-size: 14px;
    }
    .video-player .custom-controls button {
        height: 83px;
        width: 83px;
    }
    .video-player .custom-controls button i {
        font-size: 38px;
    }
    .form-control-1 {
        padding: 8px 12px;
        font-size: 11px;
    }
    .form-label {
        font-size: 12px;
    }
}
@media (max-width: 576px) {
    .level-1 {
        font-size: 32px;
    }
    .level-2 {
        font-size: 27px;
    }
    .level-3 {
        font-size: 20px;
    }
    .level-4-lg {
        font-size: 17px;
    }
    .level-4 {
        font-size: 14px;
    }
    .level-5 {
        font-size: 12px;
    }
    .level-6 {
        font-size: 10px;
    }
    .level-7 {
        font-size: 9px;
    }
    .icon-badge {
        height: 30px;
        width: 30px;
    }
    .icon-badge.sm {
        height: 21px;
        width: 21px;
    }
    .icon-badge.md {
        height: 25px;
        width: 25px;
    }
    .shop-btn {
        height: 100px;
        width: 100px;
        font-size: 13px;
    }
    .py-xs-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .mb-xs-4 {
        margin-bottom: 1.5rem !important;
    }
    .form-control-1 {
        padding: 7px 11px;
        font-size: 10px;
    }
    .form-label {
        font-size: 11px;
    }
}
.form-switch .form-check-input {
    width: 54px;
    height: 32px;
    border-color: #344f28;
    background-size: 23px;
    background-position: center left 3px;
}
.form-switch .form-check-input,
.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3Csvg width='33' height='34' viewBox='0 0 33 34' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16.6416' cy='17.1888' r='16.2137' fill='%23344F28'/%3E%3C/svg%3E");
    box-shadow: 0 0 0 0 transparent;
}
.form-switch .form-check-input:checked,
.form-switch .form-check-input:checked:focus {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="33" height="34" viewBox="0 0 33 34" fill="none"%3E%3Ccircle cx="16.7574" cy="17.1888" r="16.2137" fill="%23E1DDDD"%3E%3C/circle%3E%3C/svg%3E');
    background-position: center right 3px;
    background-color: transparent;
    border-color: #e1dddd;
}
.rate label {
    cursor: pointer;
}
.rate label i {
    transition: 0 all;
    color: var(--color-5);
}
.rate > input:checked ~ label i {
    color: #ffc700;
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #ffc700;
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}
