
body {
  color: #000000;
  font-family: "Montserrat", serif;
  margin: 0px;
  padding: 0px;
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  padding: 0px;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: #ffffff;
  heading-color: #ffffff;
  color: #000000;
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.header .logo {
  line-height: 1;
	width: 15.625rem;
}
.header .logo img {
  margin: 0px;
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #10058c;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu > ul > li:last-child {
    padding-right: 0;
  }
  .navmenu a, .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navmenu a:hover:before, .navmenu li:hover > a:before, .navmenu .active:before {
    visibility: visible;
    width: 50px;
  }
  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i, .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
#banner {
  padding-top:70px;
}

.slider {
  width: 100%;
  height:550px;
  background-image: url("../img/banner.jpg");
  background-size: cover;
	position: relative;
  background-position: center;
  z-index: 1;
}
.banner_text {
	margin-top: 100px;
	margin-bottom: 100px;
    
    text-align: center;
}
.banner_text h1 {
  font-size: 4.447rem;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-weight: bold;
}
.banner_text h2 {
  ont-size: 2.964rem;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-weight: 400;
  margin-top: 1.25rem;
  margin-bottom: 3.75rem;
}
    .banner_text .book_a_demo_btn {
        color: #ffffff;
        background: #104478;
        font-family: "Montserrat", serif;
        font-weight: 500;
        font-size: 1rem;
        display: inline-block;
        padding: 0.625rem 1.75rem;
        border-radius: 3.125rem;
        transition: 0.5s;
        text-transform: uppercase;
    }
        .banner_text .book_a_demo_btn:hover {
            color: #ffffff;
            background: #104478;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }
.carousel-caption .Speak_To_Us_btn {
  color: #ffffff;
  background: #565454;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
}
@media (min-width: 992px) {
  .slider .testimonial-item p {
    width: 80%;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#challenge_wrp {
  padding-top: 100px;
  padding-bottom: 100px;
}
.challenge {
  margin: 0px;
}
.challenge h1 {
  font-size:2.5rem;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  font-weight:700;
	margin-bottom: 50px;
}
.text_box{
	margin: 0px;
}
.text_box h2 {
  font-size:1.25rem;
  color: #000000;
  font-weight:700;
	padding-bottom: 25px;
	border-bottom: #b9b7b7 solid 2px;
	margin-bottom: 20px;
}
.text_box p {
  font-size:1.25rem;
  color: #000000;
  font-weight:400;
}
.green_box_wrp{
	padding-left: 50px;
}
.green_text_box{
	margin: 0px;
	background: #3c3c3e;
	padding: 50px 20px;
	border-radius: 30px;
	color: #ffffff;
}

.green_text_box h2 {
  font-size:2.5rem;
  font-weight:700;
	margin-bottom: 20px;
}
.green_text_box h3 {
  font-size:1.875rem;
  font-weight:500;
	margin-bottom: 20px;
}
.green_text_box p {
  font-size:1.25rem;
  font-weight:400;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#advantage {
  padding-top:100px;
	padding-bottom: 100px;
	margin-bottom: 100px;
  background: #f1f6f9;
	position: relative;
}
.advantage {
  padding-top: 0px;
  background: #f4f4f2;
}
.advantage h1 {
    font-size: 4.447rem;
    font-family: "Montserrat", sans-serif;
    color: #000000;
    text-align: center;
    font-weight:700;
	margin-bottom: 40px;
}

.table_wrp{
	text-align: center;
}
.table_wrp table{
	width: 100%;
	margin: 0 auto;
	
}
    .table_wrp table th {
        font-size: 1.875rem;
        font-family: "Montserrat", sans-serif;
        text-align: left;
        border-bottom: #104478 solid 1px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
.table_wrp table th:nth-child(1){
	width: 350px;
}

    .table_wrp table td {
        font-size: 1.563rem;
        font-weight: 500;
        font-family: "Montserrat", sans-serif;
        text-align: left;
        border-bottom: #104478 solid 1px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
.fa-times-circle{
	color: #ff0000;
	font-size: 18px;
	margin-right:5px;
}
.fa-check-circle {
    color: #104478;
    font-size: 18px;
    margin-right: 5px;
}
.fa-exclamation-circle{
	color: #565454;font-size: 18px;
	margin-right:5px;
}

@media (max-width: 768px) {
  .about .icon-boxes .col-md-6:nth-child(2) .icon-box, .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    color: #ffffff;
    background-color: #104478;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
    .scroll-top:hover {
        background-color: #104478;
        color: #ffffff;
    }
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}
.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}
.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}
.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.page-title nav ol li + li {
  padding-left: 10px;
}
.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
#benefits_wrp {
  margin: 0px;
  margin-bottom: 150px;
	margin-top: 100px;
	
}
.benefits {
  margin: 0px;
}
.benefits .section_title {
  margin-bottom: 52px;
}
.benefits-item {}
.number_box {
  position: relative;
}
.count_text {
  font-family: "Montserrat", serif;
  font-weight: 900;
  color: #dfe1e1;
  font-size: 130px;
}
.benefits_img {
  width: 65px;
  margin-left: 50px;
  position: relative;
  top: 30px;
}
.number_box_no {
  position: absolute;
  top: 65px;
  left: 46px;
}
.number_box_no h1 {
  font-size: 25px;
  font-weight: 400;
  display: block;
  margin-bottom: 20px;
}
.number_box_no p {
  font-size: 18px;
  font-weight: 300;
}
.benefits-item .text_wrp {
  position: absolute;
  font-family: "Montserrat", serif;
  font-weight: 900;
  color: #c9e8e0;
  font-size: 130px;
  background: #dddddd;
}
/*--------------------------------------------------------------
# Details Section
--------------------------------------------------------------*/
#pack_wrp {
  position: relative;
  top: -80px;
}
.starter_pack, .expert_pack {
  background: #f1f1f1;
  border-radius: 30px;
  text-align: left;
  padding: 40px;
}
.expert_pack {
  background: #ebfbf6;
}
.starter_pack h1, .expert_pack h1 {
  font-family: "Montserrat", serif;
  font-weight: 700;
  color: #000000;
  font-size: 35px;
  margin-bottom: 35px;
}
.starter_pack h2, .expert_pack h2 {
  font-weight: 400;
  color: #000000;
  font-size: 22px;
  margin-bottom: 35px;
}
.starter_pack ul, .expert_pack ul {
  list-style: none;
}
.starter_pack ul li, .expert_pack ul li {
  list-style: url("../img/list.png");
  font-size: 18px;
  line-height: 40px;
}
/*--------------------------------------------------------------
# How it Work Section
--------------------------------------------------------------*/
#how_it_works_wrp {
  padding-bottom: 6.25rem;
}
.how_it_works .section_title  {
	text-align: center;
  font-weight: bold;
  font-size: 4.447rem;
  margin-top: 1rem;
  margin-bottom: 6.25rem;
}
.how_it_works .tab-content {
    padding: 35px;
    border: #104478 solid 1px;
    border-radius: 30px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.14);
}
.tabBtn {
  justify-content: center;
  margin-top: 50px;
}
.nav-pills .nav-link {
    text-transform: uppercase;
    width: 150px;
    border-radius: 0px;
    text-align: center;
    padding: 10px 0px;
    font-size: 13px;
    font-weight: 500;
    color: #104478;
    text-decoration: none;
    background: #ffffff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.14);
    border: #104478 solid 1px;
    border-bottom: none;
}
    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #ffffff;
        background-color: #104478;
    }
.foundationBtn {
  border-top-left-radius: 30px !important;
  border-bottom-left-radius: 30px !important;
}
.aipackBtn {
  border-top-right-radius: 30px !important;
  border-bottom-right-radius: 30px !important;
}
.TabBox {
  margin: 0px;
  text-align: center;
}
    .TabBox .imgBox {
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.14);
        border: #104478 dashed 1px;
        min-height: 290px;
    }
.TabBox .number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5f4f0;
  font-size: 20px;
  font-weight: 700;
  margin: 25px auto;
  line-height: 44px;
}
.TabBox .text {}
.TabBox .text h1 {
  font-size:1.25rem;
  font-weight:700;
	margin-bottom: 1.563rem;
}
.TabBox .text p {
  text-align: center;
  font-size:1.25rem;
  font-weight:500;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact {
  background: #ffffff
}
.contact_box {
  background: #ffffff;
  text-align: center;
  padding: 50px 40px;
  border-radius: 30px;
  position: relative;
  top: 80px;
  z-index: 9;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
}
.contact_box h1 {
  font-family: "Montserrat", serif;
  font-weight:700;
  font-size: 3.125rem;
  margin-bottom: 20px;
}
.contact_box h2 {
  font-weight: 400;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
/*--------------------------------------------------------------
# Global footer_wrp
--------------------------------------------------------------*/
#footer_wrp {
    color: #ffffff;
    background-color: #104478;
    font-size: 14px;
    position: relative;
    text-align: center;
    padding-top: 3.125rem;
    padding-bottom: 0px;
}
.footer-link {
  margin-top: 100px;
}
.footer-link ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.footer-link ul li {
  display: inline-block;
  margin: 0px;
  border-right: #ffffff solid 1px;
  padding: 0px 10px;
}
.footer-link ul li:last-child {
  border-right: none;
}
.footer-link ul li a {
  font-size:1.25rem;
  text-decoration: none;
  color: #ffffff;
}
.copy {
  margin-top: 1rem;
	font-size:1rem;
}
.social_media {
  margin-top: 30px;
  margin-bottom: 30px;
}
    .social_media a .bi {
        color: #ffffff;
        border: #ffffff solid 1px;
        border-radius: 50%;
        height: 30px;
        width: 30px;
        display: inline-block;
        text-align: center;
        line-height: 30px;
        font-size: 15px;
        margin: 30px 0px;
        padding: 5px;
    }
.social-links a {
  
}
.social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.speak_to_us_btn {
    color: #ffffff;
    background: #104478;
    font-family: "Montserrat", serif;
    font-weight: 500;
    font-size: 1rem;
    display: inline-block;
    padding: 0.625rem 1.75rem;
    border-radius: 3.125rem;
    transition: 0.5s;
    text-transform: uppercase;
    min-width: 180px;
}
    .speak_to_us_btn:hover {
        color: #ffffff;
        background: #104478;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }
.section_title {
  font-size: 45px;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  text-align: center;
  font-weight:normal;
}

.LoginBtn {
    color: #ffffff !important;
    background: #104478;
    font-weight: 700 !important;
    font-size: 1rem;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.625rem 1.25rem !important;
    border-radius: 50px;
    transition: 0.5s;
    font-family: "Montserrat", serif !important;
    text-transform: uppercase;
}