* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
}

body {
    overflow-x: hidden;
}

.color-green {
    color: #0c4412;
}

.color-orenge {
    color: #ff5f38;
}

.cstm-bg {
    background-color: #0c4412;
}

.cstm-bg-gradient {
    background-color: #0c4412;
}

.color-bg {
    background-color: #fff7f5;
}

/* header top css start */

.navbar-toggler-icon {
    filter: brightness(0) invert(1);

}

.navbar-toggler {
    background-color: #0c4412;
}

.cstm_navbar {
    border-bottom: 3px solid #0c4412;
}

.cstm_navbar {
    background: #fff;
    z-index: 1030;
    overflow: hidden;
}

.cstm_con i {
    border: 2px solid white;
    color: white;
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.cstm_con i:hover {
    border: 2px solid #ff5f38;
    background-color: #ff5f38;
    color: white;
}

.cstm_con a {
    font-size: 17px;
    color: white;
}

.social_icons a {
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
}

.social_icons a {
    border: 2px solid white;
    color: white;
    font-size: 20px;
    padding: 6px 12px;
    border-radius: 50%;
}

.social_icons a:hover {
    border: 2px solid #ff5f38;
    background-color: #ff5f38;
    color: white;
}

.cstm_navbar ul li a {
    font-weight: 600;
    font-size: 18px;
}

.cstm_navbar ul li a:hover {
    color: #ff5f38 !important;
}

.nav-link.active {
    color: #ff5f38 !important;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    text-align: center;
    font-size: 12px;
    color: #0c4412;
    font-weight: 500;
}

.navbar-brand img {
    width: 120px !important;
    margin-bottom: 5px;
}

.brand-text {
    line-height: 1.3;
}
@media(max-width:320px){
  .navbar-brand img {
    width: 100px;
    margin-bottom: 5px;
}  
.brand-text {
    font-size: 8px;
    line-height: 1;
}
}

/* header top css end */


/* all button css start */
.cstm_button,
.cstm_primary {
    border: 2px solid #ff5f38;
    background-color: white;
    color: black;
    padding: 13px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s ease;
}

.cstm_btn,
.cstm_seconderry {
    background-color: #ff5f38;
    color: #fff;
    padding: 13px 30px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #ff5f38;
    transition: 0.3s ease;
}

.cstm_btn:hover,
.cstm_button:hover,
.cstm_primary:hover,
.cstm_seconderry:hover {
    background: linear-gradient(90deg, #ff5f38, #0c4412);
    color: white;
    border: 2px solid white;
}

.cstm_btn,
.cstm_button,
.cstm_primary,
.cstm_seconderry {
    position: relative;
    overflow: hidden;
}

.cstm_btn::before,
.cstm_button::before,
.cstm_primary::before,
.cstm_seconderry::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transform: skewX(-40deg);
    transition: 0.6s;
}

.cstm_btn:hover::before,
.cstm_button:hover::before,
.cstm_primary:hover::before,
.cstm_seconderry:hover::before {
    left: 120%;
}

@media (max-width:769px) and (min-width:426px) {

    .cstm_primary,
    .cstm_seconderry {
        padding: 13px 10px;
    }
}

@media (max-width:426px) {

    .cstm_seconderry,
    .cstm_primary {
        display: none;
    }
}

/* all button css end*/

/* hero section css start */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
    width: 90%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #ff5f38;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

.hero-btn {
    background-color: #ff5f38;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 40px;
    font-size: 18px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background-color: #0c4412;
    color: #ff5f38;
}

/* Responsive */

@media (max-width: 1024px) {
    .hero-section {
        height: 550px;
    }

    .hero-content h1 {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 380px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* hero section css end */
/* about us css start */
.cstm_about {
    padding: 70px 0px;
}

.beg {
    display: inline-block;
    border: 2px solid #ff5f38;
    background-color: #fff2ef;
    color: #ff5f38;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
}

.cstm_about_text h1 {
    font-size: 60px;
}

.cstm_about_text p {
    font-size: 18px;
}

@media(max-width:769px) {
    .cstm_about_text h1 {
        font-size: 40px;
    }
}

@media(max-width:500px) {
    .cstm_about_text h1 {
        font-size: 30px;
    }
}

/* about us css end  */
/* why choose us css start */

.service_box {
    height: 260px;
    padding: 30px 20px;
    margin: 30px 0;
    text-align: center;
    border-radius: 5px;
    background: transparent;
    transition: all 0.30s ease 0s;
    border: 1px solid #ff5f38;
}

.service_box:hover {
    background: #ff5f38;
    box-shadow: 0px 2px 12px #adadad;
    transform: translateY(-10px);
}

.service_box .service_icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    font-size: 35px;
    border-radius: 50px;
    transform: translateY(0);
    transition: all 0.30s ease 0s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_box:hover .service_icon {
    transform: translateY(-100%);
    background-color: #fff;
    border: none;
}

.service_box .service_icon i {
    color: #ff5f38;
    font-size: 44px;
}

.service_box h3 {
    position: relative;
    top: 30px;
    margin: 0;
    color: #222;
    font-size: 23px;
    text-transform: uppercase;
    transform: translateY(0%);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}

.service_box:hover h3 {
    top: -40px;
    color: #fff;
}

.service_box p {
    color: #fff;
    margin: 0;
    opacity: 0;
    transition: all 0.30s linear 0s;
}

.service_box:hover p {
    opacity: 1;
}

/* why choose us css end */
/* our coures section  css start  */
.cstm_coures {
    padding: 70px 0px;
    overflow: hidden;
}

.cstm_coures_img {
    margin-right: calc(-28vw + 50%);
    padding-right: 0px !important;
}

.cstm_coures_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cstm_coures_text h2 {
    font-weight: 700;
}

.cstm_coures_text p {
    font-size: 17px;
    font-weight: 400;
}

.cstm_text {
    width: 100%;
    max-width: 350px;
    padding: 8px 18px;
    font-size: 17px;
    font-weight: 600;
    background: #fff;
    color: #222;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.cstm_text i {
    min-width: 36px;
    height: 36px;
    background: #ff5f38;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(.68, -0.55, .27, 1.55),
        background 0.3s ease;
}

.cstm_text:hover {
    background: linear-gradient(90deg, #ff5f38, #ff7a55);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(255, 95, 56, 0.35);
}

.cstm_text:hover i {
    background: #fff;
    color: #ff5f38;
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .cstm_coures_img {
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }

    .cstm_coures_img img {
        margin: 0 auto;
        display: block;
        max-width: 90%;
        border-radius: 20px;
    }
}

/* our coures section  css start  */

/* testimonial section css start  */
.cstm_testi {
    padding-bottom: 70px;
}

.slick-slide {
    height: auto !important;
}

.slider .slide {
    padding: 30px 10px;
}

.testi_card {
    height: 250px;
    padding: 20px 15px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.testi_card p {
    font-size: 15px;
    line-height: 1.7;
}

.testi_card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #ff5f38;
    margin-bottom: 4px;
}

.testi_card span {
    font-size: 14px;
}

.testi_card .stars {
    font-size: 20px;
    color: #ff5f38;
    letter-spacing: 2px;
}

.testi_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.slick-prev.slick-arrow,
.slick-next.slick-arrow {
    background-color: #fff !important;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: none;
    z-index: 99;
    transition: all 0.3s ease;
}

/* .slick-prev,
.slick-next{
top: 50% !important;
} */
.slick-prev.slick-arrow {
    left: -55px;
}

.slick-next.slick-arrow {
    right: -55px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px !important;
    color: black !important;
    opacity: 1;
}

.slick-prev.slick-arrow:hover,
.slick-next.slick-arrow:hover {
    background: #ff5f38 !important;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: #000000 !important;
}

@media (max-width: 1026px) {
    .slick-prev.slick-arrow {
        left: -35px;
    }

    .slick-next.slick-arrow {
        right: -35px;
    }
}

@media (max-width: 769px) {
    .testi_card {
        height: 250px;
    }
}

@media (max-width: 500px) {

    .testi_card {
        height: 260px;
    }

    .slick-prev.slick-arrow,
    .slick-next.slick-arrow {
        width: 38px;
        height: 38px;
    }

    .slick-prev.slick-arrow {
        left: -10px;
    }

    .slick-next.slick-arrow {
        right: -10px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .testi_card {
        height: 270px;
    }
}

/* testimonial section css end */

/* free call section css start */
.cstm_call_banner {
    background-image: linear-gradient(rgba(21, 39, 21, 0.55)), url("../img/banner.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

.cc {
    padding-bottom: 70px;
}

.cstm_call h1 {
    font-weight: 900;
    color: white;
}

.cstm_call p {
    font-weight: 500;
    color: white;
}

/* free call section css start */
/* contact us section css start */


.contact_icon i {
    background-color: #ff5f38;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 14px;
    min-width: 36px;
    text-align: center;
}

.contact_text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.contact_text a {
    font-weight: 500;
    color: black;
}

.contact_text a:hover {
    color: #ff5f38;
}

.cstm_quote_section {
    padding: 20px 35px;
}

.cstm_input,
.cstm_textarea {
    resize: none;
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 15px;
    border: 1px solid #e2e2e2;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.cstm_input:focus,
.cstm_textarea:focus {
    background-color: #ffffff;
    border-color: #ff5f38;
    box-shadow: 0 0 0 4px rgba(255, 95, 56, 0.15);
}

.cstm_input::placeholder,
.cstm_textarea::placeholder {
    color: #999;
    font-size: 14px;
}

@media(max-width:769px) {
    .cstm_quote_section {
        margin-top: 20px;
    }
}

@media(max-width:426px) {
    .cstm_quote_section {
        padding: 10px 0px;
    }

    .cstm_title {
        font-size: 30px;

    }
}

/* contact us section css end */

/* footer css start */
.cstm_foo {
    padding: 70px 0 40px;
    background-color: #0c4412;
}

.cstm_footer img {
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    width: 140px;
}

.cstm_footer p {
    line-height: 1.6;
    font-size: 15px;
}

.social_icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    margin-right: 5px;
    transition: 0.3s ease;
}

.social_icons a i {
    font-size: 18px;
    color: #ffffff;
}

.social_icons a:hover {
    background-color: #ff5f38;
    border-color: #ff5f38;
}

.social_icons a:hover i {
    color: #ffffff;
}

@media (max-width: 576px) {
    .social_icons a {
        width: 40px;
        height: 40px;
    }
}

.cstm_line {
    width: 55px;
    height: 4px;
    background-color: #ff5f38;
    border-radius: 2px;
    margin-bottom: 40px;
}

.cstm_box ul li a {
    color: white;
    display: inline-block;
    padding: 3px 0;
    transition: 0.3s ease;
    font-size: 15px;
}

.cstm_box ul li a:hover {
    color: #ff5f38;
    padding-left: 6px;
}

.cstm_time li i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 12px;
    transition: 0.3s ease;
    color: white;
}


.cstm_loc:hover a,
.cstm_loc:hover span {
    color: #ff5f38;
}

.cstm_loc:hover i,
.cstm_time li:hover i {
    background-color: #ff5f38;
    border-color: #ff5f38;
    color: #ffffff;
}

.cstm_time a {
    color: white;
    transition: 0.3s ease;
}

.cstm_time a:hover {
    color: #ff5f38;
}


.footer_bar {
    background: #08370d;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer_bar p {
    font-size: 14px;
    color: #ffffff;
}


/* footer css end */


/* about */



.cstm_count {
    padding: 70px 0px;
}

/* gallery */
.cstm_gallery {
    padding-top: 70px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.cstm_slide {
    padding: 30px 10px;
}

/* cads */
.exp_card {
    background: #ffffff;
    padding: 45px 29px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.exp_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff5f38, #ff8a65);
}

.exp_icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(255, 95, 56, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.exp_icon i {
    font-size: 30px;
    color: #ff5f38;
    transition: all 0.4s ease;
}

.exp_card h2 {
    font-size: 44px;
    font-weight: 800;
    color: #1b2b1b;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.exp_card p {
    font-size: 15px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.3px;
}

.exp_card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.15);
}

.exp_card:hover .exp_icon {
    background: #ff5f38;
}

.exp_card:hover .exp_icon i {
    color: #ffffff;
}

@media (max-width: 576px) {
    .exp_card {
        padding: 35px 25px;
    }

    .exp_card h2 {
        font-size: 38px;
    }

    .cstm_banner_text h1 {
        font-size: 50px;

    }
}

/* services page css start */
.service_section {
    padding: 70px 0px;
}

.service_title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service_desc {
    max-width: auto;
    margin: 0 auto 14px;
    font-size: 16px;
    line-height: 1.8;
}

.service_card {
    background: #ffffff;
    padding: 38px 32px;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service_card:hover {
    border-color: #ff5f38;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service_card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1b2b1b;
    margin-bottom: 12px;
}

.service_card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.class {
    padding-top: 40px;
}
.class1_training_section{
     padding-bottom: 70px;
}

.cstm_list {
    padding-left: 0px;
}

/* .highlight_text {
    background: #fff4ef;
    padding: 10px 20px;
    border-left: 5px solid #ff5f38;
    border-radius: 8px;
    font-weight: 500;
} */

@media(max-width:768px) {
    .service_title {
        font-size: 30px;
    }
}

/* schedule section */
.schedule_section {
    padding-top: 70px;
}

.cstm_sch {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px 16px;
    height: 180px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical center */
    align-items: center;
    /* horizontal center */
}

/* hover effect */
.cstm_sch:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #ff5f38;
}

/* month heading */
.program-bg {
    background-color: #f5fff9;
    width: 100%;
    padding-bottom: 50px;
}

.schedule_section h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

/* date text */
.schedule_section p,
.schedule_section li {
    font-size: 15px;
    color: #555;
    margin: 6px 0px;
    list-style: none;
}

/* ul reset */
.schedule_section ul {
    padding: 0;
    margin: 0;
}

/* date badge style */
.schedule_section li,
.schedule_section p {
    background: #f8f8f8;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
}


@media(max-width:1026px) {
    .cstm_sch {
        padding: 18px 7px;
    }
}

/* services page css end */
/* mpi links page css start */
.cstm_mpi_links {
    padding: 70px 0px;
}

.mpi_box {
    border: 2px solid #ff5f38;
    border-radius: 12px;
    padding: 30px 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mpi_box h3 {
    font-size: 22px;
    font-weight: 500;
    color: #111;
}

.mpi_desc {
    max-width: 900px;
    margin: 0 auto;
}

.mpi_box:hover {
    transform: translateY(-12px);
}

@media(max-width:1025px) and (min-width:769px) {
    .cstm_mpi_col {
        width: 33% !important;
    }
}

/* mpi links page css end */


/* back top top  */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #ff5f38;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: none;
    z-index: 999;
    transition: all 0.3s ease;
}

#backToTop:hover {
    background: #1c6a24;
    transform: translateY(-5px);
}

/* back top top  */
/* whatsapp logo */
#whatsappBtn {
    position: fixed;
    bottom: 90px;
    /* top button ke upar */
    right: 30px;
    width: 45px;
    height: 45px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
}

#whatsappBtn:hover {
    background: #1ebe5d;
    transform: translateY(-5px);
}

/* whatsapp logo */

/* ssdsd */


/* progress Apply button */
.applyBtn {
    color: gray;
    margin-top: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

/* POPUP OVERLAY */
.pop-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

/* POPUP BOX */
.pop-box {
    border-radius: 10px;
    background: #fff;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

/* Close */
.pop-close {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Form */
.pop-box input,
.pop-box select {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
}

/* progress Apply from */





.popup-wrapper {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* MAIN BOX */
.popup-box {
    width: 850px;
    max-width: 95%;
    height: 420px;
    background: #fff;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* CLOSE BUTTON */
.popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    border: none;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

/* LEFT CONTENT */
.popup-content {
    padding: 50px 40px;
}

.popup-content h1 {
    font-weight: 700;
    color: #111;
}

.popup-content h1 span {
    color: #ff5f38;

}

.popup-content p {
    font-size: 18px;
    color: #555;
    margin: 18px 0 25px;
    line-height: 1.6;
}



/* RIGHT IMAGE */
.popup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .popup-box {
        height: 330px;
    }

    .popup-content {
        padding: 30px;
        text-align: center;
    }
}

@media(max-width:500px) {
    .popup-box {
        height: 300px;
    }

    .popup-content {
        padding: 30px;
        text-align: center;
    }
}