/* *
* Template Name: Baker - v2.1.0
* Template URL: https://bootstrapmade.com/baker-free-onepage-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/ */
@import url('https://fonts.googleapis.com/css?family=Poppins:800,700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway:700,600,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito:800,700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans:800,700,600,500&display=swap');

/* --------------------------------------------------------------
# General
-------------------------------------------------------------- */
:root {
    --color-primary-dark: #042556;

    /* Deep navy – main brand color, headers, background */
    --color-primary-medium: #03394f;

    /* Slate teal – secondary brand tone, section backgrounds */
    /* ---------- Accent Cool ---------- */
    --color-accent-cool: #64d0da;

    /* Sky aqua – highlights, links, buttons */
    /* ---------- Accent Warm ---------- */
    --color-accent-warm: #e55c00;

    /* Burnt orange – primary CTA buttons, alerts */
    --color-accent-warm-light: #ff9a3d;

    /* Sunburst orange – hover states, highlights */
    /* ---------- Accent Magenta ---------- */
    --color-accent-magenta: #c7305d;

    /* Crimson rose – alternate accent, special highlights */
    --color-accent-magenta-light: #ed3781;

    /* Bright magenta – hover or gradient highlight */
    /* Backgrounds */
    --color-bg-light: #f7f9fb;
    --color-bg-dark: #0b3c4c;

    /* Text */
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #4a4a4a;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    color: #444444;
    font-size: 1em;
}

a {
    color: var(--indigo);
}

a:hover {
    text-decoration: none;
}

/* --------------------------------------------------------------
# Back to top button
-------------------------------------------------------------- */
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: var(--electric-blue);
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #ffce3a;
    color: #fff;
}

/* --------------------------------------------------------------
# Header
-------------------------------------------------------------- */
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background: rgba(55, 64, 85);
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: rgba(255, 255, 255, .95);
    padding: 15px 0;
}

#header .logo {
    margin: 0;
    padding: 0;
    line-height: 1;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 40px;
}

@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}

/* --------------------------------------------------------------
# Navigation Menu
-------------------------------------------------------------- */
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 32px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: var(--color-primary-dark);
    transition: 0.3s;
    font-size: 14px;
    font-weight: 700;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
    color: var(--color-primary-medium);
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 15px;
    top: calc(100% + 30px);
    z-index: 99;
    visibility: hidden;
    padding: 10px 0;
    background: var(--color-primary-medium);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 8px;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    padding: 10px 65px 10px 35px;
    color: white;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
    color: white;
    background: linear-gradient(90deg,#c7305d,#e55c00);
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #fff;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #414c64;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #ffc107;
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(45, 53, 69, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/* --------------------------------------------------------------
# Hero Section
-------------------------------------------------------------- */
#hero {
    width: 100%;
    height: 100vh;
    position: relative;
}

#hero:before {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    text-align: center;
    padding-top: 50px;
}

@media (max-width: 992px) {
    #hero .container {
        padding-top: 0;
    }
}

h1 .h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

#hero h1 {
    color: var(--color-primary-dark);
    font-size: 48px;
}

#hero h2 {
    color: var(--color-primary-medium);
    margin: 15px 0 0 0;
    font-size: 19px;
    line-height: 150%;
}

.learning-curve {
    background: linear-gradient(90deg,#ed3781,#ff9a3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* For modern browsers supporting unprefixed versions */
    background-clip: text;
    color: transparent;
}

.btn-get-started {
    font-weight: 500;
    display: inline-block;
    border-radius: 15px;
    transition: 0.5s;
    color: #fff;
    text-align: center;
    width: 220px;
    padding-top: 15px;
    padding-bottom: 0px;
    line-height: 110%;
    margin-right: 15px;
}

#smsgetstartedbtn {
    color: white;
    background: linear-gradient(90deg,#3d90aa, #03394f);
    //color: var(--color-primary-dark);
    //border-color: var(--color-accent-cool);
    //border-style: solid;
    //border-width: 2px;
    //background-color: rgba(100, 208, 218, .1);
}

#smsgetstartedbtn:hover {
    color: white;
    background: linear-gradient(90deg,#3d90aa, #03394f);
}

#gradebookgetstartedbtn {
    color: white;
    background: linear-gradient(90deg,#ed3781,#e55c00);
    //color: var(--color-accent-warm);
    //border-color: var(--color-accent-warm-light);
    //border-width: 2px;
    //border-style: solid;
    //background-color: rgba(255, 154, 61, .1);
}

#gradebookgetstartedbtn:hover {
    color: white;
    background: linear-gradient(90deg,#ed3781,#e55c00);
}

/* --------------------------------------------------------------
# Sections General
-------------------------------------------------------------- */
.section-bg {
    background-color: #f7f8fa;
    padding-top: 45px;
    padding-bottom: 30px;
}

.section-title {
    text-align: center;
    padding-bottom: 45px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    font-family: 'Raleway', sans-serif;
    color: var(--dark-denim);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    bottom: 0;
    left: calc(50% - 25px);
    background: var(--steel-blue);
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #aab3c7;
}

/* --------------------------------------------------------------
# Breadcrumbs
-------------------------------------------------------------- */
.breadcrumbs {
    padding: 20px 0;
    background-color: #fafafc;
    min-height: 40px;
    margin-top: 82px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/* --------------------------------------------------------------
# Clients
-------------------------------------------------------------- */
.clients {
    padding: 25px 0;
}

.clients .swiper {
    padding: 10px 0px;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-slide img {
    transition: 0.3s;
    max-width: 100%;
}

.clients .swiper-slide img:hover {
    transform: scale(1.2);
}

/* --------------------------------------------------------------
# About
-------------------------------------------------------------- */
.about h3 {
    font-weight: 700;
    font-size: 34px;
    color: #414c64;
}

.about h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.about i {
    font-size: 48px;
    margin-top: 15px;
    color: #8b97b3;
}

.about p {
    font-size: 15px;
    color: #848484;
}

/* --------------------------------------------------------------
# Counts
-------------------------------------------------------------- */
.counts {
    padding: 40px 0;
}

.counts .counters span {
    font-size: 48px;
    display: block;
    color: #414c64;
}

.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
}

/* --------------------------------------------------------------
# Services
-------------------------------------------------------------- */
.services .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.features .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
    background: #f5f5f5;
    border-radius: 50px;
}

.services .icon-box .icon i {
    font-size: 32px;
    transition: 0.5s;
    line-height: 1;
    position: relative;
}

.services .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.services .icon-box h4 a {
    color: #414c64;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
    color: #47aeff;
}

.services .iconbox-blue:hover .icon {
    background: #47aeff;
}

.services .iconbox-blue:hover .icon i {
    color: #fff;
}

.services .iconbox-orange i {
    color: #ffa76e;
}

.services .iconbox-orange:hover .icon {
    background: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
    color: #fff;
}

.services .iconbox-pink i {
    color: #e80368;
}

.services .iconbox-pink:hover .icon {
    background: #e80368;
}

.services .iconbox-pink:hover .icon i {
    color: #fff;
}

.services .iconbox-yellow i {
    color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon {
    background: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
    color: #fff;
}

.services .iconbox-red i {
    color: #ff5828;
}

.services .iconbox-red:hover .icon {
    background: #ff5828;
}

.services .iconbox-red:hover .icon i {
    color: #fff;
}

.services .iconbox-teal i {
    color: #11dbcf;
}

.services .iconbox-teal:hover .icon {
    background: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
    color: #fff;
}

/* --------------------------------------------------------------
# Cta
-------------------------------------------------------------- */
.cta {
    background-color: var(--slate-blue);
    padding: 60px 0;
    background-attachment: fixed;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 25px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #ffc107;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #ffc107;
}

/* --------------------------------------------------------------
# Testimonials
-------------------------------------------------------------- */
.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
    position: relative;
    margin-right: 15px;
    margin-left: 15px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: var(--sunset-orange);
}

.section-title span {
    font-size: 17px;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
}

#other-header {
    z-index: 997;
    padding: 20px 0;
    background: var(--midnight);
}

.my-testmonial-item {
    height: 200px;
    background-color: #11b20b;
}

.testimonial-quote {
    font-size: 15px;
}

.testimonial-profile {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 10px;
}

@media (max-width: 1279px) {
    h3.cta-button {
        font-size: 1.0em;
        font-weight: bold;
    }

    div.cta-button {
        font-size: 0.8em;
        opacity: .7;
        line-height: 140%;
    }
}

@media (min-width: 1280px) {
    h3.cta-button {
        font-size: 1.2em;
        font-weight: 600;
    }

    div.cta-button {
        font-size: 1em;
        opacity: .7;
        line-height: 140%;
    }
}

div.social-media-icon {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.social-media-icon {
    text-decoration: none;
    font-size: 26px;
    color: white;
}

div.solution-block {
    background: #ffffff;
    height: 600px;
    border-radius: 15px;
    border-width: 2px;
    border-color: #cccccc;
    border-style: solid;
    text-align: left;
    overflow: hidden;
    font-size: 20px;
    font-weight: bold;
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
}

h3.solution-block {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

solution-block-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding-bottom: 25px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

solution-block-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding-bottom: 25px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

div.solution-block-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding-bottom: 25px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.features {
    text-align: center;
    background-color: var(--slate-blue);
}

features.row {
    margin-bottom: 15px;
}

.features .row {
    padding-bottom: 25px;
}

.benefits p {
    font-size: 16px;
}

.benefits img {
    width: 25%;
    max-width: 150px;
}

.benefits div.row {
    margin-top: 25px;
}

.benefits div.row-right {
    justify-content: flex-end;
}

.nav-menu > ul > li div.col-md-6 a {
    margin-left: -15px;
}

.nav-menu .drop-down ul div.row a {
    padding-left: 0;
    padding-right: 0;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.security div.col-xl-2 {
    text-align: center;
    font-size: 48px;
    padding-right: 0px;
}

.security h4 {
    font-family: 'Poppins', sans-serif;
}

.security div.row {
    padding-bottom: 50px;
    flex-wrap: nowrap;
}

.security-icon {
    width: 100px;
    font-size: 48px;
    margin-top: 0;
    text-align: center;
    flex-shrink: 0;
}

.security-item {
    padding-left: 25px;
}

.features div.icon {
    padding-bottom: 10px;
}

.features div.icon i {
    font-size: 48px;
}

.explore {
    background-color: #f5f5f5;
}

.explore div.row h4 {
    font-family: 'Poppins', sans-serif;
}

.features div.row h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}

.features div.row p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
}

.benefits div.row h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.explore div.row h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}

.explore div.row p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
}

@media (min-width:768px) {
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

ul.checklist {
    list-style: none;
    line-height: 200%;
    padding-right: 50px;
    flex-shrink: 0;
    font-family: Nunito;
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0px;
}

ul.checklist li i {
    padding-right: 10px;
    color: var(--electric-blue);
    font-size: 20px;
}

@media (min-width:768px) {
    div.flex-list {
        display: flex;
        justify-content: center;
    }
}

@media (max-width:767px) {
    div.flex-list {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

div.flex-list {
    max-width: 992px;
    margin: auto;
    width: 100%;
}

main > section {
    padding: 60px 0;
}

@media (max-width: 359px) {
}

@media (min-width: 360px) and (max-width: 575px) {
    .section-title {
        max-width: 540px;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .section-title {
        max-width: 720px;
    }
}

@media (min-width: 768px) and (max-width:1023px) {
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .section-title {
        max-width: 960px;
    }

    .btn-get-started {
        font-size: .9em;
        width: 300px;
    }

    #hero.hero-right {
        background-position: right bottom;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/hero01d.jpg');
    }
}

@media (min-width: 1280px) and (max-width: 1365px) {
    .section-title {
        max-width: 1140px;
    }

    .btn-get-started {
        font-size: .9em;
        width: 300px;
    }

    #hero.hero-right {
        background-position: right bottom;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/hero01c.jpg');
    }
}

@media (min-width: 1366px) and (max-width: 1439px) {
    .btn-get-started {
        font-size: .9em;
        width: 300px;
    }

    #hero.hero-right {
        background-position: right bottom;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/hero01b.jpg');
    }
}

@media (min-width: 1440px) and (max-width: 1535px) {
    .btn-get-started {
        font-size: .9em;
        width: 300px;
    }

    #hero.hero-right {
        background-position: right bottom;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/hero01c.jpg');
    }
}

@media (min-width: 1536px) and (max-width: 1919px) {
    .btn-get-started {
        font-size: .9em;
        width: 300px;
    }

    #hero.hero-right {
        background-position: right bottom;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/hero01b.jpg');
    }
}

@media (min-width: 1920px) 
{
    .btn-get-started {
        font-size: .9em;
        width: 300px;
    }

    #hero.hero-right {
        background-position: left bottom;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/hero01a.jpg');
    }
}






