@font-face {
    font-family: "Mansfield";
    src: url("https://app.funnelmaker.com/users/myteam33104/Media4638.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mansfield";
    src: url("https://app.funnelmaker.com/users/myteam33104/Media4644.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mansfield";
    src: url("https://app.funnelmaker.com/users/myteam33104/Media4641.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mansfield";
    src: url("https://app.funnelmaker.com/users/myteam33104/Media4636.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mansfield";
    src: url("https://app.funnelmaker.com/users/myteam33104/Media4637.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --topbar-bg: #083755;
    --menu-color: #474747;
    --green: #2EAE4D;
    --white: #FFFFFF;
    --border: #F6F6F6;
    --container-width: 1440px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Mansfield", Arial, Helvetica, sans-serif;
    color: var(--menu-color);
    background: #ffffff;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

.schoolcom-header {
    width: 100%;
    position: relative;
    z-index: 9999;
    background: #ffffff;
}


.main-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-inline: 20px;
}

.schoolcom-topbar {
    width: 100%;
    background: var(--topbar-bg);
    color: var(--white);
}

.schoolcom-topbar-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 8px;
}

.schoolcom-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 100%;
}

.schoolcom-contact .top-header-divider {
    display: block;
    width: 1px;
    height: 34px;
    background: #BFBFBF;
}

.schoolcom-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;

}

.schoolcom-phone-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.schoolcom-mail-icon {
    width: 27px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schoolcom-social {
    display: flex;
    align-items: center;
    gap: 40px;
}

.schoolcom-social a {
    color: #ffffff;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.schoolcom-social a:hover {
    opacity: 0.7;
}

.schoolcom-nav {
    width: 100%;
    background: #ffffff;
    padding-block: 15px;
    box-shadow: 0px 4px 20px 0px #7C7C7C40;
}

.schoolcom-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.schoolcom-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.schoolcom-logo img {
    display: block;
    width: auto;
    max-width: 190px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.schoolcom-nav-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.schoolcom-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-right: 70px;
}

.schoolcom-menu-item {
    position: relative;
}

.mobile {
    display: none;
}

.schoolcom-menu-item>a {
    color: var(--menu-color);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.35;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.schoolcom-menu-item>a:hover,
.schoolcom-menu-item.active>a {
    color: var(--green);
}

.schoolcom-search {
    position: relative;
    height: 75px;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.schoolcom-search-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.schoolcom-search-label {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.schoolcom-search-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
    transition: border-color 0.2s ease;
}

.schoolcom-search-label:hover .schoolcom-search-icon svg path {
    stroke: var(--green);
}

.schoolcom-search-label:hover .schoolcom-search-icon::after {
    background: var(--green);
}

.schoolcom-search-box {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    width: 390px;
    background: #ffffff;
    padding: 15px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
    pointer-events: none;
}

.schoolcom-search-toggle:checked~.schoolcom-search-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.schoolcom-search-input {
    flex: 1;
    width: 100%;
    height: 44px;
    border: 1px solid #d7d7d7;
    border-radius: 4px;
    padding: 0 14px;
    outline: none;
    color: #333333;
    font-size: 14px;
    background: #ffffff;
}

.schoolcom-search-input:focus {
    border-color: var(--green);
}

.schoolcom-search-submit {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 4px;
    background: var(--green);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.schoolcom-search-submit svg path {
    stroke: #ffffff;
}

.schoolcom-search-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    color: #555555;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.schoolcom-search-close:hover {
    color: #ffffff;
    background: var(--green);
}

.schoolcom-signup,
.primary-btn {
    border-radius: 5px;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in-out;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.45;
    text-align: center;
    padding: 12px 24px;
}

.schoolcom-signup:hover,
.primary-btn:hover {
    background: var(--green);
    opacity: 80%;
    color: #ffffff;
    transform: translateY(-1px);
}

.schoolcom-mobile-toggle {
    display: none;
}

.schoolcom-mobile-label {
    display: none;
    width: 42px;
    height: 42px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.schoolcom-mobile-label span {
    width: 22px;
    height: 2px;
    background: var(--menu-color);
    display: block;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        background 0.25s ease;
}

/* banner css start */
.new-home-banner {
    width: 100%;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    padding-block: 114px;
}

.new-home-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.new-home-banner-eyebrow {
    margin: 0 0 20px;
    color: var(--green);
    font-weight: 800;
    font-size: 20px;
    line-height: 1.35;
}

.new-home-banner-title {
    font-weight: 900;
    font-size: 82px;
    line-height: 1.2;
    letter-spacing: 2px;
    color: var(--topbar-bg);
    margin: 0;
}

.new-home-banner-description {
    margin: 40px 0;
    color: var(--menu-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
}

.new-home-banner-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.new-home-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .4s ease-in-out;
    padding: 13px 24px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0%;
    text-align: center;
    border: 1px solid;
}

.new-home-banner-btn-primary {
    background: var(--topbar-bg);
    color: #fff;
    border-color: var(--topbar-bg);
}

.new-home-banner-btn-primary:hover {
    background: transparent;
    color: var(--topbar-bg);
}

.new-home-banner-btn-secondary {
    background: #fff;
    color: var(--topbar-bg);
    border: 1px solid var(--topbar-bg);
}

.new-home-banner-btn-secondary:hover {
    background: var(--topbar-bg);
    color: #fff;
}

/* banner css end */
/* Watch & Explore start */
.new-watch-explore {
    background: #F5FAFE;
    padding-block: 120px;
}

.new-watch-explore .main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.new-watch-explore-content {
    flex: 1 52%;
}

.section-subtitle {
    font-weight: 800;
    font-size: 20px;
    line-height: 1.35;
    margin-block: 0 30px;
    color: var(--green);
    display: flex;
    flex-direction: column;
}

.section-subtitle::before {
    content: '';
    display: block;
    width: 90px;
    height: 2px;
    background: var(--green);
    margin-top: 4px;
    order: 1;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 56px;
    height: 2px;
    background: var(--green);
    margin-top: 6px;
    order: 2;
}

.new-watch-explore-title {
    font-weight: 800;
    font-size: 54px;
    line-height: 1.13;
    letter-spacing: 2px;
    color: #000000;
    margin: 0;

}

.new-watch-explore-title .percentage {
    color: var(--green);
    font-size: 76px;
    font-weight: 900;
}

.new-watch-explore-description {
    margin: 30px 0;
    color: #111111;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
}

.new-watch-explore-button.primary-btn {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 7px;
}

.new-watch-explore-button.primary-btn svg {
    display: block;
    width: 20px;
    height: 20px;
}

.new-watch-explore-video {
    padding: 15px;
    background: #FFFFFF;
    border-radius: 10px;
    flex: 1 50%;
    box-shadow: 0px 3px 30px 0px #5D5D5D40;
}

.new-watch-explore-video-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 7px;
    background: #222222;
}

.new-watch-explore-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Watch & Explore end */
/* Schoolcom Communication section start */
.schoolcom-communication-section {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.schoolcom-communication-section .main-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.schoolcom-communication-media {
    overflow: hidden;
    border-radius: 10px;
}
.schoolcom-communication-image {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    max-width: 100%;
    height: 100%;
    transition: all .4s ease-in-out;
}
.schoolcom-communication-media:hover .schoolcom-communication-image {
    transform: scale(1.12);
}
.schoolcom-communication-content {
    position: relative;
}
.schoolcom-communication-content::after {
    content: "";
    position: absolute;
    right: -45px;
    top: 86px;
    width: 100%;
    height: 100%;
    background: url(https://app.funnelmaker.com/users/myteam33104/Media4629.webp);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
    max-width: 340px;
}
.schoolcom-communication-content>* {
    position: relative;
    z-index: 1;
}
.schoolcom-communication-content .section-subtitle {
    margin: 0 0 18px;
}
.schoolcom-communication-title {
    margin: 0 0 20px;
    font-weight: 900;
    font-size: 44px;
    line-height: 1.14;
    letter-spacing: 0.02em;
    color: var(--topbar-bg);
}

.schoolcom-communication-text {
    margin: 0 0 20px;
    color: #636363;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
}

.schoolcom-communication-text:last-child {
    margin-bottom: 27px;
}

.schoolcom-communication-text strong {
    font-weight: 800;
    color: #323232;
}

.schoolcom-communication-action .primary-btn {
    width: fit-content;
}

/* Schoolcom Communication section end */
/* Communication start */
.schoolcom-communications-section {
    background: #F5FAFE;
    padding-block: 80px 97px;
    overflow: hidden;
}

.schoolcom-communications-section .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schoolcom-communications-header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.schoolcom-communications-header .section-subtitle {
    align-items: center;
}

.schoolcom-communications-title {
    margin: 0 auto 40px;
    color: var(--topbar-bg);
    font-weight: 900;
    font-size: 50px;
    line-height: 1.13;
    letter-spacing: 2px;
    text-align: center;
}

.schoolcom-communications-visual {
    width: 100%;
    margin: 0 auto;
}

.schoolcom-communications-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-sizing: border-box;
    border: 1.5px solid #D9D9D9;
}

/* Communication end */
/* schoolcom features start */
.schoolcom-features-section {
    width: 100%;
    padding-block: 120px;
    background: var(--white);
    overflow: hidden;
}

.schoolcom-features-section .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schoolcom-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.schoolcom-features-header .section-subtitle {
    align-items: center;
    margin-bottom: 24px;
}

.schoolcom-features-title {
    margin: 0;
    font-weight: 900;
    font-size: 50px;
    line-height: 1.14;
    letter-spacing: 0.02em;
    text-align: center;
    color: var(--topbar-bg);
}

.schoolcom-features-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 26px;
    row-gap: 40px;
}

.schoolcom-feature-card {
    padding: 35px 20px 24px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0px 3px 20px 0px #B4B4B440;
    transition: all .4s ease-in-out;
}

.schoolcom-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 3px 20px 0px #b4b4b49e;
}

.schoolcom-feature-card-image {
    width: 120px;
    height: 120px;
    flex: 0 0 auto;
    object-fit: contain;
    display: block;
    margin: 0 0 30px;
    transition: all .4s ease-in-out;
}

.schoolcom-feature-card:hover .schoolcom-feature-card-image {
    transform: scale(1.05);
}

.schoolcom-feature-card-title {
    margin: 0 0 12px;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.10;
    letter-spacing: 0;
    text-align: center;
    color: var(--topbar-bg);

}

.schoolcom-feature-card-content {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    color: #636363;
}

/* schoolcom features end */
/* schoolcom support start */
.schoolcom-support-section {
    width: 100%;
    padding-block: 100px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

.schoolcom-support-section .main-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 58px;
}

img.schoolcom-support-image {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.schoolcom-support-title {
    margin: 0 0 40px;
    font-weight: 900;
    font-size: 44px;
    line-height: 1.14;
    letter-spacing: 0.02em;
    color: var(--topbar-bg);
}

.schoolcom-support-text {
    margin: 0 0 30px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: #636363;
}

.schoolcom-support-text:last-child {
    margin-bottom: 0;
}

.schoolcom-support-media {
    padding: 15px;
    background: var(--white);
    box-shadow: 0px 3px 20px 0px #99999940;
    display: block;
}

/* schoolcom support end */
/* schoolcom pricing start */
.schoolcom-pricing-section {
    width: 100%;
    padding-block: 100px;
    background: var(--white);
    overflow: hidden;
}

.schoolcom-pricing-section .main-container {
    display: flex;
    flex-direction: column;
}

.schoolcom-pricing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.schoolcom-pricing-intro {
    flex: 1;
    max-width: 780px;
}

.schoolcom-pricing-intro .section-subtitle {
    margin-bottom: 15px;
}

.schoolcom-pricing-title {
    font-weight: 900;
    font-size: 50px;
    line-height: 1.14;
    letter-spacing: 2px;
    color: var(--topbar-bg);
    margin: 0 0 20px;
}

.schoolcom-pricing-description {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: #636363;
}

.schoolcom-pricing-qr {
    width: 200px;
    height: 200px;
    flex: 0 0 auto;
    border: 1px solid var(--topbar-bg);
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
}

.schoolcom-pricing-qr img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.schoolcom-pricing-grid {
    margin-top: 57px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 50px;
}

.schoolcom-pricing-card {
    position: relative;
    border-radius: 20px;
    background: var(--white);
    transition: all .4s ease-in-out;
    box-shadow: 0px 3px 20px 0px #B4B4B440;
}
.schoolcom-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 6px 30px 0px #B4B4B4D1;
}
.schoolcom-pricing-card-inner {
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0px 3px 20px 0px #B4B4B440;
    transition: all .4s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.schoolcom-pricing-top {
    box-shadow: 0px 3px 20px 0px #B4B4B49C;
    border-radius: 20px;
    padding: 10px;
}

.schoolcom-pricing-plan {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    border-radius: 5px;
    background: var(--white);
    color: #1B1B1B;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    width: fit-content;
}
.schoolcom-pricing-card .pan-nd-price {
    background: #F6F6F6;
    padding: 10px;
    border-radius: 12px;
    transition: all .4s ease-in-out;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.schoolcom-pricing-card:hover .pan-nd-price {
    background: linear-gradient(90deg, #D9DAEF 0%, #D1DFEF 100%);
}
.schoolcom-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.schoolcom-pricing-price.custom-quote .schoolcom-pricing-amount {
    font-size: 47px;
    line-height: .9;
}
.schoolcom-pricing-amount {
    color: var(--topbar-bg);
    font-weight: 900;
    font-size: 50px;
    line-height: 1.13;
    letter-spacing: 2px;
}

.schoolcom-pricing-period {
    color: #9C9C9C;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
}

.schoolcom-pricing-contacts {
    margin: 19px 0 17px;
    padding: 0 10px;
    color: #383838;
    font-weight: 800;
    font-size: 26px;
    line-height: 1.6;
}

.schoolcom-pricing-users {
    padding: 5px 10px;
    border-radius: 13px;
    background: var(--topbar-bg);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.6;
    text-align: center;
    border: 1px solid var(--topbar-bg);
    transition: all .4s ease-in-out;
}

.schoolcom-pricing-users:hover {
    background-color: transparent;
    color: var(--topbar-bg);
}

.schoolcom-pricing-features {
    margin-top: 25px;
    padding: 0 20px 24px;
}

.schoolcom-pricing-feature-title {
    margin: 0 0 21px;
    color: #1B1B1B;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.6;
}
.schoolcom-pricing-feature-item {
    margin: 0;
    color: #636363;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    display: flex;
    gap: 9px;
}
.schoolcom-pricing-feature-item::before {
    content: "";
    background: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.95797 0.03918C10.101 -0.00985085 10.2557 -0.0129394 10.4005 0.0303454C10.5453 0.0736302 10.6731 0.161129 10.7659 0.280636L15.8471 6.82613C15.9462 6.9538 16 7.11093 16 7.27268C16 7.43443 15.9462 7.59156 15.8471 7.71923L10.7659 14.2647C10.673 14.3843 10.5451 14.4717 10.4002 14.5149C10.2553 14.5582 10.1005 14.555 9.95752 14.5058C9.8145 14.4566 9.69038 14.3639 9.60249 14.2406C9.5146 14.1174 9.46733 13.9697 9.46727 13.8182V10.9163C5.56274 10.9978 3.68706 11.7403 2.74486 12.5476C1.84912 13.3149 1.68507 14.2175 1.51449 15.1629L1.47021 15.4065C1.43764 15.5809 1.3426 15.7373 1.20298 15.8463C1.06337 15.9554 0.888793 16.0095 0.712104 15.9986C0.535416 15.9877 0.368793 15.9125 0.243585 15.7871C0.118377 15.6617 0.0432137 15.4948 0.0322366 15.3178C-0.0926154 13.3193 0.0946626 10.4232 1.5036 8.00068C2.87117 5.6494 5.33336 3.84139 9.46727 3.65229V0.727184C9.46723 0.575656 9.51442 0.427899 9.60227 0.304551C9.69011 0.181203 9.81494 0.0884267 9.95797 0.03918Z" fill="%23083755"/></svg>');
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    flex: 0 0 auto;
    margin-top: 2px;
}
.schoolcom-pricing-feature-note {
    display: block;
    padding-left: 14px;
}

/* schoolcom pricing end */
/* footer start */
.schoolcom-footer {
    width: 100%;
    background: #05283D;
    border: 1.5px solid #878787;
    color: var(--white);
    overflow: hidden;
}
.schoolcom-footer .main-container {
    padding-top: 100px;
}

.schoolcom-footer-main {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 0.8fr;
    column-gap: 70px;
    align-items: start;
}

.schoolcom-footer-logo {
    display: block;
    width: 334px;
    height: auto;
    margin-bottom: 30px;
    object-fit: contain;
}
.schoolcom-footer-description {
    margin: 0;
    color: var(--white);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    max-width: 24ch;
    margin-bottom: 35px;
}
.schoolcom-footer-follow-title {
    margin: 0 0 20px;
    color: var(--green);
    font-weight: 800;
    font-size: 24px;
    line-height: 1.4;
}
.schoolcom-footer-social {
    display: flex;
    align-items: center;
    gap: 40px;
}

.schoolcom-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}
.schoolcom-footer-social a svg {
     transition: all 0.4s ease-in-out;
}
.schoolcom-footer-social a:hover svg {
    stroke: var(--green);
    transform: scale(1.1);
}
.schoolcom-footer-column-title {
    margin: 0 0 36px;
    color: var(--white);
    font-weight: 900;
    font-size: 26px;
    line-height: 1.35;
    width: 100%;
}
.schoolcom-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.schoolcom-footer-links a {
    width: fit-content;
    color: var(--white);
    text-decoration: none;
    transition: color 0.4s ease-in-out;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.35;
}

.schoolcom-footer-links a:hover {
    color: var(--green);
}

.schoolcom-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.schoolcom-footer-contact-icon {
    flex: 0 0 auto;
    text-align: center;
    font-size: 13px;
    color: var(--white);
}
.schoolcom-footer-contact-icon svg {
    width: 20px;
    height: 20px;
    display: block;
    transition: all 0.4s ease-in-out;
}
.schoolcom-footer-contact-icon svg * {
    transition: all  0.4s ease-in-out;
}
.schoolcom-footer-contact-item a {
    font-family: "Mansfield", Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    color: var(--white);
    text-decoration: none;
      display: flex;
    align-items: center;
    gap: 12px;
    transition: all  0.4s ease-in-out;
}

.schoolcom-footer-contact-item a:hover {
    color: var(--green);
}
.schoolcom-footer-contact-item a:hover svg * {
    fill: var(--green);
}

.schoolcom-footer-video {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.schoolcom-footer-qr {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    max-width: 192px;
    margin-inline: auto;
}
.schoolcom-footer-qr img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.schoolcom-footer-bottom {
    margin-top: 67px;
    padding-block: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1.5px dashed #878787;
}
.schoolcom-footer-copyright {
    margin: 0;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.35;
    text-align: center;
}

/* footer end */
@media screen and (max-width:1200px) {
    .new-home-banner {
        padding-block: 90px;
    }
    .new-home-banner-title {
        font-size: 68px;
    }
    .new-watch-explore .main-container {
        gap: 45px;
    }
    .new-watch-explore-content {
        width: 43%;
    }
    .new-watch-explore-title {
        font-size: 40px;
    }
    .new-watch-explore-title .percentage {
        font-size: 42px;
    }
    .new-watch-explore-video {
        width: 53%;
    }
    .schoolcom-communication-title, .schoolcom-support-title {
    font-size: 40px;
}
.schoolcom-communication-section .main-container {
    gap: 40px;
}
.schoolcom-features-title, .schoolcom-pricing-title, .schoolcom-communications-title {
    font-size: 42px;
}
.schoolcom-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.schoolcom-footer-logo {
    max-width: 260px;
    width: 100%;
}
}

@media (max-width: 992px) {
    .schoolcom-nav {
        padding-block: 6px;
    }

    .schoolcom-topbar-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .schoolcom-contact {
        gap: 15px;
    }

    .schoolcom-social {
        gap: 10px;
    }

    .schoolcom-logo img {
        max-width: 160px;
        max-height: 55px;
    }

    .schoolcom-signup {
        display: none;
    }

    .schoolcom-menu {
        position: absolute;
        top: 130px;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 10px 20px 20px;
        background: #ffffff;
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .schoolcom-menu-item {
        width: 100%;
        padding: 10px 0px;
        border-bottom: 1px solid var(--border);
    }

    .schoolcom-menu-item:last-child {
        border-bottom: 0;
    }

    .schoolcom-menu-item>a {
        width: 100%;
        display: block;

    }

    .schoolcom-menu-item:last-child>a {
        border-bottom: none;
    }

    .schoolcom-mobile-toggle:checked~.schoolcom-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .schoolcom-mobile-label {
        display: flex;
    }

    .schoolcom-mobile-toggle:checked+.schoolcom-mobile-label span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .schoolcom-mobile-toggle:checked+.schoolcom-mobile-label span:nth-child(2) {
        opacity: 0;
    }

    .schoolcom-mobile-toggle:checked+.schoolcom-mobile-label span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .schoolcom-nav-right {
        margin-left: auto;
        flex-direction: row-reverse;
        gap: 12px;
    }

    .schoolcom-search {
        height: 70px;
        margin-right: 5px;
    }

    .schoolcom-search-box {
        position: fixed;
        top: 111px;
        left: 15px;
        right: 15px;
        width: auto;
        z-index: 10001;
    }

    .schoolcom-signup {
        width: 135px;
        height: 44px;
        font-size: 13px;
    }

    .mobile {
        display: flex;
    }

    .schoolcom-social.mobile {
        background: var(--topbar-bg);
        padding: 12px 20px;
        justify-content: center;
    }

    .schoolcom-menu-item.mobile .schoolcom-signup {
        color: #ffffff;
        display: flex;
    }

    .new-home-banner-eyebrow {
        font-size: 18px;
        margin: 0 0 14px;
    }

    .new-home-banner-title {
        font-size: 58px;
    }

    .new-home-banner-description {
        margin: 26px 0;
        font-size: 16px;
    }

    .new-home-banner-btn {
        font-size: 16px;
    }

    .new-home-banner {
        padding-block: 70px;
        min-height: auto;
        background-position: 30%;
    }

    .new-watch-explore .main-container {
        flex-direction: column-reverse;
        gap: 35px;
    }

    .new-watch-explore-content,
    .new-watch-explore-video {
        width: 100%;
    }

    .new-watch-explore {
        padding-block: 80px;
    }

    .new-watch-explore-title {
        font-size: 34px;
        line-height: 1.1;
    }

    .new-watch-explore-title .percentage {
        font-size: 36px;
    }

    .new-watch-explore-description {
        font-size: 13px;
    }
.schoolcom-communication-section .main-container {
    grid-template-columns: 1fr;
}
.schoolcom-communication-section, .schoolcom-features-section {
    padding: 80px 0;
}
.schoolcom-communications-header {
    margin: 0;
}
.schoolcom-features-header {
    margin-bottom: 40px;
}
.schoolcom-features-title, .schoolcom-pricing-title, .schoolcom-communications-title {
    font-size: 34px;
}
.schoolcom-communications-section {
    padding-block: 60px 80px;
}
.schoolcom-feature-card-title {
    font-size: 20px;
}
.schoolcom-feature-card-content {
    font-size: 16px;
}
.schoolcom-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 34px;
}
.schoolcom-support-section .main-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}
.schoolcom-support-content {
    order: 1;
}
.schoolcom-support-section, .schoolcom-pricing-section{
    padding-block: 80px;
}
.schoolcom-support-title {
    margin: 0 0 24px;
}
.schoolcom-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.schoolcom-pricing-price.custom-quote .schoolcom-pricing-amount {
    font-size: 38px;
}
.schoolcom-pricing-amount {
    font-size: 42px;
}
.schoolcom-pricing-contacts {
    font-size: 22px;
}
.schoolcom-pricing-users {
    padding: 8px 10px;
    font-size: 18px;
}
.schoolcom-footer-main {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
}
.schoolcom-footer-qr {
    margin-inline:0;
}
.schoolcom-footer-brand {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.schoolcom-footer-description {
    max-width: 30ch;
    margin-bottom: 22px;
    text-align: center;
}
.schoolcom-footer-video {
    align-items: center;
    grid-column: span 2;
}
.schoolcom-footer-follow-title{
    text-align: center;
}
}

@media screen and (max-width:767px) {
    .new-watch-explore {
        padding: 0;
    }

    .new-watch-explore .main-container {
        padding-top: 55px;
        padding-bottom: 55px;
        align-items: stretch;
        gap: 40px;
    }

    .new-watch-explore-content {
        width: 100%;
    }

    .new-watch-explore-label {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .new-watch-explore-title {
        font-size: 38px;
        line-height: 1.1;
    }

    .new-watch-explore-title .percentage {
        font-size: 40px;
    }

    .new-watch-explore-description {
        max-width: 100%;
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.55;
    }

    .new-watch-explore-video {
        width: 100%;
        padding: 8px;
    }

    .section-subtitle {
        font-size: 18px;
        margin-block: 0 20px;
    }

    .schoolcom-features-section {
        padding-block: 70px;
    }

    .schoolcom-features-title {
        font-size: 36px;
        line-height: 112%;
    }

    .schoolcom-features-header {
        margin-bottom: 35px;
    }

    .schoolcom-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 26px;
        row-gap: 40px;
    }

    .schoolcom-feature-card {
        padding: 22px 15px 25px;
    }

    .schoolcom-feature-card-image {
        width: 140px;
        height: 140px;
        flex-basis: 140px;
        margin-bottom: 25px;
    }

    .schoolcom-feature-card-title {
        font-size: 19px;
    }

    .schoolcom-feature-card-content {
        font-size: 14px;
        line-height: 150%;
    }
    .schoolcom-communication-section, .schoolcom-features-section {
    padding: 60px 0;
}
.schoolcom-communication-section .main-container {
    gap: 30px;
}
.schoolcom-communication-title, .schoolcom-support-title {
    font-size: 36px;
}
.schoolcom-support-section, .schoolcom-pricing-section {
    padding-block: 60px;
}
.schoolcom-footer .main-container {
    padding-top: 80px;
}
.schoolcom-footer-bottom {
    margin-top: 51px;
    padding-block: 20px;
}
}

@media (max-width: 576px) {
    .schoolcom-topbar-inner {
        flex-direction: column;
        gap: 14px;
    }

    .schoolcom-contact {
        gap: 10px;
    }

    .schoolcom-social {
        display: none;
    }

    .schoolcom-social.mobile {
        display: flex;
    }

    .schoolcom-social a {
        font-size: 9px;
    }

    .schoolcom-nav-inner {
        justify-content: center;
    }

    .schoolcom-logo img {
        max-width: 135px;
        max-height: 50px;
    }

    .schoolcom-search {
        height: auto;
        margin-right: 0;
    }

    .schoolcom-search-label {
        width: 38px;
    }

    .schoolcom-nav {
        padding-block: 12px;
    }

    .schoolcom-menu {
        top: 114px;
    }

    .schoolcom-signup {
        width: 112px;
        height: 40px;

        font-size: 11px;
    }

    .schoolcom-mobile-label {
        width: 38px;
        height: 40px;
    }

    .schoolcom-search-box {
        top: 101px;
        left: 10px;
        right: 10px;
        padding: 12px;
    }

    .schoolcom-search-input {
        height: 42px;
        font-size: 13px;
    }

    .schoolcom-search-submit {
        width: 42px;
        height: 42px;
    }

    .schoolcom-mail-icon svg {
        width: 18px;
        height: auto;
    }

    .schoolcom-contact-item {
        font-size: 12px;
        line-height: 1.2;
        gap: 6px;
    }

    .schoolcom-phone-icon svg {
        width: 14px;
        height: 14px;
    }

    .main-container {
        padding-inline: 12px;
    }

    .new-home-banner-eyebrow {
        font-size: 15px;
        margin: 0 0 8px;
    }

    .new-home-banner {
        padding-block: 60px;
        background-position: 26%;
    }

    .new-home-banner-title {
        font-size: 34px;
        letter-spacing: 1px;
    }

    .new-home-banner-description {
        margin: 14px 0;
        font-size: 14px;
    }

    .new-home-banner-buttons {
        flex-wrap: wrap;
    }

    .new-watch-explore .main-container {
        padding-top: 40px;
        padding-bottom: 40px;
        gap: 30px;
    }

    .new-watch-explore-label {
        margin-bottom: 15px;
        font-size: 12px;
    }

    .new-watch-explore-title {
        font-size: 30px;
        line-height: 1.1;
        letter-spacing: 1px;
    }

    .new-watch-explore-title .percentage {
        font-size: 34px;
    }

    .new-watch-explore-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .new-watch-explore-button.primary-btn {
        font-size: 16px;
    }

    .schoolcom-features-section {
        padding-block: 55px;
    }

    .schoolcom-features-title {
        font-size: 30px;
    }

    .schoolcom-features-grid {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .schoolcom-feature-card {
        min-height: auto;
        padding: 25px 20px 30px;
    }

    .schoolcom-feature-card-image {
        width: 100px;
        height: 100px;
        margin-bottom: 22px;
        flex-basis: auto;
    }

    .schoolcom-feature-card-title {
        font-size: 18px;
    }

    .schoolcom-feature-card-content {
        font-size: 16px;
        line-height: 1.6;
    }
    .schoolcom-communication-section, .schoolcom-features-section {
    padding: 40px 0;
}
.schoolcom-communication-title, .schoolcom-support-title {
    font-size: 28px;
}
.schoolcom-communication-title {
    margin: 0 0 16px;
}
.schoolcom-communication-text {
    margin: 0 0 14px;
    font-size: 16px;
}
.schoolcom-signup, .primary-btn {
    font-size: 16px;
    padding: 10px 24px;
}
.schoolcom-features-title, .schoolcom-pricing-title, .schoolcom-communications-title {
    font-size: 30px;
    letter-spacing: 1px;
}
.schoolcom-communications-section {
    padding-block: 40px 60px;
}
.schoolcom-communications-title {
    margin: 0 auto 30px;
}
.schoolcom-support-section, .schoolcom-pricing-section {
    padding-block: 40px;
}
.schoolcom-support-media {
    padding: 6px;
}
.schoolcom-support-section .main-container {
    gap: 26px;
}
.schoolcom-support-title {
    margin: 0 0 12px;
}
.schoolcom-support-text {
    margin: 0 0 22px;
    font-size: 16px;;
}
.schoolcom-pricing-header {
    gap: 8px;
    flex-direction: column;
}
.schoolcom-pricing-qr {
    width: 200px;
    height: 200px;
    margin-right: auto;
    overflow: hidden;
    border-radius: 10px;
}
.schoolcom-pricing-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-top: 40px;
    row-gap: 30px;
}
.schoolcom-pricing-amount {
    font-size: 36px;
}
.schoolcom-pricing-card .pan-nd-price {
    min-height: auto;
    gap: 40px;
}
.schoolcom-pricing-period {
    font-size: 16px;
}
.schoolcom-pricing-features {
    margin-top: 20px;
    padding: 0 16px 20px;
}
.schoolcom-pricing-feature-title {
    margin: 0px 0 18px;
    font-size: 20px;
}
.schoolcom-pricing-feature-item {
    font-size: 14px;
    gap: 9px;
}
.schoolcom-pricing-price.custom-quote .schoolcom-pricing-amount {
    font-size: 34px;
}
.schoolcom-footer .main-container {
    padding-top: 60px;
}
.schoolcom-footer-logo {
    max-width: 174px;
}
.schoolcom-footer-bottom {
    margin-top: 40px;
    padding-block: 16px;
}
.schoolcom-footer-copyright {
    font-size: 14px;
}
.schoolcom-footer-column-title {
    margin: 0 0 30px;
    font-size: 20px;
    text-align: center !important;
}
.schoolcom-footer-qr {
    max-width: 140px;
    margin-inline:0;
}
.schoolcom-footer-main {
    grid-template-columns: 1fr;
}
.schoolcom-footer-brand {
    grid-column: auto;
}
.schoolcom-footer-video {
    grid-column: unset;
}
.schoolcom-footer-links {
    align-items: center;
}
.schoolcom-footer-contact-item a {  
    justify-content: center;
}
.schoolcom-footer-follow-title, .schoolcom-footer-description {
    text-align: center;
}
}