body {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: National-Book,Helvetica,sans-serif;
	font-size: 1rem;
	line-height: 1.75;
	color: #000;
}

a {
	color: #009cea;
}

a:hover {
	color: #32afee;
	text-decoration: none;
}

.lead{
	font-size: 1rem;
	font-weight: 300;
	text-align: justify;
}
h1, h2, h3, h4, h5, h6 {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* font-family: "Comic Sans MS", "Comic Sans", cursive; */
	font-family: "Lucida Bright", Georgia, serif;
	color: #f81010
}

.font-heading{
	font-size: 30px;
	font-weight: 700;
}
.font-italic{
	font-style: italic;
}
.color-red{
	color: #f81010
}

small{
	font-size: 16px;
	margin-bottom: 15px;
	color: #000;
}

/*--------------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: 4px;
	background: #f81010;
	color: #fff;
	transition: all 0.4s;
}

.back-to-top i:hover {
	background: #f84141;
	color: #fff;
}

.shadow {
    box-shadow: 0 .15rem 1.75rem 0 rgba(33,40,50,.15)!important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #fff;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #5777ba;
	border-top-color: #fff;
	border-bottom-color: #fff;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------- Header---------------*/

#header {
    transition: all 0.5s;
    background: #fff;
    z-index: 997;
    padding: 15px 0;
    border-bottom: 1px solid #e6f2fb;
  }
  
  #header.header-scrolled {
    border-color: #fff;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
  }
  
  #header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.5px;
	font-family: National-Book,Helvetica,sans-serif;
  }
  
  #header .logo a {
    color: rgb(134, 0, 0);
  }
  
  #header .logo img {
    max-height: 40px;
	margin-right: 4px;
  }

  #header .logo span {
    color: rgb(134, 0, 0);
  }
  
  @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: 14px 0 14px 28px;
  }
  
  .nav-menu a {
    display: block;
    position: relative;
    color: #124265;
    transition: 0.3s;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
	text-transform: uppercase;
    font-weight: 600;
  }
  
  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #2487ce;
  }
  
  .nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 15px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(18, 66, 101, 0.1);
    transition: 0.3s;
    border-radius: 5px;
  }
  
  .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 {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #124265;
  }
  
  .nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #2487ce;
  }
  
  .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";
    }
  }
  
  /* Get Startet Button */
  .get-started-btn {
    margin-left: 25px;
    background: #2487ce;
    color: #fff;
    border-radius: 5px;
    padding: 10px 30px 11px 30px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
  }
  
  .get-started-btn:hover {
    background: #2079b8;
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .get-started-btn {
      margin: 0 48px 0 0;
      padding: 5px 18px 6px 18px;
      border-radius: 3px;
    }
  }
  
  /* Mobile Navigation */
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 22px;
    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: #124265;
  }
  
  .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: #124265;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
  }
  
  .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #2487ce;
    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(10, 38, 58, 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: rgb(0, 0, 0);
  }
  

/*--------Hero Section------------*/
#hero {
	width: 100%;
	height: 100vh;
	position: relative;
	background: #f5f8fd url("../img/home-bg.jpeg") center top no-repeat;
	background-size: cover;
  }
  
  @media (max-width: 767px) {
	#hero {
	  height: auto;
	  padding: 100px 0 60px 0;
	}
	#hero .container {
	  height: auto !important;
	}
	#hero .intro-img {
	  width: 80%;
	}
  }
  
  @media (min-width: 992px) {
	#hero .intro-info {
	  padding-top: 80px;
	}
  }
  
  @media (max-width: 767px) {
	#hero .intro-info {
	  text-align: center;
	  padding-top: 40px;
	}
  }
  
  #hero .intro-info h4 {
	margin-bottom: 10px;
  }
  
  #hero .intro-info h4 span {
	color: #1bb1dc;
  }
  
  @media (max-width: 767px) {
	#hero .intro-info h4 {
	  font-size: 22px;
	  margin-bottom: 30px;
	}
  }
  
  #hero .intro-info .btn-get-started, #hero .intro-info .btn-services {
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 32px;
	border-radius: 4px;
	transition: 0.5s;
	color: #fff;
	background: #1bb1dc;
	color: #fff;
  }
  
  #hero .intro-info .btn-get-started:hover, #hero .intro-info .btn-services:hover {
	background: #0a98c0;
  }





  
  





/*---general section styles---*/
section {
	padding: 80px 0;
}

.section-bg {
	background-color: rgba(57,115,230,.05);
}

.section-title {
	text-align: center;
	padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #f81010;
    font-family: "Lucida Bright", monospace;
}

.section-title p {
	margin-bottom: 0;
	color: #363535;
}

/*------game plan--------------*/

.gameplan {
	padding: 0;
	margin-top: 40px;
  }
  
  .gameplan .container {
	background-color: #fff;
	padding: 60px 50px;
  }
  
  @media (max-width: 992px) {
	.gameplan .container {
	  padding: 30px;
	}
  }
  
  .gameplan .content h4 {
	font-weight: 400;

  }
  
  .gameplan .content ul {
	list-style: none;
	padding: 0;
  }
  
  .gameplan .content ul li {
	padding-bottom: 10px;
  }
  
  .gameplan .content ul i {
	font-size: 16px;
	padding-right: 4px;
	color: #f81010;
  }
  
  .gameplan .content p:last-child {
	margin-bottom: 0;
  }
  

  .gameplan .content .cta-btn {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 30px;
	border-radius: 4px;
	transition: 0.5s;
	margin: 10px;
	color: #fff;
	background: #009cea;
  }
  
  .gameplan .content .cta-btn:hover {
	background: #008bd1;
  }



  /*-----game plan----------*/



.features h4 {
	font-weight: 600;
	font-size: 24px;
}
  
.features p span {
	font-weight: bold;
	font-style: italic;
	color:#f81010;
}
  
.features .content-list ul {
	margin: 0 0 15px 0;
	padding: 0;
	list-style-type: none;
}
  
.features .content-list ul li > i {
	font-size: 20px;
	padding-right: 4px;
	color: #f81010;
}



/*--- backstage---*/

.portfolio {
	padding: 80px 0;
	/* background: url("../img/backstage.jpeg") no-repeat; */
	background-position: center center;
	background-size: cover;
	position: relative;
  }
  
/* .portfolio::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgb(153 153 153 / 70%);
  } */

.portfolio .section-header {
	color: #000;
	margin-bottom: 40px;
  }

.portfolio .section-header h2{
	font-size: 32px;
    font-weight: 400;
    color: #000;
	text-align: center;
	font-family: "Lucida Bright", Georgia, serif;
}
.portfolio .content {
	font-size: 15px;
	color: rgb(214, 203, 203);
}

.portfolio .content h4 {
	margin-bottom: 1rem;
	font-weight: 400;
}

.portfolio .content ul {
	list-style: none;
	padding: 0;
}

.portfolio .content ul li {
	padding-bottom: 10px;
	padding-left: 28px;
	position: relative;
	color: #000;
}

.portfolio .content ul i {
	font-size: 16px;
	color: #f81010;
	position: absolute;
	left: 0;
	
}

.portfolio .content p:last-child {
	margin-bottom: 0;
}


.portfolio .content .cta-btn {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 30px;
	border-radius: 4px;
	transition: 0.5s;
	margin: 10px;
	color: #fff;
	background: #009cea;
}

.portfolio .content .cta-btn:hover {
	background: #008bd1;
}




/*-----game plan----------*/


.our-backstage{
	padding: 15px 0;
	margin-bottom: 10px;
}

.our-backstage h4 {
	font-weight: 600;
	font-size: 18px;
}
  
.our-backstage p span {
	font-weight: bold;
	font-style: italic;
	color:#f81010;
}
  
.our-backstage .content-list ul {
	margin: 0 0 15px 0;
	padding: 0;
	list-style-type: none;
  }

.our-backstage .content-list ul li{
	margin-bottom: 1rem;
}
.our-backstage .content-list ul li > i {
	font-size: 16px;
	padding-right: 4px;
	color: #f81010;
  }

@media (min-width: 1024px) {
	.portfolio {
	  background-attachment: fixed;
	}
  }

@-webkit-keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}











/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
	padding: 0 100px;
}

.faq .faq-list ul {
	padding: 0;
	list-style: none;
}

.faq .faq-list li + li {
	margin-top: 15px;
}

.faq .faq-list li {
	padding: 20px;
	background: #fff;
	border-radius: 4px;
	position: relative;
}

.faq .faq-list a {
	display: block;
	position: relative;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	padding: 0 30px;
	outline: none;
}

.faq .faq-list .icon-help {
	font-size: 24px;
	position: absolute;
	right: 0;
	left: 20px;
	color: #87c1ea;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
	font-size: 24px;
	position: absolute;
	right: 0;
	top: 0;
}

.faq .faq-list p {
	margin-bottom: 0;
	padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
	display: none;
}

.faq .faq-list a.collapsed {
	color: #343a40;
}

.faq .faq-list a.collapsed:hover {
	color: #2487ce;
}

.faq .faq-list a.collapsed .icon-show {
	display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
	display: none;
}

@media (max-width: 1200px) {
	.faq .faq-list {
		padding: 0;
	}
}

/*------# Contact------*/

.contact {
	padding-top: 6em;
}

.contact .info {
	padding: 30px;
	width: 100%;
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.contact .info i {
	font-size: 20px;
	color: #1bac91;
	float: left;
	width: 44px;
	height: 44px;
	background: #e1f0ee;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
}

.contact .info h4 {
	padding: 0 0 0 60px;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #21413c;
}

.contact .info p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #43857a;
}

.contact .info .email p {
	padding-top: 5px;
}

.contact .info .social-links {
	padding-left: 60px;
}

.contact .info .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #333;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	margin-right: 10px;
}

.contact .info .social-links a:hover {
	background: #e0073a;
	color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
	background: #e0073a;
	color: #fff;
}

.contact .php-email-form {
	width: 100%;
	padding: 30px;
	background: #fff;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .error-message br + br {
	margin-top: 25px;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #18d26e;
	border-top-color: #eee;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
}

.contact .php-email-form input {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 32px;
	border-radius: 4px;
	transition: 0.5s;
	color: #fff;
	background: #1bb1dc;
	border: none;
}

.contact .php-email-form button[type="submit"]:hover {
	background: #2fceeb;
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 15px 0;
	background: #f8fbfe;
	min-height: 40px;
	margin-top: 80px;
}

@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: 62px;
	}
}

.breadcrumbs h2 {
	font-size: 24px;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: National-Book,Helvetica,sans-serif;
}

.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: #1a5e90;
	content: "/";
}

@media (max-width: 768px) {
	.breadcrumbs .d-flex {
		display: block !important;
	}

	.breadcrumbs ol {
		display: block;
	}

	.breadcrumbs ol li {
		display: inline-block;
	}
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: #000;
	padding: 0 0 30px 0;
	color: #fff;
	font-size: 14px;
  }
  
  #footer .footer-top {
	padding: 60px 0 30px 0;
	background: #0c1817;
    border-bottom: 1px solid #18302c;
  }
  
  #footer .footer-top .footer-info {
	margin-bottom: 15px;
	border-top: 4px solid #f81010;
	text-align: justify;
	padding: 30px 20px;
  }
  
  #footer .footer-top .footer-info h3 {
	font-size: 24px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 700;
	color: #fff;
  }
  
  #footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
  }
  
  #footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 4px;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
	background: #f81010;
  }
  
  #footer .footer-top .social-links a:hover {
	color: #fff;
	background: #f84141;
	text-decoration: none;
  }
  
  #footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	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: 5px;
	color: #f81010;
	font-size: 12px;
	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: #fff;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
	color: #3dbdfd;
  }
  
  #footer .footer-top .footer-newsletter form {
	margin-top: 30px;
	background: #fff;
	padding: 6px 10px;
	position: relative;
	border-radius: 4px;
  }
  
  #footer .footer-top .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px;
	width: calc(100% - 110px);
  }
  
  #footer .footer-top .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: 0;
	right: -2px;
	bottom: 0;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px 0px 20px;
	background: #f81010;
	color: #fff;
	transition: 0.3s;
	border-radius: 0 4px 4px 0;
  }
  
  #footer .footer-top .footer-newsletter form input[type="submit"]:hover {
	background: #f84141;
  }
  
  #footer .copyright {
	
	text-align: center;
	padding-top: 30px;
  }
  
  #footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #fff;
  }
  
  @media (max-width: 575px) {
	#footer .footer-top .footer-info {
	  margin: -20px 0 30px 0;
	}
  }
  





/* join us page styles */


.register-turtle {
	background: rgba(57,115,230,.05);
	margin-top: 4em;
	padding: 3%;
}

.register-heading {
	text-align: center;
	margin-top: 15px;
	margin-bottom: 15px;
	color: #495057;
	font-style: italic;
}

.sub-heading {
	margin-left: 3rem;
	font-style: italic;
}

.form-control {
	font-size: 0.85rem;
}

sub {
	color: red;
	top: -5px;
	font-weight: bold;
}

.register-left input {
	border: none;
	border-radius: 1.5rem;
	padding: 2%;
	width: 60%;
	background: #f8f9fa;
	font-weight: bold;
	color: #383d41;
	margin-top: 30%;
	margin-bottom: 3%;
	cursor: pointer;
}

.box-width {
	width: 300px;
}

.mt-2 {
	margin-top: 2rem;
}

.terms-checkbox {
	font-size: 15px;
}

.register-form .checkbox-container {
	width: auto;
	color: #5a677d;
	padding-left: 2.5rem;
}

.checkbox-container {
	display: block;
	padding-left: 1.5rem;
	position: relative;
	cursor: pointer;
	margin-top: 2rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.checkbox-container input {
	position: absolute;
	cursor: pointer;
}

.form-container {
	background: #f8f9fa;
	padding: 40px;
}

.btn--join,.btn--cancel {
	margin-top: 10%;
	border: none;
	padding: 8px;
	border-radius: 5px;
	color: #fff;
	margin: 10px;
	font-weight: 600;
	width: 150px;
	cursor: pointer;
}

.register-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
	margin-top: 5px;
}

.register-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.register-form .error-message br + br {
	margin-top: 25px;
}

.register-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

/* privacy policy page styles */
.policy h3{
	margin-bottom: 1.5rem;
	font-size: 22px;
}
.policy h3 i{
		height: 2rem;
		width: 2rem;
}
.policy .lead{
	margin-top: 0;
    margin-bottom: 1rem;
	font-size: 1rem;
}
.policy hr{
	margin-bottom: 2rem;
	margin-top: 2rem;
	border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}