/* =========================================================
   IICE DIGITAL MARKETING COURSE PAGE
========================================================= */

.dm-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
    color: #151515;
    font-family: 'Acme', sans-serif;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.dm-section-container {
    width: 100%;
    max-width: 1700px;
    margin: auto;
    padding-left: 6%;
    padding-right: 6%;
}


/* =========================================================
   HERO
========================================================= */

.dm-hero {
    background: #1d405f;
    color: #fff;
    padding: 72px 0 80px;
}

.dm-hero-container {
    max-width: 1700px;
    margin: auto;
    padding: 0 6%;

    display: grid;
    grid-template-columns: 1.08fr .82fr;
    gap: 70px;
    align-items: start;
}


/* LEFT */

.dm-small-title {
    color: #fff000;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.dm-small-title span {
    color: #fff000;
}

.dm-hero-content h1 {
    margin: 0;

    max-width: 850px;

    font-size: 43px;
    line-height: 1.25;
    font-weight: 700;
}

.dm-hero-content h1 span {
    color: #65d8f4;
}

.dm-hero-content h1 strong {
    color: #fff;
}

.dm-yellow-line {
    width: 215px;
    height: 5px;

    background: #ffbf00;

    margin: 32px 0 40px;
}


/* =========================================================
   RECOGNITION
========================================================= */

.dm-recognition-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

    max-width: 730px;
}

.dm-recognition-card {
    min-height: 105px;

    background: #fff;
    color: #192d53;

    border-radius: 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 15px;

    box-shadow: 0 8px 15px rgba(0,0,0,.25);
}

.dm-recognition-card i {
    color: #0786f7;
    font-size: 30px;
    margin-bottom: 8px;
}

.dm-recognition-card strong {
    font-size: 19px;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.dm-hero-description {
    max-width: 850px;
    margin-top: 38px;
}

.dm-hero-description p {
    margin: 0 0 22px;

    font-size: 23px;
    line-height: 1.55;

    color: #f0f5fa;
}

.dm-hero-description span {
    color: #fff000;
    font-weight: 700;
}

.dm-hero-description strong {
    color: #fff000;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.dm-hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 35px;
}

.dm-primary-btn,
.dm-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 25px;

    text-decoration: none;

    font-size: 21px;
    font-weight: 700;

    transition: .25s ease;
}

.dm-primary-btn {
    background: #0786f7;
    color: #fff;
}

.dm-secondary-btn {
    background: #1800ff;
    color: #fff;
}

.dm-primary-btn:hover,
.dm-secondary-btn:hover {
    transform: translateY(-3px);
}


/* =========================================================
   INQUIRY FORM
========================================================= */

.dm-form-outer {
    background: linear-gradient(
        120deg,
        #65d8f4,
        #fff,
        #42bad8
    );

    padding: 14px;

    margin-top: 5px;

    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.dm-form-inner {
    background: #050e4e;
    padding: 32px 40px 40px;
}

.dm-form-inner h2 {
    margin: 0;

    text-align: center;

    font-size: 40px;

    color: #fff000;
}

.dm-form-inner h2 b {
    color: #16e35b;
}

.dm-form-subtitle {
    text-align: center;

    color: #fff;

    font-size: 18px;

    margin: 5px 0 25px;
}

.dm-input-group {
    margin-bottom: 20px;
}

.dm-input-group input,
.dm-input-group textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #ddd;
    border-radius: 5px;

    padding: 15px;

    font-family: 'Acme', sans-serif;

    font-size: 20px;

    outline: none;
}

.dm-input-group textarea {
    resize: vertical;
    min-height: 115px;
}

.dm-input-group input:focus,
.dm-input-group textarea:focus {
    border-color: #0786f7;
}

.dm-submit-btn {
    width: 100%;

    border: 0;
    border-radius: 5px;

    padding: 14px;

    background: #25b64b;
    color: #fff;

    font-family: 'Acme', sans-serif;

    font-size: 23px;
    font-weight: 700;

    cursor: pointer;

    transition: .25s ease;
}

.dm-submit-btn:hover {
    background: #16a13b;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.dm-section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.dm-section-heading h2 {
    margin: 0;

    font-family: Georgia, 'Times New Roman', serif;

    font-size: 52px;
    line-height: 1.2;
}

.dm-section-heading h2 span {
    color: #0786f7;
}

.dm-heading-line {
    width: 410px;
    max-width: 80%;

    height: 3px;

    margin: 12px auto 0;

    background: linear-gradient(
        to right,
        transparent,
        #65d8f4,
        #65d8f4,
        transparent
    );
}


/* =========================================================
   OVERVIEW
========================================================= */

.dm-overview {
    padding: 75px 0;
    background: #fff;
}

.dm-overview-grid {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 60px;
}

.dm-overview-text p {
    font-size: 23px;
    line-height: 1.6;
    margin: 0 0 25px;
}

.dm-overview-text strong {
    color: #0786f7;
}


/* =========================================================
   STATS
========================================================= */

.dm-overview-stats {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.dm-stat-card {
    min-height: 170px;

    border-top: 4px solid #20aee2;

    box-shadow: 0 8px 25px rgba(0,0,0,.09);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 20px;
}

.dm-stat-card i {
    font-size: 38px;
    color: #0909a8;

    margin-bottom: 10px;
}

.dm-stat-card strong {
    color: #0909a8;
    font-size: 30px;
}

.dm-stat-card span {
    font-size: 19px;
}


/* =========================================================
   SKILLS
========================================================= */

.dm-skills-section {
    padding: 75px 0;

    background: #f9fcfe;
}

.dm-skills-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

.dm-skill-card {
    background: #fff;

    padding: 35px 25px;

    min-height: 220px;

    text-align: center;

    border-top: 4px solid #20aee2;

    box-shadow: 0 8px 22px rgba(0,0,0,.08);

    transition: .25s ease;
}

.dm-skill-card:hover {
    transform: translateY(-7px);
}

.dm-skill-card i {
    color: #0c0ca8;
    font-size: 42px;
}

.dm-skill-card h3 {
    font-size: 26px;
    margin: 18px 0 10px;
}

.dm-skill-card p {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #555;
}


/* =========================================================
   SYLLABUS
========================================================= */

.dm-syllabus-section {
    padding: 75px 0;

    background: #fff;
}

.dm-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dm-accordion-item {
    border-top: 4px solid #20aee2;

    box-shadow: 0 7px 18px rgba(0,0,0,.08);

    background: #fff;
}

.dm-accordion-button {
    width: 100%;

    border: 0;

    background: #fff;

    padding: 20px 25px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    font-family: 'Acme', sans-serif;

    font-size: 24px;

    text-align: left;
}

.dm-accordion-button span {
    display: flex;
    align-items: center;
    gap: 17px;
}

.dm-accordion-button b {
    color: #20aee2;

    font-family: Arial, sans-serif;

    font-size: 38px;

    font-weight: 400;

    line-height: .7;
}

.dm-accordion-button i {
    color: #20aee2;

    transition: .3s ease;
}

.dm-accordion-item.active .dm-accordion-button i {
    transform: rotate(180deg);
}

.dm-accordion-content {
    display: none;

    padding: 0 30px 25px 78px;

    background: #fff;
}

.dm-accordion-item.active .dm-accordion-content {
    display: block;
}

.dm-accordion-content ul {
    margin: 0;
    padding-left: 20px;
}

.dm-accordion-content li {
    margin-bottom: 9px;

    font-family: Arial, sans-serif;

    font-size: 17px;

    line-height: 1.5;
}


/* =========================================================
   CERTIFICATION
========================================================= */

.dm-certification-section {
    padding: 70px 0;

    background: linear-gradient(
        120deg,
        #0786f7,
        #00b9c8
    );

    color: #fff;
}

.dm-certification-container {
    max-width: 1600px;

    margin: auto;

    padding: 0 6%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.dm-certification-content h2 {
    font-size: 45px;

    color: #fff000;

    margin: 0 0 25px;
}

.dm-certification-content h2 span {
    color: #fff;
}

.dm-certification-content p {
    font-family: Arial, sans-serif;

    font-size: 21px;

    line-height: 1.6;
}

.dm-certification-highlight {
    font-weight: 700;
}

.dm-certification-highlight i {
    margin-right: 10px;
}

.dm-white-btn {
    display: inline-block;

    background: #fff;

    color: #555;

    padding: 16px 55px;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 20px;

    font-weight: 700;

    border-radius: 4px;

    margin-top: 20px;
}

.dm-certificate-box {
    background: rgba(255,255,255,.25);

    padding: 25px;

    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.dm-certificate-box img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.dm-why-section {
    padding: 75px 0;

    background: #fff;
}

.dm-why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

.dm-why-card {
    min-height: 270px;

    background: #fff;

    border-top: 4px solid #20aee2;

    box-shadow: 0 8px 22px rgba(0,0,0,.08);

    padding: 35px 25px;

    text-align: center;
}

.dm-why-card i {
    color: #0c0ca8;

    font-size: 48px;

    margin-bottom: 20px;
}

.dm-why-card h3 {
    font-family: Arial, sans-serif;

    font-size: 21px;

    line-height: 1.4;

    color: #555;

    margin: 0 0 12px;
}

.dm-why-card p {
    font-family: Arial, sans-serif;

    color: #666;

    font-size: 16px;

    line-height: 1.5;
}

.dm-extensive {
    text-align: center;

    font-size: 27px;

    font-weight: 700;

    margin-top: 65px;
}


/* =========================================================
   CTA
========================================================= */

.dm-placement-cta {
    padding: 65px 20px 75px;

    text-align: center;

    background: #fff;
}

.dm-cta-dots {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-bottom: 55px;
}

.dm-cta-dots span {
    width: 27px;
    height: 5px;

    border-radius: 5px;

    background: #b9ecfc;
}

.dm-cta-dots span:nth-child(4) {
    background: #45c5f1;
}

.dm-placement-cta h2 {
    font-size: 37px;

    font-style: italic;

    margin: 0;
}

.dm-placement-cta h3 {
    color: green;

    font-size: 34px;

    font-style: italic;

    margin: 6px 0;
}

.dm-cta-tagline {
    color: #f26522;

    font-size: 31px;

    font-style: italic;

    margin-bottom: 30px;
}

.dm-demo-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: #25008d;

    color: #fff;

    text-decoration: none;

    padding: 15px 25px;

    font-size: 27px;

    font-weight: 700;

    box-shadow: 0 10px 20px rgba(0,0,0,.2);
}


/* =========================================================
   CONTACT
========================================================= */

.dm-contact-section {
    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            rgba(0,0,0,.78),
            rgba(0,0,0,.78)
        ),
        url('../assets/contact-bg.jpg') center/cover no-repeat;
}

.dm-contact-content {
    position: relative;

    z-index: 2;

    max-width: 900px;

    padding: 60px 20px;

    color: #fff;

    text-align: center;
}

.dm-contact-content h2 {
    font-size: 44px;

    margin: 0 0 25px;
}

.dm-contact-content h2 span {
    color: #0786f7;
}

.dm-contact-line {
    width: 220px;

    height: 3px;

    background: #0786f7;

    margin: 0 auto 35px;
}

.dm-contact-content p {
    font-family: Arial, sans-serif;

    font-size: 20px;

    line-height: 1.55;

    margin: 20px 0;
}

.dm-contact-content i {
    color: #fff;

    margin-right: 8px;
}


/* =========================================================
   FAQ
========================================================= */

.dm-faq-section {
    padding: 75px 0 65px;

    background: #fff;
}

.dm-faq-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.dm-faq-item {
    border: 1px solid #f0f0f0;

    box-shadow: 0 3px 10px rgba(0,0,0,.03);
}

.dm-faq-question {
    width: 100%;

    border: 0;

    background: #fff;

    padding: 19px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    cursor: pointer;

    font-family: 'Acme', sans-serif;

    font-size: 22px;

    color: #444;

    text-align: left;
}

.dm-faq-question i {
    color: #20aee2;

    transition: .3s ease;
}

.dm-faq-item.active .dm-faq-question i {
    transform: rotate(180deg);
}

.dm-faq-answer {
    display: none;

    padding: 0 24px 20px;
}

.dm-faq-item.active .dm-faq-answer {
    display: block;
}

.dm-faq-answer p {
    margin: 0;

    font-family: Arial, sans-serif;

    color: #555;

    font-size: 17px;

    line-height: 1.6;
}

.dm-show-more {
    text-align: center;

    font-size: 20px;

    margin-top: 25px;
}


/* =========================================================
   MOVING LINE
========================================================= */

.dm-moving-line {
    width: 100%;

    overflow: hidden;

    white-space: nowrap;

    padding: 18px 0;

    background: #fff;

    border-top: 1px solid #eee;

    border-bottom: 1px solid #eee;
}

.dm-moving-track {
    display: inline-flex;

    min-width: max-content;

    animation: dmMoving 24s linear infinite;
}

.dm-moving-item {
    margin-right: 70px;

    font-size: 25px;

    font-weight: 700;
}

@keyframes dmMoving {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.dm-floating-buttons {
    position: fixed;

    left: 15px;

    bottom: 70px;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.dm-floating-buttons a {
    width: 66px;

    height: 66px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    box-shadow: 0 5px 18px rgba(0,0,0,.18);
}

.dm-floating-buttons i {
    color: #08b83d;

    font-size: 43px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .dm-hero-container {
        grid-template-columns: 1fr;

    }

    .dm-form-outer {
        max-width: 650px;

        width: 100%;

        margin: 30px auto 0;
    }

    .dm-skills-grid,
    .dm-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .dm-section-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .dm-hero {
        padding: 45px 0 55px;
    }

    .dm-hero-container {
        padding: 0 20px;

        gap: 35px;
    }

    .dm-small-title {
        font-size: 31px;
    }

    .dm-hero-content h1 {
        font-size: 30px;
    }

    .dm-hero-description p {
        font-size: 18px;
    }

    .dm-recognition-row {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .dm-recognition-card {
        min-height: 80px;
    }

    .dm-hero-buttons {
        flex-direction: column;
    }

    .dm-primary-btn,
    .dm-secondary-btn {
        justify-content: center;
    }

    .dm-form-inner {
        padding: 25px 20px 30px;
    }

    .dm-form-inner h2 {
        font-size: 33px;
    }

    .dm-section-heading h2 {
        font-size: 36px;
    }

    .dm-overview-grid {
        grid-template-columns: 1fr;
    }

    .dm-overview-text p {
        font-size: 18px;
    }

    .dm-overview-stats {
        grid-template-columns: 1fr 1fr;
    }

    .dm-skills-grid,
    .dm-why-grid {
        grid-template-columns: 1fr;
    }

    .dm-skill-card {
        min-height: auto;
    }

    .dm-accordion-button {
        font-size: 18px;

        padding: 16px;
    }

    .dm-accordion-button b {
        font-size: 30px;
    }

    .dm-accordion-content {
        padding-left: 45px;
    }

    .dm-certification-container {
        grid-template-columns: 1fr;

        padding: 0 20px;

        gap: 35px;
    }

    .dm-certification-content h2 {
        font-size: 35px;
    }

    .dm-certification-content p {
        font-size: 18px;
    }

    .dm-placement-cta h2 {
        font-size: 27px;
    }

    .dm-placement-cta h3 {
        font-size: 27px;
    }

    .dm-cta-tagline {
        font-size: 24px;
    }

    .dm-demo-btn {
        font-size: 20px;
    }

    .dm-contact-content h2 {
        font-size: 35px;
    }

    .dm-contact-content p {
        font-size: 17px;
    }

    .dm-moving-item {
        font-size: 20px;

        margin-right: 45px;
    }

    .dm-floating-buttons {
        left: 8px;
        bottom: 60px;
    }

    .dm-floating-buttons a {
        width: 55px;
        height: 55px;
    }

    .dm-floating-buttons i {
        font-size: 35px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dm-small-title {
        font-size: 27px;
    }

    .dm-hero-content h1 {
        font-size: 26px;
    }

    .dm-section-heading h2 {
        font-size: 31px;
    }

    .dm-overview-stats {
        grid-template-columns: 1fr;
    }

    .dm-accordion-button span {
        gap: 10px;
    }

    .dm-accordion-content {
        padding-left: 30px;
    }

    .dm-certificate-box {
        padding: 12px;
    }

}
/* =========================================================
   FAQ SHOW MORE / SHOW LESS
========================================================= */

.dm-faq-hidden {
    display: none;
}

.dm-faq-list.dm-faq-expanded .dm-faq-hidden {
    display: block;
}


/* Show More Button */

.dm-show-more {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin: 28px auto 0;

    padding: 8px 18px;

    border: 0;

    background: transparent;

    color: #111;

    font-family: 'Acme', sans-serif;

    font-size: 21px;

    cursor: pointer;

    transition: .25s ease;
}

.dm-show-more:hover {
    color: #0786f7;
}

.dm-show-more i {
    font-size: 17px;

    transition: transform .3s ease;
}


/* Rotate icon when expanded */

.dm-show-more.active i {
    transform: rotate(180deg);
}


/* Mobile */

@media (max-width: 768px) {

    .dm-show-more {
        font-size: 19px;
    }

}