

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #ffffff;
}

a:hover {
  color: #76c7ed;
  text-decoration: none;
}

.counter li {
  display: inline-block;
  font-size: 1.5em;
  list-style-type: none;
  padding: 1em;
  text-transform: uppercase;
	position:relative;
}

.counter li span {
  display: block;
  font-size: 4.5rem;
  width: 90px;
  color: #000;
	
}
.counter li:first-child::before, .counter li:first-child::after {
	display: none;
}
.counter li::before {
    left: -5px;
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    background: #000;
    border-radius: 10px;
    top: 50%;
}
.counter li::after {
    left: -5px;
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    background: #000;
    border-radius: 10px;
    top: 65%;
}
.counter .emoji {
  display: none;
  padding: 1rem;
}

.counter .emoji span {
  font-size: 4rem;
  padding: 0 .5rem;
}
#countdown p {
    color: #BCBCBC;
    font-size: 15px;
    font-weight: 500;
	text-transform: capitalize;
}
h3#headline {
    color: #fbbc58;
    text-transform: uppercase;
    padding: 60px 0 40px 0;
    letter-spacing: 4px;
    font-size: 22px;
    font-weight: 700;
}
i.bi.bi-envelope-fill {
    font-size: 20px;
    margin: 1px 0 0 15px;
    float: left;
}

@media all and (max-width: 768px) {
  h1 {
    font-size: calc(1.5rem * var(--smaller));
  }
  
  li {
    font-size: calc(1.125rem * var(--smaller));
  }
  
  li span {
    font-size: calc(3.375rem * var(--smaller));
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f9b74f;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

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

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#navbar {
       background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0 !important;
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
    width: 615px;
    float: right;
    border-radius: 50px;
    right: 0;
    position: absolute;
    top: 20px;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}

#header .logo a {
  color: #0f394c;
}

#header .logo img {
  max-height: 40px;
}
.counter .downloadBtn {
   margin: 50px auto 20px;
   padding: 10px 30px;
   background: #796bc2 !important;
   box-shadow: 0 5px 13px rgba(0, 0, 0, 0.2);
   font-size: 23px;
   border-radius: 50px;
}
.custom-btn {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
}
.btn-11 {
  overflow: hidden;
}
.btn-11:hover {
    text-decoration: none;
    color: #fff;
}
.btn-11:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-11:hover{
  opacity: .7;
}
.btn-11:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}


@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.appstore {
    max-width: 200px;
    display: inline-block;
    margin: 40px 0 20px 0;
}
.appstore img.img-fluid {
    width: 100%;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  padding: 0 0px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  white-space: nowrap;
  transition: 0.3s;
}
a.nav-link.downloadBtn {
    background: rgb(255,197,104);
    background: linear-gradient(8deg, rgba(255,197,104,1) 0%, rgba(238,162,40,1) 100%);
    border-radius: 50px;
    color: #fff;
}
a.nav-link.downloadBtn:hover {
  background: linear-gradient(8deg, rgba(238,162,40,1) 0%, rgba(255,197,104,1) 100%);
	color: #fff;
}
.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: #F0A42B;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  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: #49b5e7;
}

.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;
}


.modal-body.PrivacyPolicy h2 {
    margin: 30px 0 10px 0;
}

.modal-body.PrivacyPolicy p {
    margin: 0 0 10px 0;
}
.modal-body.PrivacyPolicy ul {
    padding: 0 0 0 40px;
}
.modal-body.PrivacyPolicy ul li {
    line-height: 30px;
}



@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0f394c;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}



@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed !important;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(7, 25, 33, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0f394c;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #49b5e7;
}

.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: #49b5e7;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: #fff;
}



#hero h1 {
  margin: 100px 0 0 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 50px;
  color: #000000;
}
#hero h1 strong {
    font-size: 40px;
}

#hero h2 {
  color: #1c698c;
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: "Dosis", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 25px;
  color: #fff;
  background: #49b5e7;
  text-transform: uppercase;
}

#hero .btn-get-started:hover {
  background: #76c7ed;
}

@media (max-width: 991px) {
  #hero {
   
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 80%;
  }
	
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #F3F2FA;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 0;
  color: #000000;
}

.section-title p {
  margin-bottom: 0;
	padding: 0 10%;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 15px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 15px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border: 1px solid #dddbed;
}

.services .icon-box:hover {
  transform: translateY(-5px);
}

.services .icon {
  position: absolute;
  left: -20px;
  top: calc(50% - 30px);
}

.services .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
}

.services .title {
  margin-left: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .icon-box:hover .title a {
  color: #f9b74f;
}

.services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  border-radius: 5px;
  background: #fff;
  width: 90%;
    margin: 0 auto;
	 position: relative;
}

.team .member .member-img {
 overflow: hidden;
 z-index: 2;
 position: relative;
}
.member::before{
	content: '';
	position: absolute;
	background: #7567C2;
	height: 150px;
	width: 140px;
	left: -10px;
	top: -10px;
	z-index: 1;
}
.member::after{
	content: '';
	position: absolute;
	background: #F1A62F;
	height: 150px;
	width: 140px;
	bottom: -10px;
	right: -10px;
	z-index: 1;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #0f394c;
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: rgb(249 183 79 / 53%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #f9b74f;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
    padding: 20px 20px;
    position: absolute;
    top: 170px;
    background: #fff;
    left: -180px;
    width: 280px;
    z-index: 3;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 18px;
  color: #000000;
  float: left;

}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
  float: left;
  text-align: right;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 20px 0;
  color: #fff;
  font-size: 14px;
  background: #7567C2;
}

 .newsletter {
  padding: 20px 0 0 0;
  text-align: center;
  font-size: 15px;
}

.newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0 10%;
  line-height: 34px;
  font-weight: 600;
  color: #000;
}

.newsletter form {
  margin-top: 30px;
  background: #F3F2FA;
  padding: 15px 10px;
  position: relative;
  text-align: left;
  border-radius: 40px;
}

.newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
  background: transparent;
  outline: none;
}

.newsletter form button {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 8px solid #f3f2fa;
  font-size: 16px;
  padding: 0 20px;
  color: #fff;
  transition: 0.3s;
  border-radius: 30px;
  background: rgb(255,197,104);
  background: linear-gradient(8deg, rgba(255,197,104,1) 0%, rgba(238,162,40,1) 100%);
  font-weight: 400;
}

input[type="submit"] {}

.newsletter form input[type=submit]:hover {
  background: linear-gradient(8deg, rgba(238,162,40,1) 0%, rgba(255,197,104,1) 100%);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#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: "Lato", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #0f394c;
  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: #49b5e7;
  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: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #49b5e7;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #49b5e7;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #1da2e0;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  float: left;
  color: #fff;
}

#footer .credits {
  float: right;
  font-size: 13px;
  color: #fff;
}
#countdown ul {
    padding: 0;
}
.modal-dialog {
    width: 90%;
    max-width: 1100px;
	font-family: 'Poppins', sans-serif;
}
.modal-body h2 {
    font-size: 18px;
    color: #EA953B;
    font-weight: 600;
}
.modal-body p, .modal-body ol, .modal-body ul {
    font-size: 13px;
}
ol, ul {
    padding: 0 0 0 15px;
}
.credits a {
    color: #fff !important;
    cursor: pointer;
}
.close {
    border: none;
    background: no-repeat;
    font-size: 30px;
    padding: 0;
    line-height: 0;
    color: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #fcbe5c;
  width: 44px;
  height: 44px;
  background: #f7eddc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin: 0 auto 20px;
}
.contact .info h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000000;
}

.contact .info p {
  /* padding: 0 0 0 60px; */
  margin-bottom: 0;
  font-size: 14px;
  color: #000000;
}
.modal-header {
    background: #7567C2;
}
h5.modal-title {
    color: #fff;
}
section#shadow-host-companion {
    padding: 0;
}
.address {
    text-align: center;
}
.email {
    text-align: center;
    width: auto;
}
p.para {
    padding: 0 10%;
}
section#whoAreWe {
    padding: 10em 0;
}
#more {display: none;}
#myBtn{
    border: none;
    background: transparent;
    color: #f3ac3a;
    padding: 20px 0;
    font-size: 14px;
    text-decoration: underline;
}

.readMore {
    padding: 5px 0 0 0;
    font-size: 12px;
    margin: 0 0 0 40px;
    border: none;
    background: transparent;
    color: #f3ac3a;
    text-decoration: underline;
}

.appImage {
    margin: 30px 0 0 0;
}
#rm1 .modal-dialog, #rm2 .modal-dialog, #rm3 .modal-dialog, #rm4 .modal-dialog, #rm5 .modal-dialog, #rm6 .modal-dialog {
    max-width: 500px;
}

#terms .modal-dialog{
    width: 90%;
    max-width: 1100px;
}
.member-info h4 {
    padding: 20px 0;
}

.dates {
    color: #a3a2a2;
    line-height: 30px;
    margin: 20px 0 0 0 !important;
    float: left;
    width: 100%;
    font-size: 12px !important;
}
.dates span{
    float:right;
}

.PrivacyPolicy a {
    color: #7568c0;
    margin: 0 0 0 10px;
}



@media (max-width: 575px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
  }
}

@media only screen and (max-width: 991px) {

	section {
    padding: 30px 0;
}
	#navbar{
    width: auto;
    right: 0;
    border-radius: 0;
    padding: 10px !important;
}
	.counter li {
    padding: 5px;
}
	.counter li span {
    font-size: 2.5rem;
}
	h3#headline {
    font-size: 16px;
}
.newsletter h4 {
    font-size: 22px;
	}
	.img-fluid {
		    width: 100%;
    max-width: 500px;
}
	.newsletter {
    padding: 10px 0 0 0;
}
	.team .member .member-info {
    background: #f3f2fa82;
    left: 0;
}
	.section-title p {
    padding: 0 5%;
}
	.counter li span {
    width: 70px;
}
	.counter li::after {
    height: 6px;
    width: 6px;
    top: 74%;
}
	.counter li::before {
    height: 6px;
    width: 6px;
    top: 60%;
}
section#whoAreWe {
    padding: 2em 0;
}
.email {
    margin: 40px 0 20px 0;
}
#navbar {
    top: 0;
}
}
@media only screen and (max-width: 480px) {
#hero h1 strong {
    font-size: 32px;
}
#hero h1 {
    font-size: 21px;
  margin: 50px 0 0 0;
}
    
}