
  @charset "UTF-8";
  @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,300&display=swap");
  body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
  }

  .price {
    margin: 0;
    font-weight: 700;
    font-size: 28px;
    color: #0063a8;
  }
  
  a {
    color: #0063a8;
    text-decoration: none;
  }
  
  a:hover {
    color: #86db9f;
    text-decoration: none;
  }
  
  
  
  p {
    margin: 0;
    font-size: 18px;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin: 0;
  }

  
  
  input:focus, input:active {
    box-shadow: none !important;
  }
  
  img {
    max-width: 100%;
  }
  
  .p-t-0 {
    padding-top: 0 !important;
  }
  
  .p-b-0 {
    padding-bottom: 0 !important;
  }
  
  section {
    padding: 3.125rem 0;
    position: relative;
    overflow: hidden;
  }
  @media screen and (max-width: 575.98px) {
    section {
      padding: 1.25rem 0;
    }
  }
  @media (min-width: 576px) and (max-width: 767.98px) {
    section {
      padding: 1.875rem 0;
    }
  }
  
  .container {
    max-width: 1170px;
  }
  @media screen and (max-width: 575px) {
    .container {
      padding: 0px 15px;
      max-width: 100%;
      width: 100%;
    }
  }
  
  .text-mute {
    color: #787a7d !important;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  .section-title {
    text-align: center;
  }
  .section-title span {
    background-color: rgba(66, 82, 249, 0.2);
    padding: 6px 20px;
    border-radius: 130px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4252f9;
  }
  .section-title h2 {
    font-weight: 600;
    margin: 15px 0px;
  }
  .section-title p {
    max-width: 600px;
    margin: auto;
  }

  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #0063a8;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  .back-to-top:hover {
    background: #7ed899;
    color: #fff;
  }
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
#header {
	background: #fff;
	transition: all 0.5s;
	z-index: 997;
	padding: 5px 0;
	box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
  }
  #header .logo {
	font-size: 50px;
	margin-left: 7%;
  /* margin-right: 15px; */
	padding: 5px;
	line-height: 1;
	/* font-weight: 600; */
	/* letter-spacing: 1px;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif; */
  }
  #header .logo img {
    max-height: 90px;
    max-width: 130px;
    }
  /* 
  #header .logo a {
	color: #0063a8;
  
  /*  */
  
  /**
  * Get Startet Button 
  */
  .get-started-btn {
	margin-left: 50px;
  margin-right: 100px;
	background: #0063a8;
	color: #fff;
	border-radius: 50px;
	padding: 8px 25px;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 14px;
	display: inline-block;
  }
  .get-started-btn:hover {
	background: #3ac162;
	color: #fff;
  }
  @media (max-width: 768px) {
	.get-started-btn {
	  margin: 0 15px 0 0;
	  padding: 6px 18px;
	}
  }
  
/**
* Desktop Navigation 
*/
#header{
	background-color: white;
}
.navbar {
	padding: 0;
  }
  .navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
  }
  .navbar li {
	position: relative;
  }
  .navbar a, .navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0 5px 18px;
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #37423b;
	white-space: nowrap;
	transition: 0.3s;
  }
  .navbar a i, .navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
	color: #0063a8;
  }
  .navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 30px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 4px;
  }
  .navbar .dropdown ul li {
	min-width: 200px;
  }
  .navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	font-weight: 500;
  }
  .navbar .dropdown ul a i {
	font-size: 12px;
  }
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
	color: #0063a8;
  }
  .navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
  }
  .navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
  }
  @media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
	  left: -90%;
	}
	.navbar .dropdown .dropdown:hover > ul {
	  left: -100%;
	}
  }
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #37423b;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
  }
  .mobile-nav-toggle.bi-x {
	color: #fff;
  }
  
  @media (max-width: 991px) {
	.mobile-nav-toggle {
	  display: block;
	}
  
	.navbar ul {
	  display: none;
	}
  }
  .navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(32, 38, 34, 0.9);
	transition: 0.3s;
	z-index: 999;
  }
  .navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
  }
  .navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 6px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
  }
  .navbar-mobile a, .navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #37423b;
  }
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
	color: #0063a8;
  }
  .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
	margin: 15px;
  }
  .navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  .navbar-mobile .dropdown ul li {
	min-width: 200px;
  }
  .navbar-mobile .dropdown ul a {
	padding: 10px 20px;
  }
  .navbar-mobile .dropdown ul a i {
	font-size: 12px;
  }
  .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
	color: #0063a8;
  }
  .navbar-mobile .dropdown > .dropdown-active {
	display: block;
  }

  .banner-container {
    background-color: #f3f4f8;
    padding-bottom: 100px;
  }
  .banner-container .banner-row .banner-txt {
    margin: auto;
  }
  .banner-container .banner-row .banner-txt h1 {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 3rem;
  }
  .banner-container .banner-row .banner-txt p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
  }
  .banner-container .banner-row .btn-row {
    margin-top: 50px;
  }
  .banner-container .banner-row .btn-row .btn {
    width: 200px;
    margin-right: 20px;
  }
  @media only screen and (max-width: 767px) {
    .banner-container .banner-row .btn-row .btn {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  .banner-container .banner-img {
    text-align: center;
  }
  .banner-container .banner-img img {
    max-width: 400px;
  }
  @media only screen and (max-width: 767px) {
    .banner-container .banner-img img {
      width: 100%;
    }
  }

  .header-top-bar {
    background: #0063a8;
    font-size: 14px;
    padding: 10px 0px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    color: #fff;
    }
    
    .top-bar-info li a {
    color: #fff;
    margin-right: 20px;
    }
    
    .top-right-bar a span {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    }
    
    .top-right-bar a i {
    color: #fff;
    margin-right: 10px;
    }
  
  .key-featurecont {
    position: absolute;
    z-index: 999;
  }
  .key-featurecont .key-ro {
    margin-top: -52px;
    z-index: 999;
  }
  .key-featurecont .key-ro .keycol .key-cover {
    box-shadow: 4.871px 34.659px 30px 0px rgba(0, 0, 0, 0.06);
    background-color: #FFF;
    display: flex;
    padding: 15px;
    border-radius: 8px;
  }
  .key-featurecont .key-ro .keycol .key-cover .logo-cc img {
    max-width: 75px;
  }
  .key-featurecont .key-ro .keycol .key-cover .text-cc {
    flex-grow: 1;
    margin: auto 0px;
    padding-left: 15px;
  }
  .key-featurecont .key-ro .keycol .key-cover .text-cc h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .key-featurecont .key-ro .keycol .key-cover .text-cc p {
    font-size: 1.2rem;
  }
  .about-coo {
    background-color: #FFF;
    padding-top: 130px;
  }
  .about-coo .about-row {
    margin-top: 50px;
  }
  @media only screen and (max-width: 476px) {
    .about-coo .about-row {
      padding-top: 90px;
    }
  }
  .about-coo .about-row .about-img {
    text-align: center;
    margin: auto;
  }
  .about-coo .about-row .about-img img {
    max-width: 80%;
  }
  @media only screen and (max-width: 767px) {
    .about-coo .about-row .about-img img {
      width: 100%;
    }
  }
  @media only screen and (max-width: 476px) {
    .about-coo .about-row .about-img img {
      margin-bottom: 30px;
    }
  }
  .about-coo .about-row .about-text h1 {
    margin-bottom: 30px;
    font-size: 2rem;
    line-height: 40px;
  }
  .about-coo .about-row .about-text p {
    margin-bottom: 30px;
  }
  .about-coo .about-row .about-text .about-featur ul {
    width: 100%;
    margin-left: -10px;
  }
  .about-coo .about-row .about-text .about-featur ul li {
    padding: 10px;
    width: 50%;
    float: left;
    font-weight: 400;
  }
  .about-coo .about-row .about-text .about-featur ul li i {
    margin-right: 5px;
  }
  
  .features {
    padding: 50px;
    background-color: #f3f4f8;
  }
  @media screen and (max-width: 940px) {
    .features {
      padding: 30px 10px;
    }
  }
  .features .feature-row {
    margin-top: 30px;
  }
  .features .feature-row .feature-col {
    text-align: left;
    background-color: #FFF;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 3px 0 rgba(218, 218, 253, 0.35), 0 0px 3px 0 rgba(206, 206, 238, 0.35);
  }
  .features .feature-row .feature-col img {
    margin-bottom: 15px;
  }
  .features .feature-row .feature-col i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #28a745;
  }
  .features .feature-row .feature-col:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  }
  .features .feature-row .feature-col h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .features .feature-row .feature-col p {
    font-size: 1.4rem;
  }
  
  .more-features {
    padding: 50px;
    background-color: #fff;
  }
  @media screen and (max-width: 940px) {
    .more-features {
      padding: 30px 10px;
    }
  }
  .more-features .more-featur-ro {
    margin-top: 20px;
  }
  .more-features .more-featur-ro .more-feat {
    display: flex;
    margin-bottom: 30px;
  }
  .more-features .more-featur-ro .more-feat .icon {
    padding: 15px;
  }
  .more-features .more-featur-ro .more-feat .icon img {
    width: 110px;
  }
  .more-features .more-featur-ro .more-feat .detail {
    padding: 15px;
  }

  .overly, .page-title, .slider, .cta, .hero-img {
    position: relative;
    }
    .bg-1 {
    background: url("../images/bg/home-2.jpg") no-repeat 50% 50%;
    background-size: cover;
    }
    
    .overly:before, .page-title:before, .slider:before, .cta:before, .hero-img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: #000;
    }
  
    .section-title {
    margin-bottom: 70px;
    }
    
    .section-title .title {
    font-size: 50px;
    line-height: 50px;
    }
    
    .section-title p {
    color: #666;
    font-family: "Poppins", sans-serif;
    }
    .text-color {
    color: #0063a8;
    }
  
    .color-one {
    color: #0063a8;
    }
  
    .content-title {
    font-size: 40px;
    line-height: 50px;
    }
  
    .intro-item i {
    font-size: 60px;
    line-height: 60px;
    }
  
    .overly, .page-title, .slider, .cta, .hero-img {
    position: relative;
    }
    
    .overly:before, .page-title:before, .slider:before, .cta:before, .hero-img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: #000;
    }
    
    .overly-2, .bg-counter, .cta-block, .latest-blog {
    position: relative;
    }
    
    .overly-2:before, .bg-counter:before, .cta-block:before, .latest-blog:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    }
    .cta {
    background: url("../images/bg/home-3.jpg") fixed 50% 50%;
    background-size: cover;
    padding: 80px 0px;
    } 
    .p-5 {
      padding: 2rem !important;
    } 

  #footer {
    color: white;
    font-size: 14px;
    background: #161616;
  }
  #footer .footer-top {
    padding: 60px 0 30px 0;
    background: #161616;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
  }
  #footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: white;
  }
  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: white;
    position: relative;
    padding-bottom: 12px;
  }
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #0063a8;
    font-size: 18px;
    line-height: 1;
  }
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: white;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  #footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #0063a8;
  }
  #footer .footer-newsletter {
    font-size: 15px;
  }
  #footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: white;
    position: relative;
    padding-bottom: 12px;
  }
  #footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #e0e5e2;
  }
  #footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
  }
  #footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: #0063a8;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  #footer .footer-newsletter form input[type=submit]:hover {
    background: #3ac162;
  }
  #footer .credits {
    padding-top: 5px;
    font-size: 13px;
  }
  #footer .credits a {
    color: #3ac162;
    transition: 0.3s;
  }
  #footer .credits a:hover {
    color: #0063a8;
  }
  #footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #0063a8;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  #footer .social-links a:hover {
    background: #3ac162;
    color: #fff;
    text-decoration: none;
  }
