/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: #7388a6;
  font-size: 17px;
}

a {
  color: #2491eb;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Work Sans', sans-serif;
  color: #242a3b;
  margin-bottom:3rem;
}
strong {
    font-weight: 600;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
}
.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #0466c7;
  text-transform: uppercase;
}
.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #012970;
}
@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #0c4c80;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #2491eb;
  color: #fff;
}
.back-to-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;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}
.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}
.header .logo {
  line-height: 0;
}
.header .logo img {
  max-height: 80px;
  margin-right: 6px;
}
.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: "Nunito", sans-serif;
  margin-top: 3px;
}
.header.header-scrolled .logo {
	display: none;
}
.header.header-scrolled .logo {
    content: url(../../assets/img/logo-color.png);
    height: 50px;
}
.header.header-scrolled .navbar a {
    color: #242a3b;
}
.header.header-scrolled .navbar a:hover,
.header.header-scrolled .navbar .active,
.header.header-scrolled .navbar .active:focus,
.header.header-scrolled .navbar li:hover > a{
	color:#2491eb;
	}
.header.header-scrolled .navbar .getstarted,
.header.header-scrolled .navbar .getstarted:focus {
  color: #fff;
}
.header.header-scrolled .navbar .getstarted:hover,
.header.header-scrolled .navbar .getstarted:focus:hover {
  color: #fff;
  background: #0c4c80;
}

/*--------------------------------------------------------------
# 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;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e2e2e2;
  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: #ffffff;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #1241da;
  padding: 8px 30px;
  margin-left: 30px;
  border-radius: 25px;
  color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #0c4c80;
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  font-size: 35px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.header.header-scrolled .mobile-nav-toggle.bi-x {
  color: #fff;
}
.header.header-scrolled .mobile-nav-toggle {
	color:#0c4c80;
	}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    color: #fff;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}
.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: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #4154f1;
}
.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: #4154f1;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 105vh;
  background: url(../img/hero-bg.jpg) bottom center no-repeat;
  background-size: cover;
  margin-bottom: -50px;
}
.hero h1 {
  margin: 0;
  font-size: 3.5rem;
  font-weight: normal;
  color: #ffffff;
  text-align: center;
}
.hero h2 {
  color: #ffffff;
  margin: 15px 0 0 0;
  font-size: 26px;
  text-align: center;
}
.hero .btn-get-started {
  margin-top: 10px;
  line-height: 0;
  padding: 10px;
  border-radius: 100%;
  transition: 0.5s;
  color: #fff;
  box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
  border: 2px solid #fff;
  height: 50px;
  width: 50px;;
}
.hero .btn-get-started:hover{
  transform: translateY(10px);
	}
.hero .btn-get-started i {
  font-size: 40px;
  transition: 0.3s;
}
#hero .scrollmore {
    color: #fff;
    margin-top: 100px;
}
@media (min-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}
@media (max-width: 991px) {
  .hero {
    height: 105vh;
    padding: 120px 0 60px 0;
  }
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
  .hero .hero-img img {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .hero h1,
  #hero.page-hero h1 {
    font-size: 32px;
  }
  .hero h2 {
    font-size: 24px;
  }
  .hero .hero-img img {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about img.img-fluid {
  width: 75%;
  text-align: center;
  display: block;
  margin: 0 auto;
}
.about .content {
  padding: 40px;
}
.pretitle {
  font-size: 15px;
  font-weight: 600;
  color: #0466c8;
  text-transform: uppercase;
  letter-spacing: 5pt;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  line-height: 0.1em;
  padding-left: 70px;
}
.pretitle:before {
  z-index: -1;
  position: absolute;
  /* Change "right: 0" to "left: 0" for left side line */
  left: 0;
  content: '';
  width: 50px;
  border-bottom: 2px solid #242a3b;
}
.services .pretitle {
  text-align: center;
  padding-left: 0;
}
.services .pretitle::before{
	display: none;
}
.contact .pretitle:before {
  border-bottom: 2px solid #fff;
}
.text-center.expertise {
	padding:50px 0 0;
}
.expertise h1.aos-init.aos-animate{
	color: #0466c7;	
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services {
  background: #f0f4f7;
}

.services .service-box {
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}

.services .service-box:hover {
  box-shadow: 0px 0 30px rgba(83, 139, 180, 0.26);
  border: 1px solid #0466c7;
}
.services .service-box .icon {
  background: #0466c7;
  border: 5px solid #288cee;
  padding: 20px;
  border-radius: 100%;
  position: relative;
  transition: 0.3s;
  margin: 0 auto;
}
.service-box img {
	width: 65px;
}
.services .service-box h3 {
  font-weight: 600;
  margin: 20px 0;
}
.services .service-box .read-more {
  justify-content: center;
  font-size: 16px;
  padding: 8px 20px;
  color: #fff;
  background: #0466c7;
  border-radius: 20px;
  transition: .5s;
  display: flex;
  width: fit-content;
  margin: 0 auto;
}
.service-box .read-more:hover{
  background: #0c4c80;
  transition: .5s;
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio img{
  border: 2px solid #e0e0e0;
  padding: 20px;
  border-radius: 3px;
   }
.portfolio img:hover{
  border-color: #0466c7;
  transition: .5s;
 }

.slide {
	padding: 10px;
}
.carousel .slick-dots {
    display: none !important;
}
.navigation {
  position: relative;
  float: right;
  margin-bottom: 20px;
  }
.navigation li{
  position: relative;
  float: left;
  margin-right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #111;
}
.navigation li.prev{
  display: block;
}
.navigation li.next{
  display: block;
  margin-right: 0px;
}
@media (max-width: 768px) {
	.navigation li{
		font-size: 20px;
	}
}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
#team{
  background: #f0f4f7;
}
.team .row.gy-4 {
  margin: 35px 0;
}
.team .member {
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  max-width: 80%;
  display: block;
  margin: 0 auto;
}

.team .member .social {
  position: absolute;
  bottom: 0;
  top: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(4, 102, 199, 0.75);
  z-index: 2;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  border-radius: 100%;
}
.team .member .social a {
  transition: color 0.3s;
  color:rgba(255, 255, 255, .8);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}
.team .member .social a:hover {
  color: rgba(255, 255, 255, 1);
}
.team .member .social i {
  font-size:30px;
}
.team .member .member-info {
  padding: 10px 15px 20px 15px;
}
.team .member .member-info h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}
.team .member .member-info span {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #7388a6;
}
.team .member .member-info p {
  padding-top: 15px;
  line-height: 26px;
}
.team .member:hover .social {
  right: 8px;
  opacity: 1;
}
@media (max-width: 768px) {
.team .row.gy-4 {
  margin: 0;
  }
}
/*--------------------------------------------------------------
# blog
--------------------------------------------------------------*/
#blog.blog {
	background-image: url(../img/blog-bg-top-left.png), url(../img/blog-bg-bottom-right.png);
	background-position: top left, bottom right;
	background-repeat: no-repeat;
	background-color: #fff;
  }
.page-hero {
	width: 100%;
	height: 50vh;
	background: url(../img/hero-bg-blog.jpg) center no-repeat;
	background-size: cover;
}
.page-hero h1 {
	color: #fff;
	font-size: 3.5rem;
	text-align: center;
	margin: 0;
	padding-top: 150px;
}
hr.undertitle {
	width: 200px;
	display: block;
	margin: 30px auto 1px;
	border: 1px solid #fff;
}
.visible_item{
	display:none;
	visibility: hidden;
}
/* ---- button ---- */
.filters-button-group .button {
	display: inline-block;
	padding: 5px 15px;
	margin-bottom: 10px;
	background: transparent;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	color: #242a3b;
	cursor: pointer;
	transition: .3s;
}

.filters-button-group .button:hover {
	background-color: #0466c7;
	color: #fff;
	transition: .3s;
}

.filters-button-group .button:active,
.filters-button-group .button.is-checked {
	background-color: #0466c7;
	border-color: #e0e0e0;
}

.filters-button-group .button.is-checked {
	color: white;
}
/* ---- button-group ---- */
.button-group-home.filters-button-group {
	margin: 0 auto 40px;
}
.button-group:after {
	content: '';
	display: block;
	clear: both;
}

.button-group .button {
	float: left;
	border-radius: 0;
	margin-left: 0;
	margin-right: 1px;
}

.button-group .button:first-child { border-radius: 0.5em 0 0 0.5em; }
.button-group .button:last-child { border-radius: 0 0.5em 0.5em 0; }

/* ---- .blog-item ---- */
.blog-content:after {
	content: '';
	display: block;
	clear: both;
}
.blog-content {
	border: 2px solid #e0e0e0;
	padding: 10px 10px 20px;
	background: #fff;
	margin: 0 auto;
	display:flex;
	flex-direction:column;
	min-height:500px;
}
.blog-content:hover{
	border-color: #0466c7;
	transition: .3s;
}
.blog-content img {
    display: block;
}
.blog-content h2 {
	margin: 0 0 30px;
	padding: 20px;
	font-size: 25px;
	color: #0e4e8e;
	display:block;
}
.blog-content .read-more {
	padding:20px;
	color:#002854;
	transition: .3s;
	display:block;
}
.blog-content .read-more:hover {
	color:#0466c7;
	padding-left: 25px;
	transition: .3s;
}
.button.showMore {
	margin: 8% auto 0;
	display: block;
	background: #fff;
	padding: 10px 30px;
	border: 3px solid #242a3b;
	border-radius: 40px;
	color: #242a3b;
}
.button.showMore:hover{
	color: #0466c7;
	border-color: #0466c7;
}
@media (max-width: 768px) {
  .blog-content {
      min-height:550px
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact {
	background: rgb(2,62,125);
	background-image: url(../img/contact-map-bg.png);
	background-image: url(../img/contact-map-bg.png), linear-gradient(90deg, rgba(2,62,125,1) 0%, rgba(3,83,164,1) 100%);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left center;
	padding: 150px 0;
}
.contact .pretitle,
.contact h1,
.contact p{
  color:#fff;
}
.contact .php-email-form {
  padding: 30px;
  height: 100%;
}
.contact label {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3pt;
}
.contact .form-group {
  margin-top: 30px;
}
.form-control {
    background: transparent !important;
    border-width: 0 0 1px 0;
    border-radius: 0;
    padding: 10px 0;
    color: #fff;
}
.form-control:focus {
    box-shadow:none;
    color: #fff;
}
#form_email {
    color: #fff;
}
.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #88c9ff;
  opacity: 1; /* Firefox */
}
.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #88c9ff;
}
.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #88c9ff;
 }
.btn-send {
  background: #0466c7;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 25px;
  margin-top: 30px;;
}
.btn-send:hover {
    background: #fff;
    color: #0c4c80;
}
.btn-success.disabled, .btn-success:disabled {
    background-color: #0466c7;
  opacity:.5;
}
.help-block.with-errors {
    color: #ff5050;
    margin-top: 5px;
    margin-bottom:0px;
}
.help-block.with-errors .list-unstyled{
	margin-bottom: 0;
	}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
#contact{
  background-size: cover;
  background-position: right center;
  }
}
/*--------------------------------------------------------------
 AUTOFILL MOD ENDS
--------------------------------------------------------------*/
 input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
}
input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px ffffff00 inset; /* Change the color to your own background color */
    -webkit-text-fill-color: #fff;
}
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px #ffffff00 inset;
    -webkit-text-fill-color: #fff;
}
/*--------------------------------------------------------------
 AUTOFILL MOD ENDS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #191e2d;
  padding: 0 0 30px 0;
  font-size: 14px;
}
.footer h5 {
    font-size: 17px;
}
.footer p {
  color: #798198;
  font-size: 13px;
}
.footer .footer-newsletter {
  padding: 50px 0;
  background: #191e2d;
}
.footer .footer-newsletter h4 {
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  color: #ffffff;
}
.footer .footer-newsletter form {
  margin-top: 20px;
  background: transparent;
  padding: 6px 10px;
  position: relative;
  display: inherit;
  
}
.footer .footer-newsletter form input[type=email] {
  padding: 10px;
  width: 100%;
  background: transparent;
  border: 1px solid #ffff;
  color:#fff;
  display: inline;
}
.footer .footer-newsletter form input[type=submit] {
  border: 1px solid #0466c7;
  padding: 0 50px;
  margin-left: 10px;
  background: #0466c7;
  color: #fff;
  transition: 0.3s;
  display: inherit;
}
.footer .footer-newsletter form input[type=submit]:hover {
  background: #0c4c80;
  border-color: #0c4c80;
}
.footer .underform {
  display: inherit;
  padding: 50px 0 0;
}
.footer .underform p {
  margin:0 10px 0 0;
  color:#fff;
  font-size: 14px;
}
.footer .footer-top {
  background: #191e2d;
  padding: 60px 0 30px 0;
}
.footer .footer-top .footer-info {
  margin-bottom: 30px;
}
.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}
.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}
.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  margin-top: 3px;
}
.footer .social-links {
  margin:0 auto;
  display: block;
}
.footer .social-links i {
  border: 2px solid #fff;
  padding: 5px;
  border-radius: 100px;
}
.footer .social-links i:hover{
  border-color:#0466c7;
  transition: 0.5s;
}
.footer .social-links a {
  font-size: 20px;
  display: inline-block;
  color: #fff;
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: #2491eb;
}
.footer .footer-top h4,
.footer .footer-top h5 {
  color: #fff;
  position: relative;
  margin-bottom:1rem;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding: 0 8px;
  color: #fff;
  font-size: 12px;
  line-height: 0;
  font-style: normal;
}
.footer .footer-links ul li {
  padding: 10px 0;
  display: inline;
  align-items: center;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul a {
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover {
  color: #2491eb;
}
.footer .footer-contact p {
  line-height: 26px;
}
@media (max-width: 768px) {
.footer .social-links{
  margin: 20px auto;
  }
  .footer .underform{
  	display:block;
  	text-align: center;
  	}
  .footer .underform p {
  	margin: 10px 0;
  }
}

a.nft-services-link,
a.nft-services-link:focus,
a.nft-services-link:active {
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.0575rem;
  position: relative;
}

@media screen and (min-width: 63.8385em) {
  a.nft-services-link,
  a.nft-services-link:focus,
  a.nft-services-link:active {
    color: #e2e2e2;
    font-size: 1rem;
  }
}

.header.header-scrolled .navbar a.nft-services-link,
.header.header-scrolled .navbar a.nft-services-link:hover,
.header.header-scrolled .navbar a.nft-services-link:focus,
.header.header-scrolled .navbar a.nft-services-link:active {
  color: #242a3b;
}

a.nft-services-link::before {
  animation: animated-spread 2s infinite ease-in-out;
  display: block;
  content: "NFT Advisory";
  color: transparent;
  position: absolute;
  text-shadow: 3px 2px 0 #00CDF9, 1px -3px 0 #00CDF9;
  z-index: -1;
}

@keyframes animated-spread {
  0% {
    opacity: 0;
    text-shadow: 0 0 2px #00CDF9, 0 0 2px #00CDF9;
  }

  25% {
    text-shadow: 0 0 6px #00CDF9, 0 0 6px #00CDF9;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 8px #00CDF9, 0 0 8px #00CDF9;
  }

  75% {
    text-shadow: 0 0 6px #00CDF9, 0 0 6px #00CDF9;
  }

  100% {
    opacity: 0;
    text-shadow: 0 0 2px #00CDF9, 0 0 2px #00CDF9;
  }
}

/* turn of animations for users that have expressed this preference */
@media (prefers-reduced-motion: reduce) {
  a.nft-services-link {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
} */
