:root {
    --bs-body: #F6F2FD;
    --bs-primary: #1C54A1;
    --bs-secondary: #AD4294;
    --bs-pink: #FF72DE;
    --bs-red: #FF3B3B;
    --bs-seprator: #D1CDD8;
    --bs-primary-rgb: 28, 84, 161;
}

@font-face {
    font-family: 'Axiforma';
    src: url('fonts/Axiforma-Light.woff2') format('woff2'), url('fonts/Axiforma-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiforma';
    src: url('fonts/Axiforma-Regular.woff2') format('woff2'), url('fonts/Axiforma-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiforma';
    src: url('fonts/Axiforma-Medium.woff2') format('woff2'), url('fonts/Axiforma-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiforma';
    src: url('fonts/Axiforma-SemiBold.woff2') format('woff2'), url('fonts/Axiforma-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiforma';
    src: url('fonts/Axiforma-Bold.woff2') format('woff2'), url('fonts/Axiforma-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Axiforma';
    src: url('fonts/Axiforma-Black.woff2') format('woff2'), url('fonts/Axiforma-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #F6F2FD;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3
}

h1, h2, h3, h4,
.font-axiforma,
.accordion-body,
.form-control,
.bs-checkbox,
.admin-section {
    font-family: 'Axiforma', Inter, Arial, sans-serif;
}

h1, h2, h3, h4 {
    color: var(--bs-primary);
    font-weight: 900
}

.title h1,
.title h2,
.title h3,
.title h4 {
    font-size: 24px;
}

/* buttons */
a, .btn-link {
    color: var(--bs-primary);
    text-decoration: none;
}

    a:not(.btn):hover {
        text-decoration: underline
    }

.text-primary {
    color: var(--bs-primary) !important
}

.btn-link-pink,
.btn-link-pink:hover {
    color: var(--bs-pink) !important;
}

.btn {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50em;
    font-weight: 500
}

.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled,
.signin-btn-desktop.btn-primary.active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn.btn-lg {
    font-size: 15px;
    padding: 20px
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.signin-btn-desktop.btn-primary.active:hover {
    background-color: #163f79;
    border-color: #163f79;
}

.btn-primary.has-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px 7px 20px
}

    .btn-primary.has-icon .icon {
        width: 34px;
        height: 34px;
        background: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50em;
        margin-left: 28px;
    }

.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

    .btn-outline-primary:hover,
    .btn-outline-primary:focus,
    .btn-outline-primary:active {
        border-color: #163f79;
        background: #163f79;
        color: #fff
    }

.btn-royal-fusion {
    background: linear-gradient(90deg, #1C54A1, #AD4294, #1C54A1);
}

.btn-orange-fusion {
    background: linear-gradient(90deg, #F08E2C, #DB4023, #F08E2C);
}

.btn-teal-fusion {
    background: linear-gradient(90deg, #2FA15E, #0A5C9E, #2FA15E);
}

.btn-purple-fusion {
    background: linear-gradient(90deg, #700E8A, #FA267C, #700E8A);
}

.btn-green-fusion {
    background: linear-gradient(90deg, #0D5C06, #56B302, #0D5C06);
}
.btn-ocean-fusion {
    background: linear-gradient(90deg, #1FA2FF, #A5FECA, #1FA2FF);
}

.btn-royal-fusion,
.btn-orange-fusion,
.btn-teal-fusion,
.btn-purple-fusion,
.btn-green-fusion,
.btn-ocean-fusion {
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: #fff !important;
    border: none;
    cursor: pointer;
    transition: background-position 0.8s ease;
}

    .btn-royal-fusion:hover,
    .btn-orange-fusion:hover,
    .btn-teal-fusion:hover,
    .btn-purple-fusion:hover,
    .btn-green-fusion:hover,
    .btn-ocean-fusion:hover,
    .btn-royal-fusion:focus,
    .btn-orange-fusion:focus,
    .btn-teal-fusion:focus,
    .btn-purple-fusion:focus,
    .btn-green-fusion:focus,
    .btn-ocean-fusion:focus {
        background-position: 100% 50%;
        color: #fff
    }

.btn.has-arrow-icon {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px 8px 25px;
    min-width: 120px;
}

    .btn.has-arrow-icon .icon {
        width: 34px;
        height: 34px;
        background: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50em;
        margin-left: 10px;
    }

.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Border */
.border-primary {
    border-color: var(--bs-primary) !important
}
/* dropdown */
.dropdown-item:focus, .dropdown-item:hover {
    background-color: transparent;
    text-decoration: none !important;
    color: var(--bs-primary)
}

/* form*/
.form-control,
.form-select {
    border-color: var(--bs-primary);
    padding: 14px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50rem;
    line-height:1
}

    .form-control.invalid {
        border-color: var(--bs-danger);
    }

textarea.form-control {
    border-radius: 12px
}

.ic-input-wrap {
    position: relative
}

    .ic-input-wrap .input-icon {
        position: absolute;
        top: 50%;
        left: 18px;
        transform: translateY(-50%);
        display: inline-flex
    }

    .ic-input-wrap.has-icon .form-control {
        padding-left: 54px;
    }

.form-control-lg {
    min-height: 64px;
    padding-top: 21px;
    padding-bottom: 18px;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #EAEAEA
}

textarea {
    resize: none
}

.ic-input-wrap input::placeholder {
    color: var(--bs-primary)
}

.ic-input-wrap input::-webkit-input-placeholder {
    color: var(--bs-primary)
}

.ic-input-wrap input:-ms-input-placeholder {
    color: var(--bs-primary)
}

.ic-input-wrap textarea::placeholder {
    color: var(--bs-primary)
}

.ic-input-wrap textarea::-webkit-input-placeholder {
    color: var(--bs-primary)
}

.ic-input-wrap textarea:-ms-input-placeholder {
    color: var(--bs-primary)
}

.form-control.invalid::placeholder {
    color: var(--bs-danger);
}

.form-control.invalid::-webkit-input-placeholder {
    color: var(--bs-danger);
}

.form-control.invalid:-ms-input-placeholder {
    color: var(--bs-danger);
}

.file {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.file-label {
    align-items: stretch;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    color: #fff
}

.file-input {
    height: 100%;
    left: 0;
    opacity: 0;
    outline: none;
    position: absolute;
    top: 0;
    width: 100%;
}

.file-cta, .file-name {
    font-size: 1em;
    padding-left: 1em;
    padding-right: 1em;
    white-space: nowrap;
}

.file-cta {
    background-color: var(--bs-primary);
    align-items: center;
    appearance: none;
    border-color: transparent;
    display: inline-flex;
    justify-content: center;
    border-radius: 26px;
    position: relative;
    width: 100%;
    padding: 15px;
}

    .file-cta:hover {
        background-color: #163f79;
    }

.file-icon {
    align-items: center;
    display: flex;
    height: 1em;
    justify-content: center;
    margin-inline-end: .5em;
    width: 1em;
}

.bs-checkbox {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    cursor: pointer;
    line-height: 1.6;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn-password {
    position: absolute;
    right: 0;
    top: 3px;
    box-shadow:none !important
}

/* custom select*/
.bs-select-wrapper {
    position: relative;
    width: 100%;
}

.bs-select {
    position: relative;
    user-select: none;
}

    .bs-select.has-icon .icon {
        position: absolute;
        top: 50%;
        left: 18px;
        transform: translateY(-50%);
        width: 22px;
        display: flex;
        justify-content: center;
        z-index: 1;
    }

.select-trigger:after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: url(resources/icons/arrowDown.svg) no-repeat center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--bs-primary);
    border-radius: 50rem
}

.select-trigger {
    background-color: #fff;
    padding: 10px 24px;
    border-radius: 32px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--bs-primary)
}

.bs-select.has-icon .select-trigger {
    padding-left: 54px;
}

.bs-select.open .select-trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.bs-select-dd-options {
    display: none;
    position: absolute;
    max-height: 300px;
    overflow-y: auto;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

    .bs-select-dd-options,
    .bs-select-dd-options .bs-select-option:last-child {
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
    }

.bs-select.open .bs-select-dd-options {
    display: block;
}

.bs-select-option {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    display: block
    /*    transition: background 0.2s ease;*/
}

    .bs-select-option:hover {
        background-color: rgba(28, 84, 161, 0.04);
    }


/* Hide the browser's default checkbox */
.bs-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.bs-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 19px;
    width: 19px;
    border-radius: 3px;
    background-color: var(--bs-body);
    border: 1px solid var(--bs-primary);
}

/* On mouse-over, add a grey background color */


/* When the checkbox is checked, add a blue background */
.bs-checkbox input:checked ~ .checkmark {
    background-color: var(--bs-primary);
}

/* Create the checkmark/indicator (hidden when not checked) */
.bs-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.bs-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.bs-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* font style */

.fw-medium {
    font-weight: 500 !important
}

.fw-semibold {
    font-weight: 600 !important
}

.text-xs {
    font-size: 10px
}

.text-sm {
    font-size: 12px
}

.text-md {
    font-size: 14px
}

.text-base {
    font-size: 16px
}

.text-lg {
    font-size: 18px
}

.text-xl {
    font-size: 20px
}
.text-2xl {
    font-size: 22px
}
.text-3xl {
    font-size: 24px
}

/* text colors */

.text-gray {
    color: #666666
}

/* img properties */
.object-fit-cover {
    object-fit: cover
}

.single-img-block img {
    border-radius: 20px;
}

/* Background  */
.bg-red {
    background-color: var(--bs-red) !important
}

/* utilities */

.t-px {
    top: 1px !important
}

.top-0-5 {
    top: 2px !important
}

.z-1 {
    z-index:1
}
/* Animations */
@keyframes jump {
    0% {
        transform: translate(0)
    }

    40% {
        transform: translateY(20px)
    }

    to {
        transform: translate(0)
    }
}

@keyframes jumpTwo {
    0% {
        transform: translate(0)
    }

    40% {
        transform: translateY(-20px)
    }

    to {
        transform: translate(0)
    }
}


/* swiper slider */

.swiper-button-prev:after,
    .swiper-button-next:after {
        width: 17px;
        height: 33px;
        font-size: 0;
        width: 17px;
        height: 30px;
    }

.swiper-button-prev:after {
    background: url(resources/icons/prevIcon.svg) no-repeat;
}

.swiper-button-next:after {
    background: url(resources/icons/nextIcon.svg) no-repeat;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    text-align: center;
    padding-top: 8px
}

.swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    background: #D9D9D9;
    opacity: 1;
    transition: all 0.3s ease
}

    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 42px;
        border-radius: 7px
    }
/* ============================ */
.container {
    max-width: 1320px
}


header {
    position: relative;
    z-index: 100
}

.section {
    padding: 60px 0;
}

.section-head {
    margin-bottom: 15px
}

    .section-head .accent-word {
        color: var(--bs-secondary)
    }

    .section-head h2,
    .section-head h3 {
        font-size: 34px;
        line-height: 1.5
    }

        .section-head h2 .accent-word,
        .section-head h3 .accent-word {
            font-size: 54px;
        }


.camp-logo-top {
    max-width: 526px;
    width: 100%
}

/* Hero */
.hero-section .container {
    padding-top: 20px; 
}

.hero-content h1,
.hero-content h2 {
    font-size: 34px;
    line-height: 1.5
}
    
        .hero-section .hero-image {
            max-width: 750px
        }

.hero-incredicamps .hero-image {
    max-width: 683px;
    margin-right: -25px;
}

.hero-search-icon {
    left: -155px;
    top: 40px;
}

.hero-search-icon2 {
    left: 155px;
    top: -50px;
}

.hero-monitor-icon {
    left: -105px;
    top: 460px;
}

.hero-bulb-icon {
    right: -75px;
    top: -65px;    
}

.hero-bulb-icon2 {
    right: 140px;
    top: -85px;    
}

.hero-pencil-icon {
    left: 24px;
    top: 110px;    
}

.hero-pencil-icon2 {
    left: 130px;
    top: -15px; 
}

.hero-pencil-icon3 {
    top: 85px;
    right: 15px;
    z-index:2
}

.hero-rocket-icon {
    top: 30px;
    right: 34px;
}
.hero-incrediflex .hero-rocket-icon {
    top: -10px;
    right:-20px;
}
    .hero-rocket-icon2 {
        left: -80px;
        bottom: 95px;
    }
.hero-rocket-icon3 {
    left: 45%;
    top: 30px;
}
    
.hero-camera-icon {
    left: -30px;
    bottom: 25px;   
}

.hero-guitar-icon {
    left: -110px;
    top: -0px;
    
}

.hero-drums-icon {
    left: -85px;
    bottom: 50px;
   
}

.hero-mic-icon {
    left: -20px;
    top: -50px;
   
}

.hero-s-star-icon {
    right: 230px;
    top: -100px;
   
}

.hero-musicstar-icon {
    right: 25px;
    bottom: 50px;
    
}

.hero-trumpet-icon {
    left: -155px;
    bottom: 80px;
    
}

.hero-chip-icon {
    left: -100px;
    top: -70px;
   
}

.hero-robot-icon {
    left: -95px;
    bottom:-40px;
    
}

.hero-mobile-icon {
    left: 45%;
    top: -20px;
   
}

.hero-s-star-icon2 {
    right: 120px;
    top: -160px;
   
}

.hero-laptop-icon {
    left: -225px;
    bottom: 30px;
   
}

.hero-clock-icon {
    left:350px;
    bottom: 85px;
}

.hero-bulb-icon-3 {
    right: 5px;
    bottom: 30px;
 
}
.hero-bulb-icon-4 {
    left: 15px;
    bottom: 55px;
}

.hero-content .btn {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px 8px 25px;
    min-width: 250px;
}

    .hero-content .btn .icon {
        width: 34px;
        height: 34px;
        background: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50em;
        margin-left: 10px;
    }

        .hero-content .btn .icon svg path {
            transition: all 0.3s ease
        }

    .hero-content .btn.btn-royal-fusion .icon svg path {
        stroke: #AD4294;
    }

    .hero-content .btn.btn-royal-fusion .icon svg path {
        stroke: #1C54A1;
    }

    .hero-content .btn.btn-orange-fusion .icon svg path {
        stroke: #DB3F22;
    }

    .hero-content .btn.btn-teal-fusion:hover .icon svg path {
        stroke: #F08E2C;
    }

    .hero-content .btn.btn-teal-fusion .icon svg path {
        stroke: #1E81CE;
    }

    .hero-content .btn.btn-purple-fusion .icon {
        color: #F1247C
    }

    .hero-content .btn.btn-purple-fusion:hover .icon {
        color: #700E8A
    }

    .hero-content .btn.btn-green-fusion .icon {
        color: #54B002
    }

    .hero-content .btn.btn-green-fusion:hover .icon {
        color: #0D5C06
    }
    .hero-content .btn.btn-ocean-fusion .icon {
        color: #2BAAFA
    }

/*    .hero-content .btn.btn-ocean-fusion:hover .icon {
        color: #A5FECA
    }*/
/* more link */
.more-link {
    border: 0;
    background: transparent;
    color: var(--bs-primary);
    padding: 0;
    font-weight: 600
}

    .more-link:hover {
        text-decoration: underline
    }

/* ========================== */
/* Inspiring Creativity Section */

.inspiring-creativity .inspiring-creativity-wrapper {
    background: linear-gradient(138.67deg, #150937 23.4%, #3B1A9D 96.95%);
    border: 1px solid #AB9DC3;
    border: 15px solid #D9D5E0;
    border-radius: 39px;
    position : relative;
}

.inspiring-creativity-content {
    padding: 14px;
    background: url(resources/images/iconsIllustrationBg.png) no-repeat bottom
}

    .inspiring-creativity-content .section-head h3 {
        font-size: 30px
    }

    .inspiring-creativity-content .media-block {
        min-width: 200px
    }

        .inspiring-creativity-content .media-block img {
            border-radius: 22px;
            opacity: 0.80;
            object-fit: cover;
        }

        .inspiring-creativity-content .media-block:hover .icon-play {
            opacity: 0.8
        }

.inspiring-creativity-info {
    max-width: 500px;
    padding: 34px 25px 0 34px;
}

.elec-vector-overlay {
    top: -10px;
    max-width: 790px;
    width: 100%;
}

.mobile_num::-webkit-inner-spin-button, .mobile_num::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* ========================== */
/*  caring environment */
.caring-environment {
    padding-top: 10px;
    padding-bottom: 0
}

    .caring-environment .bottom-arrow-vector {
        bottom: 70px !important
    }

    .caring-environment .media-col {
        animation: 6s linear infinite jumpTwo;
    }
/* ========================== */
/* our camps */
.section.our-camps {
    padding-bottom: 130px
}

    .our-camps .container {
        max-width: 1120px;
    }

.camp-cards-container {
    display: flex;
    padding:12px 15px;    
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.camp-card {
    border: 1px solid #C0C0C0;
    border-radius: 60px;    
    scroll-snap-align: start;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    min-width:515px;
    max-width:515px;
}
    .camp-card a {
        padding: 15px 30px 40px;
        display:block;
    }
    .camp-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); 
        transform: translateY(-2px); 
    }

    .camp-card .camp-logo {
        height: 112px;
        display: flex;
        align-items: center;
        justify-content: center
    }

        .camp-card .camp-logo img {
            max-width: 360px;
        }
        .camp-card p {
            min-height:44px
        }
        .camp-incrediflix {
            background: linear-gradient(130.09deg, #FFFFFF -1.76%, #88C9FF 98.45%);
        }

.camp-incrediquest {
    background: linear-gradient(305.92deg, #FF685C 5.96%, #FFFFFF 95.98%);
}

.camp-increditunes {
    background: linear-gradient(305.92deg, #610B8B 5.96%, #FFFFFF 95.98%);
    background: linear-gradient(305.92deg, #610B8B -124.04%, #FFFFFF 105.98%);
}

.camp-increditech {
    background: linear-gradient(130.09deg, #FFFFFF -1.76%, #4AA503 98.45%);    
}

.camp-increditime {
    background: linear-gradient(130.09deg, #FFFFFF -1.76%, #2DB37C 98.45%);
}

/* ========================== */

/* locations */
.locations {
    background: #1E81CE
}


        .locations .location-search .form-control {
            padding: 17px 15px 17px 45px;
            background: #C0E3F9;
            border: 1px solid #A3D3F9;
            font-size: 12px;
            color: #1E81CE
        }

        .locations .location-search input::placeholder {
            color: #1E81CE
        }

        .locations .location-search input::-webkit-input-placeholder {
            color: #1E81CE
        }
/* ========================== */

/* Testimonials */

.testimonialsSlider .swiper-slide {
    margin-bottom: 50px;
    min-width: 80%;
    max-width: 80%
}

.testimonial-block {
    background: #fff;
    border-radius: 20px;
    padding: 12px 20px;
    border: 1px solid #BCBCBC;
    box-shadow: 0px 9px 21.4px -5px #0000002E;
}

    .testimonial-block .testimonial-user-image {
        min-width: 103px;
        max-width: 103px;
        height: 103px;
        border-radius: 50%;
        overflow: hidden;
        border: 1px solid #ACACAC
    }

        .testimonial-block .testimonial-user-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.testimonial-content {
    padding: 30px 12px;
}

    .testimonial-content h4 {
        font-weight: 600;
        font-size: 21px;
        margin-bottom: 20px
    }
        .testimonial-content h4 span {
            display: block;
            color: #000;
            font-size: 16px;
        }
        .testimonial-content p {
            line-height: 1.4;
            margin-bottom: 0
        }
/* email signup */
.email-signup {
    background: #FFC852;
    height: 402px;
}
    .email-signup .section-head h3 {
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }

.email-signup .section-head p {
    font-weight: 500
}

.email-signup-form {
    /* max-width: 305px;*/
    max-width: 235px;
    position: relative;
    z-index: 1
}

    .email-signup-form .form-control {
        height: 64px
    }

    .email-signup-form input::placeholder {
        color: #000
    }

    .email-signup-form .icon-btn-rounded {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 0;
        background: var(--bs-primary);
        border: 0;
        border-radius: 50em;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        position: unset;
        transform: unset;
    }

        .email-signup-form .icon-btn-rounded:hover {
            background: var(--bs-secondary)
        }

.signup-media-half {
    position: absolute;
    top: -64px;
    right: 0;
}

    .signup-media-half .production-vector {
        position: absolute;
        left: -325px;
        bottom: 0;
    }
/* ========================== */
/* footer */
.footer {
    padding: 85px 0 25px;
}

.footer-logo {
    max-width: 286px
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    display: block;
    color: #000;
}

.btn-register-footer {
    min-width: 180px;
}

.footer-privacy-links li {
    position:relative
}

.footer-privacy-links li:not(:last-child):after {
            content: "";
            position: absolute;
            right: -12px;
            top: 5px;
            width: 1px;
            height: 10px;
            background: #000;
}

/* Internal pages */
    .page-title {
    margin-bottom: 20px
}

    .page-title h1 {
        font-size: 34px;
        line-height: 1.5
    }

.section.internal-page-head {
    text-align: center;
    padding-top: 50px
}

    .section.internal-page-head .internal-page-media {
        margin-bottom: 60px
    }

        .section.internal-page-head .internal-page-media img {
            border-radius: 40px;
            min-height: 180px;
            object-fit: cover;
        }

    .section.internal-page-head .info {
        font-size: 20px;
        line-height: 1.6;
        max-width: 1055px;
        margin: 0 auto
    }

        .section.internal-page-head .info h4 {
            font-size: 42px;
            line-height: 1.3
        }

    .section.internal-page-head .btn.btn-royal-fusion {
        width: 100%;
        max-width: 265px;
        padding: 15px 20px;
    }

.stats-section h3 {
    font-size: 95px;
    font-weight: 500;
    margin-bottom: 0;
}

.stats-section h4 {
    font-size: 55px;
    color: var(--bs-primary);
    font-weight: 300
}

.multiple-media-section img {
    border-radius: 40px
}

/* Contact Us */
.contact-content textarea.form-control {
    border-radius: 32px
}

/* Faq */
.faq-accordion-wrap {
    max-width: 1090px;
    margin: 0 auto;
}

    .faq-accordion-wrap .accordion-item {
        margin-bottom: 15px;
        border: 0
    }

    .faq-accordion-wrap .accordion-button {
        background: var(--bs-primary);
        color: #fff;
    }

    .faq-accordion-wrap .accordion-item,
    .accordion-item:last-of-type .accordion-button.collapsed,
    .faq-accordion-wrap .accordion-item .accordion-button {
        border-radius: 34px;
    }

    .faq-accordion-wrap .accordion-button:not(.collapsed) {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

.accordion-button::after {
    display: none
}

/* cards slider */

.program-cards-slider {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    height: 425px; 
    padding-bottom:10px
}
    .program-cards-slider > .program-card:first-child {
        margin-left: auto;
    }

    .program-cards-slider > .program-card:last-child {
        margin-right: auto;
    }
/*    .program-cards-slider::-webkit-scrollbar {
        display: none;
    }*/
    .program-cards-slider::-webkit-scrollbar {        
        height:7px;
    }

/* Track */
    .program-cards-slider::-webkit-scrollbar-track {
        background: #E0E0E0;
        border-radius:10px;
    }

/* Handle */
    .program-cards-slider::-webkit-scrollbar-thumb {
        background: #838383;
        border-radius: 10px;
    }


.program-card {
    background: linear-gradient(153.24deg, #FFE8D2 8.96%, #B87DFF 94.19%);
    flex: 0 0 295px;
    min-width: 295px;
    max-width: 625px;
    border-radius: 20px;
    scroll-snap-align: start;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 346px;
    display: flex;
    flex-direction: column;
    height: 346px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

    .program-card.light-pink-gradient,
    .card-light-pink-gradient {
        background: linear-gradient(153.24deg, #FFFFFF 8.96%, #FF6BBC 94.19%) !important;
    }

    .program-card.skyblue-gradient,
    .card-skyblue-gradient {
        background: linear-gradient(153.24deg, #FFC78E 8.96%, #59BAFF 94.19%) !important;
    }

    .program-card.yellow-gradient,
    .card-yellow-gradient {
        background: linear-gradient(153.24deg, #FFC78E 8.96%, #FFF959 94.19%) !important;
    }

    .program-card.orange-gradient,
    .card-orange-gradient {
        background: linear-gradient(153.24deg, #FFC78E 8.96%, #FF9E58 94.19%) !important;
    }

    .program-card.peach-gradient,
    .card-peach-gradient {
        background: linear-gradient(153.24deg, #FFC78E 8.96%, #FF6666 94.19%) !important;
    }

    .program-card.green-gradient,
    .card-green-gradient {
        background: linear-gradient(153.24deg, #FFC78E 8.96%, #59FF7D 94.19%) !important;
    }
    .program-card.blue-gradient {
        background: linear-gradient(153.24deg, #FFFFFF 8.96%, #6a9ce7 94.19%);        
    }
.program-card-img {
    min-width: 295px;
    max-width: 295px
}

    .program-card-img img {
        width: 100%;
        height: 199px;
        object-fit: cover
    }

.program-card-head h3 {
    margin-bottom: 10px;
    font-size:24px;
    color: #000;
    font-weight: 600;
    line-height: 1.4;
}

.program-title-skills {
    min-width: 295px;
    padding: 25px 22px 0 25px;
    flex-grow: 1;
    position: relative
}

    .program-title-skills .skills {
        display: none;
        transition: all 0.3s ease;
        min-width:284px
    }

        .program-title-skills .skills .skill-badge {
            background: #FFE284;
            border-radius: 16px;
            padding: 3px 20px;
            margin-bottom: 2px;
            font-size: 16px;
            flex: unset !important;
        }

    .program-title-skills .skill-badge.skill-badge-pink {
        background: #FFA0D4
    }

    .program-title-skills .skill-badge.skill-badge-pale-lemon {
        background: #F9FFC3
    }

.program-description {
    padding: 25px 35px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    min-width: 625px;
    max-width: 625px;
    overflow: hidden;
    white-space: normal;
    flex-shrink: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.program-card:hover {
    flex: 0 0 625px;
    height: auto;
}
    .program-card:hover .program-card-img { 
        display :none;
    }

    .program-card:hover .program-title-skills .skills {
        display: block;
    }

    .program-card:hover .program-description {
        opacity: 1;
        visibility: visible;
        height: auto;
        transition: all 0.4s ease-in;
        max-height: 500px;
    }
/******css updated**************/
.program-cards-slider .program-card:hover {
    flex: 0 0 295px;
    min-width: 295px;
}

.program-title-skills .skills, .program-cards-slider .program-description {
    min-width: auto;
}

.program-cards-slider {
    height: auto;
}


.star-vector {
    top: 62px;
}

    .star-vector svg {
        max-width: 875px;
    }

.music-vector {
    top: -340px;
}

    .music-vector svg {
        max-width: 568px;
    }
.tech-lined-vector {
    top: -45%;
}

.iTime-lined-vector {
    top: -540px;
}

.iTime-lined-vector svg {
    width: 1044px;
}

/*  Videos slider */

.videos-slider {
    padding: 0 55px
}

.videosSlider {
    padding: 0 2px;
    margin: 0 auto;
    max-width: 1174px;
}

    .videosSlider .video-thumb {
        display: inline-block;
        background: #000;
        border-radius: 25px;
        overflow: hidden;
        width: 100%;
        position: relative
    }

        .videosSlider .video-thumb img {
            opacity: 0.65;
            width: 100%
        }

        .videosSlider .video-thumb:before {
            content: "";
            width: 48px;
            height: 51px;
            background: url(resources/icons/playIcon.svg) no-repeat;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            opacity: 0.85;
            pointer-events: none
        }

        .videosSlider .video-thumb:hover:before {
            opacity: 1
        }

.videos-slider .swiper-button-prev,
.videos-slider .swiper-button-next {
    margin-top: -40px;
}

.embed-responsive-video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}

.videoModal .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}
/*  card slider ends */
.bs-auth-icon {
    position: absolute;
    display: inline-flex;
}

    .bs-auth-icon.icon-magnifier {
        left: -90px;
        top: -40px;
    }

    .bs-auth-icon.monitor-icon {
        left: -20px;
        top: 400px;
    }

    .bs-auth-icon.pencil-icon {
        left: 18%;
        top: 90px;
    }

    .bs-auth-icon.bulb-icon {
        right: 22%;
        top: -32px;
    }

    .bs-auth-icon.cam-icon {
        right: 15%;
        top: 400px;
    }

    .bs-auth-icon.rocket-icon {
        right: -130px;
        top: 0;
    }

.auth-actions-wrap .login-btn {
    min-width: 246px
}

.auth-form {
    border-radius: 20px;
    max-width: 524px;
    margin: 0 auto;
    margin-bottom: 50px;
}

    .auth-form .form-group {
        margin-bottom: 12px
    }

    .auth-form .ic-input-wrap.has-icon .form-control {
        padding-left: 55px;
    }

    .auth-form .country-code-select {
        max-width: 90px;
    }

    .auth-form .validation-errors {              
        display: block;
        border: 2px solid var(--bs-danger);
        background: #fff;
        padding-top: 15px;
        padding-bottom: 15px;
        border-radius: 20px;
    }

        .auth-form .validation-message,
        .admin-user-detail-card .validation-message,
        .auth-form .validation-errors li,
        .validation-error {
            font-size: 13px;
            margin-top: 4px;
            margin-bottom: 4px;
            font-weight: 500;
            color: var(--bs-danger);
        }

    .auth-form .password-field input {
        border-right: 0
    }

    .auth-form .password-field .btn {
        border-left: 0;
    }

        .auth-form .password-field .btn:focus {
            color: var(--bs-primary)
        }

        .auth-form .password-field .btn:not(:hover) {
            background: #fff;
        }

    .auth-form .password-field input.invalid + .btn {
        border-color: var(--bs-danger)
    }

    .auth-form .seprator {
        position: relative
    }

        .auth-form .seprator:before {
            content: "";
            background: #B1B1B1;
            height: 1px;
            width: 100%;
            display: block
        }

    .auth-form .or {
        position: absolute;
        top: -7px;
        left: 50%;
        transform: translateX(-50%);
        background: #F6F2FD;
        display: inline-block;
        width: 40px;
        height: 20px;
        color: #A1A1A1;
    }

.tp-login a {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    border-radius: 17px;
}

    .tp-login a svg path {
        fill: var(--bs-primary)
    }

    .tp-login a:hover {
        background-color: var(--bs-primary);
    }

        .tp-login a:hover svg path {
            fill: white
        }
/* team */


/* Map */
.location-map-container {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    font-size: 11px
}

#mainMap {
    border-radius: 30px;
}

.camp-locations-modal-wrap {
    position: absolute;
    bottom: 70px;
    left: 150px;
    width: 533px
}

    .camp-locations-modal-wrap .camp-locations-modal {
        padding: 10px;
        background: #fff;
        border-radius: 7px;
        width: 100%;
        position: relative
    }

.modal-close-icon {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #fff
}

.camp-locations-modal .locations-map-head p {
    font-size: 11px
}

.modal-content-container {
    max-height: 295px;
    overflow: auto;
    direction: rtl;
}

    .modal-content-container::-webkit-scrollbar {
        width: 7px;
    }

    .modal-content-container::-webkit-scrollbar-track {
        border-radius: 10px;
        background: #E0E0E0;
    }

    .modal-content-container::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: #838383;
    }

.camp-location-row {
    border-bottom: 1px solid #DADADA;
    margin: 0 25px;
    direction: ltr;
}

    .camp-location-row:last-child {
        border-bottom: 0;
        margin-bottom: 0 !important;
        padding-bottom: 10px !important
    }

.logo-symbol {
}

.camp-incrdFlx {
    color: #30A45B
}

.camp-incrdQst {
    color: #EC7B22
}

.camp-incrdTns {
    color: #FA267C
}

.camp-incrdTch {
    color: #0D5C06
}

.camp-incrdTme {
    color: #0076CA
}

.modal-camp-details .icon-wrap {
    min-width: 22px;
    max-width: 22px
}

.camp-locations-modal .btn-register {
    font-size: 11px;
    padding: 8px 20px 5px;
    max-width: 413px;
    margin: 0 auto
}


p .more-content {
    display: none;
}

/* When togglemoretext class is on <p>, show extra text */
p.togglemoretext .more-content {
    display: inline;
}
.homepagecampslider .swiper-slide {
    width: auto;
}

.contact-form .validation-message {
    font-size: 12px;
    color: #dc3545
}

/* Media queries */
@media (min-width:768px) {
    .text-md-base {
            font-size: 16px !important;
        }

        .text-md-lg {
            font-size: 18px !important;
        }

        .text-md-3xl {
            font-size: 24px !important;
        }

        .title h1,
        .title h2,
        .title h3,
        .title h4 {
            font-size: 34px;
        }

        .page-title.title-large h1 {
            font-size: 53px;
        }

        /* ================ */
        .single-img-block img {
            border-radius: 34px;
        }

        .hero-section .hero-content {
            flex: 1 1 0;
            min-width: 380px;
            max-width: 499px;
        }

        .hero-section.hero-increditime .hero-content {
            max-width: 510px;
        }

        .hero-section .container {
            padding-top: 50px;
            padding-bottom: 50px
        }

        .hero-incredicamps .hero-content {
            max-width: 425px;
        }

        .hero-section.hero-incrediquest .container,
        .hero-section.hero-incrediflex .container,
        .hero-section.hero-increditunes .container,
        .hero-section.hero-increditech .container {
            padding-top: 20px
        }

        .hero-incrediquest .hero-pencil-icon {
            left: 110px;
            top: 70px;
        }

        .hero-section.hero-increditech .hero-content {
            max-width: 600px
        }

            .hero-section.hero-increditech .hero-content p.hero-desc {
                max-width: 492px
            }

        .hero-section.hero-increditech .hero-image {
            max-width: 558px
        }

        .caring-environment .caring-section-content {
            max-width: 580px
        }

        .caring-environment .media-col {
            min-width: 440px
        }

        .our-camps .section-head {
            margin-bottom: 65px
        }

        .locations .location-search .form-control {
            max-width: 295px
        }

        .footer-links-container {
            max-width: 400px;
        }

        .faq-accordion-wrap .accordion-body {
            padding: 35px 40px;
            font-size: 20px;
            line-height: 1.4;
        }

        .faq-accordion-wrap .accordion-item {
            margin-bottom: 25px;
        }

        .faq-accordion-wrap .accordion-button:not(.collapsed) {
            box-shadow: none
        }

        .faq-accordion-wrap .accordion-button {
            font-size: 24px;
            padding: 18px 35px
        }

        .contact-content {
            max-width: 492px;
        }

        .contact-form {
            max-width: 415px
        }

        .contact-options {
            padding-top: 100px;
            padding-bottom: 160px;
        }

        .program-card:hover .program-card-head {
            display: flex
        }

        .search-movie-form {
            max-width: 415px
        }
        /*team*/
        .section-team .team-content {
            max-width: 492px;
        }

        .section-team .team-hero-img {
            max-width: 695px;
        }

        .section-team .btn.btn-primary {
            max-width: 421px
        }

        .testimonial-camps-page {
            padding-top: 120px;
            padding-bottom: 130px
        }
    }

    @media (min-width:992px) {

        .hero-search-icon,
        .hero-search-icon2,
        .hero-pencil-icon,
        .hero-pencil-icon2,
        .hero-pencil-icon3,
        .hero-rocket-icon2,
        .hero-camera-icon,
        .hero-guitar-icon,
        .hero-s-star-icon,
        .hero-chip-icon,
        .hero-s-star-icon2,
        .hero-clock-icon {
            animation: 6s linear infinite jump;
        }

        .hero-monitor-icon,
        .hero-bulb-icon,
        .hero-bulb-icon2,
        .hero-rocket-icon,
        .hero-drums-icon,
        .hero-mic-icon,
        .hero-musicstar-icon,
        .hero-trumpet-icon,
        .hero-robot-icon,
        .hero-mobile-icon,
        .hero-laptop-icon,
        .hero-bulb-icon-3,
        .hero-rocket-icon3,
        .hero-bulb-icon-4 {
            animation: 6s linear infinite jumpTwo;
        }

        /*    .hero-rocket-icon.inflx-r-icon {
        top: -15px;
        right: 10px;
    }*/

        .testimonialsSlider {
            padding-left: 15%
        }

            .testimonialsSlider .swiper-slide {
                min-width: 40%;
                max-width: 40%;
            }

        .search-movie-form h1,
        .contact-content h1 {
            font-size: 42px
        }
    }

    @media (min-width:1199px) {
        .hero-incrediquest .hero-camera-icon {
            left: -105px;
            bottom: 85px;
        }

        .hero-section.hero-incrediquest .container,
        .hero-section.hero-incrediflex .container,
        .hero-section.hero-increditunes .container,
        .hero-section.hero-increditech .container {
            padding-top: 50px
        }

        .search-movie-form h1,
        .contact-content h1 {
            font-size: 54px
        }
    }

    @media (min-width:1299px) {

        .testimonialsSlider .swiper-slide {
            min-width: 40%;
            max-width: 40%;
        }
    }


    @media (min-width:1500px) {
        .hero-section.hero-incrediquest .container,
        .hero-section.hero-incrediflex .container,
        .hero-section.hero-increditunes .container,
        .hero-section.hero-increditech .container {
            padding-top: 100px
        }
    }

    /* Media Max */

    @media (max-width:1599px) {
        .hero-search-icon {
            left: 0;
            top: 0
        }

        .hero-monitor-icon {
            left: 10px;
            bottom: 0;
            top: auto;
        }

        .bs-auth-icon.rocket-icon {
            right: 0
        }
    }


    @media (max-width:1499px) {
        .hero-search-icon {
            left: 0;
            top: 0px
        }

        .hero-monitor-icon {
            left: 10px;
            bottom: 0;
            top: auto;
        }

        .hero-guitar-icon {
            left: 10px;
            top: -110px;
        }

        .hero-drums-icon {
            left: 10px;
            bottom: 0;
            top: auto;
        }

        .hero-chip-icon {
            left: 10px
        }

        .hero-robot-icon {
            left: 10px;
            top: auto;
            bottom: -50px;
        }

        .hero-incrediquest .hero-search-icon,
        .hero-incrediflex .hero-search-icon {
            top: -70px;
        }

        .camp-logo-top {
            max-width: 440px
        }

        .bs-auth-icon.monitor-icon,
        .bs-auth-icon.icon-magnifier {
            left: 0px
        }
    }

    @media (max-width:1299px) {

        .hero-bulb-icon2 {
            top: -40px;
            right: -0px;
        }

        .hero-rocket-icon2 {
            left: -60px;
            bottom: 40px
        }


        .hero-trumpet-icon {
            bottom: -30px;
            left: 50px
        }

        .hero-s-star-icon {
            right: 140px;
        }

        /*    .hero-chip-icon {
        top: -100px;
        left: -10px
    }
*/
        /*    .hero-robot-icon {
        left: -25px;        
    }*/
        .hero-laptop-icon {
            left: -135px;
            bottom: -30px;
        }

        .email-signup {
            height: 295px;
        }

            .email-signup .section-head h3 {
                font-size: 26px
            }

        .signup-media-half {
            top: -48px;
        }

            .signup-media-half img.signup-img {
                height: 343px;
            }

            .signup-media-half .production-vector {
                left: -200px;
            }

                .signup-media-half .production-vector img {
                    max-width: 200px;
                }

        .stats-section h4 {
            font-size: 45px;
        }
    }

    @media (max-width:1199px) {
        body {
            font-size: 15px
        }

        .section {
            padding: 50px 0
        }

        .hero-bulb-icon {
            top: -70px
        }

        .hero-incrediflex .hero-bulb-icon {
            top: -30px;
        }

        .hero-guitar-icon {
            left: 10px;
            top: -90px;
        }

        .hero-incrediflex .hero-monitor-icon,
        .hero-incrediquest .hero-monitor-icon {
            bottom: -30px;
        }

        .hero-mic-icon {
            top: 0
        }

        .hero-icon img {
            width: 80%
        }

        .hero-guitar-icon img {
            width: 65%
        }

        .hero-chip-icon {
            top: -80px
        }

        .hero-s-star-icon2 {
            right: 70px;
            top: -90px;
        }

        .hero-bulb-icon-4 {
            bottom: -40px
        }

        .hero-content h1, .hero-content h2,
        .section-head h2, .section-head h3 {
            font-size: 32px;
            line-height: 1.4;
        }

        .caring-environment .media-col {
            min-width: 380px;
            max-width: 380px;
            margin-right: 60px
        }

        .section.our-camps {
            padding-top: 0
        }

        .camp-card {
            min-width: 400px;
            max-width: 400px;
        }

        .camp-logo-top {
            max-width: 320px
        }

        .section-head h2 .accent-word, .section-head h3 .accent-word {
            font-size: 44px
        }

        .program-card {
            flex: 0 0 265px;
        }

        .program-card-img {
            min-width: 265px;
            max-width: 265px;
        }

        .program-card,
        .program-title-skills {
            min-width: 265px;
        }

        .program-card-head h3 {
            font-size: 21px
        }

        .section.stats-section {
            padding-top: 0;
            padding-bottom: 0
        }

        .stats-section h3 {
            font-size: 74px
        }

        .section.internal-page-head .info h4 {
            font-size: 32px
        }
    }

    @media (max-width:992px) {
        .hero-icon img {
            width: 70%
        }

        .hero-bulb-icon {
            top: -30px
        }

        .hero-rocket-icon {
            top: 20px;
            right: 14px;
        }

        .hero-incrediflex .hero-rocket-icon {
            top: -25px;
            right: -10px;
        }

        .hero-drums-icon {
            bottom: -50px
        }

        .hero-mic-icon {
            left: -80px;
        }

        .hero-robot-icon {
            bottom: -40px
        }

        .hero-clock-icon {
            bottom: -40px
        }

        .hero-content h1, .hero-content h2,
        .hero-content h1, .hero-content h2,
        .section-head h2, .section-head h3 {
            font-size: 28px;
            line-height: 1.3;
        }

        .caring-environment .media-col {
            margin-right: 0
        }

        .signup-media-half img.signup-img {
            display: none
        }

        .signup-media-half {
            width: 325px;
            height: 211px;
            top: auto;
            bottom: 0;
        }

            .signup-media-half .production-vector {
                left: auto;
                right: 0
            }

                .signup-media-half .production-vector img {
                    max-width: max-content;
                }

        .stats-section h3 {
            font-size: 65px
        }

        .stats-section h4 {
            font-size: 35px;
        }

        .videos-slider {
            padding: 0
        }

            .videos-slider .swiper-button-prev,
            .videos-slider .swiper-button-next,
            .bs-auth-icon {
                display: none
            }

        .iTime-lined-vector {
            top: -300px;
        }

        .camp-locations-modal-wrap {
            left: 50%;
            transform: translateX(-50%);
            width: 75%;
            max-width: 500px;
        }
    }

    @media (max-width:768px) {
        .formobileonly {
            padding: 12px 40px;
        }

        body {
            font-size: 14px
        }

        .section {
            padding: 40px 0
        }

        .pt-mob-sm {
            padding-top: 22px;
        }

        .section-pt-md-0 {
            padding-top: 0 !important
        }

        .section-pt-md-1 {
            padding-top: 10px !important
        }

        .section-pt-md-2 {
            padding-top: 20px !important
        }

        .form-control-lg {
            min-height: 54px;
            padding-top: 16px;
            padding-bottom: 12px;
        }

        .select-trigger:after {
            width: 34px;
            height: 34px;
            background-size: 16px;
        }

        .btn.btn-lg {
            padding: 15px
        }

        /* hero icons */
        .hero-incrediflex .hero-search-icon {
            top: -20px;
        }

        .hero-camera-icon {
            left: 0px;
            bottom: 10px;
        }

        .hero-rocket-icon {
            top: 0;
            right: 13px;
        }

        .hero-rocket-icon2 {
            left: 20px;
            bottom: 15px;
        }

        .hero-bulb-icon {
            right: 0px;
            top: -45px;
        }

        .hero-bulb-icon2 {
            right: -0px;
            top: -40px;
        }

        .hero-bulb-icon-4 {
            left: -10px;
            top: 185px;
        }

        .hero-clock-icon {
            right: -5px;
            left: auto;
            top: 215px;
        }

        .hero-mobile-icon,
        .hero-mic-icon,
        .hero-monitor-icon {
            display: none
        }

        .hero-pencil-icon {
            left: 30%;
            top: -15px
        }

        .hero-search-icon {
            top: 10px
        }

        .hero-search-icon2 {
            left: 10px;
            top: -20px
        }

        .hero-guitar-icon {
            top: 0;
            left: 5px;
        }

        .hero-s-star-icon {
            top: -40px;
            right: 0
        }

        .hero-musicstar-icon {
            bottom: 20px;
            right: 5px
        }

        .hero-trumpet-icon {
            left: 5px;
            bottom: 10px;
        }

        .hero-chip-icon {
            top: -29px;
            left: 10px;
        }

        .hero-robot-icon {
            left: 10px;
            top: 210px;
            bottom: auto;
        }

        .hero-s-star-icon2 {
            right: 10px;
            top: -60px;
        }

        .hero-drums-icon {
            display: none
        }

        .hero-icon img {
            max-width: 50px
        }

        .hero-mobile-icon.hero-icon img,
        .hero-pencil-icon2.hero-icon img,
        .hero-icon.hero-musicstar-icon img,
        .hero-icon.hero-pencil-icon img,
        .hero-robot-icon.hero-icon img,
        .hero-chip-icon.hero-icon img {
            max-width: 30px
        }

        .hero-bulb-icon-3.hero-icon img {
            max-width: 20px
        }


        /* hero icon ends here */

        .hero-section .hero-image,
        .hero-incredicamps .hero-image {
            max-width: 400px;
            margin: 0 auto;
            padding: 0 30px
        }

        .hero-section.hero-increditunes .hero-image {
            padding-bottom: 0 !important
        }

        .hero-section.hero-incrediquest .container,
        .hero-section.hero-increditunes .container {
            padding-top: 10px
        }

        .email-signup .section-head h3,
        .hero-content h1, .hero-content h2,
        .section-head h2, .section-head h3 {
            font-size: 22px;
            line-height: 1.4;
        }

            .section-head h2 .accent-word,
            .section-head h3 .accent-word {
                font-size: 30px;
            }

        .inspiring-creativity-content .section-head h3 {
            font-size: 20px
        }

        .inspiring-creativity-content .media-block {
            height: 200px
        }

            .inspiring-creativity-content .media-block .icon-play svg {
                width: 40px
            }

        .inspiring-creativity-info {
            padding: 18px 0 0
        }

        .caring-environment .bottom-arrow-vector {
            bottom: -55px !important;
        }

        .caring-environment .media-col {
            text-align: center;
            min-width: 300px;
            max-width: 300px;
            margin: 0 auto;
        }

        .section.our-camps {
            padding-bottom: 60px;
            padding-top: 40px
        }

        .camp-card {
            border-radius: 30px;
            min-width: 300px;
            max-width: 300px;
        }

        .camp-incrediflix {
            margin-bottom: 30px
        }

        .camp-card p {
            margin-bottom: 0
        }

        .camp-card .camp-logo {
            height: 66px
        }

            .camp-card .camp-logo img {
                max-width: 260px;
            }

        .locations .map-vector {
            max-width: 300px;
            margin: 0 auto 15px
        }

        .testimonial-block .testimonial-user-image {
            margin: 0 auto
        }

        .testimonial-content {
            text-align: center
        }

        .location-info,
        .email-signup .section-head {
            text-align: center
        }

        .email-signup {
            height: auto;
            height: auto;
            padding: 60px 0;
        }

        .signup-media-half .production-vector img {
            max-width: 250px;
        }

        .email-signup-form {
            margin: 0 auto;
        }

            .email-signup-form .form-control {
                height: 54px
            }

            .email-signup-form .icon-btn-rounded {
                width: 36px;
                height: 36px;
            }

                .email-signup-form .icon-btn-rounded svg {
                    width: 10px;
                }

        .footer {
            padding-top: 60px
        }

        .footer-links {
            margin-bottom: 30px
        }
        /* internal pages */
        .camp-logo-top {
            max-width: 208px
        }

        .section.internal-page-head {
            padding-top: 30px
        }

        .page-title h1 {
            font-size: 24px;
            line-height: 1.4;
        }

        .section.internal-page-head .internal-page-media {
            margin-bottom: 40px;
        }

            .section.internal-page-head .internal-page-media img {
                border-radius: 20px
            }

        .section.internal-page-head .info {
            font-size: 16px
        }

            .section.internal-page-head .info h4 {
                font-size: 24px
            }

        .program-cards-slider {
            height: auto
        }

        .program-card {
            flex: 0 0 255px;
            min-width: 255px;
            height: 325px;
        }

            .program-card:hover {
                flex: 0 0 255px;
            }

        .program-title-skills {
            padding: 15px 15px 5px;
        }

        .program-card:hover .program-card-img img {
            height: 100px
        }

        .program-card-img {
            min-width: 255px;
            max-width: 255px;
        }

        .program-title-skills {
            min-width: 255px;
        }

        .program-card-head h3 {
            font-size: 20px;
            line-height: 1.3
        }

        .program-title-skills .skills {
            min-width: auto;
            margin-bottom: 5px;
        }

            .program-title-skills .skills .skill-badge {
                padding: 4px 10px;
                font-size: 14px;
            }

        .program-description {
            min-width: 100%;
            padding: 0 15px 8px 15px
        }

        .videosSlider .video-thumb {
            border-radius: 15px;
            text-align: center
        }

        .section.auth-section {
            padding-top: 20px
        }

        .auth-form {
            margin-bottom: 0
        }

        .camp-locations-modal .locations-map-head {
            padding-right: 30px;
            padding-left: 15px;
        }

        .camp-location-row {
            margin: 0;
            padding-left: 15px;
        }

        .camp-locations-modal .modal-camp-name {
            margin-bottom: 15px
        }
        .cc-window.cc-banner.cc-type-opt-in.cc-theme-classic.cc-bottom {
            display: none;
        }
    }

    @media (max-width:599px) {
        .w-sm-full {
            width: 100% !important
        }

        .bs-media-col {
            text-align: center
        }

            .bs-media-col img {
                max-width: 380px;
                width: 100%
            }

        .signup-media-half .production-vector img {
            max-width: 150px;
        }

        .stats-section h3 {
            font-size: 36px
        }

        .stats-section h4 {
            font-size: 22px;
            font-weight: normal
        }

        .section.contact-options {
            padding-top: 20px
        }

        .contact-options .icon svg {
            height: 36px
        }

        .contact-options h4 {
            font-size: 18px
        }

        .camp-locations-modal-wrap {
            width: 90%;
            padding-right: 35px
        }
        .homepagecampslider .swiper-slide {
            padding: 0;
        }
        
    }


    /*
.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}
*/